:root {
    --ink: #07110e;
    --ink-soft: #15211c;
    --paper: #f2f0e8;
    --paper-bright: #fbfaf5;
    --warm: #d9d1c1;
    --acid: #c8ff32;
    --line-dark: rgba(255, 255, 255, 0.18);
    --line-light: rgba(7, 17, 14, 0.16);
    --muted: #667069;
    --shell: min(92vw, 1440px);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper-bright);
    font-family: "Geist", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.94;
}

.page-shell {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.shell { width: var(--shell); margin-inline: auto; }
.max-w-5xl { width: 100%; max-width: 64rem; }
.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: 10px;
    left: 10px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--acid);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    border-bottom: 1px solid transparent;
    transition: background 300ms ease, border-color 300ms ease, color 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--ink);
    background: rgba(251, 250, 245, 0.92);
    border-color: var(--line-light);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.brand-mark {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    transform: rotate(45deg);
    border-radius: 8px;
}

.brand-mark span { transform: rotate(-45deg); font-size: 13px; letter-spacing: 0; }
.brand-word { font-size: 13px; }

.desktop-nav { display: flex; align-items: center; gap: 36px; }

.desktop-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 350ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 11px 0;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}

.nav-cta span, .button span, .text-link span { transition: transform 350ms var(--ease); }
.nav-cta:hover span, .button:hover span { transform: translate(3px, -3px); }
.text-link:hover span { transform: translateY(4px); }

.menu-toggle { display: none; color: inherit; background: none; border: 0; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 6px 0; background: currentColor; transition: transform 250ms ease; }
.site-header.is-open .menu-toggle > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.site-header.is-open .menu-toggle > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-navigation { color: var(--ink); background: var(--paper-bright); border-top: 1px solid var(--line-light); }
.mobile-navigation nav { min-height: calc(100vh - 86px); display: flex; flex-direction: column; padding: 40px 0 80px; }
.mobile-navigation a { padding: 18px 0; font-size: clamp(2rem, 9vw, 4rem); letter-spacing: -0.05em; border-bottom: 1px solid var(--line-light); }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 31px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--ink); }

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button-accent { color: var(--ink); background: var(--acid); }
.button-accent:hover { background: #ddff7c; }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--acid); }
.button-light { color: var(--ink); background: var(--paper-bright); }
.button-light:hover { background: var(--acid); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid currentColor;
}

.text-link-light { color: white; }

.hero-section {
    position: relative;
    min-height: 860px;
    display: flex;
    align-items: center;
    color: white;
    background: var(--ink);
    isolation: isolate;
}

.hero-ambient {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 79% 45%, rgba(117, 154, 133, 0.24), transparent 27%),
        radial-gradient(circle at 10% 90%, rgba(200, 255, 50, 0.07), transparent 30%),
        linear-gradient(120deg, #07110e 0%, #07110e 48%, #10211a 100%);
}

.hero-ambient::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: clamp(42px, 6vw, 110px);
    padding-top: 150px;
    padding-bottom: 96px;
}

.hero-copy h1 {
    max-width: 860px;
    margin-bottom: 34px;
    font-size: clamp(3rem, 6.4vw, 6.75rem);
    text-wrap: balance;
}

.hero-intro { max-width: 610px; margin-bottom: 40px; color: rgba(255, 255, 255, 0.7); font-size: clamp(1.05rem, 1.35vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: flex-end;
}

.hero-image-wrap {
    position: absolute;
    inset: 0 0 64px 30px;
    overflow: hidden;
    border-radius: 48% 48% 0 0;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 17, 14, .8), transparent 65%);
}

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.25) brightness(.82); transition: transform 900ms var(--ease); }
.hero-visual:hover .hero-image-wrap img { transform: scale(1.05); }

