/* =========================================================
   AUDIT SENTINEL — MAIN DESIGN SYSTEM
   Adapted from ToDesktop.com design language
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ========================================================= */

/* ---------------------------------------------------------
   DESIGN TOKENS
--------------------------------------------------------- */
:root {
    /* Colors — Dark Navy foundation (ToDesktop-inspired) */
    --as-bg:            #050714;
    --as-bg-2:          #080A1A;
    --as-bg-card:       rgba(255,255,255,0.04);
    --as-bg-card-hover: rgba(255,255,255,0.07);

    --as-accent:        #2563EB;
    --as-accent-bright: #3B82F6;
    --as-accent-glow:   rgba(37,99,235,0.35);
    --as-success:       #10B981;
    --as-warning:       #F59E0B;
    --as-danger:        #EF4444;

    --as-text:          #F8FAFC;
    --as-text-bright:   #FFFFFF;
    --as-text-muted:    rgba(255,255,255,0.60);
    --as-text-ghost:    rgba(255,255,255,0.35);
    --as-text-label:    rgba(255,255,255,0.85);

    --as-border:        rgba(255,255,255,0.08);
    --as-border-strong: rgba(255,255,255,0.14);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Inter', ui-sans-serif, system-ui, sans-serif;
    --font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;

    --as-h1:   clamp(46px, 6vw, 74px);
    --as-h2:   clamp(32px, 4vw, 52px);
    --as-h3:   clamp(22px, 2.5vw, 32px);
    --as-body: 16px;
    --as-sm:   14px;
    --as-xs:   12px;

    /* Spacing */
    --as-radius:    11px;
    --as-radius-lg: 20px;
    --as-radius-xl: 28px;
    --as-radius-pill: 999px;

    /* Shadows */
    --as-shadow-btn-primary:
        rgba(255,255,255,0.12) 0px 1px 2px -0.5px inset,
        rgba(255,255,255,0.16) 0px 0.5px 0.5px 0px inset,
        rgba(37,99,235,0.3) 0px 8px 24px -4px inset,
        rgba(9,1,20,0.06) 0px 8px 8px -3px;

    --as-shadow-btn-dark:
        rgba(255,255,255,0.08) 0px -4px 12px -4px inset,
        rgba(255,255,255,0.06) 0px 1px 3px 0px inset,
        rgba(9,1,20,0.08) 0px 8px 8px -3px;

    --as-shadow-card:
        0 1px 0 rgba(255,255,255,0.05) inset,
        0 0 0 1px rgba(255,255,255,0.06);

    --as-shadow-glow: 0 0 80px -20px var(--as-accent-glow);

    /* Max width */
    --as-max-w: 1128px;
    --as-max-w-narrow: 720px;
}

/* ---------------------------------------------------------
   RESET & BASE
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--as-bg);
    color: var(--as-text);
    font-family: var(--font-body);
    font-size: var(--as-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------------------------------------------------------
   LAYOUT HELPERS
--------------------------------------------------------- */
.as-container {
    width: 100%;
    max-width: var(--as-max-w);
    margin-inline: auto;
    padding-inline: 24px;
}

.as-container--narrow {
    max-width: var(--as-max-w-narrow);
}

.as-section-pad { padding-block: 80px; }

@media (min-width: 768px) {
    .as-section-pad { padding-block: 120px; }
}

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */
.as-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: var(--as-xs);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--as-text-label);
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-pill);
    padding: 4px 12px;
}

.as-eyebrow--icon { color: var(--as-accent-bright); }

