/* PaperPlane — Main Stylesheet
 * All original styles from paperplane_aci_website.html
 * Extracted verbatim — no changes made
 */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}


/* ── TOKENS ── */
:root {
    --dark: #080810;
    --card-bg: #0d0d18;
    --border: rgba(255, 255, 255, 0.07);
    --n-blue: #3b82f6;
    --n-green: #22c55e;
    --n-purple: #a855f7;
    --ai-green: #4ade80;
    --pill-blue-bg: #eff6ff;
    --pill-blue-fg: #1d4ed8;
    --pill-blue-bd: #bfdbfe;
    --pill-green-bg: #f0fdf4;
    --pill-green-fg: #166534;
    --pill-green-bd: #bbf7d0;
    --pill-purple-bg: #faf5ff;
    --pill-purple-fg: #6d28d9;
    --pill-purple-bd: #e9d5ff;
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* grid */
    --col: 8;
    --gap: 12px;
    --gutter: 24px;
}


body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: #fff;
    color: #111;
    line-height: 1;
    overflow-x: hidden;
    padding-top: 73px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

img,
svg,
video {
    max-width: 100%;
    height: auto
}

/* --- GLOBAL LAYOUT CONTAINERS (Bootstrap 5 actual widths) --- */
.container,
.container-sm {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }

    .container-sm {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px
    }
}

/* =============================================
   ANIMATIONS — GSAP handled, CSS fallbacks
   ============================================= */

/* GSAP will control animations via JS.
   These are fallback states only. */
.animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important
    }
}

/* Button arrow icon */
.btn-arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1)
}

/* Lucide icon rendering */
[data-lucide] {
    display: inline-block;
    vertical-align: middle
}

.ai-cap-icon svg,
.ai-how-icon svg,
.aci-tag-icon svg,
.mr-icon svg {
    display: block;
    stroke-width: 1.75
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;
    border-bottom: 0.5px solid #f0f0f0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-icon {
    height: 60px;
    width: auto;
    object-fit: contain
}

.logo-text {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #111
}

.logo-text b {
    color: #2563eb;
    font-weight: 500
}

.logo-aci {
    font-size: 10px;
    color: #6366f1;
    letter-spacing: 1.5px;
    font-weight: 500;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 5px
}

.aci-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6366f1
}

.nav-links {
    display: flex;
    gap: 28px
}

.nav-links a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #8dc73f;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1)
}

.nav-links a:hover {
    color: #8dc73f
}

.nav-links a:hover::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-ai-badge {
    background: #eef2ff;
    border: 0.5px solid #c7d2fe;
    border-radius: 99px;
    padding: 5px 12px;
    font-size: 11px;
    color: #4338ca;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px
}

.nav-ai-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4f46e5;
    animation: activePulse 2s infinite ease-in-out;
}

@keyframes activePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(79, 70, 229, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.nav-cta {
    background: #8dc73f;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease
}

.nav-cta:hover {
    background: #7ab632;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(141, 199, 63, 0.35)
}

.nav-cta:hover .btn-arrow {
    transform: translateX(3px)
}

/* HERO */
.hero {
    padding-top: 36px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
}

/* Premium Background Glow Effect */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.hero-aci-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    border: 0.5px solid #c7d2fe;
    border-radius: 99px;
    padding: 7px 16px;
    margin-bottom: 24px
}

.aci-tag-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.aci-tag-text {
    font-size: 12px;
    color: #4338ca;
    font-weight: 500;
    letter-spacing: 0.3px
}

.aci-tag-sep {
    width: 1px;
    height: 12px;
    background: #c7d2fe
}

.aci-tag-sub {
    font-size: 11px;
    color: #818cf8
}

.hero-h1 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -2.5px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 8px
}

.hero-h1 .n-blue {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2563eb;
}

.hero-h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -2.5px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 8px
}

.hero-h2 .n-green {
    background: linear-gradient(135deg, #15803d, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #16a34a;
}

.hero-h3 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -2.5px;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 28px
}

