:root {
    --ink: #111827;
    --ink-soft: #1c1c1e;
    --paper: #ffffff;
    --paper-bright: #ffffff;
    --muted: #4b5563;
    --line: #e5e7eb;
    --line-dark: rgba(255, 255, 255, .15);
    --primary: #4f46e5;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --radius: 8px;
    --container: min(1440px, calc(100vw - 56px));
    --shadow: 0 20px 60px rgba(17, 24, 39, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Geist", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
.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: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--accent);
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.page-shell { width: 100%; max-width: 100%; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 150px 0; }
.section-tight { padding: 96px 0; }
.dark-section { color: var(--paper); background: var(--ink); }
.accent-section { color: var(--ink); background: var(--accent); }
.eyebrow {
    margin: 0 0 24px;
    color: inherit;
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.dark-section .eyebrow { color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: .98;
}
h1 { font-size: clamp(3.4rem, 7.2vw, 7.8rem); }
h2 { font-size: clamp(2.6rem, 5.2vw, 5.8rem); }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.5rem); }
.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    line-height: 1.45;
}
.dark-section .lead { color: #b6bcb7; }
.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}
.button:hover { transform: translateY(-3px); }
.button-accent { color: #fff; background: var(--primary); }
.button-accent:hover { background: #3730a3; }
.button-dark { color: var(--paper); background: var(--ink); }
.button-light { color: var(--ink); background: var(--paper-bright); }
.button-outline { color: var(--paper); border-color: rgba(255,255,255,.38); background: transparent; }
.button-small { min-height: 44px; padding-inline: 20px; font-size: .9rem; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-weight: 650;
}
.text-link::after { content: "↗"; transition: transform .3s ease; }
.text-link:hover::after { transform: translate(3px, -3px); }

.site-header {
    position: fixed;
    z-index: 100;
    top: 18px;
    left: 50%;
    display: flex;
    width: min(1450px, calc(100vw - 32px));
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 10px 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(244, 241, 233, .88);
    box-shadow: 0 10px 35px rgba(4, 6, 5, .1);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: top .35s ease, background .35s ease;
}
.brand img { width: 188px; height: auto; }
.main-nav { display: flex; flex: 0 0 auto; align-items: center; gap: 30px; }
.nav-link {
    flex: 0 0 auto;
    padding: 14px 0;
    border: 0;
    background: none;
    font-size: .94rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.nav-link:hover { opacity: .62; }
.nav-dropdown { position: relative; }
.nav-mega {
    position: absolute;
    top: calc(100% + 15px);
    right: -250px;
    display: grid;
    width: min(850px, 84vw);
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper-bright);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
}
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega,
.nav-dropdown.is-open .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-mega a {
    padding: 14px 16px;
    border-radius: 11px;
    font-size: .92rem;
    font-weight: 560;
}
.nav-mega a:hover { background: #ece9df; }
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
}
.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: white;
}

.hero {
    position: relative;
    min-height: 960px;
    padding: 180px 0 100px;
    color: var(--paper);
    background:
        radial-gradient(circle at 85% 20%, rgba(215,255,69,.13), transparent 30%),
        var(--ink);
}
.hero-grid {
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1.22fr) minmax(380px, .78fr);
    align-items: center;
    gap: 80px;
}
.hero-copy { position: relative; z-index: 2; max-width: 980px; }
.hero h1 { max-width: 1280px; margin-bottom: 34px; }
.hero h1 strong { color: var(--accent); font-weight: 600; }
.hero-intro { max-width: 720px; color: #bfc4c0; font-size: clamp(1.15rem, 1.65vw, 1.48rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.hero-visual {
    position: relative;
    height: 610px;
    min-width: 0;
}
.hero-image {
    position: absolute;
    inset: 10% 0 0;
    overflow: hidden;
    border-radius: 160px 160px 28px 28px;
    background: #293128;
    box-shadow: 0 35px 120px rgba(0,0,0,.42);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
    opacity: .72;
    transition: transform .8s ease;
}
.hero-image:hover img { transform: scale(1.05); }
.hero-orbit {
    position: absolute;
    top: -10px;
    right: -30px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(215,255,69,.55);
    border-radius: 50%;
}
.hero-orbit::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
    transform: translate(-50%, -50%);
}
.hero-note {
    position: absolute;
    right: -16px;
    bottom: 35px;
    width: 240px;
    padding: 24px;
    color: var(--ink);
    border-radius: 18px;
    background: var(--accent);
    box-shadow: var(--shadow);
}
.hero-note b { display: block; margin-bottom: 8px; font-size: 1.25rem; line-height: 1.1; }
.hero-note span { display: block; font-size: .9rem; line-height: 1.4; }
.marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    display: inline-flex;
    align-items: center;
    padding: 22px 26px;
    color: #d3d7d4;
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.marquee-track span::after {
    width: 7px;
    height: 7px;
    margin-left: 52px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 12vw;
    align-items: start;
}
.intro-grid h2 { max-width: 700px; }
.intro-copy { padding-top: 14px; }
.intro-copy p { color: var(--muted); font-size: 1.25rem; }
.intro-copy .text-link { margin-top: 24px; }
.inline-image {
    display: inline-block;
    width: 1.6em;
    height: .62em;
    margin: 0 .08em;
    overflow: hidden;
    vertical-align: .08em;
    border-radius: 999px;
    background: url("/assets/img/growth-analytics.webp") center/cover;
    filter: saturate(.78) contrast(1.05);
}

