/* ==========================================================
   FONT SCALE UPDATE
   All explicit font-size values increased by 30%.
   Layout dimensions, padding, gaps and widths remain unchanged.
========================================================== */

:root {
    --bg: #05070c;
    --bg2: #0a0d17;
    --panel: rgba(255,255,255,.055);
    --line: rgba(255,255,255,.12);
    --text: #f7f8ff;
    --muted: #aeb5c8;
    --green: #35d20a;
    --green-dark: #166b00;
    --blue: #1676ff;
    --purple: #8c24ff;
    --pink: #e500b6;
    --red: #ff2b21;
    --orange: #ff7a00;
    --outer-w: 86px;
    --rail-w: 106px;
    --brand-zone: calc(var(--outer-w) + var(--rail-w));
    --shadow: 0 30px 90px rgba(0,0,0,.42);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    font-family: "HP Simplified","HP Simplified Light","Arial Narrow",Arial,sans-serif;
    background: radial-gradient(circle at 17% 9%, rgba(50,210,10,.12), transparent 24%), radial-gradient(circle at 82% 17%, rgba(116,43,255,.20), transparent 30%), radial-gradient(circle at 72% 66%, rgba(255,34,30,.08), transparent 24%), linear-gradient(180deg,#05070c 0%,#080a12 46%,#05070b 100%);
}

    body:before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        opacity: .21;
        background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
        background-size: 44px 44px;
        mask-image: linear-gradient(to bottom,black,transparent 82%);
    }

a {
    color: inherit;
    text-decoration: none
}

/* ------------------------------------------------------------------
   PERMANENT LEFT BRAND ZONE
   dark graphite strip + green strip run through the entire page
------------------------------------------------------------------ */
.side-gutter {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--outer-w);
    z-index: 0;
    background: #45413f;
}

.brand-rail {
    position: absolute;
    left: var(--outer-w);
    top: 0;
    bottom: 0;
    width: var(--rail-w);
    z-index: 1;
    overflow: hidden;
    background: #071009;
    border-right: 1px solid rgba(104,255,44,.20);
    box-shadow: 28px 0 90px rgba(30,180,0,.09);
}

    .brand-rail:before {
        content: "";
        position: absolute;
        inset: 0;
        transform: scaleY(0);
        transform-origin: top;
        animation: railFill 1.65s cubic-bezier(.2,.75,.22,1) .12s forwards;
        background: linear-gradient(180deg,#146700 0%,#1e8d00 25%,#29b800 63%,#38d50c 100%);
    }

    .brand-rail:after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .16;
        background: radial-gradient(circle at 24% 8%,rgba(255,255,255,.35),transparent 13%), linear-gradient(90deg,transparent 72%,rgba(255,255,255,.14));
    }

@keyframes railFill {
    to {
        transform: scaleY(1)
    }
}

@media(prefers-reduced-motion:reduce) {
    .brand-rail:before {
        animation: none;
        transform: none
    }
}

/* logo/image at absolute top of green rail */
.rail-top-brand {
    position: absolute;
    left: var(--outer-w);
    top: 0;
    width: var(--rail-w);
    z-index: 6;
    pointer-events: none;
}

    .rail-top-brand img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        object-fit: contain;
    }

/* HERO OFFER ACROSS THE FULL LEFT BRAND ZONE */
.hero-side-offer {
    position: absolute;
    left: 12px;
    top: 470px;
    z-index: 7;
    width: calc(var(--brand-zone) - 24px);
    padding: 0 4px;
    pointer-events: none;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 8px 24px rgba(0,0,0,.28);
}

    .hero-side-offer .offer-label {
        display: block;
        font-size: 36.4px;
        line-height: .92;
        font-weight: 800;
        letter-spacing: -.035em;
    }

    .hero-side-offer strong {
        display: block;
        margin-top: 5px;
        font-size: 70.2px;
        line-height: .82;
        font-weight: 800;
        letter-spacing: -.055em;
        color: #fff;
    }

    .hero-side-offer small {
        display: block;
        margin-top: 11px;
        font-size: 11.7px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: .17em;
        color: rgba(255,255,255,.82);
    }

/* section labels deliberately span the graphite + green zone */
section.block, .hero {
    position: relative
}

.rail-section-label {
    position: absolute;
    z-index: 7;
    left: 12px;
    top: 50%;
    width: calc(var(--brand-zone) - 24px);
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
}

    .rail-section-label small {
        display: none
    }

    .rail-section-label strong {
        display: block;
        font-size: 41.6px;
        line-height: .90;
        letter-spacing: -.05em;
        font-weight: 800;
        text-transform: uppercase;
        white-space: normal;
        text-shadow: 0 8px 24px rgba(0,0,0,.22);
    }

        .rail-section-label strong span {
            display: inline;
            color: #fff;
            font-weight: 800;
        }

    .rail-section-label:after {
        content: "";
        display: block;
        width: 32px;
        height: 2px;
        margin-top: 12px;
        background: #fff;
        opacity: .86;
    }