.as-title-gradient {
    background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.as-title-gradient--blue {
    background: linear-gradient(135deg, #93C5FD 0%, #2563EB 60%, #1D4ED8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1, .as-h1 {
    font-family: var(--font-heading);
    font-size: var(--as-h1);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h2, .as-h2 {
    font-family: var(--font-heading);
    font-size: var(--as-h2);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--as-text-bright);
}

h3, .as-h3 {
    font-family: var(--font-heading);
    font-size: var(--as-h3);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--as-text-bright);
}

.as-body-large {
    font-size: 18px;
    line-height: 1.65;
    color: var(--as-text-muted);
}

.as-text-muted { color: var(--as-text-muted); }
.as-text-ghost { color: var(--as-text-ghost); }
.as-text-bright { color: var(--as-text-bright); }
.as-text-center { text-align: center; }

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.as-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: var(--as-radius-pill);
    padding: 9px 20px;
    white-space: nowrap;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.as-btn:active { transform: translateY(1px); }

.as-btn-primary {
    background: var(--as-accent);
    color: #fff;
    box-shadow: var(--as-shadow-btn-primary);
}
.as-btn-primary:hover {
    background: var(--as-accent-bright);
    box-shadow: var(--as-shadow-btn-primary), 0 0 24px rgba(37,99,235,0.4);
    color: #fff;
}

.as-btn-dark {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid var(--as-border);
    box-shadow: var(--as-shadow-btn-dark);
}
.as-btn-dark:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.as-btn-ghost {
    color: var(--as-text-muted);
    background: transparent;
}
.as-btn-ghost:hover { color: var(--as-text-bright); }

.as-btn-lg {
    font-size: 15px;
    padding: 13px 28px;
}

.as-btn-full { width: 100%; justify-content: center; }

.as-btn svg { flex-shrink: 0; }

/* ---------------------------------------------------------
   HEADER / NAV
--------------------------------------------------------- */
.as-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 16px;
    pointer-events: none;
}

.as-header {
    max-width: var(--as-max-w);
    margin-inline: auto;
    background: rgba(5,7,20,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-pill);
    padding: 10px 20px;
    pointer-events: all;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.as-header.scrolled {
    background: rgba(5,7,20,0.92);
    box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.as-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.as-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.as-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    overflow: hidden;
    flex-shrink: 0;
}

.as-logo-text {
    display: flex;
    align-items: baseline;
    gap: 1px;
    line-height: 1;
}

.as-logo-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--as-text-bright);
    letter-spacing: -0.02em;
}

.as-logo-tld {
    font-size: 11px;
    font-weight: 500;
    color: var(--as-accent-bright);
    letter-spacing: 0;
}

/* Primary Nav */
.as-nav {
    display: none;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) { .as-nav { display: flex; } }

.as-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    padding: 6px 14px;
    border-radius: var(--as-radius-pill);
    transition: all 0.15s ease;
}

.as-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
}

/* Header Actions */
.as-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

#nav-login {
    display: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px;
}
@media (min-width: 768px) { #nav-login { display: inline-flex; } }
#nav-cta { display: none; }
@media (min-width: 768px) { #nav-cta { display: inline-flex; } }

/* Hamburger */
.as-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.15s;
}
.as-hamburger:hover { background: rgba(255,255,255,0.08); }
.as-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.as-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.as-hamburger.open span:nth-child(2) { opacity: 0; }
.as-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 768px) { .as-hamburger { display: none; } }

/* Mobile Menu */
.as-mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5,7,20,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 24px;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

.as-mobile-menu.open {
    transform: translateY(0);
    pointer-events: all;
}

.as-mobile-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    padding: 10px 0;
    transition: color 0.15s;
}
.as-mobile-link:hover { color: #fff; }

.as-mobile-actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

/* ---------------------------------------------------------
   PAGE BACKGROUND GLOW EFFECT (ToDesktop-style)
--------------------------------------------------------- */
.as-page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.as-page-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center,
        rgba(37,99,235,0.18) 0%,
        rgba(37,99,235,0.06) 40%,
        transparent 70%);
    border-radius: 50%;
}

.as-page-bg::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 20%;
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(16,185,129,0.07) 0%,
        transparent 60%);
    border-radius: 50%;
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.as-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 768px) {
    .as-hero { padding-top: 200px; padding-bottom: 140px; }
}

/* Orbital ring animation (ToDesktop electron-orbit style) */
.as-hero-orbit {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
}

