/* ==========================================================================
   Academox — digital product studio brand site
   Section rhythm: cream -> white -> light neutral -> cream -> white ->
                   light neutral -> graphite -> cream -> white
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
    --ink: #171923;
    --ink-2: #1E2130;
    --cream: #FFF8EC;
    --cream-2: #FFFCF5;
    --white: #FFFFFF;
    --neutral: #F4F5F8;
    --orange: #FF7A1A;
    --orange-soft: #FFE9D6;
    --orange-ink: #C24A00;
    --green: #14A05A;
    --green-soft: #E2F6EB;
    --blue: #6AA7FF;
    --blue-soft: #E9F1FF;
    --text: #171923;
    --text-muted: #565D70;
    --text-soft: #6C7385;
    --line: rgba(23, 25, 35, 0.10);
    --line-strong: rgba(23, 25, 35, 0.16);
    --line-dark: rgba(255, 255, 255, 0.14);
    --shadow-sm: 0 1px 2px rgba(23, 25, 35, 0.05), 0 4px 14px rgba(23, 25, 35, 0.04);
    --shadow-md: 0 2px 6px rgba(23, 25, 35, 0.06), 0 18px 40px rgba(23, 25, 35, 0.08);
    --shadow-lg: 0 4px 10px rgba(23, 25, 35, 0.07), 0 28px 64px rgba(23, 25, 35, 0.12);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --maxw: 1200px;
    --readw: 720px;
    --pad-y: 92px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.62;
    color: var(--text);
    background: var(--cream);
    /* clip, not hidden: hidden makes body a scroll container and breaks position: sticky */
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.032em;
    line-height: 1.08;
}

p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

dl,
dd,
dt {
    margin: 0;
}

strong {
    font-weight: 700;
    color: var(--text);
}

button {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
}

    .skip-link:focus {
        left: 0;
    }

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- Layout primitives ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    /* inline only: sections set their own block padding through .container */
    padding-inline: 28px;
}

.section {
    padding: var(--pad-y) 0;
}

/* Sticky header is 72px tall — keep anchored sections clear of it. */
section[id] {
    scroll-margin-top: 84px;
}

.hl {
    color: var(--orange-ink);
}

.kicker {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-ink);
    margin-bottom: 14px;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-head-left {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.section-head h2,
.evo-head h2,
.audience-head h2,
.about-statement h2,
.contact-in h2 {
    font-size: clamp(30px, 3.6vw, 43px);
}

.section-sub {
    margin-top: 18px;
    font-size: 17.5px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 1px 2px rgba(23, 25, 35, .1), 0 8px 20px rgba(255, 122, 26, .28);
}

    .btn-primary:hover {
        background: #F26B05;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(23, 25, 35, .12), 0 12px 26px rgba(255, 122, 26, .34);
    }

.btn-ghost {
    background: rgba(255, 255, 255, .7);
    border-color: var(--line-strong);
    color: var(--text);
}

    .btn-ghost:hover {
        background: #fff;
        border-color: rgba(23, 25, 35, .3);
        transform: translateY(-1px);
    }

.btn-disabled {
    background: var(--neutral);
    border-color: var(--line);
    color: var(--text-soft);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14.5px;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 248, 236, .86);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

    .nav.is-stuck {
        border-bottom-color: var(--line);
        background: rgba(255, 252, 245, .92);
        box-shadow: 0 6px 24px rgba(23, 25, 35, .06);
    }

.nav-in {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--orange);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(255, 122, 26, .3);
}

.brand-name {
    font-size: 19px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease;
}

    .nav-link:hover {
        color: var(--text);
        background: rgba(23, 25, 35, .05);
    }

    .nav-link.is-active {
        color: var(--text);
    }

        .nav-link.is-active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 2px;
            height: 2px;
            border-radius: 2px;
            background: var(--orange);
        }

.nav-cta {
    flex: none;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle-bars {
    display: grid;
    gap: 4px;
}

    .nav-toggle-bars span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--text);
        transition: transform .2s ease, opacity .2s ease;
    }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-drawer {
    border-top: 1px solid var(--line);
    background: var(--cream-2);
    box-shadow: 0 18px 40px rgba(23, 25, 35, .1);
}

    .nav-drawer[hidden] {
        display: none;
    }

    .nav-drawer nav {
        display: grid;
        gap: 2px;
        padding-top: 10px;
        padding-bottom: 18px;
    }