/* page content begins after the permanent brand zone */
.container {
    width: min(1180px,calc(100% - var(--brand-zone) - 52px));
    margin-left: calc(var(--brand-zone) + 18px);
    margin-right: auto;
}

main, footer, .nav-wrap {
    position: relative;
    z-index: 3
}

main {
    isolation: isolate
}

/* ------------------------------------------------------------------
   NAVIGATION
------------------------------------------------------------------ */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: #080b14;
    border-radius: 17px;
    box-shadow: 0 14px 34px rgba(0,0,0,.26);
}

.brand {
    display: flex;
    align-items: center;
    min-width: 245px
}

.brand-logo {
    display: block;
    width: 205px;
    height: 44px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
}

.nav-links {
    display: flex;
    gap: 16px;
    font-size: 15.6px;
    color: #dce0ef;
    align-items: center
}

    .nav-links a {
        opacity: .80;
        transition: .2s
    }

        .nav-links a:hover {
            opacity: 1;
            color: #fff
        }

.nav-cta {
    border: 0;
    border-radius: 12px;
    padding: 13px 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg,#169300,#47df17);
    box-shadow: 0 9px 28px rgba(66,215,10,.25);
    white-space: nowrap;
}

/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */
.hero {
    min-height: auto;
    padding: 58px 0 54px;
    overflow: hidden;
    isolation: isolate;
}

    /* DIM HIGH-TECH HERO BANNER */
    .hero:before {
        content: "";
        position: absolute;
        left: var(--brand-zone);
        right: 0;
        top: -90px;
        bottom: 0;
        pointer-events: none;
        z-index: 0;
        background: linear-gradient(90deg, rgba(4,8,10,.88) 0%, rgba(5,8,16,.76) 38%, rgba(10,7,30,.74) 72%, rgba(10,6,29,.80) 100%), linear-gradient(180deg, rgba(5,7,12,.30) 0%, rgba(5,7,12,.48) 45%, rgba(5,7,12,.95) 100%), url('background1.png') center 44% / cover no-repeat;
        filter: saturate(.78) contrast(.94);
    }

    .hero:after {
        content: "";
        position: absolute;
        left: var(--brand-zone);
        right: 0;
        bottom: -1px;
        height: 130px;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(180deg,transparent,rgba(5,7,12,.98));
    }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px,.95fr) minmax(430px,1.05fr);
    gap: 72px;
    align-items: center;
}

.hero-brand-stage {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .hero-brand-stage:before {
        content: "";
        position: absolute;
        width: 440px;
        height: 440px;
        left: -120px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
        background: radial-gradient(circle,rgba(44,210,13,.14),rgba(19,109,255,.05) 45%,transparent 72%);
        filter: blur(10px);
        pointer-events: none;
    }

.hero-brand-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%,560px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 55px rgba(0,0,0,.34));
}

.hero-message {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(66,215,10,.37);
    background: rgba(66,215,10,.075);
    border-radius: 999px;
    color: #c4fbb0;
    font-size: 15.6px;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

    .kicker:before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 18px var(--green);
    }

h1 {
    margin: 24px 0 22px;
    max-width: 720px;
    font-size: clamp(74.1px,8.45vw,120.9px);
    line-height: .88;
    letter-spacing: -.055em;
    font-weight: 800;
}

h2 {
    margin: 10px 0 0;
    font-size: clamp(49.4px,6.24vw,80.6px);
    line-height: .95;
    letter-spacing: -.045em;
    font-weight: 800;
}

/* FIRST-ATTRACTION BRAND BUILD */
.brand-sequence {
    margin: 24px 0 12px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    max-width: 760px;
    font-size: clamp(75.4px,7.15vw,111.8px);
    line-height: .84;
}