.hero-note {
    position: relative;
    z-index: 2;
    width: min(82%, 360px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    margin-left: 0;
    padding: 22px;
    color: var(--ink);
    background: var(--paper-bright);
}

.hero-note p { margin: 0; font-size: 13px; line-height: 1.5; }
.status-dot { width: 9px; height: 9px; margin-top: 5px; background: #4da16a; border-radius: 50%; box-shadow: 0 0 0 6px rgba(77, 161, 106, 0.13); }

.signal-paths { position: absolute; inset: 4% -10% auto 55%; height: 150px; pointer-events: none; }
.signal-paths span { position: absolute; display: block; width: 140px; height: 58px; border: 1px solid rgba(200, 255, 50, .34); border-left: 0; border-bottom: 0; }
.signal-paths span:nth-child(2) { transform: translate(24px, 28px); opacity: .6; }
.signal-paths span:nth-child(3) { transform: translate(48px, 56px); opacity: .25; }

.marquee-section { overflow: hidden; color: var(--ink); background: var(--acid); border-block: 1px solid var(--ink); }
.marquee-track { width: max-content; display: flex; animation: marquee 36s linear infinite; }
.marquee-content { display: flex; align-items: center; padding: 20px 0; }
.marquee-content span { padding: 0 28px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.marquee-content i { width: 6px; height: 6px; background: currentColor; transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.chapter { padding: clamp(130px, 15vw, 230px) 0; }
.section-light { background: var(--paper-bright); }
.section-warm { background: var(--warm); }

.section-heading { margin-bottom: 72px; }
.section-heading h2 { max-width: 900px; margin-bottom: 0; font-size: clamp(3rem, 6vw, 6.2rem); text-wrap: balance; }
.section-heading p { max-width: 560px; margin: 26px 0 0 auto; color: var(--muted); font-size: 18px; line-height: 1.6; }
.split-heading { display: grid; grid-template-columns: 1fr .52fr; gap: 60px; align-items: end; }
.split-heading p { margin: 0 0 8px; }

.service-bento {
    min-height: 760px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    grid-auto-flow: dense;
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink);
}

.bento-card { position: relative; min-height: 0; overflow: hidden; color: white; background: var(--ink); }
.bento-primary { grid-column: span 7; grid-row: span 2; }
.bento-secondary, .bento-tertiary { grid-column: span 5; grid-row: span 1; }
.card-media { position: absolute; inset: 0; overflow: hidden; }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,14,.95) 0%, rgba(7,17,14,.18) 70%); }
.card-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.2); transition: transform 700ms var(--ease), filter 700ms ease; }
.bento-card:hover .card-media img { transform: scale(1.05); filter: grayscale(.25) contrast(1.15); }

.bento-copy {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: end;
    padding: clamp(24px, 3.2vw, 52px);
}

.bento-copy h3 { max-width: 620px; margin-bottom: 10px; font-size: clamp(1.7rem, 3vw, 3.5rem); }
.bento-copy p { max-width: 560px; margin: 0; color: rgba(255,255,255,.68); }
.bento-secondary .bento-copy h3, .bento-tertiary .bento-copy h3 { font-size: clamp(1.4rem, 2vw, 2.4rem); }
.card-index { align-self: start; font-size: 11px; letter-spacing: .12em; }
.card-arrow { font-size: 22px; transition: transform 400ms var(--ease); }
.bento-card:hover .card-arrow { transform: translate(5px, -5px); }

.accordion-chapter { color: white; background: var(--ink); }
.section-heading-dark { display: grid; grid-template-columns: 1fr .4fr; align-items: end; gap: 60px; }
.section-heading-dark p { color: rgba(255,255,255,.6); margin-bottom: 8px; }

.horizontal-accordion { height: 650px; display: flex; gap: 1px; overflow: hidden; background: var(--line-dark); }
.accordion-panel { position: relative; flex: 1 1 0; overflow: hidden; background: #101c17; cursor: pointer; outline: none; transition: flex 750ms var(--ease); }
.accordion-panel.is-active, .accordion-panel:hover, .accordion-panel:focus-visible { flex: 4 1 0; }
.accordion-panel img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.2); transition: filter 600ms ease, transform 700ms var(--ease); }
.accordion-panel.is-active img, .accordion-panel:hover img, .accordion-panel:focus-visible img { filter: grayscale(.15) contrast(1.12); transform: scale(1.04); }
.accordion-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,14,.94), rgba(7,17,14,.03) 68%); }
.accordion-number { position: absolute; top: 22px; left: 22px; font-size: 11px; letter-spacing: .12em; }
.accordion-copy { position: absolute; bottom: 32px; left: 30px; width: min(520px, calc(100% - 60px)); }
.accordion-copy h3 { margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 3.3rem); white-space: nowrap; }
.accordion-copy p { width: 420px; max-width: 100%; margin: 0; color: rgba(255,255,255,.7); opacity: 0; transform: translateY(16px); transition: opacity 450ms ease 150ms, transform 450ms var(--ease) 150ms; }
.accordion-panel.is-active .accordion-copy p, .accordion-panel:hover .accordion-copy p, .accordion-panel:focus-visible .accordion-copy p { opacity: 1; transform: none; }