.hero-h3 .n-purple {
    background: linear-gradient(135deg, #7e22ce, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #9333ea;
}

.hero-sub {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 440px
}

.hero-sub strong {
    color: #111;
    font-weight: 500
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.btn-dark {
    background: #8dc73f;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease
}

.btn-dark:hover {
    background: #7ab632;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(141, 199, 63, 0.35)
}

.btn-dark:hover .btn-arrow {
    transform: translateX(3px)
}

.btn-outline {
    background: #fff;
    color: #8dc73f;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 9px;
    border: 1px solid #8dc73f;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease
}

.btn-outline:hover {
    border-color: #7ab632;
    color: #fff;
    background: #8dc73f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(141, 199, 63, 0.25)
}

.btn-outline:hover .btn-arrow {
    transform: translateX(3px)
}

.hero-note {
    font-size: 11px;
    color: #aaa;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center
}

.note-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ddd
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center
}

/* .hero-img-inset {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.hero-img-inset::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    border-radius: 16px;
} */

.hero-right img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* AI CAPABILITY STRIP */
.ai-strip {
    background: linear-gradient(135deg, #09090b 0%, #17173a 100%);
    position: relative;
    padding: 36px 40px;
    z-index: 1;
}

.ai-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}


.ai-strip-label {
    font-size: 10px;
    color: #6366f1;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.ai-strip-line {
    flex: 1;
    height: 0.5px;
    background: #1e1e3a
}

.ai-caps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
}

.ai-cap {
    padding: 0 24px;
    border-right: 0.5px solid #1e1e3a;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ai-cap:first-child {
    padding-left: 0
}

.ai-cap:last-child {
    border-right: none
}

.ai-cap-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #1e1e3a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px
}

.ai-cap-title {
    font-size: 13px;
    font-weight: 500;
    color: #fff
}

.ai-cap-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5
}

/* PROOF BAR */
.proof-bar {
    background: linear-gradient(135deg, #09090b 0%, #18181b 100%);
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
    padding: 36px 40px
}

.proof-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
}

.proof-item {
    text-align: center;
    padding: 0 16px;
    border-right: 0.5px solid #27272a
}

.proof-item:last-child {
    border-right: none
}

.proof-num {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 3px
}

.proof-label {
    font-size: 13px;
    color: #a1a1aa;
    line-height: 1.4
}

.proof-src {
    font-size: 10px;
    color: #52525b;
    margin-top: 6px
}

/* AI INTELLIGENCE SECTION */
.ai-section {
    padding: 34px 40px;
    background: #fafbff;
    border-top: 0.5px solid #eef2ff;
    border-bottom: 0.5px solid #eef2ff
}


.ai-section-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px
}

.ai-section-left {}

.ai-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #eef2ff;
    border: 0.5px solid #c7d2fe;
    border-radius: 99px;
    padding: 5px 14px;
    margin-bottom: 16px
}

.ai-section-tag span {
    font-size: 11px;
    color: #4338ca;
    font-weight: 500;
    letter-spacing: 0.5px
}

.ai-section-h2 {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.15;
    color: #0a0a0a;
    margin-bottom: 14px
}

.ai-section-h2 em {
    color: #6366f1;
    font-style: normal
}

.ai-section-body {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    max-width: 400px
}

.ai-section-body strong {
    color: #111;
    font-weight: 500
}

.ai-section-right {
    padding-top: 8px
}

.ai-stat-row {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ai-stat {
    background: #fff;
    border: 0.5px solid #e8edff;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.ai-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.06)
}

.ai-stat-left {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.ai-stat-num {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #4338ca
}

.ai-stat-label {
    font-size: 12px;
    color: #555
}

.ai-stat-src {
    font-size: 10px;
    color: #c7d2fe
}

.ai-stat-right {
    background: #eef2ff;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    color: #4338ca;
    font-weight: 500
}

.ai-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.ai-how-card {
    background: #fff;
    border: 0.5px solid #e8edff;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1)
}

.ai-how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.08)
}

.ai-how-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.ai-how-title {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px
}

.ai-how-body {
    font-size: 13px;
    color: #555;
    line-height: 1.65
}