.brand-word {
    display: block;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px) scale(.97);
    filter: blur(8px);
    animation: brandWordIn .72s cubic-bezier(.2,.72,.18,1) forwards;
}

    .brand-word:nth-child(1) {
        animation-delay: .10s;
        color: #f7f8ff
    }

    .brand-word:nth-child(2) {
        animation-delay: .42s;
        background: linear-gradient(90deg,#1676ff,#8c24ff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .brand-word:nth-child(3) {
        animation-delay: .74s;
        background: linear-gradient(90deg,#e500b6,#ff2b21,#ff7a00);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .brand-word:nth-child(4) {
        animation-delay: 1.06s;
        color: #aeb5c8;
        font-weight: 430;
    }

@keyframes brandWordIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-promise {
    margin: 18px 0 18px;
    font-size: clamp(32.5px,3.25vw,50.7px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.035em;
    color: #f7f8ff;
}

    .hero-promise .promise-gradient {
        background: linear-gradient(90deg,#35d20a,#1676ff,#8c24ff,#e500b6);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero-promise small {
        display: block;
        margin-top: 8px;
        font-size: 18.2px;
        line-height: 1.5;
        font-weight: 600;
        letter-spacing: 0;
        color: var(--muted);
    }

@media(prefers-reduced-motion:reduce) {
    .brand-word {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
    }
}

.gradient-text {
    background: linear-gradient(90deg,#32d80c 0%,#1676ff 33%,#8c24ff 58%,#e500b6 78%,#ff3b22 100%);
    background-size: 180% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shift 7s linear infinite;
}

@keyframes shift {
    to {
        background-position: 180% center
    }
}

.hero-copy {
    max-width: 680px;
    color: var(--muted);
    font-size: 22.1px;
    line-height: 1.67;
    margin-top: 0
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 28px
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 800;
    border: 1px solid var(--line);
    transition: .22s;
}

.btn-primary {
    background: linear-gradient(100deg,var(--green),#149b00);
    color: #051006;
    border-color: transparent;
    box-shadow: 0 12px 34px rgba(66,215,10,.22);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        filter: brightness(1.08)
    }

.btn-secondary {
    background: rgba(255,255,255,.055)
}

    .btn-secondary:hover {
        background: rgba(255,255,255,.10)
    }

.hero-chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 27px
}

    .hero-chips span {
        font-size: 14.3px;
        color: #d5d9e8;
        border: 1px solid var(--line);
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255,255,255,.04);
    }

.price-chip {
    font-weight: 800;
    color: #fff !important;
    background: rgba(66,215,10,.13) !important
}

/* HERO VISUAL */
.visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center
}

    .visual:before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: conic-gradient(from 40deg,rgba(66,215,10,.42),rgba(22,118,255,.38),rgba(140,36,255,.55),rgba(229,0,182,.42),rgba(255,43,33,.36),rgba(66,215,10,.42));
        filter: blur(62px);
        opacity: .23;
        animation: spin 14s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.orbit {
    position: relative;
    width: min(485px,90vw);
    aspect-ratio: 1/1;
    border-radius: 47%;
    border: 1px solid rgba(255,255,255,.14);
    background: radial-gradient(circle at 35% 30%,rgba(255,255,255,.12),rgba(255,255,255,.035) 45%,rgba(255,255,255,.02) 70%);
    box-shadow: inset 0 0 90px rgba(255,255,255,.03),var(--shadow);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform: rotate(-4deg);
}

    .orbit:before, .orbit:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px dashed rgba(255,255,255,.12)
    }

    .orbit:before {
        inset: 50px
    }

    .orbit:after {
        inset: 110px
    }

.core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 175px;
    height: 175px;
    border-radius: 36px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 20px 60px rgba(0,0,0,.38);
}

    .core .ai {
        font-size: 75.4px;
        font-weight: 800;
        line-height: 1;
        background: linear-gradient(160deg,#fff,#6ce236,#3282ff,#c13cff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .core small {
        display: block;
        color: #c4cadb;
        margin-top: 7px;
        font-weight: 700;
        letter-spacing: .09em;
        text-transform: uppercase
    }

.rise {
    position: absolute;
    left: 58px;
    right: 58px;
    bottom: 64px;
    height: 112px
}

    .rise svg {
        width: 100%;
        height: 100%;
        overflow: visible;
        filter: drop-shadow(0 0 12px rgba(66,215,10,.45))
    }

.float {
    position: absolute;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.17);
    background: rgba(7,10,20,.77);
    backdrop-filter: blur(12px);
    border-radius: 13px;
    box-shadow: 0 15px 42px rgba(0,0,0,.32);
    font-size: 15.6px;
    font-weight: 800;
}

    .float b {
        display: block;
        font-size: 24.7px;
        margin-top: 3px
    }

.f1 {
    left: 13px;
    top: 84px;
    color: #9af17d
}

.f2 {
    right: 10px;
    top: 145px;
    color: #8ab7ff
}

.f3 {
    right: 32px;
    bottom: 73px;
    color: #ff8fda
}

.f4 {
    left: 20px;
    bottom: 115px;
    color: #ff9c7c
}

/* quick strip */
.strip {
    padding: 0 0 58px
}

.strip-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.028);
    border-radius: 18px;
}

.strip-card {
    padding: 16px;
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,.075);
    background: rgba(255,255,255,.028)
}

    .strip-card strong {
        display: block;
        font-size: 18.2px;
        margin-bottom: 5px
    }

    .strip-card span {
        color: var(--muted);
        font-size: 15.6px;
        line-height: 1.5
    }

/* ------------------------------------------------------------------
   GENERAL SECTIONS
------------------------------------------------------------------ */
section.block {
    padding: 78px 0 96px
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-end;
    margin-bottom: 29px
}

.eyebrow {
    color: #9da5ba;
    font-size: 14.3px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 800
}

.section-head p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
    font-size: 18.2px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.card {
    position: relative;
    padding: 22px;
    min-height: 185px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.026));
    box-shadow: 0 12px 42px rgba(0,0,0,.17);
    overflow: hidden;
}

    .card:before {
        content: "";
        position: absolute;
        inset: auto -60px -70px auto;
        width: 155px;
        height: 155px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(140,36,255,.24),transparent 70%)
    }

.icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg,rgba(66,215,10,.17),rgba(22,118,255,.12));
    border: 1px solid rgba(255,255,255,.11);
    font-size: 22.1px;
    margin-bottom: 19px
}