.as-hero-orbit-ring {
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(37,99,235,0.4);
    border-radius: 50%;
    animation: orbit-pulse 3s ease-in-out infinite;
}

.as-hero-orbit-ring:nth-child(2) {
    inset: -10px;
    border-color: rgba(37,99,235,0.2);
    animation-delay: -1s;
}

.as-hero-orbit-ring:nth-child(3) {
    inset: -22px;
    border-color: rgba(37,99,235,0.1);
    animation-delay: -2s;
}

.as-hero-orbit-dot {
    position: absolute;
    inset: 50%;
    transform: translate(-50%,-50%);
    width: 8px;
    height: 8px;
    background: var(--as-accent);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--as-accent), 0 0 32px var(--as-accent-glow);
}

@keyframes orbit-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.6; }
}

.as-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--as-text-label);
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-pill);
    padding: 5px 14px 5px 10px;
    margin-bottom: 28px;
}

.as-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--as-success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--as-success);
}

.as-hero h1 {
    margin-bottom: 24px;
    max-width: 900px;
    margin-inline: auto;
}

.as-hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--as-text-muted);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 40px;
    line-height: 1.65;
}

.as-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 64px;
}

/* CTA wrapper decoration (button-frame style from ToDesktop) */
.as-hero-actions-wrap {
    position: relative;
}

.as-hero-actions-wrap::before,
.as-hero-actions-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.3));
}
.as-hero-actions-wrap::before { right: calc(100% + 20px); }
.as-hero-actions-wrap::after {
    left: calc(100% + 20px);
    transform: scaleX(-1);
}

/* Hero Trust Bar */
.as-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 24px;
    font-size: 13px;
    color: var(--as-text-ghost);
    margin-bottom: 64px;
}

.as-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.as-hero-trust-item svg { color: var(--as-success); flex-shrink: 0; }

/* Hero Dashboard Preview */
.as-hero-preview {
    position: relative;
    max-width: 960px;
    margin-inline: auto;
}

.as-hero-preview-frame {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-xl);
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 40px 80px -20px rgba(0,0,0,0.6),
        var(--as-shadow-glow);
    overflow: hidden;
}

.as-hero-preview-inner {
    background: #0C0F22;
    border-radius: 18px;
    overflow: hidden;
    min-height: 480px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Fake app header */
.as-app-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--as-border);
}

.as-app-topbar-dots {
    display: flex;
    gap: 6px;
}

.as-app-topbar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.as-app-topbar-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    font-family: var(--font-body);
}

/* Dashboard panels */
.as-app-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 440px;
}

@media (max-width: 600px) {
    .as-app-body { grid-template-columns: 1fr; }
}

.as-app-sidebar {
    border-right: 1px solid var(--as-border);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.as-app-sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    transition: background 0.15s;
    cursor: pointer;
}

.as-app-sidebar-item:hover { background: rgba(255,255,255,0.06); }

.as-app-sidebar-item.active {
    background: rgba(37,99,235,0.15);
    color: #93C5FD;
}

.as-app-sidebar-check {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--as-success);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.as-app-main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.as-app-score-card {
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.25);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.as-app-score-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #93C5FD;
    line-height: 1;
    letter-spacing: -0.03em;
}

.as-app-score-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.as-app-score-grade {
    background: var(--as-success);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    padding: 8px 18px;
    border-radius: 8px;
    letter-spacing: -0.02em;
}

.as-app-findings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 600px) { .as-app-findings { grid-template-columns: 1fr; } }

.as-app-finding {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--as-border);
    border-radius: 10px;
    padding: 14px;
}