.ai-how-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    background: #eef2ff;
    color: #4338ca;
    padding: 3px 10px;
    border-radius: 99px;
    font-weight: 500
}

/* NEVER SECTIONS */
.never-section {
    padding: 60px 40px;
    width: 100%;
}

.ns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ns-grid.flip {
    direction: rtl
}

.ns-grid.flip>* {
    direction: ltr
}

.ns-big-num {
    font-size: 100px;
    font-weight: 500;
    letter-spacing: -5px;
    line-height: 1;
    opacity: .05;
    margin-bottom: -20px;
    color: #111
}

.ns-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 99px
}

.k-blue {
    background: #eff6ff;
    color: #1d4ed8
}

.k-green {
    background: #f0fdf4;
    color: #166534
}

.k-purple {
    background: #faf5ff;
    color: #7e22ce
}

.ns-kicker-ai {
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 99px;
    background: rgba(99, 102, 241, .1);
    color: #4338ca;
    font-weight: 600
}

.ns-headline {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #0a0a0a
}

.nh-blue .never {
    color: #2563eb
}

.nh-green .never {
    color: #16a34a
}

.nh-purple .never {
    color: #9333ea
}

.ns-body {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 400px
}

.ns-body strong {
    color: #111;
    font-weight: 500
}

/* --- SECTION DIFFERENTIATORS --- */
#never-write {
    background: radial-gradient(circle at 100% 50%, rgba(22, 163, 74, 0.05) 0%, rgba(248, 250, 252, 1) 100%);
    border-top: 0.5px solid #e2e8f0;
    border-bottom: 0.5px solid #e2e8f0;
}

#never-stop {
    background: linear-gradient(135deg, #09090b 0%, #151025 100%);
    position: relative;
    overflow: hidden;
}

#never-stop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    z-index: 0;
}

#never-stop .ns-grid {
    position: relative;
    z-index: 1;
}

#never-stop .ns-headline {
    color: #fff;
}

#never-stop .ns-big-num {
    color: #fff;
    opacity: 0.05;
}

#never-stop .ns-body {
    color: #a1a1aa;
}

#never-stop .ns-body strong {
    color: #e4e4e7;
}

#never-stop .mock-purple {
    background: #151025;
    border-color: #3b2c58;
}

#never-stop .mock-header .mh-title {
    color: #a78bfa;
}

#never-stop .vid-box,
#never-stop .ai-listen,
#never-stop .wa-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#never-stop .vid-bar {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

#never-stop .ai-listen-text,
#never-stop .wa-msg {
    color: #f3f4f6;
}

#never-stop .wa-label {
    color: #a78bfa;
}

.ns-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px
}

.nsp {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px
}

.nsp-blue {
    background: #eff6ff;
    border: 0.5px solid #bfdbfe;
    color: #1e40af
}

.nsp-blue strong {
    color: #1d4ed8;
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1px
}

.nsp-green {
    background: #f0fdf4;
    border: 0.5px solid #bbf7d0;
    color: #14532d
}

.nsp-green strong {
    color: #166534;
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1px
}

.nsp-purple {
    background: #faf5ff;
    border: 0.5px solid #e9d5ff;
    color: #4c1d95
}

.nsp-purple strong {
    color: #7e22ce;
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1px
}

.ns-ai-box {
    background: #eef2ff;
    border: 0.5px solid #c7d2fe;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px
}

.ns-ai-label {
    font-size: 11px;
    color: #4338ca;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px
}

.ai-active-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1
}

.ns-ai-text {
    font-size: 12px;
    color: #3730a3;
    line-height: 1.5
}

.ns-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: gap 0.3s ease
}

.ns-cta:hover {
    gap: 10px;
    opacity: 0.8
}

.ns-cta:hover .btn-arrow {
    transform: translateX(4px)
}

.ns-cta-blue {
    color: #2563eb
}

.ns-cta-green {
    color: #16a34a
}

.ns-cta-purple {
    color: #9333ea
}

/* MOCKUPS */
.mock {
    background: #f8f9ff;
    border: 0.5px solid #e8edff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.25);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1)
}