.card h3 {
    margin: 0 0 7px;
    font-size: 22.1px;
    font-weight: 800
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 16.25px
}


/* ------------------------------------------------------------------
   DIGITAL GROWTH MATRIX
------------------------------------------------------------------ */
.market-matrix-section {
    position: relative;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.signal-card {
    position: relative;
    min-height: 225px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 19px;
    overflow: hidden;
    background: linear-gradient(155deg,rgba(255,255,255,.075),rgba(255,255,255,.022));
    box-shadow: 0 14px 44px rgba(0,0,0,.18);
}

    .signal-card:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg,var(--green),var(--blue));
    }

    .signal-card:after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        right: -75px;
        bottom: -85px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(22,118,255,.16),transparent 68%);
        pointer-events: none;
    }

    .signal-card:nth-child(2):before {
        background: linear-gradient(90deg,var(--blue),var(--purple))
    }

    .signal-card:nth-child(3):before {
        background: linear-gradient(90deg,var(--purple),var(--pink))
    }

    .signal-card:nth-child(4):before {
        background: linear-gradient(90deg,var(--pink),var(--red))
    }

    .signal-card:nth-child(5):before {
        background: linear-gradient(90deg,var(--orange),var(--red))
    }

    .signal-card:nth-child(6):before {
        background: linear-gradient(90deg,var(--green),var(--orange))
    }

    .signal-card:nth-child(7):before {
        background: linear-gradient(90deg,var(--blue),var(--green))
    }

    .signal-card:nth-child(8):before {
        background: linear-gradient(90deg,var(--purple),var(--green))
    }

.signal-index {
    position: absolute;
    right: 18px;
    top: 18px;
    color: #737d95;
    font-size: 14.3px;
    letter-spacing: .12em;
    font-weight: 800;
}

.signal-value {
    margin: 9px 0 28px;
    font-size: 49.4px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.045em;
    background: linear-gradient(100deg,#fff,#8fe855,#4b91ff,#a74cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.signal-card h3 {
    margin: 0 0 9px;
    font-size: 23.4px;
    line-height: 1.05;
}

.signal-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16.25px;
    line-height: 1.55;
}

.signal-meta {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    color: #b9c0d2;
    background: rgba(255,255,255,.035);
    font-size: 11.7px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* ------------------------------------------------------------------
   INSIGHTS & PERSPECTIVES
------------------------------------------------------------------ */
.insights-section {
    position: relative;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.insight-card {
    position: relative;
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at 90% 5%,rgba(140,36,255,.14),transparent 35%), linear-gradient(160deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
}

    .insight-card:nth-child(1) {
        background: radial-gradient(circle at 88% 7%,rgba(66,215,10,.16),transparent 38%), linear-gradient(160deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
    }

    .insight-card:nth-child(3) {
        background: radial-gradient(circle at 90% 5%,rgba(229,0,182,.15),transparent 38%), linear-gradient(160deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
    }

.insight-tag {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(66,215,10,.24);
    border-radius: 999px;
    background: rgba(66,215,10,.07);
    color: #bdf6a7;
    font-size: 11.7px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.insight-card h3 {
    margin: 28px 0 11px;
    font-size: 27.3px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.insight-card p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 16.25px;
    line-height: 1.58;
}

.insight-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15.6px;
    font-weight: 800;
}

    .insight-link span {
        color: var(--green);
    }

    .insight-link:hover {
        color: #bff7aa;
    }


/* ANALYSIS MATRIX */
.matrix-shell {
    position: relative;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.13);
    background: linear-gradient(145deg,rgba(255,255,255,.058),rgba(255,255,255,.022));
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    overflow: hidden;
}

    .matrix-shell:after {
        content: "";
        position: absolute;
        width: 410px;
        height: 410px;
        border-radius: 50%;
        right: -160px;
        top: -190px;
        background: radial-gradient(circle,rgba(66,215,10,.14),rgba(22,118,255,.075) 48%,transparent 72%);
        pointer-events: none
    }

.matrix-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 21px
}

.matrix-note {
    font-size: 14.3px;
    color: #8f97ab;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 11px;
    background: rgba(255,255,255,.03);
    white-space: nowrap
}

.matrix-title {
    font-size: 27.3px;
    font-weight: 800;
    margin-top: 7px
}

.matrix-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr;
    gap: 17px;
    position: relative;
    z-index: 1
}

.matrix-table {
    display: grid;
    gap: 8px
}

.matrix-head, .matrix-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(4,.68fr);
    gap: 7px;
    align-items: center
}

.matrix-head {
    font-size: 11.7px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #858da3;
    padding: 0 11px 4px
}

.matrix-row {
    padding: 10px 11px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    background: rgba(255,255,255,.025)
}

.matrix-label {
    font-size: 15.6px;
    font-weight: 800;
    color: #e7eaf4
}