.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 180px); align-items: start; }
.process-intro { position: sticky; top: 150px; }
.process-intro h2 { margin-bottom: 30px; font-size: clamp(3.2rem, 6vw, 6.5rem); }
.process-intro > p:last-child { max-width: 480px; color: #4b534f; font-size: 18px; }
.stack-cards { display: flex; flex-direction: column; gap: 42px; }
.stack-card { position: relative; min-height: 420px; padding: clamp(32px, 5vw, 72px); background: var(--paper-bright); border: 1px solid rgba(7,17,14,.2); overflow: hidden; }
.stack-card > span { display: inline-block; margin-bottom: 90px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.stack-card h3 { max-width: 620px; margin-bottom: 20px; font-size: clamp(2.5rem, 4.5vw, 5rem); }
.stack-card p { max-width: 540px; margin: 0; color: var(--muted); font-size: 18px; }
.stack-line { position: absolute; top: 0; right: 10%; width: 1px; height: 100%; background: rgba(7,17,14,.12); transform: rotate(24deg); transform-origin: top; }

.proof-section { color: white; background: #0d1914; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 8vw, 150px); align-items: center; }
.proof-image { min-height: 650px; overflow: hidden; border-radius: 50% 50% 0 0; }
.proof-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.2); transition: transform 700ms var(--ease); }
.proof-image:hover img { transform: scale(1.05); }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 700ms var(--ease); }
.principle-slide { flex: 0 0 100%; margin: 0; }
.principle-slide p { max-width: 720px; margin-bottom: 40px; font-size: clamp(2.3rem, 4.5vw, 5rem); font-weight: 500; line-height: 1.02; letter-spacing: -.055em; }
.principle-slide footer { color: rgba(255,255,255,.55); font-size: 13px; }
.carousel-controls { display: flex; align-items: center; gap: 18px; margin-top: 70px; }
.carousel-controls button { width: 50px; height: 50px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.25); cursor: pointer; transition: color 250ms ease, background 250ms ease; }
.carousel-controls button:hover { color: var(--ink); background: var(--acid); }
.carousel-controls span { min-width: 46px; text-align: center; font-size: 12px; letter-spacing: .1em; }

.inner-hero { padding: 210px 0 130px; color: white; background: var(--ink); }
.inner-hero-grid { display: grid; grid-template-columns: .4fr 1fr; gap: 40px 80px; align-items: start; }
.inner-hero .eyebrow { grid-row: span 2; margin-top: 14px; }
.inner-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(4rem, 8vw, 8.5rem); text-wrap: balance; }
.inner-hero > .shell > p:last-child { max-width: 640px; margin: 0; color: rgba(255,255,255,.62); font-size: 19px; }
.inner-content-section { padding: clamp(110px, 13vw, 200px) 0; background: var(--paper-bright); }