.mock:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 40px 90px -20px rgba(37, 99, 235, 0.35)
}

.mock-green {
    background: #f8fdf9;
    border-color: #d1fae5;
    box-shadow: 0 30px 80px -20px rgba(22, 163, 74, 0.2)
}

.mock-green:hover {
    box-shadow: 0 40px 90px -20px rgba(22, 163, 74, 0.3)
}

.mock-purple {
    background: #fdf8ff;
    border-color: #ede9fe;
    box-shadow: 0 30px 80px -20px rgba(147, 51, 234, 0.25)
}

.mock-purple:hover {
    box-shadow: 0 40px 90px -20px rgba(147, 51, 234, 0.35)
}

.mock-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px
}

.mh-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%
}

.mh-title {
    font-size: 11px;
    color: #8899aa;
    font-weight: 500
}

.mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 0.5px solid #eef2ff;
    border-radius: 8px;
    padding: 10px 13px
}

.mock-row-g {
    border-color: #d1fae5
}

.mr-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mi-blue {
    background: #eff6ff
}

.mi-green {
    background: #f0fdf4
}

.mr-text {
    flex: 1
}

.mr-name {
    font-size: 13px;
    font-weight: 500;
    color: #111
}

.mr-sub {
    font-size: 11px;
    color: #888;
    margin-top: 1px
}

.mr-badge {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 99px;
    font-weight: 500;
    white-space: nowrap
}

.bg {
    background: #dcfce7;
    color: #166534
}

.bb {
    background: #dbeafe;
    color: #1e40af
}

.ba {
    background: #fef3c7;
    color: #92400e
}

.rx-box {
    background: #fff;
    border: 0.5px solid #d1fae5;
    border-radius: 8px;
    padding: 13px
}

.rx-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 9px;
    margin-bottom: 9px;
    border-bottom: 0.5px solid #f0f0f0
}

.rx-title {
    font-size: 13px;
    font-weight: 500;
    color: #111
}

.rx-ai {
    font-size: 11px;
    background: #dcfce7;
    color: #166534;
    padding: 3px 9px;
    border-radius: 99px
}

.rx-drug {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 0;
    border-bottom: 0.5px solid #f8f8f8;
    color: #555
}

.rx-drug span {
    font-weight: 500;
    color: #111
}

.rx-foot {
    font-size: 11px;
    color: #888;
    margin-top: 7px;
    display: flex;
    justify-content: space-between
}

.wa-box {
    background: #dcfce7;
    border-radius: 8px;
    padding: 10px 13px
}

.wa-label {
    font-size: 10px;
    color: #166534;
    font-weight: 500;
    margin-bottom: 2px
}

.wa-msg {
    font-size: 12px;
    color: #14532d;
    line-height: 1.5
}

.wa-time {
    font-size: 10px;
    color: #16a34a;
    margin-top: 2px
}

.vid-box {
    background: #e0e7ff;
    border-radius: 8px;
    overflow: hidden
}

.vid-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding: 3px;
    background: #c7d2fe
}

.vid-face {
    border-radius: 5px;
    height: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500
}

.vf-doc {
    background: #4f46e5;
    color: #fff
}

.vf-pat {
    background: #818cf8;
    color: #e0e7ff
}

.vid-bar {
    background: #fff;
    padding: 7px 11px;
    display: flex;
    gap: 7px;
    align-items: center;
    border-top: 0.5px solid #e0e7ff
}

.vcp {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 99px;
    font-weight: 500
}

.vcp-live {
    background: #fef3c7;
    color: #92400e
}

.vcp-ai {
    background: #eef2ff;
    color: #4338ca
}

.ai-listen {
    background: #faf5ff;
    border: 0.5px solid #e9d5ff;
    border-radius: 8px;
    padding: 10px 13px
}

.ai-listen-label {
    font-size: 10px;
    color: #7e22ce;
    font-weight: 500;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 4px
}

.ai-listen-text {
    font-size: 12px;
    color: #4c1d95;
    line-height: 1.5
}