.matrix-cell {
    height: 27px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.025);
    position: relative;
    overflow: hidden
}

    .matrix-cell.active.low {
        background: rgba(255,43,33,.19);
        border-color: rgba(255,43,33,.38)
    }

    .matrix-cell.active.mid {
        background: rgba(255,122,0,.18);
        border-color: rgba(255,122,0,.4)
    }

    .matrix-cell.active.good {
        background: rgba(22,118,255,.20);
        border-color: rgba(22,118,255,.42)
    }

    .matrix-cell.active.high {
        background: rgba(66,215,10,.20);
        border-color: rgba(66,215,10,.42)
    }

    .matrix-cell.active:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
        transform: translateX(-120%);
        animation: matrixSweep 4.8s ease-in-out infinite
    }

@keyframes matrixSweep {
    0%,60% {
        transform: translateX(-120%)
    }

    85%,100% {
        transform: translateX(120%)
    }
}

.matrix-summary {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 11px
}

.score-card {
    padding: 20px;
    border: 1px solid rgba(66,215,10,.22);
    border-radius: 17px;
    background: rgba(66,215,10,.05)
}

    .score-card small {
        color: #9da5ba;
        text-transform: uppercase;
        letter-spacing: .11em;
        font-size: 11.7px;
        font-weight: 800
    }

    .score-card strong {
        display: block;
        font-size: 65px;
        line-height: 1;
        margin: 7px 0 5px;
        letter-spacing: -.05em
    }

    .score-card span {
        font-size: 14.3px;
        color: #b7bed0
    }

    .score-card .score-out-of {
        font-size: 24.7px;
        color: #8992a7
    }

.opportunity-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255,255,255,.03)
}

    .opportunity-card h3 {
        margin: 0 0 14px;
        font-size: 20.8px
    }

.meter {
    margin: 12px 0
}

.meter-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #aeb5c8;
    margin-bottom: 6px
}

.meter-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    overflow: hidden
}

.meter-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,var(--green),var(--blue),var(--purple));
    transform-origin: left;
    animation: meterIn 1.2s ease both
}

.m1 {
    width: 82%
}

.m2 {
    width: 64%
}

.m3 {
    width: 91%
}