.expertise-section { background: #e7e3d9; }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 70px;
}
.section-heading h2 { max-width: 930px; margin-bottom: 0; }
.section-heading p { max-width: 420px; margin-bottom: 5px; color: var(--muted); }
.bento {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: minmax(300px, auto);
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}
.bento-card {
    position: relative;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-bright);
    transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s ease;
}
.bento-card:hover { z-index: 2; box-shadow: var(--shadow); transform: translateY(-7px); }
.bento-card.large { grid-column: span 7; }
.bento-card.medium { grid-column: span 5; }
.bento-card.third { grid-column: span 4; }
.bento-card.dark { color: var(--paper); background: var(--ink); }
.bento-card.accent { background: var(--accent); }
.bento-card h3 { max-width: 570px; margin-bottom: 18px; }
.bento-card p { max-width: 540px; color: var(--muted); }
.bento-card.dark p { color: #aeb4af; }
.bento-card-footer { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: 50px; }
.bento-links { display: flex; flex-wrap: wrap; gap: 8px; }
.bento-links a {
    padding: 8px 12px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    opacity: .72;
}
.card-arrow {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--paper);
    background: var(--ink);
    transition: transform .4s ease;
}
.dark .card-arrow { color: var(--ink); background: var(--accent); }
.bento-card:hover .card-arrow { transform: rotate(45deg); }

.services-accordion {
    display: flex;
    min-height: 560px;
    gap: 5px;
}
.accordion-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    min-width: 76px;
    padding: 30px;
    color: var(--paper);
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: var(--ink-soft);
    transition: flex .7s cubic-bezier(.2,.8,.2,1), background .5s ease;
}
.accordion-panel:hover,
.accordion-panel:focus-within { flex: 3.6; background: #20251f; }
.accordion-index {
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
}
.accordion-panel h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 420px;
    max-width: calc(100% - 60px);
    margin: 0;
}
.accordion-detail {
    position: absolute;
    top: 95px;
    left: 30px;
    width: min(430px, calc(100% - 60px));
    color: #b6bcb7;
    opacity: 0;
    transform: translateY(15px);
    transition: .35s ease .1s;
}
.accordion-panel:hover .accordion-detail,
.accordion-panel:focus-within .accordion-detail { opacity: 1; transform: translateY(0); }
.accordion-panel .text-link { position: absolute; right: 30px; bottom: 32px; opacity: 0; }
.accordion-panel:hover .text-link,
.accordion-panel:focus-within .text-link { opacity: 1; }

.method-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 10vw;
    align-items: start;
}
.method-title { max-width: 590px; }
.method-title p { color: #aeb4af; }
.method-list { border-top: 1px solid var(--line-dark); }
.method-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line-dark);
}
.method-item span { color: var(--accent); font-size: .8rem; font-weight: 700; }
.method-item h3 { margin-bottom: 14px; font-size: clamp(1.7rem, 2.6vw, 3rem); }
.method-item p { max-width: 600px; margin: 0; color: #9ea59f; }

.word-reveal {
    max-width: 1250px;
    margin: 0 auto;
    font-size: clamp(2.35rem, 5vw, 5.6rem);
    font-weight: 560;
    letter-spacing: -.05em;
    line-height: 1.08;
    text-align: center;
}
.word-reveal span { opacity: .14; }

.offer-stack { position: relative; padding-bottom: 120px; }
.stack-card {
    position: sticky;
    top: 130px;
    display: grid;
    min-height: 420px;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 28px;
    padding: 60px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--paper-bright);
    box-shadow: 0 18px 50px rgba(6,8,6,.09);
    transform-origin: center top;
}
.stack-card:nth-child(2) { background: #e6e2d8; }
.stack-card:nth-child(3) { color: var(--paper); background: var(--ink); }
.stack-card h3 { font-size: clamp(2.2rem, 4vw, 4.8rem); }
.stack-card p { color: var(--muted); font-size: 1.15rem; }
.stack-card:nth-child(3) p { color: #b4bab5; }

.local-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: center;
}
.local-map {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(rgba(79,70,229,.08), rgba(17,24,39,.12)),
        url("/assets/img/paris-office.webp") center/cover;
    filter: saturate(.82) contrast(1.04);
}
.local-card {
    position: absolute;
    right: 25px;
    bottom: 25px;
    max-width: 310px;
    padding: 25px;
    border-radius: 16px;
    background: var(--paper-bright);
    box-shadow: var(--shadow);
}
.local-card b { display: block; margin-bottom: 8px; }
.local-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.faq { max-width: 1050px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-size: 1.8rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 800px; padding-bottom: 28px; color: var(--muted); }

.page-hero {
    min-height: 760px;
    padding: 210px 0 120px;
    color: var(--paper);
    background:
        radial-gradient(circle at 82% 20%, rgba(215,255,69,.13), transparent 30%),
        var(--ink);
}
.page-hero h1 { max-width: 1250px; margin-bottom: 42px; }
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .55fr;
    gap: 80px;
    align-items: end;
}
.page-hero .lead { color: #b6bcb7; }
.page-hero-side { padding: 28px 0 5px 28px; border-left: 1px solid var(--line-dark); }
.page-hero-side strong { display: block; margin-bottom: 10px; color: var(--accent); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.page-hero-side p { margin-bottom: 0; color: #b6bcb7; }
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.outcome {
    min-height: 250px;
    padding: 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.outcome span { color: var(--muted); font-size: .78rem; font-weight: 650; }
.outcome h3 { max-width: 330px; margin: 58px 0 0; }
.deliverable-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 100px;
}
.deliverable-list { border-top: 1px solid var(--line-dark); }
.deliverable-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.18rem;
}
.deliverable-item span { color: var(--accent); font-size: .76rem; font-weight: 700; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.related-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper-bright);
    transition: transform .4s ease, background .4s ease;
}
.related-card:hover { background: var(--accent); transform: translateY(-6px); }
.related-card small { color: var(--muted); }

.quote-page { padding: 190px 0 120px; }
.quote-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 9vw;
    align-items: start;
}
.quote-copy { position: sticky; top: 130px; }
.quote-copy h1 { max-width: 700px; font-size: clamp(3.3rem, 6vw, 6.5rem); }
.quote-copy address { margin-top: 45px; color: var(--muted); }
.quote-form {
    padding: clamp(28px, 5vw, 65px);
    border-radius: 28px;
    background: var(--paper-bright);
    box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 650; }