.divider-full {
    height: 0.5px;
    background: #f4f4f4
}

/* PAIN */
.pain-section {
    background: #fafafa;
    padding: 60px 40px;
    border-top: 0.5px solid #f0f0f0
}


.pain-header {
    text-align: center;
    margin-bottom: 44px
}

.pain-tag {
    display: inline-block;
    background: #fff1f2;
    border: 0.5px solid #fda4af;
    border-radius: 99px;
    padding: 5px 14px;
    font-size: 11px;
    color: #e11d48;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.08)
}

.pain-h2 {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -2px;
    color: #0a0a0a;
    margin-bottom: 8px
}

.pain-sub {
    font-size: 14px;
    color: #666;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.pc {
    background: #fff;
    border: 0.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1)
}

.pc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.12)
}

.pc-num {
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -2px;
    color: #dc2626;
    margin-bottom: 8px
}

.pc-head {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 7px
}

.pc-body {
    font-size: 13px;
    color: #555;
    line-height: 1.6
}

.pc-src {
    font-size: 10px;
    color: #bbb;
    margin-top: 8px
}

/* FUTURE SECTION — INVESTOR */
.future-section {
    background: #0f0f23;
    padding: 60px 40px
}


.future-top {
    text-align: center;
    margin-bottom: 56px
}

.future-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, .15);
    border: 0.5px solid rgba(99, 102, 241, .3);
    border-radius: 99px;
    padding: 7px 18px;
    margin-bottom: 20px
}

.future-kicker span {
    font-size: 11px;
    color: #818cf8;
    font-weight: 600;
    letter-spacing: 1px
}

.future-h2 {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px
}

.future-h2 em {
    color: #818cf8;
    font-style: normal
}

.future-sub {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.fg {
    background: #161630;
    border: 0.5px solid #1e1e3a;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease
}

.fg:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1)
}

.fg-num {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 6px;
    color: #818cf8
}

.fg-label {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5
}

.fg-src {
    font-size: 10px;
    color: #374151;
    margin-top: 6px
}

.future-thesis {
    background: #161630;
    border: 0.5px solid #1e1e3a;
    border-radius: 14px;
    padding: 32px
}

.ft-title {
    font-size: 13px;
    color: #6366f1;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.ft-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.ft-row {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.ft-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6366f1;
    margin-top: 4px;
    flex-shrink: 0
}

.ft-text {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6
}

.ft-text strong {
    color: #e5e7eb;
    font-weight: 500
}

/* HOW */
.how-section {
    padding: 60px 40px;
    text-align: center
}

.how-h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1.5px;
    color: #0a0a0a;
    margin-bottom: 8px
}

.how-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 44px;
    line-height: 1.6
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left
}

.step {
    padding: 22px;
    background: #fafafa;
    border-radius: 12px;
    border: 0.5px solid #f0f0f0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1)
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04)
}

.step-n {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #8dc73f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 14px
}

.step-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 7px;
    color: #111
}

.step-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6
}

.step-ai {
    font-size: 11px;
    background: #eef2ff;
    color: #4338ca;
    padding: 3px 10px;
    border-radius: 99px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 500
}

/* TESTI */
.testi-section {
    padding: 60px 40px;
    background: #fafafa;
    border-top: 0.5px solid #f0f0f0
}


.testi-label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px
}

.testi-h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    color: #0a0a0a
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.tc {
    background: #fff;
    border: 0.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1)
}

.tc:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08)
}

.tc-quote {
    font-size: 14px;
    color: #111;
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic
}

.tc-author {
    font-size: 13px;
    font-weight: 500;
    color: #111
}

.tc-role {
    font-size: 12px;
    color: #888;
    margin-top: 2px
}

.tc-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap
}

.tc-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 99px;
    font-weight: 500
}

/* CTA */
.cta-section {
    padding: 60px 40px;
    text-align: center
}

.cta-aci {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    border: 0.5px solid #c7d2fe;
    border-radius: 99px;
    padding: 7px 18px;
    margin-bottom: 28px
}

.cta-aci span {
    font-size: 12px;
    color: #4338ca;
    font-weight: 500
}