@keyframes meterIn {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

/* AI FLOW */
.flow {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 11px;
    align-items: stretch
}

    .flow .step {
        padding: 20px 14px;
        border-radius: 16px;
        background: rgba(255,255,255,.037);
        border: 1px solid var(--line);
        min-height: 170px
    }

.step .num {
    font-size: 14.3px;
    color: #8f97ab
}

.step b {
    display: block;
    font-size: 20.8px;
    margin: 24px 0 8px
}

.step p {
    font-size: 15.6px;
    color: var(--muted);
    line-height: 1.48;
    margin: 0
}

.step:nth-child(1) {
    box-shadow: inset 0 3px 0 var(--green)
}

.step:nth-child(2) {
    box-shadow: inset 0 3px 0 var(--blue)
}

.step:nth-child(3) {
    box-shadow: inset 0 3px 0 var(--purple)
}

.step:nth-child(4) {
    box-shadow: inset 0 3px 0 var(--pink)
}

.step:nth-child(5) {
    box-shadow: inset 0 3px 0 var(--orange)
}

.step:nth-child(6) {
    box-shadow: inset 0 3px 0 #8fe855
}

/* PACKAGES */
.packages {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.package {
    padding: 23px;
    border-radius: 19px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden
}

    .package.popular {
        border-color: rgba(140,36,255,.62);
        box-shadow: 0 18px 65px rgba(140,36,255,.16)
    }

        .package.popular:before {
            content: "POPULAR";
            position: absolute;
            top: 13px;
            right: -33px;
            transform: rotate(40deg);
            background: linear-gradient(90deg,var(--purple),var(--pink));
            padding: 5px 41px;
            font-size: 11.7px;
            font-weight: 800
        }

    .package h3 {
        margin: 0;
        font-size: 23.4px
    }

    .package .price {
        font-size: 50.7px;
        font-weight: 800;
        letter-spacing: -.04em;
        margin: 16px 0 4px
    }

    .package .sub {
        font-size: 15.6px;
        color: var(--muted);
        min-height: 48px;
        line-height: 1.45
    }

    .package ul {
        list-style: none;
        padding: 0;
        margin: 19px 0
    }

    .package li {
        padding: 7px 0;
        color: #d8dced;
        font-size: 15.6px;
        border-bottom: 1px dashed rgba(255,255,255,.08)
    }

        .package li:before {
            content: "✓";
            color: var(--green);
            margin-right: 7px;
            font-weight: 800
        }

    .package .pkg-btn {
        display: block;
        text-align: center;
        padding: 11px 12px;
        border-radius: 10px;
        background: rgba(255,255,255,.07);
        border: 1px solid var(--line);
        font-weight: 800;
        font-size: 15.6px
    }

        .package .pkg-btn:hover {
            background: rgba(255,255,255,.12)
        }

/* ASSESSMENT */
.assess {
    position: relative;
    padding: 31px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.15);
    background: linear-gradient(120deg,rgba(66,215,10,.095),rgba(22,118,255,.07) 32%,rgba(140,36,255,.10) 62%,rgba(255,43,33,.07));
    overflow: hidden
}

    .assess:before {
        content: "";
        position: absolute;
        width: 370px;
        height: 370px;
        border-radius: 50%;
        right: -120px;
        top: -170px;
        background: conic-gradient(var(--green),var(--blue),var(--purple),var(--pink),var(--red),var(--green));
        filter: blur(70px);
        opacity: .17
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 22px;
    position: relative
}

.input {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(3,5,10,.68);
    color: #fff;
    border-radius: 11px;
    padding: 13px 14px;
    outline: none;
    font: inherit;
    font-size: 15.6px
}

    .input:focus {
        border-color: rgba(66,215,10,.52);
        box-shadow: 0 0 0 4px rgba(66,215,10,.07)
    }

textarea.input {
    min-height: 105px;
    resize: vertical
}

.full {
    grid-column: 1/-1
}

.assess-copy {
    color: var(--muted);
    max-width: 680px;
    line-height: 1.62;
    font-size: 18.2px
}

.form-message {
    font-size: 14.3px;
    color: #b8bfd1
}

.submit {
    border: 0;
    border-radius: 11px;
    padding: 14px 17px;
    font: inherit;
    font-weight: 800;
    background: linear-gradient(90deg,var(--green),#17b900);
    color: #051006;
    cursor: pointer
}

/* FOOTER */
footer {
    padding: 35px 0 45px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #aab1c4;
    font-size: 15.6px
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

    .foot strong {
        color: #fff
    }

/* reveals */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: .65s ease
}

    .reveal.show {
        opacity: 1;
        transform: none
    }

/* ------------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------------ */
@media(max-width:1100px) {
    :root {
        --outer-w: 62px;
        --rail-w: 88px
    }

    .brand-logo {
        width: 165px
    }

    .brand {
        min-width: 175px
    }

    .nav-links {
        gap: 14px;
        font-size: 15.6px
    }

    .hero {
        padding-top: 58px
    }

    .hero-grid {
        grid-template-columns: minmax(300px,.9fr) minmax(390px,1.1fr);
        gap: 38px
    }

    .hero-brand-image {
        width: min(100%,470px)
    }

    .grid-4, .packages, .signal-grid, .insight-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .flow {
        grid-template-columns: repeat(3,1fr)
    }

    .matrix-grid {
        grid-template-columns: 1fr
    }

    .rail-section-label strong {
        font-size: 31.2px
    }

    .hero-side-offer .offer-label {
        font-size: 29.9px
    }

    .hero-side-offer strong {
        font-size: 58.5px
    }
}

@media(max-width:820px) {
    :root {
        --outer-w: 44px;
        --rail-w: 66px
    }

    .container {
        width: calc(100% - var(--brand-zone) - 20px);
        margin-left: calc(var(--brand-zone) + 10px);
        margin-right: 10px
    }

    .nav-links {
        display: none
    }

    .brand {
        min-width: auto
    }

    .brand-logo {
        width: 150px
    }

    .nav-cta {
        padding: 11px 12px;
        font-size: 14.3px
    }

    .hero {
        min-height: auto;
        padding-top: 44px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .hero-brand-stage {
        justify-content: center
    }

    .hero-brand-image {
        width: min(92%,520px)
    }

    .brand-sequence {
        font-size: clamp(62.4px,13vw,93.6px)
    }

    .visual {
        min-height: 430px
    }

    .strip-inner {
        grid-template-columns: repeat(2,1fr)
    }

    .rail-top-brand {
        left: var(--outer-w);
        width: var(--rail-w)
    }

    .hero-side-offer {
        top: 335px;
        left: 7px;
        width: calc(var(--brand-zone) - 14px)
    }

        .hero-side-offer .offer-label {
            font-size: 23.4px
        }

        .hero-side-offer strong {
            font-size: 45.5px
        }

    .rail-section-label {
        left: 4px;
        width: calc(var(--brand-zone) - 7px);
        writing-mode: vertical-rl;
        transform: translateY(-50%) rotate(180deg)
    }

        .rail-section-label strong {
            font-size: 19.5px;
            letter-spacing: .01em
        }

            .rail-section-label strong span {
                display: inline
            }

        .rail-section-label:after {
            display: none
        }

    .section-head {
        display: block
    }

        .section-head p {
            margin-top: 15px
        }
}

@media(max-width:560px) {
    :root {
        --outer-w: 27px;
        --rail-w: 46px
    }

    .container {
        width: calc(100% - var(--brand-zone) - 14px);
        margin-left: calc(var(--brand-zone) + 7px);
        margin-right: 7px
    }

    .brand-logo {
        width: 120px;
        height: 36px
    }

    .nav {
        min-height: 54px;
        padding: 6px 8px
    }

    .nav-cta {
        font-size: 11.7px;
        padding: 10px
    }

    .hero {
        padding-top: 36px
    }

    .kicker {
        font-size: 11.7px
    }

    .hero-copy {
        font-size: 18.2px
    }

    h1 {
        font-size: 62.4px
    }

    .brand-sequence {
        font-size: 59.8px;
        gap: .05em .14em
    }

    .hero-promise {
        font-size: 32.5px
    }

        .hero-promise small {
            font-size: 15.6px
        }

    .visual {
        min-height: 340px
    }

    .orbit {
        width: 310px
    }

    .core {
        width: 120px;
        height: 120px;
        border-radius: 25px
    }

        .core .ai {
            font-size: 54.6px
        }

    .float {
        font-size: 11.7px;
        padding: 7px
    }

        .float b {
            font-size: 16.9px
        }

    .rise {
        left: 31px;
        right: 31px
    }

    .strip-inner, .grid-4, .packages, .flow, .form-grid, .signal-grid, .insight-grid {
        grid-template-columns: 1fr
    }

    .matrix-shell {
        padding: 16px
    }

    .matrix-top {
        display: block
    }

    .matrix-note {
        display: inline-block;
        margin-top: 10px
    }

    .matrix-head, .matrix-row {
        grid-template-columns: 1.3fr repeat(4,.55fr);
        gap: 4px
    }

    .matrix-row {
        padding: 8px 6px
    }

    .matrix-label {
        font-size: 13px
    }

    .matrix-cell {
        height: 22px
    }

    .hero-side-offer {
        display: none
    }

    section.block {
        padding: 58px 0 70px
    }

    .foot {
        display: block;
        line-height: 1.8
    }
}

/* LEFT BRAND LABEL REFINEMENT */
.rail-section-label strong,
.rail-section-label strong span {
    color: #fff;
}

@media (min-width:821px) {
    .rail-section-label strong {
        max-width: 165px;
    }
}


/* FINAL HERO / NEW SECTION RESPONSIVE REFINEMENT */
@media(max-width:820px) {
    .hero:before,
    .hero:after {
        left: var(--brand-zone);
    }

    .brand-sequence {
        align-items: flex-start;
        font-size: clamp(62.4px,13vw,91px);
    }

    .signal-card,
    .insight-card {
        min-height: auto;
    }
}

@media(max-width:560px) {
    .hero:before {
        background-position: center top;
    }

    .signal-value {
        margin-bottom: 20px;
        font-size: 41.6px;
    }
}


/* ==========================================================
   VERIFIED MARKET SIGNALS
========================================================== */
.matrix-update {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: -8px 0 22px;
    padding: 8px 12px;
    border: 1px solid rgba(66,215,10,.24);
    border-radius: 999px;
    color: #c8f8b6;
    background: rgba(66,215,10,.06);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.verified-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px rgba(66,215,10,.75);
}

.verified-grid .signal-card {
    min-height: 275px;
    display: flex;
    flex-direction: column;
}

.verified-grid .signal-value {
    font-size: 57.2px;
}

.verified-grid .signal-card p {
    flex: 1;
}

.signal-footer {
    margin-top: 19px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}

.source-link {
    color: #d8e7ff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

    .source-link:hover {
        color: #8fe855;
    }

.research-disclaimer {
    margin: 18px 0 0;
    color: #858da3;
    font-size: 14.3px;
    line-height: 1.55;
}

/* ==========================================================
   ASSESSMENT FRAMEWORK - NO FAKE SCORE
========================================================== */
.assessment-framework {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg,rgba(255,255,255,.052),rgba(255,255,255,.022));
    box-shadow: 0 20px 60px rgba(0,0,0,.20);
}

.assessment-areas {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 11px;
}

.assessment-area {
    display: flex;
    gap: 14px;
    min-height: 120px;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(255,255,255,.025);
}

    .assessment-area > span {
        flex: 0 0 auto;
        color: #75e951;
        font-size: 14.3px;
        font-weight: 800;
        letter-spacing: .11em;
    }

    .assessment-area strong {
        display: block;
        margin-bottom: 7px;
        font-size: 19.5px;
    }

    .assessment-area small {
        display: block;
        color: var(--muted);
        font-size: 14.95px;
        line-height: 1.5;
    }

.assessment-method {
    padding: 22px;
    border: 1px solid rgba(66,215,10,.20);
    border-radius: 18px;
    background: radial-gradient(circle at 90% 0,rgba(66,215,10,.10),transparent 38%), rgba(66,215,10,.035);
}

    .assessment-method h3 {
        margin: 10px 0 15px;
        font-size: 32.5px;
    }

    .assessment-method ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .assessment-method li {
        padding: 10px 0;
        border-bottom: 1px dashed rgba(255,255,255,.08);
        color: #d7dbea;
        font-size: 15.6px;
    }

        .assessment-method li:before {
            content: "✓";
            margin-right: 8px;
            color: var(--green);
            font-weight: 800;
        }

.assessment-badge {
    margin-top: 20px;
    padding: 10px 12px;
    border-radius: 11px;
    color: #bff6ab;
    background: rgba(66,215,10,.08);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ==========================================================
   FINAL RESEARCH / ASSESSMENT FORM
========================================================== */
.research-form {
    margin-top: 26px;
    position: relative;
    z-index: 2;
}

.form-section-title {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 30px 0 14px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

    .form-section-title:first-of-type {
        margin-top: 22px;
    }

    .form-section-title > span {
        display: grid;
        place-items: center;
        flex: 0 0 32px;
        height: 32px;
        border-radius: 9px;
        color: #051006;
        background: var(--green);
        font-size: 13px;
        font-weight: 800;
    }

    .form-section-title strong {
        display: block;
        font-size: 20.8px;
    }

    .form-section-title small {
        display: block;
        margin-top: 3px;
        color: var(--muted);
        font-size: 14.3px;
    }

.field {
    display: block;
}

    .field > span {
        display: block;
        margin: 0 0 7px 3px;
        color: #dfe3ee;
        font-size: 14.3px;
        font-weight: 700;
    }

.research-form .form-grid {
    margin-top: 0;
}

.research-form textarea.input {
    min-height: 120px;
}

.choice-block {
    margin: 14px 0;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(2,5,11,.33);
}

.choice-title {
    margin-bottom: 12px;
    color: #f2f4fa;
    font-size: 15.6px;
    font-weight: 800;
}

    .choice-title small {
        margin-left: 5px;
        color: #8f97ab;
        font-weight: 500;
    }

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}

    .choice-grid label {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        min-height: 43px;
        padding: 10px;
        border: 1px solid rgba(255,255,255,.075);
        border-radius: 10px;
        color: #cfd4e2;
        background: rgba(255,255,255,.025);
        font-size: 14.3px;
        line-height: 1.35;
        cursor: pointer;
        transition: .2s;
    }

        .choice-grid label:hover {
            background: rgba(255,255,255,.055);
            border-color: rgba(66,215,10,.25);
        }

    .choice-grid input,
    .consent-check input {
        accent-color: #35d20a;
    }

.group-error {
    display: none;
    margin-top: 10px;
    color: #ff8c84;
    font-size: 13px;
    font-weight: 700;
}

.choice-block.invalid {
    border-color: rgba(255,77,69,.45);
}

    .choice-block.invalid .group-error {
        display: block;
    }

.privacy-box {
    margin: 22px 0 15px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #c8cedd;
    font-size: 13.65px;
    line-height: 1.55;
}

    .consent-check + .consent-check {
        margin-top: 12px;
    }

    .consent-check.optional {
        color: #98a1b6;
    }

.final-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    font-size: 16.9px;
    cursor: pointer;
}

    .final-submit[disabled] {
        opacity: .58;
        cursor: wait;
    }

.form-status {
    min-height: 22px;
    margin-top: 12px;
    color: #b9c1d2;
    font-size: 14.3px;
    text-align: center;
}

    .form-status.success {
        color: #a7f78a;
    }

    .form-status.error {
        color: #ff968f;
    }

.input.invalid {
    border-color: rgba(255,77,69,.60);
    box-shadow: 0 0 0 3px rgba(255,77,69,.06);
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* form on smaller screens */
@media(max-width:1100px) {
    .choice-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .assessment-framework {
        grid-template-columns: 1fr
    }
}

@media(max-width:720px) {
    .choice-grid,
    .assessment-areas {
        grid-template-columns: 1fr;
    }

    .signal-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ==========================================================
   FINAL COMPACT ASSESSMENT
========================================================== */
.compact-form {
    margin-top: 22px;
    position: relative;
    z-index: 2;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 13px;
}

    .compact-grid .field > span {
        display: block;
        margin: 0 0 7px 3px;
        color: #dfe3ee;
        font-size: 14.3px;
        font-weight: 700;
    }

    .compact-grid .full {
        grid-column: 1/-1;
    }

.compact-message {
    min-height: 92px !important;
}

.compact-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    color: #aeb5c8;
    font-size: 13.65px;
    line-height: 1.45;
}

    .compact-consent input {
        margin-top: 2px;
        accent-color: #35d20a;
    }

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.final-submit {
    min-height: 50px;
    cursor: pointer;
}

    .final-submit[disabled] {
        opacity: .58;
        cursor: wait;
    }

.form-status {
    min-height: 18px;
    color: #aeb5c8;
    font-size: 14.3px;
    text-align: center;
}

    .form-status.success {
        color: #a7f78a
    }

    .form-status.error {
        color: #ff968f
    }

.input.invalid {
    border-color: rgba(255,77,69,.60);
    box-shadow: 0 0 0 3px rgba(255,77,69,.06);
}

/* ==========================================================
   QUICK ANSWERS — useful visible content for people and AI search
========================================================== */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.qa-card {
    min-height: 145px;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
}

    .qa-card h3 {
        margin: 0 0 9px;
        font-size: 22.1px;
        line-height: 1.15;
    }

    .qa-card p {
        margin: 0;
        color: var(--muted);
        font-size: 16.25px;
        line-height: 1.56;
    }

@media(max-width:700px) {
    .compact-grid,
    .qa-grid {
        grid-template-columns: 1fr;
    }

        .compact-grid .full {
            grid-column: 1;
        }
}
