@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #101010;
  --paper: #f2efe8;
  --acid: #d9ff43;
  --orange: #ff4d00;
  --blue: #6945ff;
  --line: rgba(16, 16, 16, .18);
  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--ink); color: var(--acid); }

.noise {
  position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: .055;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 1001; background: var(--orange); }
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1100; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor { width: 42px; height: 42px; border: 1px solid var(--ink); transition: width .2s, height .2s, background .2s; }
.cursor-dot { width: 5px; height: 5px; background: var(--ink); }
.cursor.active { width: 74px; height: 74px; background: rgba(217,255,67,.7); mix-blend-mode: multiply; }

.loader { position: fixed; inset: 0; z-index: 1200; background: var(--ink); color: var(--paper); display: grid; place-items: center; transition: transform 1s var(--ease); }
.loader.done { transform: translateY(-105%); }
.loader-inner { width: min(720px, calc(100% - 40px)); }
.loader-top { display: flex; justify-content: space-between; font: 12px DM Mono, monospace; text-transform: uppercase; letter-spacing: .12em; }
.loader-word { font-size: clamp(96px, 24vw, 330px); font-weight: 800; line-height: .8; letter-spacing: -.09em; margin-left: -.08em; }
.loader-line { height: 1px; background: #333; margin-top: 32px; overflow: hidden; }
.loader-line span { display: block; width: 100%; height: 100%; background: var(--acid); transform: translateX(-100%); animation: loading 1.25s var(--ease) forwards; }
@keyframes loading { to { transform: none; } }

.site-header { height: 86px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); position: relative; z-index: 50; }
.brand { font-size: 24px; font-weight: 800; letter-spacing: -.07em; }
.brand i { color: var(--orange); font-style: normal; }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 50px); font-size: 13px; font-weight: 700; }
.nav a { position: relative; }
.nav a::after { content: ''; position: absolute; height: 1px; left: 0; right: 100%; bottom: -5px; background: currentColor; transition: right .35s var(--ease); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.menu-btn { display: none; background: none; border: 0; padding: 10px 0; font-weight: 700; }
.language-switch { display: inline-flex; align-items: center; border: 1px solid currentColor; border-radius: 999px; overflow: hidden; }
.language-switch button { border: 0; background: transparent; color: inherit; padding: 7px 10px; font: 10px DM Mono, monospace; cursor: pointer; transition: background .25s, color .25s; }
.language-switch button.active { background: var(--ink); color: var(--acid); }
.dark-page .language-switch button.active { background: var(--paper); color: var(--ink); }
.contact-language { margin-top: 18px; }
.status { display: flex; align-items: center; gap: 8px; font: 11px DM Mono, monospace; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #32d769; box-shadow: 0 0 0 5px rgba(50,215,105,.15); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(50,215,105,0); } }

.eyebrow { font: 11px DM Mono, monospace; text-transform: uppercase; letter-spacing: .08em; }
.eyebrow::before { content: '↳ '; color: var(--orange); }
.display { font-size: clamp(54px, 9vw, 145px); line-height: .86; letter-spacing: -.075em; margin: 0; font-weight: 800; }
.section { padding: clamp(90px, 12vw, 190px) var(--pad); }
.section-head { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; margin-bottom: clamp(55px, 8vw, 110px); }
.section-head h2 { font-size: clamp(40px, 6.5vw, 102px); line-height: .92; letter-spacing: -.065em; margin: 0; max-width: 1100px; }
.section-head p { grid-column: 2; max-width: 680px; font-size: clamp(18px, 2vw, 28px); line-height: 1.35; margin: 0; }
.reveal { opacity: 0; transform: translateY(45px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

.hero { min-height: calc(100svh - 86px); padding: 36px var(--pad) 30px; display: grid; grid-template-rows: auto 1fr auto; overflow: hidden; position: relative; }
.hero-meta { display: flex; justify-content: space-between; align-items: start; }
.hero-meta p { width: min(410px, 45vw); margin: 0; font-size: 13px; line-height: 1.5; }
.hero-title { align-self: center; position: relative; z-index: 2; }
.hero-title h1 { font-size: clamp(140px, 28vw, 455px); line-height: .68; letter-spacing: -.1em; margin: 0 0 0 -.055em; font-weight: 800; }
.hero-title .dot { color: var(--orange); display: inline-block; animation: dot 2.3s infinite var(--ease); }
@keyframes dot { 50% { transform: translateY(-.12em) scale(.8); } }
.hero-orbit { position: absolute; width: clamp(190px, 24vw, 390px); aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--ink); right: 10%; top: 25%; display: grid; place-items: center; animation: orbit 18s linear infinite; z-index: -1; }
.hero-orbit::before, .hero-orbit::after { content: ''; position: absolute; inset: 17%; border: 1px solid var(--ink); border-radius: 50%; }
.hero-orbit::after { inset: 38%; background: var(--acid); }
.hero-orbit span { font: 10px DM Mono, monospace; position: absolute; top: -6px; background: var(--paper); padding: 0 8px; }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 24px; }
.hero-line { font-size: clamp(22px, 2.6vw, 42px); line-height: 1.08; letter-spacing: -.04em; font-weight: 600; grid-column: 2; }
.scroll-note { text-align: right; font: 10px DM Mono, monospace; text-transform: uppercase; }
.scroll-note i { display: inline-block; font-style: normal; animation: down 1.5s infinite; }
@keyframes down { 50% { transform: translateY(7px); } }

.sprint-strip { display: grid; grid-template-columns: 1.1fr 1fr auto; align-items: center; gap: 28px; padding: 24px var(--pad); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--acid); }
.sprint-strip strong { display: block; margin-top: 8px; font-size: clamp(22px, 2.2vw, 34px); line-height: 1; letter-spacing: -.045em; }
.sprint-strip p { margin: 0; max-width: 560px; font-size: 15px; line-height: 1.45; }
.sprint-link { border: 1px solid var(--ink); border-radius: 999px; padding: 16px 22px; font: 800 12px DM Mono, monospace; white-space: nowrap; transition: .3s var(--ease); }
.sprint-link:hover { background: var(--ink); color: var(--acid); transform: translateY(-2px); }

.ticker { background: var(--acid); border-block: 1px solid var(--ink); overflow: hidden; padding: 20px 0; transform: rotate(-1.2deg); contain: paint; width: calc(100% - 2px); margin-inline: auto; }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker span { font-size: clamp(25px, 3vw, 46px); font-weight: 800; letter-spacing: -.05em; white-space: nowrap; }
.ticker b { color: var(--orange); padding: 0 .55em; }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.manifesto-copy { font-size: clamp(48px, 8.5vw, 138px); line-height: .9; letter-spacing: -.07em; font-weight: 700; max-width: 1500px; }
.manifesto-copy .muted { color: #4b4b4b; }
.manifesto-copy .accent { color: var(--acid); font-style: italic; font-family: Georgia, serif; font-weight: 400; }
.manifesto-foot { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; }
.manifesto-foot p { grid-column: 2; max-width: 560px; font-size: 18px; line-height: 1.6; }

.system-grid { border-top: 1px solid var(--ink); }
.system-row { display: grid; grid-template-columns: 80px 1.4fr 1fr 50px; gap: 30px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--ink); transition: background .4s, padding .4s var(--ease); cursor: pointer; }
.system-row:hover { background: var(--acid); padding-inline: 24px; }
.system-row .num { font: 12px DM Mono, monospace; }
.system-row h3 { font-size: clamp(34px, 5vw, 76px); margin: 0; letter-spacing: -.06em; }
.system-row p { margin: 0; line-height: 1.5; font-size: 14px; }
.system-row .arrow { font-size: 30px; transition: transform .4s var(--ease); }
.system-row:hover .arrow { transform: rotate(45deg); }

.work-stage { background: var(--blue); color: white; }
.work-list { display: grid; gap: 16px; }
.work-card { min-height: 68vh; border: 1px solid rgba(255,255,255,.35); display: grid; grid-template-columns: 1.5fr 1fr; position: relative; overflow: hidden; }
.work-visual { min-height: 430px; position: relative; display: grid; place-items: center; overflow: hidden; }
.work-visual.one { background: #ff7450; }
.work-visual.two { background: #c8ff51; color: var(--ink); }
.work-visual.three { background: #151515; }
.mock-phone { width: min(270px, 55%); aspect-ratio: .52; border: 7px solid currentColor; border-radius: 38px; padding: 12px; transform: rotate(-7deg); box-shadow: 28px 34px 0 rgba(0,0,0,.14); }
.mock-screen { height: 100%; border-radius: 22px; background: currentColor; color: #ff7450; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; }
.mock-screen strong { font-size: 42px; line-height: .85; letter-spacing: -.07em; }
.visual-type { font-size: clamp(100px, 19vw, 330px); font-weight: 800; letter-spacing: -.1em; transform: rotate(90deg); white-space: nowrap; }
.visual-wave { width: 80%; height: 240px; display: flex; gap: 5px; align-items: center; }
.visual-wave i { flex: 1; height: 20%; background: var(--acid); animation: wave 1.5s ease-in-out infinite alternate; }
.visual-wave i:nth-child(3n) { animation-delay: -.6s; }.visual-wave i:nth-child(2n) { animation-delay: -.3s; }
@keyframes wave { to { height: 95%; } }
.work-info { padding: clamp(30px, 5vw, 70px); display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(255,255,255,.35); }
.work-info h3 { font-size: clamp(42px, 5vw, 82px); line-height: .9; letter-spacing: -.065em; margin: 0; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { border: 1px solid currentColor; border-radius: 99px; padding: 8px 12px; font: 10px DM Mono, monospace; text-transform: uppercase; }
.work-info p { max-width: 430px; line-height: 1.6; }
.case-chain { display: grid; gap: 10px; margin: 28px 0; }
.case-chain p { max-width: 520px; margin: 0; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.28); font-size: clamp(14px, 1.1vw, 18px); line-height: 1.45; }
.case-chain b { color: var(--acid); font-weight: 800; }
.case-note { font: 10px DM Mono, monospace; opacity: .65; text-transform: uppercase; }

.pricing-preview { background: var(--acid); }
.pricing-preview .section-head p { font-weight: 600; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.price-card { min-height: 520px; padding: 30px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; transition: background .35s, color .35s, transform .35s var(--ease); }
.price-card:last-child { border: 0; }
.price-card:hover, .price-card.featured { background: var(--ink); color: var(--paper); transform: translateY(-12px); }
.price-card .plan-num { font: 11px DM Mono, monospace; }
.price-card h3 { font-size: clamp(38px, 4vw, 62px); letter-spacing: -.06em; margin: 60px 0 18px; }
.price-card .price { font-size: 17px; margin-bottom: 42px; }
.price-card ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid currentColor; }
.price-card li { padding: 13px 0; border-bottom: 1px solid currentColor; font-size: 13px; }
.price-card .mini-link { margin-top: auto; display: flex; justify-content: space-between; font-weight: 700; }

.big-cta { background: var(--orange); color: var(--ink); min-height: 90svh; display: flex; flex-direction: column; justify-content: space-between; padding: var(--pad); overflow: hidden; }
.big-cta-top { display: flex; justify-content: space-between; }
.big-cta h2 { font-size: clamp(90px, 22vw, 350px); letter-spacing: -.1em; line-height: .68; margin: .5em 0; }
.big-cta h2 span { display: block; margin-left: 15vw; }
.cta-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.cta-bottom p { max-width: 500px; font-size: clamp(20px, 2vw, 30px); margin: 0; }
.round-link { justify-self: end; width: clamp(170px, 18vw, 260px); aspect-ratio: 1; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; padding: 18px; font-family: DM Mono, monospace; font-weight: 700; line-height: 1.18; letter-spacing: .02em; word-spacing: .12em; text-align: center; transition: background .4s, color .4s, transform .4s var(--ease); }
.round-link:hover { background: var(--ink); color: var(--acid); transform: rotate(-8deg) scale(1.04); }

.page-hero { min-height: 72svh; padding: clamp(70px, 10vw, 150px) var(--pad) 55px; display: flex; flex-direction: column; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.page-hero h1 { font-size: clamp(65px, 14vw, 220px); line-height: .78; letter-spacing: -.085em; margin: 45px 0; }
.page-hero-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; }
.page-hero-bottom p { grid-column: 2; max-width: 670px; font-size: clamp(19px, 2vw, 30px); margin: 0; }
.dark-page { background: var(--ink); color: var(--paper); }
.dark-page .site-header, .dark-page .page-hero { border-color: #3c3c3c; }
.dark-page .cursor { border-color: var(--paper); }.dark-page .cursor-dot { background: var(--paper); }

.tariff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tariff-card { background: #202020; padding: 34px; min-height: 680px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.tariff-card.featured { background: var(--acid); color: var(--ink); }
.tariff-card .label { font: 11px DM Mono, monospace; display: flex; justify-content: space-between; }
.tariff-card h2 { font-size: clamp(44px, 5vw, 75px); letter-spacing: -.07em; margin: 80px 0 16px; }
.tariff-card .for { min-height: 62px; opacity: .7; font-size: 14px; line-height: 1.5; }
.tariff-card .amount { font-size: 22px; font-weight: 700; margin: 30px 0; }
.tariff-card ul { list-style: none; padding: 0; margin: 0; }
.tariff-card li { border-top: 1px solid currentColor; padding: 14px 0; font-size: 13px; display: flex; gap: 10px; }
.tariff-card li::before { content: '＋'; }
.tariff-card a { margin-top: auto; border: 1px solid currentColor; border-radius: 100px; padding: 18px; text-align: center; font-weight: 700; transition: .3s; }
.tariff-card a:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.tariff-note { margin-top: 30px; font: 11px DM Mono, monospace; opacity: .65; }
.addons { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #444; }
.addon { padding: 30px 0; border-bottom: 1px solid #444; display: flex; justify-content: space-between; gap: 20px; color: inherit; }
.addon:nth-child(odd) { padding-right: 30px; border-right: 1px solid #444; }.addon:nth-child(even) { padding-left: 30px; }
.seo-cluster .addon { transition: color .3s, transform .3s var(--ease); }
.seo-cluster .addon:hover { color: var(--orange); transform: translateY(-4px); }

.service-page { min-height: 100svh; padding: var(--pad); background: var(--paper); color: var(--ink); }
.service-page.dark-service { background: var(--ink); color: var(--paper); }
.service-page > .brand { position: fixed; left: var(--pad); top: 24px; z-index: 5; }
.service-hero { min-height: 88svh; display: flex; flex-direction: column; justify-content: center; gap: 28px; border-bottom: 1px solid currentColor; padding-top: 80px; }
.service-hero h1 { font-size: clamp(58px, 11vw, 170px); line-height: .86; letter-spacing: -.075em; max-width: 1250px; }
.service-hero p { font-size: clamp(22px, 2.4vw, 42px); line-height: 1.12; max-width: 950px; }
.service-page .pill-cta { color: inherit; border-color: currentColor; }
.service-page .pill-cta.primary { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid currentColor; }
.service-grid article { min-height: 440px; padding: 34px; border-right: 1px solid currentColor; display: flex; flex-direction: column; gap: 22px; }
.service-grid article:last-child { border-right: 0; }
.service-grid span { font: 11px DM Mono, monospace; opacity: .58; }
.service-grid h2 { font-size: clamp(34px, 5vw, 76px); letter-spacing: -.055em; }
.service-grid p, .service-grid li { font-size: clamp(18px, 1.8vw, 27px); line-height: 1.2; }
.service-grid ul { padding-left: 1.1em; display: grid; gap: 12px; }
.service-case { min-height: 72svh; display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; border-bottom: 1px solid currentColor; }
.service-case h2 { font-size: clamp(46px, 7.5vw, 124px); line-height: .9; letter-spacing: -.065em; }
.service-case p { font-size: clamp(18px, 2vw, 32px); line-height: 1.12; }
.service-case .round-link { color: inherit; border-color: currentColor; }

.cases-index { counter-reset: cases; }
.case-row { min-height: 36vw; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 90px 1fr 1fr 80px; gap: 28px; align-items: center; padding: 45px var(--pad); overflow: hidden; position: relative; }
.case-row::before { counter-increment: cases; content: '0' counter(cases); font: 12px DM Mono, monospace; }
.case-row h2 { font-size: clamp(55px, 9vw, 145px); line-height: .8; letter-spacing: -.075em; margin: 0; position: relative; z-index: 2; }
.case-row p { max-width: 420px; line-height: 1.6; position: relative; z-index: 2; }
.case-row .case-arrow { font-size: 46px; position: relative; z-index: 2; }
.case-row .case-bg { position: absolute; width: 30vw; height: 23vw; right: 22%; top: 50%; transform: translateY(-50%) rotate(-6deg) scale(.7); opacity: 0; transition: opacity .5s, transform .7s var(--ease); }
.case-row:hover .case-bg { opacity: 1; transform: translateY(-50%) rotate(5deg) scale(1); }
.case-row:nth-child(1) .case-bg { background: var(--orange); }.case-row:nth-child(2) .case-bg { background: var(--acid); }.case-row:nth-child(3) .case-bg { background: var(--blue); }

.contact-page { min-height: 100svh; background: var(--orange); display: grid; grid-template-columns: .85fr 1.15fr; }
.contact-copy { padding: var(--pad); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--ink); }
.contact-copy .brand { font-size: 30px; }
.contact-copy h1 { font-size: clamp(68px, 11vw, 170px); line-height: .78; letter-spacing: -.08em; margin: 80px 0 40px; }
.contact-copy p { max-width: 520px; font-size: clamp(18px, 2vw, 27px); }
.contact-links { display: flex; gap: 22px; font: 12px DM Mono, monospace; text-transform: uppercase; }
.contact-form { background: var(--paper); padding: var(--pad); display: flex; flex-direction: column; justify-content: center; }
.contact-form form { max-width: 780px; width: 100%; margin: auto; }
.form-offer { border: 1px solid var(--ink); background: var(--acid); padding: 18px; margin-bottom: 22px; }
.form-offer span { display: block; margin-bottom: 8px; font: 11px DM Mono, monospace; text-transform: uppercase; letter-spacing: .08em; }
.form-offer strong { display: block; font-size: clamp(18px, 1.7vw, 25px); line-height: 1.18; letter-spacing: -.035em; }
.quiz-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 18px; font: 10px DM Mono, monospace; text-transform: uppercase; }
.quiz-progress span { border: 1px solid rgba(13,13,13,.25); padding: 10px 12px; opacity: .52; }
.quiz-progress span.active { background: var(--ink); color: var(--acid); opacity: 1; }
.quiz-shell { display: grid; gap: 14px; margin-bottom: 20px; }
.quiz-card { border: 1px solid var(--ink); padding: clamp(18px, 2.4vw, 30px); background: rgba(255,255,255,.35); box-shadow: 10px 10px 0 rgba(13,13,13,.06); }
.quiz-card .field:last-child { margin-bottom: 0; }
.form-step { font: 11px DM Mono, monospace; margin-bottom: 35px; }
.field { margin-bottom: 34px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid var(--ink); background: transparent; padding: 10px 0 15px; font-size: clamp(22px, 3vw, 42px); outline: none; resize: none; border-radius: 0; color: var(--ink); }
.field select { font-size: clamp(18px, 2vw, 28px); appearance: none; cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }
.compact-field { margin-top: 26px; }
.field-hint, .field-error { display: block; margin-top: 9px; font: 11px/1.45 DM Mono, monospace; text-transform: uppercase; }
.field-hint { opacity: .58; }
.field-error { min-height: 16px; color: #ff3b1f; }
.field.invalid input { border-color: #ff3b1f; }
.field.invalid .field-hint { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip input { display: none; }.chip span { display: block; border: 1px solid var(--ink); border-radius: 100px; padding: 12px 18px; cursor: pointer; transition: .25s; font-size: 13px; }.chip input:checked + span { background: var(--ink); color: var(--acid); }
.premium-chips .chip span { padding: 14px 18px; background: var(--paper); }
.submit { width: 100%; border: 0; background: var(--ink); color: var(--paper); padding: 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; transition: background .3s, color .3s; }
.submit:hover { background: var(--acid); color: var(--ink); }

footer { background: var(--ink); color: var(--paper); padding: 35px var(--pad); display: flex; justify-content: space-between; gap: 20px; font: 11px DM Mono, monospace; text-transform: uppercase; }

/* Real offer + portfolio layers */
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.pill-cta { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 24px; border: 1px solid var(--ink); border-radius: 100px; font-family: DM Mono, monospace; font-size: 12px; font-weight: 800; line-height: 1; letter-spacing: .02em; word-spacing: .18em; white-space: nowrap; transition: .35s var(--ease); }
.pill-cta.primary { background: var(--ink); color: var(--acid); }
.pill-cta:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); transform: translateY(-3px); }
.proof-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.proof-item { padding: 28px var(--pad); border-right: 1px solid var(--ink); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: clamp(30px, 4vw, 64px); letter-spacing: -.07em; line-height: 1; }
.proof-item span { display: block; margin-top: 8px; font: 10px DM Mono, monospace; text-transform: uppercase; line-height: 1.45; }

.capabilities { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); }
.capability { min-height: 330px; padding: 34px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; transition: background .4s, color .4s; }
.capability:nth-child(2n) { border-right: 0; }
.capability.main { grid-column: 1 / -1; min-height: 430px; background: var(--ink); color: var(--paper); }
.capability:hover { background: var(--acid); color: var(--ink); }
.capability-top { display: flex; justify-content: space-between; font: 11px DM Mono, monospace; text-transform: uppercase; }
.capability h3 { font-size: clamp(42px, 6vw, 92px); line-height: .88; letter-spacing: -.07em; margin: 40px 0 20px; }
.capability p { max-width: 620px; margin: 0; font-size: 15px; line-height: 1.6; }
.capability-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.capability-list span { border: 1px solid currentColor; border-radius: 99px; padding: 8px 11px; font: 9px DM Mono, monospace; text-transform: uppercase; }

.case-metric { font-size: clamp(86px, 15vw, 250px); font-weight: 800; letter-spacing: -.1em; line-height: .8; position: relative; z-index: 1; }
.case-metric small { display: block; font: 11px DM Mono, monospace; letter-spacing: 0; margin-top: 26px; text-align: center; }
.case-link { display: inline-flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid currentColor; font-size: 12px; font-weight: 700; margin-top: 28px; }

.reels-showcase { background: var(--ink); color: var(--paper); overflow: hidden; }
.reels-showcase .section-head { margin-bottom: 55px; }
.reels-rail { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; gap: clamp(16px, 3vw, 42px); align-items: start; max-width: 940px; margin: auto; }
.reel-unit:nth-child(2) { margin-top: 70px; }
.reels-rail.reels-collection { grid-auto-flow: column; grid-auto-columns: minmax(260px, 340px); grid-template-columns: none; justify-content: start; max-width: none; overflow-x: auto; padding: 0 var(--pad) 18px 0; scroll-snap-type: x mandatory; }
.reels-collection .reel-unit { scroll-snap-align: start; }
.reels-collection .reel-unit:nth-child(2), .reels-collection .reel-unit:nth-child(4), .reels-collection .reel-unit:nth-child(6) { margin-top: 70px; }
.reels-collection .reel-unit:nth-child(3), .reels-collection .reel-unit:nth-child(5) { margin-top: 24px; }
.reel-frame { aspect-ratio: 9 / 16; background: #1b1b1b; border: 1px solid #444; overflow: hidden; position: relative; }
.reel-frame iframe, .reel-frame video { width: 100%; height: 100%; border: 0; background: #0a0a0a; object-fit: cover; display: block; }
.reel-frame video { cursor: pointer; }
.reel-badge { position: absolute; left: 14px; top: 14px; z-index: 2; padding: 8px 10px; background: rgba(16,16,16,.78); color: var(--paper); font: 9px DM Mono, monospace; text-transform: uppercase; pointer-events: none; backdrop-filter: blur(8px); }
.reel-play { position: absolute; inset: 0; z-index: 2; border: 0; background: transparent; color: white; cursor: pointer; display: grid; place-items: center; }
.reel-play span { width: 76px; aspect-ratio: 1; border-radius: 50%; background: rgba(217,255,67,.92); color: var(--ink); display: grid; place-items: center; font-size: 23px; transition: transform .35s var(--ease); }
.reel-play:hover span { transform: scale(1.12); }
.reel-frame.playing .reel-play { display: none; }
.reel-caption { display: flex; justify-content: space-between; gap: 15px; padding: 14px 0; font: 10px DM Mono, monospace; text-transform: uppercase; color: #a7a7a7; }

.youtube-lab { background: var(--paper); }
.youtube-stage { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr); gap: 12px; }
.youtube-player { aspect-ratio: 16 / 9; background: var(--ink); position: relative; overflow: hidden; }
.youtube-player iframe { width: 100%; height: 100%; border: 0; }
.youtube-playlist { display: flex; flex-direction: column; gap: 8px; }
.video-choice { flex: 1; min-height: 132px; border: 1px solid var(--ink); background: transparent; color: var(--ink); padding: 14px; display: grid; grid-template-columns: 118px 1fr; gap: 16px; text-align: left; cursor: pointer; transition: .3s; }
.video-choice:hover, .video-choice.active { background: var(--acid); }
.video-choice img { width: 118px; height: 100%; min-height: 92px; object-fit: cover; filter: grayscale(1); }
.video-choice:hover img, .video-choice.active img { filter: none; }
.video-choice span { font: 9px DM Mono, monospace; text-transform: uppercase; opacity: .65; }
.video-choice strong { display: block; margin-top: 10px; font-size: 14px; line-height: 1.3; }
.youtube-note { display: grid; grid-template-columns: 1fr 1fr; margin-top: 38px; gap: 30px; }
.youtube-note p { grid-column: 2; font-size: 18px; line-height: 1.55; margin: 0; }

.reviews-section { background: #f5f1e9; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.review-card { min-height: 340px; border: 1px solid var(--ink); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); position: relative; overflow: hidden; }
.review-card::after { content: ""; position: absolute; right: 24px; bottom: 24px; width: 76px; height: 76px; border: 1px solid currentColor; border-radius: 50%; opacity: .35; }
.review-card span { font: 10px DM Mono, monospace; text-transform: uppercase; letter-spacing: .08em; }
.review-card strong { display: block; max-width: 320px; font-size: clamp(27px, 3vw, 50px); line-height: .9; letter-spacing: -.06em; }
.review-card p { max-width: 340px; margin: 0; font-size: 15px; line-height: 1.5; }
.video-placeholder { background: var(--ink); color: var(--paper); }
.video-placeholder strong { color: var(--acid); }
.screenshot-placeholder { background: var(--acid); }
.quote-placeholder { background: var(--orange); }

.real-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.real-case { min-height: 570px; padding: 30px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; transition: background .35s, color .35s; }
.real-case:last-child { border-right: 0; }
.real-case:hover { background: var(--ink); color: var(--paper); }
.real-case-top { display: flex; justify-content: space-between; font: 10px DM Mono, monospace; text-transform: uppercase; }
.real-case h3 { font-size: clamp(37px, 4vw, 64px); letter-spacing: -.06em; margin: 55px 0 20px; }
.real-case .result { font-size: clamp(54px, 6vw, 96px); line-height: .9; letter-spacing: -.08em; font-weight: 800; color: var(--orange); }
.real-case .result-label { margin-top: 10px; font-size: 13px; }
.real-case p { margin-top: auto; line-height: 1.55; font-size: 13px; }
.real-case .case-chain { margin-top: auto; }
.real-case .case-chain p { border-color: currentColor; font-size: 13px; }
.real-case .case-chain b { color: var(--orange); }
.real-case:hover .case-chain b { color: var(--acid); }
.real-case a { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 700; }

.process-flow { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.process-step { min-height: 310px; padding: 25px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; flex-direction: column; }
.process-step:last-child { border-right: 0; }
.process-step .num { font: 11px DM Mono, monospace; }
.process-step h3 { font-size: 28px; letter-spacing: -.04em; margin-top: auto; }
.process-step p { font-size: 13px; line-height: 1.5; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.insight-card { min-height: 430px; padding: 30px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; transition: background .35s, color .35s, transform .35s var(--ease); }
.insight-card:last-child { border-right: 0; }
.insight-card:hover { background: var(--ink); color: var(--paper); transform: translateY(-10px); }
.insight-card > span, .article-meta { font: 10px DM Mono, monospace; text-transform: uppercase; }
.insight-card h3 { font-size: clamp(32px, 3.8vw, 58px); line-height: .98; letter-spacing: -.055em; margin: 70px 0 20px; }
.insight-card p { font-size: 14px; line-height: 1.55; max-width: 390px; }
.insight-card b { margin-top: auto; font: 11px DM Mono, monospace; }

.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--ink); }
.faq-item summary { list-style: none; cursor: pointer; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: clamp(20px, 2.6vw, 38px); font-weight: 700; letter-spacing: -.035em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { font-weight: 400; transition: transform .3s var(--ease); }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { max-width: 740px; margin: 0 0 30px; font-size: 17px; line-height: 1.65; }

.article-stack { max-width: 1500px; margin: auto; }
.insight-article { padding: clamp(70px, 10vw, 145px) 0; border-bottom: 1px solid var(--ink); }
.insight-article:first-child { padding-top: 0; }
.article-meta { display: flex; justify-content: space-between; }
.insight-article h2 { font-size: clamp(48px, 8vw, 126px); line-height: .9; letter-spacing: -.07em; max-width: 1250px; margin: 55px 0; }
.article-lead { font-size: clamp(23px, 3vw, 44px); line-height: 1.25; max-width: 920px; letter-spacing: -.03em; }
.article-body { width: min(720px, 100%); margin: 65px 0 0 auto; }
.article-body p { font-size: 18px; line-height: 1.75; }
.article-body strong { display: block; margin-top: 35px; padding: 22px; background: var(--acid); font-size: 17px; line-height: 1.5; }

@media (max-width: 900px) {
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }.proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .youtube-stage { grid-template-columns: 1fr; }.youtube-playlist { display: grid; grid-template-columns: repeat(2, 1fr); }.video-choice { grid-template-columns: 1fr; }.video-choice img { width: 100%; height: 110px; }.video-choice strong { font-size: 12px; }
  .review-grid { grid-template-columns: 1fr; }.review-card { min-height: 280px; }
  .real-case-grid { grid-template-columns: 1fr; }.real-case { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 510px; }.real-case:last-child { border-bottom: 0; }
  .process-flow { grid-template-columns: repeat(2, 1fr); }.process-step:nth-child(2) { border-right: 0; }
  .insight-grid { grid-template-columns: 1fr; }.insight-card { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 360px; }.insight-card:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }.pill-cta { width: 100%; min-height: 58px; padding-inline: 18px; font-size: 11px; }
  .proof-bar { grid-template-columns: 1fr 1fr; }.proof-item { padding: 22px 18px; }
  .capabilities { grid-template-columns: 1fr; }.capability, .capability:nth-child(2n) { border-right: 0; min-height: 310px; }.capability.main { grid-column: auto; min-height: 390px; }.capability h3 { font-size: 44px; }
  .reels-rail, .reels-rail.reels-collection { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78vw; justify-content: start; overflow-x: auto; width: calc(100% + var(--pad)); max-width: none; padding-right: var(--pad); scroll-snap-type: x mandatory; }.reel-unit { scroll-snap-align: center; }.reel-unit:nth-child(2), .reels-collection .reel-unit:nth-child(2), .reels-collection .reel-unit:nth-child(4), .reels-collection .reel-unit:nth-child(6) { margin-top: 35px; }.reels-collection .reel-unit:nth-child(3), .reels-collection .reel-unit:nth-child(5) { margin-top: 0; }
  .youtube-playlist { display: flex; }.video-choice { grid-template-columns: 105px 1fr; }.video-choice img { width: 105px; height: 92px; }
  .youtube-note { grid-template-columns: 1fr; }.youtube-note p { grid-column: 1; }
  .process-flow { grid-template-columns: 1fr; }.process-step, .process-step:nth-child(2) { border-right: 0; min-height: 245px; }
}

@media (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
  .site-header { height: 72px; }
  .status { display: none; }
  .site-header > .language-switch { position: absolute; right: 88px; }
  .menu-btn { display: block; z-index: 2; }
  .nav { position: fixed; inset: 0; background: var(--acid); color: var(--ink); flex-direction: column; justify-content: center; font-size: 34px; transform: translateY(-105%); transition: transform .7s var(--ease); }
  .menu-open .nav { transform: none; }
  .hero { min-height: calc(100svh - 72px); }
  .hero-meta p { width: 70vw; }
  .hero-title h1 { font-size: clamp(140px, 34vw, 330px); }
  .hero-orbit { right: -5%; top: 33%; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .sprint-strip { grid-template-columns: 1fr; gap: 18px; }
  .ticker { transform: none; }
  .hero-line { grid-column: 1 / -1; max-width: 520px; }
  .scroll-note { grid-column: 2; }
  .section-head { grid-template-columns: 1fr; }
  .section-head p { grid-column: 1; }
  .manifesto-foot { grid-template-columns: 1fr; }.manifesto-foot p { grid-column: 1; }
  .system-row { grid-template-columns: 50px 1fr 35px; }.system-row p { display: none; }
  .work-card { grid-template-columns: 1fr; }.work-info { border-left: 0; border-top: 1px solid rgba(255,255,255,.35); min-height: 430px; }
  .price-grid, .tariff-grid, .service-grid { grid-template-columns: 1fr; }.price-card { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 470px; }.price-card:hover, .price-card.featured { transform: none; }
  .service-grid article { border-right: 0; border-bottom: 1px solid currentColor; min-height: 330px; padding-inline: 0; }
  .service-case { grid-template-columns: 1fr; padding: 70px 0; }
  .tariff-card { min-height: 630px; }
  .page-hero-bottom { grid-template-columns: 1fr; }.page-hero-bottom p { grid-column: 1; }
  .case-row { grid-template-columns: 45px 1fr 40px; min-height: 55vw; }.case-row p { display: none; }.case-row .case-bg { right: 15%; width: 45vw; height: 35vw; }
  .contact-page { grid-template-columns: 1fr; }.contact-copy { min-height: 88svh; border-right: 0; border-bottom: 1px solid var(--ink); }.contact-form { min-height: 100svh; }.quiz-progress { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-meta p { width: 100%; }.hero-meta .eyebrow { display: none; }
  .hero-title h1 { font-size: 36vw; letter-spacing: -.09em; }
  .hero-orbit { width: 180px; right: -18%; top: 36%; }
  .hero-bottom { grid-template-columns: 1fr; }.scroll-note { grid-column: 1; text-align: left; }
  .sprint-strip { padding-block: 22px; }
  .sprint-link { text-align: center; }
  .manifesto-copy { font-size: 15vw; }
  .system-row { grid-template-columns: 38px 1fr 25px; gap: 10px; }.system-row h3 { font-size: 37px; }
  .work-card { min-height: auto; }.work-visual { min-height: 60vh; }.work-info { min-height: 390px; }
  .mock-phone { width: 52%; }
  .big-cta { min-height: 80svh; }.big-cta-top { gap: 20px; }.big-cta h2 { font-size: 25vw; }.big-cta h2 span { margin-left: 8vw; }.cta-bottom { grid-template-columns: 1fr; }.round-link { justify-self: start; width: 170px; }
  .addons { grid-template-columns: 1fr; }.addon:nth-child(odd), .addon:nth-child(even) { padding-inline: 0; border-right: 0; }
  .service-page > .brand { position: static; display: inline-block; margin-bottom: 25px; }
  .service-hero { min-height: 78svh; padding-top: 20px; }
  .case-row { min-height: 74vw; grid-template-columns: 32px 1fr 30px; gap: 10px; }.case-row h2 { font-size: 15vw; }
  .contact-links { flex-wrap: wrap; }
  .contact-copy { overflow: hidden; }.contact-copy h1 { font-size: 15.5vw; }
  .insight-card { min-height: 330px; padding: 24px; }.insight-card h3 { margin-top: 55px; }
  .faq-item summary { padding: 22px 0; }
  .insight-article h2 { margin: 38px 0; }.article-body { margin-top: 42px; }.article-body p { font-size: 16px; }
  footer { flex-direction: column; }
}

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