.cta-nevers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.cn {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -0.8px
}

.cn-b {
    color: #2563eb
}

.cn-g {
    color: #16a34a
}

.cn-p {
    color: #9333ea
}

.cta-h2 {
    font-size: 42px;
    font-weight: 600;
    /* letter-spacing: -2px; */
    color: #0a0a0a;
    margin-bottom: 12px
}

.cta-sub {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px
}

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

.cta-note {
    font-size: 11px;
    color: #aaa;
    margin-top: 16px
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    padding: 36px 40px
}


.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 0.5px solid #1f2937
}

.footer-brand {}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px
}

.fl-text {
    font-size: 17px;
    font-weight: 500;
    color: #fff
}

.fl-text b {
    color: #60a5fa;
    font-weight: 500
}

.footer-aci {
    font-size: 10px;
    color: #6366f1;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 2px;
    padding-left: 44px
}

.footer-nevers {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.fn {
    font-size: 12px;
    color: #6b7280
}

.fn b {
    font-weight: 500
}

.fn-b b {
    color: #60a5fa
}

.fn-g b {
    color: #4ade80
}

.fn-p b {
    color: #c084fc
}

.footer-bottom {
    font-size: 11px;
    color: #374151;
    line-height: 1.7
}

/* MOBILE MENU STYLES */
.mobile-menu {
    position: fixed;
    top: 73px;
    /* Header offset */
    left: 0;
    width: 100%;
    height: calc(100vh - 73px);
    background: #fff;
    z-index: 9998;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0px;
}

.mobile-link {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {

    /* NAV */
    .nav {
        padding: 14px 24px
    }

    .nav-links {
        gap: 18px
    }

    .nav-links a {
        font-size: 12px
    }

    .nav-ai-badge {
        display: none
    }

    /* HERO */
    .hero {
        padding: 56px 24px 48px;
        grid-template-columns: 1fr;
        gap: 36px
    }

    .hero-h1,
    .hero-h2,
    .hero-h3 {
        font-size: 40px
    }

    .hero-right img {
        width: 100%;
        max-width: 380px;
        height: auto
    }

    /* AI STRIP */
    .ai-strip {
        padding: 24px
    }

    .ai-caps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .ai-cap {
        padding: 12px 0;
        border-right: none;
        border-bottom: 0.5px solid #1e1e3a
    }

    .ai-cap:nth-child(2) {
        border-right: none
    }

    .ai-cap:nth-child(3),
    .ai-cap:nth-child(4) {
        border-bottom: none
    }

    /* PROOF BAR */
    .proof-bar {
        padding: 24px
    }

    .proof-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .proof-item {
        border-right: none;
        border-bottom: 0.5px solid #e8e8e8;
        padding: 12px 0
    }

    .proof-item:nth-child(2) {
        border-right: none
    }

    .proof-item:nth-child(3),
    .proof-item:last-child {
        border-bottom: none
    }

    /* AI SECTION */
    .ai-section {
        padding: 56px 24px
    }

    .ai-section-top {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .ai-how-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .ai-how-card:last-child {
        grid-column: 1 / -1
    }

    /* NEVER SECTIONS */
    .never-section {
        padding: 56px 24px
    }

    .ns-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .ns-grid.flip {
        direction: ltr
    }

    .ns-headline {
        font-size: 32px
    }

    .ns-body {
        max-width: 100%
    }

    /* PAIN */
    .pain-section {
        padding: 48px 24px
    }

    .pain-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .pain-cards .pc:last-child {
        grid-column: 1 / -1
    }

    /* FUTURE */
    .future-section {
        padding: 56px 24px
    }

    .future-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .future-h2 {
        font-size: 30px
    }

    .ft-rows {
        grid-template-columns: 1fr;
        gap: 16px
    }

    /* HOW */
    .how-section {
        padding: 48px 24px
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .steps .step:last-child {
        grid-column: 1 / -1
    }

    /* TESTI */
    .testi-section {
        padding: 48px 24px
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    /* CTA */
    .cta-section {
        padding: 56px 24px
    }

    .cn {
        font-size: 28px
    }

    .cta-h2 {
        font-size: 28px
    }

    /* FOOTER */
    .footer {
        padding: 28px 24px
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max-width: 760px)
   ============================================= */
@media (max-width: 760px) {

    body {
        padding-top: 20px;
    }

    /* NAV */
    .nav {
        padding: 12px 16px
    }

    .nav-links {
        display: none
    }

    .logo-icon {
        height: 44px
    }

    .nav-right {
        display: flex;
        align-items: center;
    }

    .mobile-toggle {
        display: block !important;
        margin-left: 12px;
    }

    .nav-cta {
        font-size: 12px;
        padding: 8px 16px
    }

    /* HERO */
    .hero {
        padding: 40px 16px 36px;
        grid-template-columns: 1fr;
        gap: 32px
    }

    .hero-h1,
    .hero-h2,
    .hero-h3 {
        font-size: 32px;
        letter-spacing: -1.5px
    }

    .hero-h3 {
        margin-bottom: 20px
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 24px
    }

    .hero-aci-tag {
        padding: 5px 12px;
        margin-bottom: 18px
    }

    .aci-tag-sub {
        display: none
    }

    .aci-tag-sep {
        display: none
    }

    .btn-dark,
    .btn-outline {
        font-size: 13px;
        padding: 11px 20px;
        text-align: center;
        width: fit-content;
    }



    /* AI STRIP */
    .ai-strip {
        padding: 20px 16px
    }

    .ai-caps {
        grid-template-columns: 1fr
    }

    .ai-cap {
        padding: 14px 0;
        border-right: none;
        border-bottom: 0.5px solid #1e1e3a
    }

    .ai-cap:last-child {
        border-bottom: none
    }

    /* PROOF BAR */
    .proof-bar {
        padding: 20px 16px
    }

    .proof-inner {
        grid-template-columns: 1fr
    }

    .proof-item {
        border-right: none;
        border-bottom: 0.5px solid #e8e8e8;
        padding: 14px 0
    }

    .proof-item:last-child {
        border-bottom: none
    }

    .proof-num {
        font-size: 24px
    }

    /* AI SECTION */
    .ai-section {
        padding: 40px 16px
    }

    .ai-section-top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px
    }

    .ai-section-h2 {
        font-size: 26px;
        letter-spacing: unset;

    }

    .ai-section-body {
        max-width: 100%
    }

    .ai-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .ai-stat-num {
        font-size: 20px
    }

    .ai-how-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .ai-how-card:last-child {
        grid-column: auto
    }

    /* NEVER SECTIONS */
    .never-section {
        padding: 40px 16px
    }

    .ns-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ns-grid.flip {
        direction: ltr
    }

    .ns-big-num {
        font-size: 72px;
        margin-bottom: -14px
    }

    .ns-headline {
        font-size: 28px;
        letter-spacing: -1px
    }

    .ns-body {
        font-size: 14px;
        max-width: 100%
    }

    .ns-pills {
        gap: 8px
    }

    .nsp {
        font-size: 12px;
        padding: 8px 12px
    }

    .mock {
        border-radius: 10px
    }

    .mock-body {
        padding: 14px;
        gap: 8px
    }

    .mr-badge {
        font-size: 10px;
        padding: 2px 7px
    }

    .rx-drug {
        flex-direction: column;
        gap: 2px
    }

    .rx-foot {
        flex-direction: column;
        gap: 4px
    }

    /* PAIN */
    .pain-section {
        padding: 40px 16px
    }

    .pain-h2 {
        font-size: 24px
    }

    .pain-cards {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .pain-cards .pc:last-child {
        grid-column: auto
    }

    .pc-num {
        font-size: 30px
    }

    /* FUTURE */
    .future-section {
        padding: 40px 16px
    }

    .future-h2 {
        font-size: 24px
    }

    .future-sub {
        font-size: 14px
    }

    .future-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .fg-num {
        font-size: 28px
    }

    .future-thesis {
        padding: 20px
    }

    .ft-rows {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .ft-text {
        font-size: 13px
    }

    /* HOW */
    .how-section {
        padding: 40px 16px
    }

    .how-h2 {
        font-size: 24px
    }

    .how-sub {
        font-size: 13px;
        margin-bottom: 28px
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .steps .step:last-child {
        grid-column: auto
    }

    /* TESTI */
    .testi-section {
        padding: 40px 16px
    }

    .testi-h2 {
        font-size: 22px
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .tc-quote {
        font-size: 13px
    }

    /* CTA */
    .cta-section {
        padding: 48px 16px
    }

    .cta-nevers {
        gap: 8px;
        margin-bottom: 18px
    }

    .cn {
        font-size: 24px
    }

    .cta-h2 {
        font-size: 24px
    }

    .cta-sub {
        font-size: 13px
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }


    /* FOOTER */
    .footer {
        padding: 24px 16px
    }

    .footer-top {
        flex-direction: column;
        gap: 16px
    }

    .footer-nevers {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start
    }

    .footer-bottom {
        font-size: 10px;
        line-height: 1.8
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {

    .hero-h1,
    .hero-h2,
    .hero-h3 {
        font-size: 27px;
        letter-spacing: -1px
    }

    .ns-headline {
        font-size: 24px
    }

    .ns-big-num {
        font-size: 56px
    }

    .ai-section-h2 {
        font-size: 22px
    }

    .pain-h2,
    .future-h2,
    .how-h2,
    .testi-h2 {
        font-size: 20px;
        letter-spacing: unset;
    }

    .cn {
        font-size: 20px
    }

    .cta-h2 {
        font-size: 20px
    }

}

/* =============================================
   MODAL & MOBILE MENU OVERRIDES
   ============================================= */
.mobile-toggle {
    display: none;
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: block !important;
    }

    .nav-links,
    .nav-cta,
    .nav-ai-badge {
        display: none !important;
    }
}

.pp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.pp-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.pp-modal {
    background: #fff;
    width: 100%;
    max-width: 440px;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    margin: 16px;
}

.pp-modal-overlay.active .pp-modal {
    transform: translateY(0);
}

.pp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 4px;
}

.pp-modal h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.pp-modal p {
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pp-form-group {
    margin-bottom: 16px;
}

.pp-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.pp-form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.pp-form-group input:focus {
    border-color: #8dc73f;
}

.pp-submit-btn {
    width: 100%;
    background: #8dc73f;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.pp-submit-btn:hover {
    background: #7ab632;
}

.pp-form-msg {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
    display: none;
    padding: 8px;
    border-radius: 6px;
}

.pp-form-msg.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    display: block;
}

.pp-form-msg.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    display: block;
}


@media (max-width:768px) {
    .hero-left {
        margin-top: 40px;
    }

    .nav .container {
        padding: 0;
    }
}


/* =============================================
   PRODUCT SCREENS (PLACEHOLDERS)
   ============================================= */
.pp-product-screens-section {
    padding: 100px 0;
    background: #080810;
    /* Dark background to match the premium theme */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle glow behind the section */
.pp-product-screens-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pp-ps-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.pp-ps-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.pp-ps-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: #a0a0ab;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pp-ps-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .pp-ps-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

.pp-ps-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pp-ps-col-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--n-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-ps-col.patient .pp-ps-col-label {
    color: var(--n-green);
}

/* ── MOCKUP FRAMES ── */
.pp-mockup-frame {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Doctor Frame (Desktop) */
.pp-mockup-desktop {
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.pp-mockup-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* macOS style window buttons */
.pp-mockup-desktop::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #27c93f;
}

/* Patient Frame (Mobile) */
.pp-mockup-mobile {
    border-radius: 32px;
    aspect-ratio: 9 / 19;
    max-width: 320px;
    margin: 0 auto;
    border: 8px solid #1a1a24;
}

/* dynamic island / notch */
.pp-mockup-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #1a1a24;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

/* Placeholder Content */
.pp-placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pp-placeholder-content i {
    opacity: 0.5;
}

.pp-placeholder-text {
    font-size: 13px;
    max-width: 80%;
}