.as-app-finding-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.as-badge-pass { background: rgba(16,185,129,0.15); color: #34D399; }
.as-badge-warn { background: rgba(245,158,11,0.15); color: #FBBF24; }
.as-badge-fail { background: rgba(239,68,68,0.15); color: #F87171; }

.as-app-finding-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.as-app-finding-text {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ---------------------------------------------------------
   SOCIAL PROOF / LOGO BAR
--------------------------------------------------------- */
.as-social-proof {
    padding-block: 56px;
    border-top: 1px solid var(--as-border);
    border-bottom: 1px solid var(--as-border);
    text-align: center;
}

.as-social-proof p {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--as-text-ghost);
    margin-bottom: 28px;
}

.as-logo-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 32px;
}

.as-logo-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-pill);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: all 0.2s ease;
}

.as-logo-pill:hover {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
}

.as-logo-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   SECTION HEADER (reusable)
--------------------------------------------------------- */
.as-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.as-section-header .as-eyebrow { margin-bottom: 16px; }
.as-section-header h2 { margin-bottom: 16px; }
.as-section-header p {
    font-size: 18px;
    color: var(--as-text-muted);
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.65;
}

/* ---------------------------------------------------------
   FEATURES GRID
--------------------------------------------------------- */
.as-features { padding-block: 100px; }

.as-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .as-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .as-features-grid { grid-template-columns: repeat(2, 1fr); max-width: 960px; margin-inline: auto; }
}

.as-feature-card {
    background: var(--as-bg-card);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-xl);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--as-shadow-card);
    display: flex;
    flex-direction: column;
}

.as-feature-card:hover {
    background: var(--as-bg-card-hover);
    border-color: var(--as-border-strong);
    transform: translateY(-3px);
    box-shadow: var(--as-shadow-card), 0 20px 40px rgba(0,0,0,0.3);
}

.as-feature-card-visual {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--as-border);
}

/* Feature visual — AI scan animation */
.as-feature-visual-scan {
    position: relative;
    width: 240px;
    height: 160px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--as-border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 11px;
    font-family: var(--font-body);
}

.as-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.8), rgba(37,99,235,0.4), transparent);
    animation: scan-move 2.5s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(37,99,235,0.5);
}

@keyframes scan-move {
    0% { top: 0; opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.as-scan-text-line {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    margin: 12px 16px 0;
}
.as-scan-text-line:nth-child(2) { width: 70%; }
.as-scan-text-line:nth-child(3) { width: 90%; margin-top: 8px; }
.as-scan-text-line:nth-child(4) { width: 50%; margin-top: 8px; }
.as-scan-text-line:nth-child(5) { width: 80%; margin-top: 8px; }

/* Feature visual — Score ring */
.as-feature-visual-score {
    position: relative;
    width: 120px;
    height: 120px;
}

.as-score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--as-accent) 0deg 324deg, rgba(255,255,255,0.08) 324deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.as-score-ring::before {
    content: '';
    position: absolute;
    inset: 12px;
    background: #0C0F22;
    border-radius: 50%;
}

.as-score-ring-val {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

/* Feature visual — Checklist */
.as-feature-visual-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 220px;
}

.as-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--as-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.as-check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--as-success);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 10px;
}

.as-check-icon.warn { background: var(--as-warning); }
.as-check-icon.fail { background: var(--as-danger); }

/* Feature visual — Pipeline */
.as-feature-visual-pipe {
    display: flex;
    align-items: center;
    gap: 8px;
}

.as-pipe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.as-pipe-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--as-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--as-accent-bright);
    font-size: 18px;
}

.as-pipe-step-icon.active {
    background: rgba(37,99,235,0.15);
    border-color: rgba(37,99,235,0.4);
    box-shadow: 0 0 20px rgba(37,99,235,0.2);
}

.as-pipe-arrow {
    color: rgba(255,255,255,0.2);
    font-size: 16px;
}

.as-feature-card-body {
    padding: 28px 32px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.as-feature-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--as-text-bright);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.as-feature-card-hr {
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.as-feature-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--as-text-muted);
    flex: 1;
}

/* ---------------------------------------------------------
   HOW IT WORKS — 3-step process
--------------------------------------------------------- */
.as-hiw { padding-block: 100px; }

