:root {
  --ink: #0b0b10;
  --ink-soft: #111119;
  --panel: #171720;
  --panel-light: #f3f1f7;
  --line: rgba(245, 243, 250, .16);
  --line-dark: rgba(11, 11, 16, .13);
  --white: #f7f5fb;
  --muted: #aaa7b4;
  --muted-dark: #5f5b69;
  --purple: #7c3aed;
  --purple-bright: #a855f7;
  --purple-soft: #c9a9ff;
  --max: 1240px;
  --body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Black", "Arial", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: var(--body); font-size: 1rem; line-height: 1.55; overflow-x: clip; }
body::selection { background: var(--purple-bright); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible { outline: 3px solid var(--purple-bright); outline-offset: 4px; }
.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.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; left: 18px; top: 12px; z-index: 100; padding: .7rem 1rem; background: var(--white); color: var(--ink); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(247, 245, 251, .08); background: rgba(11, 11, 16, .82); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; gap: 2.3rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--white); flex: 0 0 auto; }
.brand-mark { width: 35px; height: 35px; color: var(--purple-bright); }
.brand-type { display: grid; gap: .05rem; line-height: 1; }
.brand-type strong { font-size: .84rem; letter-spacing: .18em; }
.brand-type small { color: var(--muted); font-size: .52rem; letter-spacing: .34em; }
.primary-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.4rem); margin-left: auto; }
.primary-nav a, .footer-nav a, .footer-button { color: var(--muted); font-size: .82rem; transition: color .2s ease; }
.primary-nav a:hover, .footer-nav a:hover, .footer-button:hover { color: var(--white); }
.nav-cta { display: inline-flex; align-items: center; gap: .65rem; color: var(--white); font-size: .82rem; font-weight: 700; border-bottom: 1px solid var(--purple-bright); padding-bottom: .25rem; white-space: nowrap; }
.nav-cta span, .button span, .text-link span, .contact-phone { color: var(--purple-soft); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; padding: .7rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--white); }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; width: 22px; margin: 5px auto; background: currentColor; transition: transform .2s ease; }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; padding: 7rem 0 6.4rem; background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, .12), transparent 28%), var(--ink); }
.hero::before { position: absolute; right: 2%; top: 13%; content: ""; width: 38vw; height: 38vw; max-width: 530px; max-height: 530px; border: 1px solid rgba(168, 85, 247, .14); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, .8fr); align-items: center; gap: clamp(3rem, 8vw, 9rem); }
.hero-copy { position: relative; z-index: 1; max-width: 720px; }
.eyebrow, .section-kicker { margin: 0 0 1.35rem; color: var(--purple-soft); font-size: .67rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .65rem; }
.eyebrow-dot { width: .52rem; height: .52rem; background: var(--purple-bright); border-radius: 50%; box-shadow: 0 0 0 5px rgba(168, 85, 247, .12); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 { max-width: 830px; margin-bottom: 2rem; font-family: var(--display); font-size: clamp(3.6rem, 7.4vw, 7.2rem); font-weight: 900; letter-spacing: -.08em; line-height: .88; }
h1 span, h2 span { display: block; color: var(--purple-bright); }
.hero-lead { max-width: 510px; margin-bottom: 2.4rem; color: #d2cfda; font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .85rem; min-height: 49px; padding: .85rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, border-color .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--purple); color: var(--white); box-shadow: 0 8px 28px rgba(124, 58, 237, .2); }
.button-primary:hover { background: var(--purple-bright); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: #fff; }
.button-outline { border-color: var(--line); background: transparent; color: var(--white); }
.button-outline:hover { border-color: var(--purple-soft); }
.button-small { min-height: 38px; padding: .65rem .9rem; font-size: .7rem; }
.text-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--white); font-size: .8rem; font-weight: 700; }
.text-link span { font-size: 1.1rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-signal { display: flex; align-items: flex-start; gap: 1rem; margin-top: 6rem; color: var(--muted); }
.signal-number { color: var(--purple-soft); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.hero-signal p { margin: 0; font-size: .75rem; line-height: 1.45; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 500px); padding: 2.8rem 2.2rem 2.8rem 2.5rem; }
.hero-frame { position: relative; aspect-ratio: 4 / 3; max-height: 390px; overflow: hidden; border-radius: 0 88px 0 88px; background: #25232e; box-shadow: 20px 20px 0 rgba(124, 58, 237, .28); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 54% 48%; filter: saturate(.72) contrast(1.14) brightness(.84); }
.hero-frame-glow { position: absolute; inset: 0; background: linear-gradient(145deg, rgba(168, 85, 247, .18), transparent 38%, rgba(11, 11, 16, .42)); mix-blend-mode: screen; }
.hero-orbit { position: absolute; border: 1px solid rgba(168, 85, 247, .5); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 128%; aspect-ratio: 1; left: -13%; top: -8%; transform: rotate(-26deg) scaleY(.38); }
.hero-orbit-two { width: 105%; aspect-ratio: 1; right: -3%; bottom: 0; transform: rotate(37deg) scaleY(.23); border-color: rgba(247, 245, 251, .28); }
.visual-label { position: absolute; color: var(--white); font-size: .57rem; font-weight: 800; letter-spacing: .16em; line-height: 1.35; }
.visual-label span { color: var(--purple-soft); }
.visual-label-top { top: .35rem; left: 0; }
.visual-label-bottom { right: 0; bottom: .15rem; text-align: right; }

.signal-strip { overflow: hidden; border-top: 1px solid rgba(247, 245, 251, .1); border-bottom: 1px solid rgba(247, 245, 251, .1); background: var(--ink-soft); }
.signal-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 66px; color: #dddae5; font-size: .63rem; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.signal-strip i { color: var(--purple-bright); font-style: normal; font-size: .85rem; }
.section-pad { padding: 9.5rem 0; }
.manifesto { background: var(--panel-light); color: var(--ink); }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, .9fr); align-items: center; gap: clamp(3rem, 9vw, 9rem); }
.manifesto-visual { position: relative; padding: 0 2rem 2rem 0; }
.manifesto-visual::after { position: absolute; right: 0; bottom: 0; z-index: 0; width: 82%; height: 78%; content: ""; background: var(--purple); }
.manifesto-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; max-height: 500px; object-fit: cover; filter: grayscale(.6) contrast(1.12); }
.image-index { position: absolute; z-index: 2; left: 1.2rem; bottom: .8rem; color: var(--white); font-size: .65rem; font-weight: 800; letter-spacing: .18em; }
.manifesto .section-kicker, .approach .section-kicker, .faq .section-kicker { color: var(--purple); }
.manifesto h2, .approach h2, .faq h2 { margin-bottom: 1.6rem; font-family: var(--display); font-size: clamp(2.9rem, 5vw, 5.6rem); letter-spacing: -.08em; line-height: .92; }
.manifesto-copy > p:not(.section-kicker), .approach-copy > p:not(.section-kicker), .faq-intro > p:not(.section-kicker) { max-width: 520px; color: #514d59; font-size: 1.03rem; }
.manifesto-signature { display: flex; align-items: center; gap: .85rem; margin-top: 2.4rem; color: var(--muted-dark); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.manifesto-signature span { display: inline-block; width: 32px; height: 1px; background: var(--purple); }

.section-dark { background: var(--ink-soft); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, .52fr); align-items: end; gap: 2rem; margin-bottom: 4rem; }
.section-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -1rem; }
.section-heading h2, .process-heading h2 { margin-bottom: 0; font-family: var(--display); font-size: clamp(3rem, 5.6vw, 6.1rem); letter-spacing: -.08em; line-height: .9; }
.section-heading > p { max-width: 330px; margin: 0 0 .25rem auto; color: var(--muted); font-size: .98rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.service-card { min-height: 390px; display: flex; flex-direction: column; padding: 1.65rem 1.25rem 1.5rem; border-right: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.service-card:first-child { border-left: 1px solid var(--line); }
.service-card:hover { position: relative; z-index: 1; background: #1e1d28; transform: translateY(-6px); }
.service-card-featured { background: linear-gradient(165deg, rgba(124, 58, 237, .18), transparent 56%); }
.service-topline { display: flex; justify-content: space-between; color: var(--purple-soft); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.service-arrow { font-size: 1.1rem; }
.service-card h3 { max-width: 220px; margin: auto 0 1.2rem; font-size: clamp(1.55rem, 2.1vw, 2.1rem); letter-spacing: -.06em; line-height: .98; }
.service-card p { min-height: 94px; margin: 0 0 1.5rem; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.service-card a { display: inline-flex; align-items: center; justify-content: space-between; gap: .5rem; color: var(--white); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-card a span { color: var(--purple-soft); font-size: 1.1rem; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(5px); }

.approach { background: var(--panel-light); color: var(--ink); }
.approach-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .9fr); align-items: center; gap: clamp(3rem, 10vw, 10rem); }
.approach-visual { position: relative; }
.approach-visual img { width: 100%; aspect-ratio: 16 / 10; max-height: 420px; object-fit: cover; filter: saturate(.8) contrast(1.08); }
.approach-caption { position: absolute; right: 1.25rem; bottom: 1.25rem; max-width: 230px; padding: 1rem; background: rgba(11, 11, 16, .86); color: var(--white); }
.approach-caption span { display: block; margin-bottom: .35rem; color: var(--purple-soft); font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.approach-caption strong { display: block; font-family: var(--display); font-size: 1.22rem; letter-spacing: -.05em; line-height: 1; }
.check-list { display: grid; gap: 1rem; margin: 2.3rem 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.check-list li > span { color: var(--purple); font-size: 1.35rem; line-height: 1; }
.check-list strong, .check-list small { display: block; }
.check-list strong { margin-bottom: .25rem; font-size: .85rem; }
.check-list small { color: var(--muted-dark); font-size: .8rem; }

.section-purple { background: var(--purple); color: var(--white); }
.process-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 5rem; }
.process-heading .section-kicker { margin-bottom: 1.4rem; color: #e5d7ff; }
.process-heading h2 span { color: var(--ink); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.process-step { min-height: 238px; padding: 1.3rem 1.25rem; border-top: 1px solid rgba(11, 11, 16, .35); border-right: 1px solid rgba(11, 11, 16, .35); }
.process-step:first-child { border-left: 1px solid rgba(11, 11, 16, .35); }
.process-number { color: #e5d7ff; font-size: .67rem; font-weight: 800; letter-spacing: .14em; }
.process-step h3 { margin: 3.7rem 0 .65rem; font-family: var(--display); font-size: 2rem; letter-spacing: -.07em; line-height: 1; }
.process-step p { max-width: 215px; margin: 0; color: #e9ddfa; font-size: .83rem; }

.faq { background: var(--panel-light); color: var(--ink); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1fr); gap: clamp(3rem, 11vw, 12rem); }
.faq-intro > p:not(.section-kicker) { max-width: 320px; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 800; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--purple); font-size: 1.35rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 640px; margin: 0 2rem 1.4rem 0; color: var(--muted-dark); font-size: .9rem; }

.contact { background: var(--ink); }
.contact-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: center; min-height: 490px; overflow: hidden; padding: clamp(2.2rem, 7vw, 6rem); background: linear-gradient(120deg, #17111f, #26133d); }
.contact-card::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 80% 50%, rgba(168, 85, 247, .34), transparent 28%); pointer-events: none; }
.contact-copy { position: relative; z-index: 1; }
.contact-copy .section-kicker { color: var(--purple-soft); }
.contact-copy h2 { margin-bottom: 1.6rem; font-family: var(--display); font-size: clamp(3rem, 6vw, 6.3rem); letter-spacing: -.08em; line-height: .9; }
.contact-copy h2 span { color: var(--purple-bright); }
.contact-copy > p:not(.section-kicker) { max-width: 490px; color: #cbc4d4; font-size: 1rem; }
.contact-copy strong { color: var(--white); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2.3rem; }
.contact-phone { font-weight: 800; }
.contact-phone:hover { color: var(--white); }
.contact-mark { position: relative; z-index: 1; justify-self: end; width: 250px; height: 250px; color: var(--purple-bright); }
.contact-mark svg { position: absolute; inset: 30px; width: 190px; height: 190px; transform: rotate(-12deg); }
.contact-ring { position: absolute; border: 1px solid rgba(168, 85, 247, .5); border-radius: 50%; }
.ring-one { inset: 0; }
.ring-two { inset: 22px; border-color: rgba(247, 245, 251, .23); transform: rotate(25deg) scaleY(.25); }

.site-footer { background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr auto 1.4fr; align-items: start; gap: 2rem; padding: 2.8rem 0 2.4rem; border-top: 1px solid var(--line); }
.footer-contact { display: grid; gap: .35rem; justify-items: center; font-size: .82rem; }
.footer-contact a:hover { color: var(--purple-soft); }
.footer-nav { display: flex; justify-content: end; flex-wrap: wrap; gap: .5rem 1.25rem; }
.footer-button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; }
.noscript-note { padding: 1rem; background: var(--purple); color: var(--ink); text-align: center; font-size: .8rem; }

.cookie-banner { position: fixed; right: 20px; bottom: 20px; left: 20px; z-index: 80; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: min(calc(100% - 40px), 980px); margin-inline: auto; padding: 1.15rem 1.25rem; border: 1px solid rgba(247, 245, 251, .2); background: rgba(23, 23, 32, .97); box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.cookie-banner strong { font-size: .85rem; }
.cookie-banner p { max-width: 490px; margin: .28rem 0 0; color: var(--muted); font-size: .75rem; }
.cookie-actions { display: flex; align-items: center; justify-content: end; flex-wrap: wrap; gap: .55rem; }
.cookie-link { border: 0; padding: .5rem; background: transparent; color: var(--purple-soft); font-size: .72rem; cursor: pointer; }
.cookie-dialog { width: min(calc(100% - 32px), 520px); padding: 0; border: 1px solid rgba(247, 245, 251, .2); background: var(--panel); color: var(--white); box-shadow: 0 28px 80px rgba(0,0,0,.55); }
.cookie-dialog::backdrop { background: rgba(11, 11, 16, .75); backdrop-filter: blur(4px); }
.dialog-inner { padding: 1.7rem; }
.dialog-top { display: flex; justify-content: space-between; align-items: start; }
.dialog-top .section-kicker { margin-bottom: 0; }
.dialog-close { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--white); font-size: 1.3rem; cursor: pointer; }
.cookie-dialog h2 { margin: 1.5rem 0 .8rem; font-family: var(--display); font-size: 2.5rem; letter-spacing: -.07em; line-height: 1; }
.cookie-dialog p { color: var(--muted); font-size: .86rem; }
.cookie-options { margin: 1.5rem 0; border-top: 1px solid var(--line); }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.cookie-option strong, .cookie-option small { display: block; }
.cookie-option strong { font-size: .82rem; }
.cookie-option small { margin-top: .2rem; color: var(--muted); font-size: .73rem; }
.cookie-option input { width: 19px; height: 19px; accent-color: var(--purple-bright); }
.cookie-option input:disabled { opacity: .55; }
.dialog-save { width: 100%; }

.legal-page { background: var(--panel-light); color: var(--ink); }
.legal-page .site-header { background: rgba(243, 241, 247, .9); border-color: rgba(11, 11, 16, .1); }
.legal-page .brand { color: var(--ink); }
.legal-page .brand-mark { color: var(--purple); }
.legal-page .brand-type small, .legal-page .primary-nav a { color: var(--muted-dark); }
.legal-page .primary-nav a:hover { color: var(--ink); }
.legal-page .nav-cta { color: var(--ink); }
.legal-page .nav-cta span { color: var(--purple); }
.legal-main { padding: 8rem 0 9rem; }
.legal-hero { max-width: 900px; margin-bottom: 4.5rem; }
.legal-hero .section-kicker { color: var(--purple); }
.legal-hero h1 { max-width: 850px; margin-bottom: 1.4rem; color: var(--ink); font-size: clamp(3.5rem, 7vw, 7rem); }
.legal-hero h1 span { color: var(--purple); }
.legal-hero > p:not(.section-kicker) { max-width: 650px; color: var(--muted-dark); font-size: 1.05rem; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: space-between; gap: 4rem; }
.legal-toc { position: sticky; top: 110px; align-self: start; display: grid; gap: .6rem; border-left: 1px solid var(--line-dark); padding-left: 1rem; }
.legal-toc a { color: var(--muted-dark); font-size: .76rem; }
.legal-toc a:hover { color: var(--purple); }
.legal-content { min-width: 0; }
.legal-note { margin: 0 0 2rem; padding: 1rem 1.2rem; border-left: 3px solid var(--purple); background: #e8e2f0; color: #423b4c; font-size: .86rem; }
.legal-note strong { color: var(--ink); }
.legal-content section { padding: 2rem 0; border-top: 1px solid var(--line-dark); }
.legal-content h2 { margin-bottom: .8rem; font-family: var(--display); font-size: 1.8rem; letter-spacing: -.06em; line-height: 1.05; }
.legal-content h3 { margin: 1.5rem 0 .4rem; font-size: 1rem; }
.legal-content p, .legal-content li { color: #514d59; font-size: .93rem; }
.legal-content ul { margin: .8rem 0 0; padding-left: 1.2rem; }
.legal-content a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--ink); }
.legal-page .site-footer { background: var(--ink); color: var(--white); }
.legal-page .footer-contact a, .legal-page .footer-nav a, .legal-page .footer-button { color: var(--muted); }
.legal-page .footer-contact a:hover, .legal-page .footer-nav a:hover, .legal-page .footer-button:hover { color: var(--white); }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js-enabled .reveal.is-visible { opacity: 1; transform: none; }
[hidden] { display: none !important; }

@media (max-width: 1050px) {
  .hero-grid { gap: 3rem; grid-template-columns: minmax(0, 1fr) minmax(310px, .78fr); }
  .hero-visual { padding-right: 1.3rem; }
  .services-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:nth-child(2), .process-step:nth-child(2) { border-right: 0; }
  .service-card:nth-child(n+3), .process-step:nth-child(n+3) { border-top: 1px solid var(--line); }
  .process-step:nth-child(n+3) { border-color: rgba(11, 11, 16, .35); }
  .service-card p { min-height: 0; }
  .legal-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 2.5rem; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 40px), var(--max)); }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: .55rem; border: 1px solid var(--line); background: rgba(23, 23, 32, .98); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .85rem; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 3.5rem 0 4.4rem; }
  .hero::before { width: 70vw; height: 70vw; top: 40%; right: -28%; }
  .hero-grid, .manifesto-grid, .approach-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  h1 { margin-bottom: 1.35rem; font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-lead { margin-bottom: 1.7rem; font-size: 1rem; }
  .hero-signal { margin-top: 2.3rem; }
  .hero-visual { justify-self: center; width: min(100%, 460px); margin-top: 1rem; padding-right: 1.3rem; }
  .hero-frame { max-height: 270px; }
  .manifesto-grid .manifesto-copy, .approach-grid .approach-copy { order: 1; }
  .manifesto-grid .manifesto-visual, .approach-grid .approach-visual { order: 2; }
  .manifesto-visual img { max-height: 270px; object-position: center; }
  .approach-visual img { max-height: 250px; object-position: center; }
  .hero-frame { border-radius: 0 66px 0 66px; }
  .signal-strip-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; font-size: .56rem; }
  .signal-strip-inner span:nth-of-type(n+4), .signal-strip-inner i:nth-of-type(n+4) { display: none; }
  .section-pad { padding: 6.2rem 0; }
  .manifesto-grid, .approach-grid { gap: 3.5rem; }
  .manifesto-visual { padding-right: 1rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.3rem; margin-bottom: 2.6rem; }
  .section-heading .section-kicker { margin-bottom: 0; }
  .section-heading > p { margin: 0; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card, .process-step { min-height: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .service-card + .service-card, .process-step + .process-step { border-top: 1px solid var(--line); }
  .process-step + .process-step { border-color: rgba(11, 11, 16, .35); }
  .service-card { min-height: 290px; }
  .service-card h3 { margin-top: 4rem; }
  .process-heading { display: block; margin-bottom: 2.8rem; }
  .process-step { min-height: 190px; }
  .process-step h3 { margin-top: 2.8rem; }
  .contact-card { grid-template-columns: 1fr; min-height: 0; gap: 3rem; }
  .contact-mark { justify-self: start; width: 180px; height: 180px; }
  .contact-mark svg { inset: 18px; width: 145px; height: 145px; }
  .footer-top { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-contact { justify-items: start; }
  .footer-nav { justify-content: start; }
  .footer-bottom { display: grid; gap: .5rem; }
  .cookie-banner { display: block; }
  .cookie-actions { justify-content: start; margin-top: 1rem; }
  .legal-main { padding: 5rem 0 6rem; }
  .legal-hero { margin-bottom: 3rem; }
  .legal-layout { display: block; }
  .legal-toc { position: static; margin-bottom: 2.5rem; padding: 0 0 1rem; border-left: 0; border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .hero { padding-top: 3rem; }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .hero-visual { padding: 1.4rem .7rem 1.8rem 1.4rem; }
  .hero-frame { border-radius: 0 58px 0 58px; }
  .visual-label-top { left: .1rem; }
  .visual-label-bottom { right: -.1rem; }
  .contact-card { padding: 2rem 1.35rem; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100% - 20px); padding: 1rem; }
  .cookie-actions .button { flex: 1 1 auto; }
  .cookie-link { width: 100%; text-align: left; padding-left: 0; }
}

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