.nav-drawer-link {
    padding: 13px 4px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.nav-drawer-cta {
    margin-top: 16px;
}

/* ==========================================================================
   1. Hero — cream, asymmetric editorial
   ========================================================================== */
.hero {
    position: relative;
    background:
        radial-gradient(60% 70% at 88% 6%, rgba(255, 122, 26, .10), transparent 62%),
        radial-gradient(48% 60% at 4% 96%, rgba(106, 167, 255, .12), transparent 60%),
        var(--cream);
    border-bottom: 1px solid rgba(23, 25, 35, .06);
    overflow: hidden;
}

.hero-in {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 56px;
    align-items: center;
    padding-top: 84px;
    padding-bottom: 92px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px 7px 12px;
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11.8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.hero h1 {
    font-size: clamp(36px, 5.2vw, 62px);
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.hero .lead {
    max-width: 560px;
    margin-top: 22px;
    font-size: clamp(17px, 1.35vw, 19px);
    color: var(--text-muted);
    line-height: 1.62;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* ---- Hero art: the product shot in a window frame ---- */
/* No height of its own: the column collapses to the card so the floating
   chips and shapes anchor to the card's corners, not to empty space. */
.hero-art {
    position: relative;
}

.art-card {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.art-head {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 2px 13px;
    border-bottom: 1px solid var(--line);
}

.art-shot {
    width: 100%;
    height: auto;
    margin-top: 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    /* matches the shot's own backdrop, so a slow load does not flash white */
    background: var(--ink);
}

.art-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.art-dot-orange {
    background: var(--orange);
}

.art-dot-green {
    background: var(--green);
}

.art-dot-blue {
    background: var(--blue);
}

.art-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 700;
}

.art-chip-1 {
    top: -22px;
    right: -6px;
    animation: float 7s ease-in-out infinite;
}

.art-chip-2 {
    bottom: -22px;
    left: 34px;
    color: var(--green);
    animation: float 8.5s ease-in-out infinite reverse;
}

.art-chip-label {
    color: var(--text);
}

.art-chip-2 .art-chip-label {
    color: var(--green);
}

.art-chip-icon {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: var(--green-soft);
    color: var(--green);
    font-weight: 900;
}

.art-chip-bar {
    display: block;
    width: 54px;
    height: 7px;
    border-radius: 4px;
    background: var(--neutral);
    overflow: hidden;
}

    .art-chip-bar i {
        display: block;
        width: 68%;
        height: 100%;
        border-radius: 4px;
        background: var(--orange);
    }

.art-shape {
    position: absolute;
    border-radius: 24px;
}

.art-shape-1 {
    z-index: 1;
    top: 30px;
    right: -34px;
    width: 128px;
    height: 128px;
    background: var(--orange-soft);
    transform: rotate(14deg);
}

.art-shape-2 {
    z-index: 1;
    bottom: -32px;
    left: -36px;
    width: 104px;
    height: 104px;
    border: 2px dashed rgba(106, 167, 255, .5);
    background: var(--blue-soft);
    transform: rotate(-10deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

/* ==========================================================================
   2. Positioning strip — white
   ========================================================================== */
.strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.strip-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 38px;
    padding: 22px 28px;
}

.strip-lead {
    font-size: 11.8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
}

.strip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin-left: auto;
}

    .strip-list li {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-muted);
    }

.strip-tick {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--orange);
    transform: rotate(45deg);
}

.strip-list li:nth-child(2) .strip-tick {
    background: var(--green);
}

.strip-list li:nth-child(3) .strip-tick {
    background: var(--blue);
}

/* ==========================================================================
   3. Products — white
   ========================================================================== */
.section-products {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--line-strong);
    }

.product-card-live {
    border-color: rgba(255, 122, 26, .42);
    box-shadow: 0 2px 6px rgba(23, 25, 35, .06), 0 20px 46px rgba(255, 122, 26, .16);
}

    .product-card-live:hover {
        border-color: rgba(255, 122, 26, .6);
        box-shadow: 0 4px 10px rgba(23, 25, 35, .07), 0 28px 60px rgba(255, 122, 26, .22);
    }

/* --- Card visuals --- */
.product-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* equal height across the three cards keeps the badges and titles on one line */
    min-height: 278px;
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--line);
}