.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    color: var(--ink);
    border: 1px solid #c9cbc5;
    border-radius: 10px;
    outline: none;
    background: #fff;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(215,255,69,.6); }
.checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    font-size: .84rem;
    color: var(--muted);
}
.checkbox input { width: 18px; height: 18px; margin-top: 2px; }
.form-actions { display: flex; align-items: center; gap: 20px; margin-top: 30px; }
.form-note { max-width: 290px; margin: 0; color: var(--muted); font-size: .78rem; }
.form-alert { margin-bottom: 25px; padding: 16px 18px; border-radius: 10px; font-weight: 550; }
.form-alert.success { color: #203800; background: #e8ff9b; }
.form-alert.error { color: #641f18; background: #ffe2dc; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.content-page { padding: 190px 0 120px; }
.content-narrow { max-width: 900px; margin: 0 auto; }
.content-narrow h1 { max-width: 850px; font-size: clamp(3.3rem, 6vw, 6.5rem); }
.content-narrow h2 { margin-top: 70px; font-size: 2rem; letter-spacing: -.025em; }
.content-narrow p, .content-narrow li { color: var(--muted); }

.site-footer { padding: 120px max(28px, calc((100vw - 1440px) / 2)); color: var(--paper); background: var(--ink); }
.footer-cta { display: grid; grid-template-columns: 1fr 2.1fr auto; gap: 50px; align-items: end; padding-bottom: 95px; border-bottom: 1px solid var(--line-dark); }
.footer-cta h2 { max-width: 900px; margin: 0; font-size: clamp(2.7rem, 5.3vw, 6rem); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 70px;
    padding: 80px 0;
}
.footer-brand img { width: 190px; margin-bottom: 28px; }
.footer-brand p { max-width: 300px; color: #9ca39d; }
.footer-grid h3 { margin-bottom: 23px; color: #818882; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a, .footer-grid address { display: block; margin-bottom: 12px; color: #c2c7c3; font-size: .92rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid var(--line-dark); color: #818882; font-size: .82rem; }
.footer-bottom div { display: flex; gap: 25px; }

@media (max-width: 1100px) {
    :root { --container: min(calc(100% - 38px), 960px); }
    .section { padding: 115px 0; }
    .hero { min-height: auto; padding-bottom: 140px; }
    .hero-grid { grid-template-columns: 1fr; gap: 35px; }
    .hero-visual { height: 480px; width: min(620px, 100%); margin-left: auto; }
    .intro-grid, .method-grid, .local-grid, .quote-layout, .deliverable-grid { gap: 65px; }
    .bento-card.large, .bento-card.medium { grid-column: span 6; }
    .bento-card.third { grid-column: span 4; }
    .footer-cta { grid-template-columns: 1fr; align-items: start; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
    :root { --container: calc(100vw - 30px); }
    body { font-size: 16px; }
    .site-header { top: 10px; width: calc(100vw - 20px); }
    .brand img { width: 148px; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 88px;
        right: 10px;
        left: 10px;
        display: none;
        max-height: calc(100vh - 100px);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        padding: 20px;
        border-radius: 18px;
        background: var(--paper-bright);
        box-shadow: var(--shadow);
    }
    .menu-open .main-nav { display: flex; }
    .nav-link { width: 100%; padding: 16px 4px; text-align: left; }
    .nav-mega {
        position: static;
        display: none;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 6px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .nav-dropdown.is-open .nav-mega { display: grid; }
    .hero { padding-top: 145px; }
    .hero h1 { font-size: clamp(3.25rem, 14vw, 5.5rem); }
    .hero-grid, .intro-grid, .method-grid, .local-grid, .quote-layout, .deliverable-grid, .page-hero-grid { grid-template-columns: 1fr; }
    .hero-visual { height: 410px; }
    .hero-note { right: 10px; }
    .section-heading { align-items: start; flex-direction: column; gap: 25px; }
    .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-card.large, .bento-card.medium, .bento-card.third { grid-column: 1; }
    .services-accordion { min-height: auto; flex-direction: column; }
    .accordion-panel { min-height: 260px; }
    .accordion-panel:hover, .accordion-panel:focus-within { flex: 1; }
    .accordion-detail { opacity: 1; transform: none; }
    .accordion-panel .text-link { opacity: 1; }
    .method-title, .quote-copy { position: static; }
    .stack-card { grid-template-columns: 1fr; gap: 25px; padding: 38px 28px; }
    .outcome-grid, .related-grid { grid-template-columns: 1fr; }
    .page-hero { min-height: auto; padding-top: 170px; }
    .page-hero h1 { font-size: clamp(3rem, 13vw, 5.4rem); }
    .quote-page, .content-page { padding-top: 150px; }
    .form-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 540px) {
    .section { padding: 90px 0; }
    .hero-actions, .form-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button, .form-actions .button { width: 100%; }
    .hero-visual { height: 350px; }
    .hero-image { inset: 5% 0 0; border-radius: 100px 100px 20px 20px; }
    .hero-orbit { width: 130px; height: 130px; }
    .hero-note { width: 200px; padding: 18px; }
    .bento-card { min-height: 320px; padding: 27px; }
    .method-item { grid-template-columns: 45px 1fr; }
    .local-map { min-height: 420px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .word-reveal span { opacity: 1; }
}

/* Auralis art direction */
body {
    background:
        radial-gradient(circle at 82% 0%, rgba(79, 70, 229, .06), transparent 24rem),
        #fff;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.04;
}

h1 { font-size: clamp(3.35rem, 6vw, 6.35rem); }
h2 { font-size: clamp(2.65rem, 4.8vw, 5.25rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2.25rem); }

.section { padding: clamp(100px, 10vw, 152px) 0; }
.section-tight { padding: 80px 0; }
.expertise-section { background: #f7f8fc; }
.dark-section { background: var(--ink-soft); }
.accent-section { color: #fff; background: var(--primary); }
.dark-section .eyebrow { color: #67e8f9; }

.site-header {
    top: 16px;
    min-height: 64px;
    padding: 8px 10px 8px 16px;
    border: 1px solid rgba(229, 231, 235, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 10px 36px rgba(17, 24, 39, .08);
}

.brand img { width: 220px; }
.nav-link { color: #111827; font-size: .88rem; }
.nav-mega {
    border-color: #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .12);
}
.nav-mega a { border-radius: 6px; }
.nav-mega a:hover { color: var(--primary); background: #eef2ff; }

.button {
    min-height: 52px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: none;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; }
.button-dark { background: var(--ink-soft); }
.button-light { color: #111827; background: #fff; }
.button-outline { color: #111827; border-color: #c7cbd2; background: rgba(255,255,255,.66); }
.dark-section .button-outline,
.page-hero .button-outline { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }

.hero {
    min-height: 940px;
    padding: 168px 0 120px;
    color: #111827;
    background:
        linear-gradient(rgba(79,70,229,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,.045) 1px, transparent 1px),
        radial-gradient(circle at 78% 20%, rgba(6,182,212,.13), transparent 27rem),
        radial-gradient(circle at 12% 0%, rgba(79,70,229,.13), transparent 30rem),
        #fff;
    background-size: 64px 64px, 64px 64px, auto, auto, auto;
}
.hero::before {
    position: absolute;
    z-index: 0;
    top: 112px;
    right: 3vw;
    width: 44vw;
    height: 44vw;
    max-width: 680px;
    max-height: 680px;
    border: 1px solid rgba(79,70,229,.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 660px;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .72fr);
    gap: clamp(50px, 7vw, 120px);
}
.hero h1 { max-width: 1040px; margin-bottom: 30px; }
.hero h1 strong { color: var(--primary); }
.hero-intro { color: #4b5563; }
.hero-image {
    inset: 0;
    border: 8px solid rgba(255,255,255,.72);
    border-radius: 8px;
    background: #dbeafe;
    box-shadow: 0 32px 100px rgba(49,46,129,.20);
}
.hero-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(17,24,39,.24));
    content: "";
    pointer-events: none;
}
.hero-image img { filter: saturate(.86) contrast(1.03); opacity: 1; }
.hero-orbit {
    z-index: 2;
    top: -42px;
    right: -42px;
    width: 170px;
    height: 170px;
    border-color: rgba(79,70,229,.42);
}
.hero-orbit::after { background: var(--accent); }
.hero-note {
    z-index: 3;
    right: -26px;
    bottom: 28px;
    width: 250px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(28,28,30,.91);
    box-shadow: 0 20px 60px rgba(17,24,39,.23);
    backdrop-filter: blur(14px);
}
.marquee {
    color: #fff;
    border-color: rgba(255,255,255,.11);
    background: var(--ink-soft);
}
.marquee-track span { color: #d1d5db; font-family: "JetBrains Mono", monospace; }
.marquee-track span::after { background: var(--accent); }

.inline-image { width: 1.75em; height: .64em; border: 3px solid #fff; box-shadow: 0 5px 18px rgba(17,24,39,.12); }
.intro-copy p { color: #4b5563; font-size: 1.15rem; }

.section-heading { margin-bottom: 64px; }
.section-heading p { color: #4b5563; }

.bento { gap: 16px; }
.bento-card {
    min-height: 380px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(17,24,39,.04);
}
.bento-card:hover { box-shadow: 0 22px 65px rgba(17,24,39,.10); transform: translateY(-5px); }
.bento-card.dark { background: var(--ink-soft); }
.bento-card.accent { color: #fff; background: var(--primary); }
.bento-card.accent p { color: #e0e7ff; }
.bento-card p { position: relative; z-index: 2; }
.bento-card h3 { position: relative; z-index: 2; }
.bento-card-footer { position: relative; z-index: 3; }
.bento-links a { border-color: #d1d5db; border-radius: 999px; }
.dark .bento-links a { border-color: rgba(255,255,255,.28); }
.card-arrow { border-radius: 8px; background: var(--primary); }
.dark .card-arrow { color: #111827; background: var(--accent); }
.accent .card-arrow { color: var(--primary); background: #fff; }
.photo-card { min-height: 480px; padding-top: 245px; }
.bento-media {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: saturate(.78) contrast(1.03);
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.photo-card::after {
    position: absolute;
    z-index: 1;
    top: 130px;
    right: 0;
    left: 0;
    height: 100px;
    background: linear-gradient(transparent, #fff);
    content: "";
    pointer-events: none;
}
.photo-card:hover .bento-media { transform: scale(1.045); }

.services-accordion { gap: 8px; }
.accordion-panel {
    min-width: 74px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(79,70,229,.13), transparent 44%),
        #242427;
}
.accordion-panel:hover,
.accordion-panel:focus-within { background: linear-gradient(145deg, rgba(6,182,212,.15), transparent 52%), #29292d; }
.accordion-index { color: #67e8f9; font-family: "JetBrains Mono", monospace; }

.method-item span,
.deliverable-item span { color: #67e8f9; font-family: "JetBrains Mono", monospace; }
.word-reveal { font-weight: 500; }
.word-reveal span { color: var(--primary); opacity: .10; }

.stack-card {
    top: 118px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(17,24,39,.08);
}
.stack-card:nth-child(2) { background: #eef2ff; }
.stack-card:nth-child(3) { background: var(--ink-soft); }

.local-map { box-shadow: 0 24px 70px rgba(17,24,39,.12); }
.local-card { border: 1px solid #e5e7eb; border-radius: 8px; }

.page-hero {
    min-height: 720px;
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        radial-gradient(circle at 82% 12%, rgba(79,70,229,.55), transparent 32rem),
        var(--ink-soft);
    background-size: 64px 64px, 64px 64px, auto, auto;
}
.page-hero .eyebrow { color: #67e8f9; }
.page-hero .lead { color: #d1d5db; }
.page-hero-side strong { color: #67e8f9; font-family: "JetBrains Mono", monospace; }

.outcome-grid { border-color: #e5e7eb; }
.outcome { border-color: #e5e7eb; background: #fff; }
.outcome span { color: var(--primary); font-family: "JetBrains Mono", monospace; }
.related-card { border-radius: 8px; }
.related-card:hover { color: #fff; background: var(--primary); }
.related-card:hover small { color: #c7d2fe; }

.quote-form {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(17,24,39,.09);
}
.field input, .field select, .field textarea { border-radius: 8px; }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,.15);
}
.form-alert.success { color: #0e4f5e; background: #cffafe; }

.site-footer { background: var(--ink-soft); }
.footer-cta .button-light { color: #fff; background: var(--primary); }

@media (max-width: 820px) {
    .hero-grid,
    .intro-grid,
    .method-grid,
    .local-grid,
    .quote-layout,
    .deliverable-grid,
    .page-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-copy,
    .hero-visual {
        width: 100%;
        min-width: 0;
    }
    .hero-visual { margin: 30px 0 0; }
    .brand img { width: 170px; }
    .site-header { border-radius: 8px; }
    .main-nav { border: 1px solid #e5e7eb; border-radius: 8px; }
    .hero { padding-top: 132px; background-size: 48px 48px, 48px 48px, auto, auto, auto; }
    .hero::before { display: none; }
    .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
    .hero-visual { height: 480px; }
    .hero-note { right: 14px; }
    .photo-card { min-height: 450px; }
}

@media (max-width: 540px) {
    .hero-visual { height: 420px; }
    .hero-note { width: 210px; }
    .photo-card { padding-top: 225px; }
    .bento-media { height: 200px; }
}

/* Homepage experience */
.home-page .page-shell {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.home-page .site-header {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.93);
}

.home-chapter {
    position: relative;
    padding: clamp(130px, 13vw, 220px) 0;
}

.home-hero {
    position: relative;
    min-height: 1000px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        radial-gradient(circle at 9% 13%, rgba(79,70,229,.42), transparent 31rem),
        radial-gradient(circle at 82% 61%, rgba(6,182,212,.14), transparent 30rem),
        #111113;
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.home-hero::before {
    position: absolute;
    z-index: 1;
    right: -8vw;
    bottom: 70px;
    width: 58vw;
    height: 58vw;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
    content: "";
}

.home-hero::after {
    position: absolute;
    z-index: 1;
    top: 190px;
    right: 21vw;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 34px rgba(6,182,212,.95);
    content: "";
}

.home-hero-glow {
    position: absolute;
    top: -240px;
    left: 30%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(79,70,229,.22);
    filter: blur(120px);
    pointer-events: none;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 920px;
    padding-top: 225px;
}

.home-hero-copy {
    position: relative;
    z-index: 4;
    width: min(76%, 1080px);
}

.home-hero .eyebrow {
    color: #67e8f9;
}

.home-hero h1 {
    max-width: 1280px;
    margin-top: 34px;
    color: #fff;
    font-size: clamp(4.2rem, 7.6vw, 7.9rem);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -.07em;
    text-wrap: balance;
}

.home-hero h1 strong {
    display: inline;
    color: #818cf8;
    font-weight: 500;
}

.home-hero-intro {
    max-width: 690px;
    margin-top: 38px;
    color: #d1d5db;
    font-size: clamp(1.18rem, 1.65vw, 1.48rem);
    line-height: 1.52;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 42px;
}

.button-ghost-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
}

.button-ghost-light:hover {
    color: #111827;
    border-color: #fff;
    background: #fff;
}

.home-hero-stage {
    position: absolute;
    z-index: 3;
    right: -3%;
    bottom: 85px;
    width: min(47vw, 670px);
    height: 690px;
    pointer-events: none;
}

.home-hero-main-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 78%;
    height: 82%;
    overflow: hidden;
    border: 8px solid rgba(255,255,255,.88);
    border-radius: 8px;
    box-shadow: 0 42px 120px rgba(0,0,0,.45);
}

.home-hero-main-image::after,
.home-hero-side-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 56%, rgba(17,17,19,.38));
    content: "";
}

.home-hero-main-image img,
.home-hero-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75) contrast(1.08);
}

.home-hero-side-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 35%;
    overflow: hidden;
    border: 6px solid rgba(255,255,255,.9);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.home-hero-caption {
    position: absolute;
    z-index: 3;
    right: 40%;
    bottom: 42px;
    width: 260px;
    padding: 22px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(28,28,30,.9);
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
    font-size: .94rem;
    line-height: 1.45;
    backdrop-filter: blur(16px);
}

.home-marquee {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(17,17,19,.88);
    backdrop-filter: blur(14px);
}

.home-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 38px;
    padding: 25px 0;
    animation: homeMarquee 34s linear infinite;
}

.home-marquee-track span {
    color: #e5e7eb;
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-marquee-track i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(6,182,212,.65);
}

@keyframes homeMarquee {
    to { transform: translateX(-50%); }
}

.home-intro {
    background:
        radial-gradient(circle at 85% 15%, rgba(6,182,212,.1), transparent 27rem),
        #fff;
}

.home-intro h2 {
    max-width: 1320px;
    margin-top: 35px;
    font-size: clamp(3.5rem, 6.4vw, 7rem);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.06em;
}

.home-inline-image {
    display: inline-block;
    width: 1.58em;
    height: .58em;
    margin: 0 .08em;
    vertical-align: .07em;
    border: 4px solid #fff;
    border-radius: 999px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 10px 35px rgba(17,24,39,.16);
}

.home-inline-image-analytics {
    background-image: url("/assets/img/growth-analytics.webp");
}

.home-inline-image-product {
    background-image: url("/assets/img/saas-automation-workshop.webp");
}

.home-intro-foot {
    display: grid;
    max-width: 760px;
    margin-top: 62px;
    margin-left: auto;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 45px;
}

.home-intro-foot p {
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.7;
}

.home-expertise {
    background:
        linear-gradient(rgba(79,70,229,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,.035) 1px, transparent 1px),
        #f7f8fc;
    background-size: 64px 64px;
}

.home-section-head {
    display: grid;
    margin-bottom: 75px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
    align-items: end;
    gap: 70px;
}

.home-section-head h2 {
    max-width: 930px;
    margin-top: 22px;
    font-size: clamp(3.4rem, 5.3vw, 6rem);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.055em;
}

.home-section-head > p {
    max-width: 470px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.home-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 410px;
    gap: 14px;
}

.home-bento-wide { grid-column: span 7; }
.home-bento-narrow { grid-column: span 5; }
.home-bento-third { grid-column: span 4; }

.home-bento-card {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(17,24,39,.045);
    transition: transform .65s cubic-bezier(.2,.8,.2,1), box-shadow .65s ease;
}

.home-bento-card:hover {
    z-index: 2;
    box-shadow: 0 30px 80px rgba(17,24,39,.16);
    transform: translateY(-7px);
}

.home-bento-card h3 {
    max-width: 620px;
    margin-top: 15px;
    font-size: clamp(2rem, 2.6vw, 3.35rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.045em;
}

.home-bento-card p:not(.eyebrow) {
    max-width: 520px;
    margin-top: 18px;
    color: #9ca3af;
    line-height: 1.6;
}

.home-bento-dark {
    color: #fff;
    border-color: rgba(255,255,255,.1);
    background:
        radial-gradient(circle at 80% 30%, rgba(79,70,229,.34), transparent 18rem),
        #1c1c1e;
}

.home-bento-signal {
    position: absolute;
    top: 35px;
    right: 35px;
    display: flex;
    height: 120px;
    align-items: end;
    gap: 7px;
    opacity: .74;
}

.home-bento-signal span {
    width: 7px;
    border-radius: 99px;
    background: var(--accent);
    animation: homeSignal 1.8s ease-in-out infinite alternate;
}

.home-bento-signal span:nth-child(1) { height: 35%; animation-delay: -.2s; }
.home-bento-signal span:nth-child(2) { height: 75%; animation-delay: -.7s; }
.home-bento-signal span:nth-child(3) { height: 50%; animation-delay: -1.2s; }
.home-bento-signal span:nth-child(4) { height: 100%; animation-delay: -.4s; }

@keyframes homeSignal {
    to { height: 24%; opacity: .35; }
}

.home-bento-footer {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
}

.home-bento-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-bento-links a {
    padding: 8px 11px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    font-size: .78rem;
}

.home-card-arrow {
    position: relative;
    z-index: 4;
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    color: #fff;
    border-radius: 8px;
    background: var(--primary);
    place-items: center;
    transition: transform .4s ease, background .4s ease;
}

.home-bento-card:hover .home-card-arrow {
    background: var(--accent);
    transform: rotate(45deg);
}

.home-bento-image {
    padding: 0;
    color: #fff;
    border: 0;
    background: #1c1c1e;
}

.home-bento-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,24,39,.02) 22%, rgba(17,24,39,.9) 100%);
    content: "";
}

.home-bento-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) contrast(1.06);
    transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .9s ease;
}

.home-bento-image:hover > img {
    filter: saturate(.95) contrast(1.03);
    transform: scale(1.07);
}

.home-bento-image-copy {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 28px;
}

.home-bento-image-copy h3 {
    padding-right: 55px;
    font-size: clamp(1.8rem, 2.2vw, 2.75rem);
}

.home-bento-image-copy .home-card-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
}

.home-bento-primary {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 80% 12%, rgba(255,255,255,.22), transparent 16rem),
        var(--primary);
}

.home-bento-primary .eyebrow { color: #cffafe; }
.home-bento-primary p:not(.eyebrow) { color: #e0e7ff; }
.home-card-arrow-light { color: var(--primary); background: #fff; }

.home-site-window {
    display: grid;
    width: 100%;
    height: 118px;
    padding: 17px;
    grid-template-columns: repeat(3, 7px) 1fr;
    grid-template-rows: 8px 1fr;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: rgba(255,255,255,.09);
}

.home-site-window span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
}

.home-site-window div {
    grid-column: 1 / -1;
    border-radius: 4px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.9) 35%, transparent 35%),
        linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
    background-position: 20px 22px, 0 0;
    background-size: 100% 15px, 100% 20px;
    opacity: .58;
}

.home-paths {
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(79,70,229,.4), transparent 32rem),
        #171719;
}

.home-section-head-light > p { color: #9ca3af; }
.home-section-head-light .eyebrow { color: #67e8f9; }

.home-accordion {
    display: flex;
    min-height: 580px;
    gap: 8px;
}

.home-accordion-panel {
    position: relative;
    display: flex;
    min-width: 82px;
    overflow: hidden;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(79,70,229,.16), transparent 50%),
        #222225;
    cursor: pointer;
    transition: flex .75s cubic-bezier(.2,.8,.2,1), background .5s ease;
}

.home-accordion-panel::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(6,182,212,.28);
    border-radius: 50%;
    content: "";
}

.home-accordion-panel > span {
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: .68rem;
    letter-spacing: .17em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.home-accordion-panel > div {
    width: min(430px, 33vw);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease .12s, transform .5s ease .12s;
}

.home-accordion-panel h3 {
    font-size: clamp(2rem, 3.2vw, 4rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.05em;
}

.home-accordion-panel p {
    margin-top: 20px;
    color: #b6bbc3;
    line-height: 1.65;
}

.home-accordion-panel a {
    display: inline-block;
    margin-top: 24px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.42);
}

.home-accordion-panel.is-active,
.home-accordion-panel:hover,
.home-accordion-panel:focus {
    flex: 5 1 0;
    outline: none;
    background:
        radial-gradient(circle at 75% 15%, rgba(6,182,212,.17), transparent 20rem),
        linear-gradient(145deg, rgba(79,70,229,.34), transparent 60%),
        #29292d;
}

.home-accordion-panel.is-active > div,
.home-accordion-panel:hover > div,
.home-accordion-panel:focus > div {
    opacity: 1;
    transform: none;
}

.home-story {
    background: #fff;
}

.home-story-grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(70px, 10vw, 170px);
}

.home-story-title {
    padding-top: 30px;
}

.home-story-title h2 {
    max-width: 590px;
    margin-top: 22px;
    font-size: clamp(3.2rem, 4.8vw, 5.7rem);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.055em;
}

.home-story-title > p:not(.eyebrow) {
    max-width: 510px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.home-story-title .text-link {
    display: inline-block;
    margin-top: 30px;
}

.home-story-cards {
    display: grid;
    gap: 110px;
}

.home-story-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(17,24,39,.09);
}

.home-story-card figure {
    height: 460px;
    overflow: hidden;
    background: #e5e7eb;
}

.home-story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) contrast(1.03);
    transform: scale(.86);
    transform-origin: center;
}

.home-story-card > div {
    padding: 38px;
}

.home-story-card h3 {
    max-width: 660px;
    margin-top: 16px;
    font-size: clamp(2.3rem, 3.5vw, 4.2rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.05em;
}

.home-story-card p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.home-manifesto {
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        radial-gradient(circle at 22% 60%, rgba(79,70,229,.45), transparent 30rem),
        #1c1c1e;
    background-size: 64px 64px, 64px 64px, auto, auto;
}

.home-word-reveal {
    max-width: 1320px;
    font-size: clamp(3.5rem, 6.8vw, 7.7rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.06em;
}

.home-word-reveal span {
    color: #fff;
    opacity: .1;
}

.home-offers {
    background:
        radial-gradient(circle at 90% 20%, rgba(79,70,229,.1), transparent 28rem),
        #f7f8fc;
}

.home-offer-stack {
    position: relative;
    padding-bottom: 130px;
}

.home-offer-card {
    position: sticky;
    top: 118px;
    display: grid;
    min-height: 330px;
    padding: clamp(35px, 5vw, 72px);
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 70px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(17,24,39,.09);
}

.home-offer-card + .home-offer-card { margin-top: 100px; }
.home-offer-card:nth-child(2) { background: #eef2ff; }
.home-offer-card:nth-child(3) { color: #fff; border-color: #2c2c30; background: #1c1c1e; }
.home-offer-card:nth-child(3) p { color: #c4c7cd; }
.home-offer-card:nth-child(3) .eyebrow { color: #67e8f9; }
.home-offer-card:nth-child(3) .text-link { color: #fff; }

.home-offer-card h3 {
    margin-top: 16px;
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.055em;
}

.home-offer-card > div:last-child p {
    max-width: 570px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.home-offer-card .text-link {
    display: inline-block;
    margin-top: 26px;
}

.home-paris {
    padding-top: 70px;
    background: #f7f8fc;
}

.home-paris-visual {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    border-radius: 8px;
    background: #1c1c1e;
}

.home-paris-visual::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17,17,19,.9) 0%, rgba(17,17,19,.55) 46%, rgba(17,17,19,.08) 76%),
        linear-gradient(0deg, rgba(17,17,19,.48), transparent 50%);
    content: "";
}

.home-paris-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) contrast(1.07);
    transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}

.home-paris-visual:hover > img {
    transform: scale(1.045);
}

.home-paris-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(35px, 7vw, 100px);
    max-width: 710px;
    color: #fff;
    transform: translateY(-50%);
}

.home-paris-copy .eyebrow { color: #67e8f9; }

.home-paris-copy h2 {
    margin-top: 22px;
    font-size: clamp(3.4rem, 5.6vw, 6.7rem);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.06em;
}

.home-paris-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin-top: 28px;
    color: #d1d5db;
    font-size: 1.08rem;
    line-height: 1.65;
}

.home-paris-copy .button {
    margin-top: 36px;
}

.home-faq {
    background: #fff;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: start;
    gap: clamp(70px, 10vw, 160px);
}

.home-faq h2 {
    margin-top: 20px;
    font-size: clamp(3.5rem, 5.2vw, 6rem);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.055em;
}

.home-faq .faq {
    max-width: none;
}

.home-faq .faq summary {
    font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

@media (max-width: 1120px) {
    .home-hero {
        min-height: 940px;
    }
    .home-hero-inner {
        min-height: 860px;
        padding-top: 190px;
    }
    .home-hero-copy {
        width: 80%;
    }
    .home-hero-stage {
        right: -8%;
        width: 55vw;
        height: 590px;
    }
    .home-story-grid {
        gap: 70px;
    }
}

@media (max-width: 820px) {
    .home-chapter {
        padding: 105px 0;
    }
    .home-hero {
        min-height: 1110px;
        background-size: 48px 48px, 48px 48px, auto, auto, auto;
    }
    .home-hero::before {
        right: -42vw;
        bottom: 90px;
        width: 120vw;
        height: 120vw;
    }
    .home-hero-inner {
        min-height: 1020px;
        padding-top: 155px;
    }
    .home-hero-copy {
        width: 100%;
    }
    .home-hero h1 {
        max-width: 100%;
        margin-top: 25px;
        font-size: clamp(3.4rem, 10.5vw, 5.1rem);
        line-height: .9;
    }
    .home-hero-intro {
        max-width: 590px;
        margin-top: 28px;
        font-size: 1.08rem;
    }
    .home-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    .home-hero-actions .button {
        width: 100%;
    }
    .home-hero-stage {
        right: 0;
        bottom: 90px;
        left: 0;
        width: 100%;
        height: 420px;
    }
    .home-hero-main-image {
        right: 0;
        width: 82%;
        height: 100%;
    }
    .home-hero-side-image {
        top: 25px;
        width: 42%;
        height: 32%;
    }
    .home-hero-caption {
        right: auto;
        bottom: 24px;
        left: 0;
        width: 230px;
    }
    .home-intro h2 {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    .home-intro-foot,
    .home-section-head,
    .home-story-grid,
    .home-faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .home-intro-foot {
        margin-left: 0;
        gap: 24px;
    }
    .home-section-head {
        margin-bottom: 50px;
        gap: 28px;
    }
    .home-section-head h2 {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    .home-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 390px;
    }
    .home-bento-wide,
    .home-bento-narrow,
    .home-bento-third {
        grid-column: span 1;
    }
    .home-bento-wide {
        grid-column: 1 / -1;
    }
    .home-accordion {
        min-height: 0;
        flex-direction: column;
    }
    .home-accordion-panel {
        min-height: 110px;
        padding: 24px;
    }
    .home-accordion-panel > span {
        writing-mode: initial;
    }
    .home-accordion-panel > div {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }
    .home-accordion-panel.is-active,
    .home-accordion-panel:hover,
    .home-accordion-panel:focus {
        min-height: 390px;
    }
    .home-accordion-panel.is-active > div,
    .home-accordion-panel:hover > div,
    .home-accordion-panel:focus > div {
        max-height: 290px;
    }
    .home-story-title {
        margin-bottom: 55px;
    }
    .home-story-cards {
        gap: 55px;
    }
    .home-story-card figure {
        height: 360px;
    }
    .home-word-reveal {
        font-size: clamp(3rem, 12vw, 5.5rem);
    }
    .home-offer-card {
        top: 100px;
        min-height: 430px;
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }
    .home-paris-visual {
        min-height: 700px;
    }
    .home-paris-visual::after {
        background: linear-gradient(0deg, rgba(17,17,19,.94) 0%, rgba(17,17,19,.38) 76%);
    }
    .home-paris-copy {
        top: auto;
        right: 28px;
        bottom: 40px;
        left: 28px;
        transform: none;
    }
}

@media (max-width: 560px) {
    .home-hero {
        min-height: 1080px;
    }
    .home-hero-inner {
        min-height: 990px;
    }
    .home-hero h1 {
        font-size: clamp(3rem, 12vw, 3.45rem);
    }
    .home-hero-stage {
        bottom: 45px;
        height: 365px;
    }
    .home-hero-main-image {
        width: 88%;
    }
    .home-hero-side-image {
        width: 45%;
    }
    .home-hero-caption {
        width: 205px;
        padding: 17px;
        font-size: .83rem;
    }
    .home-marquee-track {
        padding: 20px 0;
    }
    .home-inline-image {
        border-width: 2px;
    }
    .home-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .home-bento-wide,
    .home-bento-narrow,
    .home-bento-third {
        min-height: 420px;
        grid-column: 1;
    }
    .home-bento-card {
        padding: 27px;
    }
    .home-bento-image {
        padding: 0;
    }
    .home-bento-signal {
        right: 24px;
    }
    .home-accordion-panel.is-active,
    .home-accordion-panel:hover,
    .home-accordion-panel:focus {
        min-height: 430px;
    }
    .home-story-card figure {
        height: 280px;
    }
    .home-story-card > div {
        padding: 27px;
    }
    .home-offer-card {
        min-height: 470px;
    }
    .home-offer-card h3 {
        font-size: 3.2rem;
    }
    .home-paris-visual {
        min-height: 660px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-marquee-track,
    .home-bento-signal span {
        animation: none;
    }
    .home-story-card img,
    .home-word-reveal span {
        opacity: 1;
        transform: none;
    }
}