.as-hiw-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    max-width: 760px;
    margin-inline: auto;
    position: relative;
}

@media (min-width: 640px) {
    .as-hiw-steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
}

.as-hiw-step {
    position: relative;
    padding: 32px;
    text-align: center;
}

.as-hiw-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.35);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--as-accent-bright);
    margin-bottom: 16px;
}

.as-hiw-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--as-text-bright);
    margin-bottom: 10px;
}

.as-hiw-step p {
    font-size: 14px;
    color: var(--as-text-muted);
    line-height: 1.65;
}

/* connector lines between steps */
@media (min-width: 640px) {
    .as-hiw-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 52px;
        right: -1px;
        width: 2px;
        height: 64px;
        background: linear-gradient(to bottom, transparent, rgba(37,99,235,0.3), transparent);
    }
}

/* ---------------------------------------------------------
   DASHBOARD SCROLL SECTION
--------------------------------------------------------- */
.as-dashboard { padding-block: 80px; }

.as-dashboard-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--as-border);
    border-radius: 32px;
    padding: 14px;
    max-width: 1100px;
    margin-inline: auto;
    box-shadow: var(--as-shadow-card), 0 40px 80px rgba(0,0,0,0.4);
}

.as-dashboard-inner {
    background: #0A0D1F;
    border-radius: 22px;
    overflow: hidden;
    min-height: 540px;
    border: 1px solid var(--as-border);
}

/* Tabs navigation */
.as-dashboard-tabs {
    display: flex;
    border-bottom: 1px solid var(--as-border);
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 20px;
    gap: 0;
}

::-webkit-scrollbar { display: none; }

.as-dashboard-tab {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--as-text-ghost);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-body);
}

.as-dashboard-tab:hover { color: var(--as-text-muted); }

.as-dashboard-tab.active {
    color: var(--as-text-bright);
    border-bottom-color: var(--as-accent);
}

/* Tab panels */
.as-dashboard-panel { display: none; padding: 28px; }
.as-dashboard-panel.active { display: block; }

/* Audit report table */
.as-audit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.as-audit-table th {
    text-align: left;
    padding: 8px 14px;
    color: var(--as-text-ghost);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--as-border);
}

.as-audit-table td {
    padding: 12px 14px;
    color: var(--as-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.as-audit-table tr:last-child td { border-bottom: none; }

.as-audit-table tr:hover td { background: rgba(255,255,255,0.02); }

.as-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---------------------------------------------------------
   PRICING
--------------------------------------------------------- */
.as-pricing { padding-block: 100px; }

.as-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.as-pricing-toggle span {
    font-size: 14px;
    font-weight: 500;
    color: var(--as-text-muted);
}

.as-pricing-toggle span.active { color: var(--as-text-bright); }

.as-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--as-radius-pill);
    border: 1px solid var(--as-border);
    cursor: pointer;
    transition: background 0.2s;
}

.as-toggle-switch.on { background: var(--as-accent); }

.as-toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.as-toggle-switch.on .as-toggle-knob { transform: translateX(20px); }

.as-savings-badge {
    background: rgba(16,185,129,0.15);
    color: #34D399;
    border: 1px solid rgba(16,185,129,0.3);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.as-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 960px;
    margin-inline: auto;
}

@media (min-width: 640px) {
    .as-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .as-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.as-pricing-card {
    background: var(--as-bg-card);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-xl);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
    box-shadow: var(--as-shadow-card);
    position: relative;
}

.as-pricing-card:hover {
    border-color: var(--as-border-strong);
    transform: translateY(-4px);
    box-shadow: var(--as-shadow-card), 0 24px 48px rgba(0,0,0,0.3);
}

.as-pricing-card--featured {
    background: rgba(37,99,235,0.08);
    border-color: rgba(37,99,235,0.35);
    box-shadow: var(--as-shadow-card), 0 0 40px rgba(37,99,235,0.12);
}