.product-visual-shot {
    background: linear-gradient(170deg, #FFF3E4, #FFFCF5 70%);
}

.product-visual-soon {
    background: var(--neutral);
}

.visual-note {
    margin-top: 12px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-soft);
    text-align: center;
}

/* Capped so the illustrations stay in proportion when a card goes full width. */
/* One shared height across the three cards, so the badges and titles line up. */
.shot,
.concept {
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
}

.shot {
    margin-block: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    background: var(--ink);
}

    .shot img {
        width: 100%;
        /* Fixed height keeps the three cards level. The shot is letterboxed rather
           than cropped, and its own backdrop is #171923, so the fill is invisible. */
        height: 271px;
        object-fit: contain;
    }

.concept {
    height: auto;
    border-radius: 12px;
}

/* --- Card body --- */
.product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    padding: 5px 12px 5px 10px;
    border-radius: 999px;
    font-size: 11.2px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.badge-live {
    background: var(--green-soft);
    color: #0E7A44;
    box-shadow: inset 0 0 0 1px rgba(20, 160, 90, .28);
}

.badge-soon {
    background: rgba(23, 25, 35, .06);
    color: var(--text-muted);
    box-shadow: inset 0 0 0 1px rgba(23, 25, 35, .12);
}

    .badge-soon .badge-dot {
        border-radius: 2px;
        transform: rotate(45deg);
    }

.product-body h3 {
    margin-top: 14px;
    font-size: 21.5px;
    letter-spacing: -0.025em;
    line-height: 1.22;
}

.product-desc {
    margin-top: 11px;
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.58;
}

.product-long {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.58;
}