.cms-content { width: min(100%, 980px); margin-left: auto; margin-right: 8vw; }
.cms-content > *:first-child { margin-top: 0; }
.cms-content h2 { margin: 100px 0 32px; font-size: clamp(2.6rem, 5vw, 5.3rem); }
.cms-content h3 { margin: 70px 0 24px; font-size: clamp(2rem, 3.5vw, 3.8rem); }
.cms-content h4 { margin: 42px 0 18px; font-size: 1.3rem; letter-spacing: -.025em; }
.cms-content p, .cms-content li { color: #4b5650; font-size: 18px; line-height: 1.75; }
.cms-content ul, .cms-content ol { padding-left: 22px; }
.cms-content a { text-decoration: underline; text-decoration-color: #7b8a82; text-underline-offset: 4px; }
.cms-content img { width: 100%; margin: 70px 0; filter: grayscale(.6) contrast(1.1); }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px, 10vw, 180px); align-items: start; }
.contact-intro { position: sticky; top: 140px; }
.contact-intro h2 { margin-bottom: 28px; font-size: clamp(2.8rem, 5vw, 5.4rem); }
.contact-intro > p { max-width: 500px; color: var(--muted); font-size: 18px; }
.contact-direct { margin-top: 60px; border-top: 1px solid var(--line-light); }
.contact-direct div { display: grid; gap: 10px; padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.contact-direct span { color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct a { font-weight: 500; }

.contact-form { padding: clamp(30px, 5vw, 72px); background: #e9e5da; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field-group { margin-bottom: 32px; }
.field-group label { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; font-weight: 600; }
.field-group label span { color: var(--muted); font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: .08em; }
.field-group input, .field-group textarea {
    width: 100%;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(7,17,14,.45);
    border-radius: 0;
    outline: 0;
    padding: 13px 0;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}
.field-group textarea { resize: vertical; }
.field-group input:focus, .field-group textarea:focus { border-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
.field-group input[aria-invalid="true"], .field-group textarea[aria-invalid="true"] { border-color: #9c312d; }
.field-errors, .field-errors ul { margin: 8px 0 0; padding: 0; color: #8b2522; font-size: 12px; list-style: none; }
.form-alert { margin-bottom: 24px; padding: 14px; color: #7b1d1a; border: 1px solid #a94945; }
.form-alert-success { color: #123f31; background: #dce9df; border-color: #739b82; }
.captcha-control { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.captcha-control img { width: 145px; height: 50px; object-fit: cover; border: 1px solid var(--line-light); }
.captcha-control input { width: 180px; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.site-footer { padding-top: clamp(110px, 14vw, 210px); color: white; background: var(--ink); }
.footer-callout { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: end; padding-bottom: clamp(100px, 12vw, 180px); }
.footer-callout h2 { max-width: 1050px; margin: 0; font-size: clamp(3.4rem, 7vw, 7.5rem); }
.footer-callout .button { margin-bottom: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .8fr; gap: 70px; padding: 70px 0; border-top: 1px solid var(--line-dark); }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-brand p { max-width: 420px; margin: 28px 0 0; color: rgba(255,255,255,.55); }
.footer-heading { margin-bottom: 10px; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { font-size: 14px; }
.footer-grid a:hover { color: var(--acid); }
.footer-base { display: flex; justify-content: space-between; padding: 24px 0 30px; color: rgba(255,255,255,.4); border-top: 1px solid var(--line-dark); font-size: 11px; letter-spacing: .04em; }

:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }

@media (max-width: 1080px) {
    .desktop-nav, .nav-cta { display: none; }
    .nav-shell { grid-template-columns: 1fr auto; }
    .menu-toggle { display: block; justify-self: end; }
    .hero-section { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 170px; }
    .hero-copy { max-width: 900px; }
    .hero-visual { width: min(100%, 650px); min-height: 600px; margin-left: auto; }
    .split-heading, .section-heading-dark { grid-template-columns: 1fr; }
    .split-heading p, .section-heading-dark p { margin-left: 0; }
    .process-layout { grid-template-columns: 1fr; }
    .process-intro { position: static; max-width: 850px; }
    .proof-grid { gap: 70px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-intro { position: static; }
    .footer-callout { grid-template-columns: 1fr; align-items: start; }
    .footer-callout .button { justify-self: start; }
}

@media (max-width: 760px) {
    :root { --shell: min(90vw, 680px); }
    .nav-shell { min-height: 72px; }
    .mobile-navigation nav { min-height: calc(100vh - 72px); }
    .brand-word { font-size: 11px; }
    .brand-mark { width: 28px; height: 28px; }
    .hero-grid { padding-top: 140px; padding-bottom: 70px; }
    .hero-copy h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); line-height: .92; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
    .hero-visual { min-height: 470px; }
    .hero-image-wrap { inset: 0 0 58px; }
    .signal-paths { display: none; }
    .chapter { padding: 110px 0; }
    .section-heading { margin-bottom: 50px; }
    .section-heading h2 { font-size: clamp(3rem, 13vw, 4.8rem); }
    .service-bento { min-height: 0; display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
    .bento-primary, .bento-secondary, .bento-tertiary { grid-column: auto; grid-row: auto; min-height: 470px; }
    .bento-secondary, .bento-tertiary { min-height: 390px; }
    .bento-copy { grid-template-columns: 1fr auto; }
    .card-index { display: none; }
    .horizontal-accordion { height: auto; display: grid; }
    .accordion-panel, .accordion-panel.is-active, .accordion-panel:hover { min-height: 160px; flex: none; transition: min-height 600ms var(--ease); }
    .accordion-panel.is-active, .accordion-panel:focus-visible { min-height: 420px; }
    .accordion-copy { bottom: 24px; left: 22px; width: calc(100% - 44px); }
    .accordion-copy h3 { white-space: normal; }
    .process-intro h2 { font-size: clamp(3.2rem, 14vw, 5rem); }
    .stack-card { min-height: 380px; }
    .stack-card > span { margin-bottom: 65px; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-image { min-height: 520px; }
    .principle-slide p { font-size: clamp(2.5rem, 11vw, 4rem); }
    .inner-hero { padding: 160px 0 95px; }
    .inner-hero-grid { grid-template-columns: 1fr; gap: 26px; }
    .inner-hero .eyebrow { grid-row: auto; }
    .inner-hero h1 { font-size: clamp(3.8rem, 17vw, 6rem); }
    .cms-content { margin: 0; }
    .form-row-split { grid-template-columns: 1fr; gap: 0; }
    .contact-form { margin-inline: -5vw; padding-inline: 5vw; }
    .footer-callout h2 { font-size: clamp(3.4rem, 15vw, 5.5rem); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-base { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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