.as-pricing-card--featured:hover {
    border-color: rgba(37,99,235,0.55);
    box-shadow: var(--as-shadow-card), 0 0 60px rgba(37,99,235,0.2), 0 24px 48px rgba(0,0,0,0.3);
}

.as-recommended-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--as-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--as-radius-pill);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(37,99,235,0.5);
}

.as-pricing-tier {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--as-text-ghost);
    margin-bottom: 8px;
}

.as-pricing-tagline {
    font-size: 14px;
    color: var(--as-text-muted);
    line-height: 1.55;
    margin-bottom: 24px;
}

.as-pricing-price {
    margin-bottom: 6px;
}

.as-pricing-amount {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--as-text-bright);
    letter-spacing: -0.04em;
    line-height: 1;
}

.as-pricing-period {
    font-size: 14px;
    color: var(--as-text-ghost);
    font-weight: 400;
}

.as-pricing-divider {
    width: 100%;
    height: 1px;
    background: var(--as-border);
    margin: 24px 0;
}

.as-pricing-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--as-text-ghost);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.as-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.as-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--as-text-muted);
}

.as-pricing-feature svg {
    color: var(--as-success);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---------------------------------------------------------
   FAQ ACCORDION
--------------------------------------------------------- */
.as-faq { padding-block: 100px; }

.as-faq-list {
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.as-faq-item {
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius);
    overflow: hidden;
    background: var(--as-bg-card);
    transition: border-color 0.2s;
}

.as-faq-item.open { border-color: var(--as-border-strong); }

.as-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--as-text-bright);
    gap: 16px;
    transition: background 0.15s;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}

.as-faq-question:hover { background: rgba(255,255,255,0.03); }

.as-faq-chevron {
    flex-shrink: 0;
    color: var(--as-text-ghost);
    transition: transform 0.25s ease;
}

.as-faq-item.open .as-faq-chevron { transform: rotate(180deg); color: var(--as-accent-bright); }

.as-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.as-faq-item.open .as-faq-answer { max-height: 300px; }

.as-faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--as-text-muted);
}

/* ---------------------------------------------------------
   CTA BOTTOM SECTION
--------------------------------------------------------- */
.as-cta-section {
    padding-block: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.as-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(37,99,235,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.as-cta-section .as-container { position: relative; }

.as-cta-section h2 { margin-bottom: 16px; }

.as-cta-section p {
    font-size: 18px;
    color: var(--as-text-muted);
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 36px;
}

.as-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.as-footer {
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    border-top: 1px solid var(--as-border);
}

.as-footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.4), transparent);
    pointer-events: none;
}

.as-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 640px) { .as-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .as-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.as-footer-brand { display: flex; flex-direction: column; gap: 16px; }

.as-footer-tagline {
    font-size: 14px;
    color: var(--as-text-muted);
    line-height: 1.65;
    max-width: 280px;
}

.as-footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--as-text-ghost);
}

.as-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--as-success);
    box-shadow: 0 0 8px var(--as-success);
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.as-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--as-text-bright);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.as-footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.as-footer-col a {
    font-size: 14px;
    color: var(--as-text-muted);
    transition: color 0.15s;
}

.as-footer-col a:hover { color: var(--as-text-bright); }

.as-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--as-border);
}

.as-footer-copy { font-size: 13px; color: var(--as-text-ghost); }

.as-footer-social { display: flex; gap: 12px; }

.as-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--as-border);
    color: var(--as-text-ghost);
    transition: all 0.15s;
}

.as-footer-social a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--as-text-bright);
    border-color: var(--as-border-strong);
}

/* ---------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
--------------------------------------------------------- */
.as-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.as-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.as-reveal-delay-1 { transition-delay: 0.1s; }
.as-reveal-delay-2 { transition-delay: 0.2s; }
.as-reveal-delay-3 { transition-delay: 0.3s; }
.as-reveal-delay-4 { transition-delay: 0.4s; }