.chips-label {
    margin-top: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

    .chips li {
        padding: 5px 11px;
        border-radius: 8px;
        font-size: 12.8px;
        font-weight: 600;
        color: var(--text);
        background: var(--orange-soft);
    }

.chips-plan {
    margin-top: 10px;
}

    .chips-plan li {
        background: #fff;
        color: var(--text-muted);
        border: 1px dashed var(--line-strong);
    }

.product-meta {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 22px;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
}

    .product-meta div {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .product-meta dt {
        flex: none;
        min-width: 58px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-soft);
    }

    .product-meta dd {
        font-size: 14.8px;
        font-weight: 600;
        color: var(--text);
    }

    .product-meta .price {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: var(--orange-ink);
    }

.product-cta {
    width: 100%;
    /* auto: with the body as a flex column, this keeps the CTAs aligned to the
       bottom of each card even when the bodies differ in height */
    margin-top: auto;
}

/* ==========================================================================
   4. Product evolution — light neutral
   ========================================================================== */
.section-evolution {
    background: var(--neutral);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.evo-head {
    max-width: 700px;
    margin-bottom: 46px;
}

.evo-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: stretch;
}

.evo-step {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.evo-step-now {
    border-color: rgba(255, 122, 26, .4);
    background: linear-gradient(180deg, #FFFCF5, #fff);
}

.evo-index {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.evo-step h3 {
    margin-top: 10px;
    font-size: 22px;
}

.evo-step p {
    margin-top: 10px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.58;
}

.evo-tag {
    align-self: flex-start;
    margin-top: 18px;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11.2px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(23, 25, 35, .06);
}

.evo-tag-live {
    background: var(--orange);
    color: #fff;
}

.evo-arrow {
    display: grid;
    place-items: center;
}

    .evo-arrow span {
        position: relative;
        display: block;
        width: 34px;
        height: 2px;
        background: rgba(23, 25, 35, .2);
    }

        .evo-arrow span::after {
            content: "";
            position: absolute;
            right: 0;
            top: -4px;
            width: 9px;
            height: 9px;
            border-top: 2px solid var(--orange);
            border-right: 2px solid var(--orange);
            transform: rotate(45deg);
        }

/* ==========================================================================
   5. About — cream
   ========================================================================== */
.section-about {
    background: var(--cream);
}

.about-statement {
    max-width: 880px;
    margin-bottom: 44px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: start;
}

.about-copy {
    display: grid;
    gap: 18px;
    max-width: 620px;
}

    .about-copy p {
        font-size: 17.5px;
        color: var(--text-muted);
        line-height: 1.68;
    }

    .about-copy p:first-child {
        font-size: 20px;
        color: var(--text);
        font-weight: 600;
    }

.about-facts {
    display: grid;
    gap: 2px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .about-facts li {
        display: grid;
        gap: 4px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--line);
    }

        .about-facts li:last-child {
            border-bottom: 0;
        }

.fact-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-ink);
}

.fact-value {
    font-size: 15.8px;
    font-weight: 600;
    color: var(--text);
}

/* ==========================================================================
   6. How we build — white
   ========================================================================== */
.section-how {
    background: var(--white);
}

.section-how .section-head {
    margin-bottom: 42px;
}

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

.how-card {
    position: relative;
    padding: 26px 22px 24px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .how-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.how-num {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 6px 16px rgba(255, 122, 26, .26);
}

.how-card:nth-child(2) .how-num {
    background: var(--green);
    box-shadow: 0 6px 16px rgba(20, 160, 90, .24);
}

.how-card:nth-child(3) .how-num {
    background: var(--blue);
    color: #132A52;
    box-shadow: 0 6px 16px rgba(106, 167, 255, .3);
}

.how-card:nth-child(4) .how-num {
    background: var(--ink);
    box-shadow: 0 6px 16px rgba(23, 25, 35, .22);
}

.how-card h3 {
    margin-top: 18px;
    font-size: 18.5px;
    letter-spacing: -0.02em;
    line-height: 1.26;
}

.how-card p {
    margin-top: 10px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.58;
}

/* ==========================================================================
   7. Who we build for — light neutral
   ========================================================================== */
.section-audience {
    background: var(--neutral);
    border-top: 1px solid var(--line);
}

.audience-head {
    max-width: 640px;
    margin-bottom: 42px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.audience-card {
    padding: 24px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .audience-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.audience-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--orange-soft);
    color: var(--orange-ink);
}

    .audience-icon svg {
        width: 25px;
        height: 25px;
    }

.audience-card:nth-child(2) .audience-icon {
    background: var(--green-soft);
    color: #0E7A44;
}

.audience-card:nth-child(3) .audience-icon {
    background: var(--blue-soft);
    color: #2A63BE;
}

.audience-card:nth-child(4) .audience-icon {
    background: rgba(23, 25, 35, .07);
    color: var(--ink);
}

.audience-card h3 {
    margin-top: 16px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.audience-card p {
    margin-top: 9px;
    font-size: 14.8px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   8. Brand statement — dark graphite
   ========================================================================== */
.statement {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(52% 84% at 78% 14%, rgba(255, 122, 26, .2), transparent 62%),
        radial-gradient(40% 70% at 6% 92%, rgba(106, 167, 255, .12), transparent 60%),
        var(--ink);
    color: #fff;
}

.statement-in {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.statement-rule {
    display: block;
    width: 56px;
    height: 4px;
    margin-bottom: 26px;
    border-radius: 3px;
    background: var(--orange);
}

.statement h2 {
    font-size: clamp(38px, 6.2vw, 74px);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

    .statement h2 .hl {
        color: #FF9A45;
    }

.statement p {
    max-width: 560px;
    margin-top: 22px;
    font-size: clamp(17px, 1.5vw, 20px);
    color: rgba(246, 247, 250, .72);
}

.statement-art {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 6%;
    display: grid;
    grid-template-columns: repeat(3, 52px);
    gap: 12px;
    transform: translateY(-50%) rotate(-8deg);
}

    .statement-art span {
        height: 52px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
    }

        .statement-art span.is-on {
            background: var(--orange);
            border-color: var(--orange);
            box-shadow: 0 10px 30px rgba(255, 122, 26, .38);
        }

/* ==========================================================================
   9. Contact — cream
   ========================================================================== */
.section-contact {
    background: var(--cream);
}

.contact-in {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    margin-top: 36px;
    padding: 34px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.contact-value {
    margin: 10px 0 24px;
    font-size: clamp(19px, 2.4vw, 26px);
    font-weight: 700;
    letter-spacing: -0.02em;
    word-break: break-word;
}

    .contact-value a {
        color: var(--orange-ink);
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }

        .contact-value a:hover {
            color: var(--orange);
        }

/* ==========================================================================
   Footer — white
   ========================================================================== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 56px 0 34px;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.footer-brand p {
    max-width: 280px;
    margin-top: 14px;
    font-size: 15px;
    color: var(--text-muted);
}

.footer-title {
    margin: 0 0 14px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    word-break: break-word;
}

    .footer-col a:hover {
        color: var(--orange-ink);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--text-soft);
}

.footer-note {
    color: var(--text-soft);
}

/* ==========================================================================
   Config placeholders
   Any value still left as YOUR_… in config.js renders like this, so an
   unconfigured link is impossible to miss before publishing.
   Declared after the components so it wins over their link colours.
   ========================================================================== */
.todo,
a.todo,
.footer-col a.todo,
.contact-value a.todo {
    color: var(--orange-ink);
    text-decoration: underline dashed;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    cursor: help;
}

.btn.todo {
    text-decoration: none;
    background: repeating-linear-gradient(135deg, #FFB06A, #FFB06A 10px, #FFA050 10px, #FFA050 20px);
    box-shadow: none;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

.js .reveal.is-in {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
    :root {
        --pad-y: 78px;
    }

    .hero-in {
        gap: 40px;
        padding-top: 68px;
        padding-bottom: 76px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card-live {
        grid-column: 1 / -1;
    }

        .product-card-live .product-visual {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
        }

    .how-grid,
    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evo-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .evo-arrow {
        display: none;
    }

    .about-grid {
        gap: 34px;
    }
}

@media (min-width: 861px) and (max-width: 1080px) {
    /* Highlighted card goes full width: put the visual beside the copy there. */
    .product-card-live {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: stretch;
    }

        .product-card-live .product-visual {
            border-bottom: 0;
            border-right: 1px solid var(--line);
            padding: 24px;
            align-content: center;
        }
}

@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    :root {
        --pad-y: 66px;
    }

    .container {
        padding-inline: 20px;
    }

    .hero-in {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .hero .lead {
        max-width: none;
    }

    .hero-art {
        /* width:100% matters — auto margins alone would make this grid item
           shrink to fit-content, collapsing the card to its (empty) content */
        width: 100%;
        max-width: 460px;
        margin-inline: auto;
    }

    /* Decorative offsets would clip at small widths — pull them inside. */
    .art-chip-1 {
        top: -16px;
        right: 4px;
    }

    .art-chip-2 {
        bottom: -16px;
        left: 26px;
    }

    .art-shape-1 {
        right: -16px;
        width: 92px;
        height: 92px;
    }

    .art-shape-2 {
        left: -18px;
        width: 72px;
        height: 72px;
    }

    .product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .evo-track {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .strip-in {
        padding: 20px;
    }

    .strip-list {
        margin-left: 0;
        gap: 10px 22px;
    }

    .statement {
        padding: 74px 0;
    }

    /* Decoration would crowd the statement once it goes single column. */
    .statement-art {
        display: none;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16.5px;
    }

    :root {
        --pad-y: 58px;
    }

    .container {
        padding-inline: 16px;
    }

    .hero-cta {
        gap: 10px;
    }

        .hero-cta .btn {
            width: 100%;
        }

    .art-shape-1,
    .art-shape-2 {
        display: none;
    }

    .how-grid,
    .audience-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .how-card,
    .audience-card {
        padding: 20px 18px;
    }

    .product-body {
        padding: 20px 18px 22px;
    }

    .product-visual {
        padding: 16px 16px 12px;
    }

    .contact-card {
        padding: 26px 18px;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .footer-bottom {
        margin-top: 34px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

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

/* ---------- Print ---------- */
@media print {
    .nav,
    .hero-art,
    .btn {
        display: none !important;
    }

    body {
        background: #fff;
    }
}