/* ---------------------------------------------------------
   RESPONSIVE OVERRIDES
--------------------------------------------------------- */
@media (max-width: 767px) {
    .as-header-wrap { padding: 12px; }
    .as-hero { padding-top: 120px; padding-bottom: 60px; }
    .as-app-body { display: block; }
    .as-app-sidebar { display: none; }
}

/* ---------------------------------------------------------
   HIPAA / PRIVACY SECTION
--------------------------------------------------------- */
.as-hipaa {
    padding-block: 100px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--as-border);
    border-bottom: 1px solid var(--as-border);
    background: linear-gradient(180deg,
        rgba(16,185,129,0.04) 0%,
        transparent 60%);
}

.as-hipaa::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.4), transparent);
    pointer-events: none;
}

.as-hipaa-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}

@media (min-width: 900px) {
    .as-hipaa-cols { grid-template-columns: 1fr 1fr; }
}

/* Left copy column */
.as-hipaa-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.as-hipaa-copy h2 { margin: 0; }

.as-hipaa-desc {
    font-size: 16px;
    color: var(--as-text-muted);
    line-height: 1.75;
}

.as-hipaa-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.as-hipaa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--as-radius-pill);
    border: 1px solid rgba(16,185,129,0.3);
    background: rgba(16,185,129,0.08);
    color: #34D399;
}

/* User responsibility notice */
.as-user-notice {
    background: rgba(245,158,11,0.07);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: var(--as-radius);
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.as-user-notice-icon {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.4;
}

.as-user-notice-text {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

.as-user-notice-text strong {
    color: #FBBF24;
    display: block;
    margin-bottom: 4px;
}

/* Right PHI grid column */
.as-hipaa-visual {
    background: var(--as-bg-card);
    border: 1px solid var(--as-border);
    border-radius: var(--as-radius-xl);
    padding: 28px;
    box-shadow: var(--as-shadow-card);
}

.as-phi-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--as-text-ghost);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--as-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.as-phi-header::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--as-success);
    box-shadow: 0 0 8px var(--as-success);
    flex-shrink: 0;
}

.as-phi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.as-phi-chip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: 10px;
    padding: 10px 12px;
    transition: border-color 0.2s;
}

.as-phi-chip:hover { border-color: rgba(16,185,129,0.3); }

.as-phi-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #34D399;
    font-size: 10px;
    font-weight: 700;
    margin-top: 1px;
}

.as-phi-info { display: flex; flex-direction: column; gap: 3px; }

.as-phi-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    line-height: 1.2;
}

.as-phi-redact {
    font-size: 10px;
    font-family: 'Courier New', monospace;
    color: rgba(16,185,129,0.7);
    letter-spacing: 0.02em;
}

/* ICD-10 highlight chip (eyebrow variant) */
.as-icd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    color: #FBBF24;
    letter-spacing: 0.02em;
}

/* ---------------------------------------------------------
   TRIAL BANNER
--------------------------------------------------------- */
.as-trial-banner {
    margin-bottom: 36px;
}

.as-trial-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--as-radius-lg);
    padding: 16px 24px;
}

.as-trial-icon { font-size: 22px; }

.as-trial-banner-inner > div {
    flex: 1;
    font-size: 14px;
    color: var(--as-text-muted);
}

.as-trial-banner-inner strong {
    color: #34D399;
    font-weight: 700;
}

/* ---------------------------------------------------------
   4-COLUMN PRICING GRID
--------------------------------------------------------- */
.as-pricing-grid--quad {
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .as-pricing-grid--quad { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
    .as-pricing-grid--quad { grid-template-columns: repeat(4, 1fr); }
}

/* Compact card for 4-col layout */
.as-pricing-grid--quad .as-pricing-card {
    padding: 24px 20px;
}

.as-pricing-grid--quad .as-pricing-amount {
    font-size: 36px;
}

.as-pricing-grid--quad .as-pricing-feature {
    font-size: 13px;
}

/* Overage note */
.as-overage-note {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--as-text-ghost);
}

.as-overage-note strong { color: var(--as-text-muted); }

