:root {
  color-scheme: dark;
  --bg: #030303;
  --ink: #f3efe7;
  --muted: #8b8983;
  --line: rgba(255, 255, 255, 0.13);
  --red: #ff405e;
  --blue: #bcecff;
  --gold: #f4cf63;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: #050505;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px clamp(22px, 4vw, 64px);
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}
.site-header > *:not(.header-lightning) { position: relative; z-index: 1; }
.header-lightning {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
  pointer-events: none;
}
.site-header a { pointer-events: auto; }
.wordmark,
.nav-cta,
.chapter-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.wordmark,
.nav-cta { text-decoration: none; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.mark-dot { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; }
.chapter-label { display: flex; gap: 16px; color: #8d8d8d; }
.chapter-label span:first-child { color: #fff; }
.chapter-label {
  grid-column: 2;
  grid-row: 1;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.header-orbit {
  grid-column: 2;
  grid-row: 1;
  width: 156px;
  height: 38px;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .5s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}
body.is-past-story .chapter-label { opacity: 0; transform: translateY(-8px); }
body.is-past-story .header-orbit { opacity: 1; transform: scale(1); }
body.is-past-story .site-header {
  animation: header-signal-twitch 7.5s steps(1, end) infinite;
}
body.is-past-story .site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(82, 231, 255, .08), transparent 24%, transparent 76%, rgba(255, 64, 94, .08));
  animation: header-signal-flash 7.5s steps(1, end) infinite;
}
@keyframes header-signal-twitch {
  0%, 91%, 92.5%, 94%, 95.5%, 100% { transform: translateX(0); filter: none; }
  91.5% { transform: translateX(1px); filter: drop-shadow(-1px 0 rgba(82, 231, 255, .34)); }
  93% { transform: translateX(-1px); filter: drop-shadow(1px 0 rgba(255, 64, 94, .28)); }
  94.5% { transform: translateX(.5px); }
}
@keyframes header-signal-flash {
  0%, 91%, 92%, 93%, 94.2%, 100% { opacity: 0; }
  91.5% { opacity: .7; clip-path: inset(18% 0 62% 0); }
  92.5% { opacity: .45; clip-path: inset(64% 0 12% 0); }
  93.5% { opacity: .25; clip-path: inset(42% 0 38% 0); }
}
.nav-cta { justify-self: end; display: flex; gap: 10px; }

.scroll-story { height: 620vh; position: relative; background: #000; }
.stage { position: sticky; top: 0; height: 100vh; min-height: 560px; overflow: hidden; isolation: isolate; }
#orbit { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -3; }
.vignette {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 36%, rgba(0,0,0,.12) 60%, rgba(0,0,0,.82) 115%),
    linear-gradient(180deg, rgba(0,0,0,.25), transparent 28%, transparent 70%, rgba(0,0,0,.4));
}
.noise {
  position: absolute;
  z-index: -1;
  inset: -50%;
  opacity: .055;
  pointer-events: none;
  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='.65'/%3E%3C/svg%3E");
  animation: grain .22s steps(2) infinite;
}
@keyframes grain { 0% { transform: translate(0); } 25% { transform: translate(2%, -1%); } 50% { transform: translate(-1%, 2%); } 75% { transform: translate(1%, 1%); } }

.story-beats { position: absolute; inset: 0; pointer-events: none; }
.beat {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px);
  filter: blur(8px);
  transition: opacity .65s var(--ease), transform .8s var(--ease), filter .8s var(--ease), visibility .8s;
  pointer-events: none;
}
.beat.is-active { opacity: 1; visibility: visible; transform: none; filter: none; pointer-events: auto; }
.beat h1,
.beat h2,
.manifesto h2,
.closing h2 {
  margin: 0;
  font-size: clamp(56px, 9.4vw, 150px);
  line-height: .83;
  font-weight: 500;
  letter-spacing: -.072em;
}
.beat em,
.manifesto em,
.closing em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.eyebrow,
.sequence {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #b2aea5;
}
.beat-hero { left: 50%; top: 47%; width: min(1200px, 92vw); text-align: center; transform: translate(-50%, calc(-50% + 34px)); }
.beat-hero.is-active { transform: translate(-50%, -50%); }
.beat-hero .hero-note { margin: 28px auto 0; color: #92908b; font-size: 12px; line-height: 1.7; letter-spacing: .08em; text-transform: uppercase; }
.dev-glitch {
  position: relative;
  display: inline-block;
  margin-left: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  vertical-align: baseline;
  opacity: 0;
}
.dev-glitch::before,
.dev-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.dev-glitch::before { color: var(--blue); }
.dev-glitch::after { color: var(--red); }
.beat-hero.is-active .dev-glitch {
  animation: dev-materialize 1.35s steps(1, end) .72s both;
}
.beat-hero.is-active .dev-glitch::before {
  animation: dev-channel-left .72s steps(1, end) .78s both;
}
.beat-hero.is-active .dev-glitch::after {
  animation: dev-channel-right .72s steps(1, end) .78s both;
}
@keyframes dev-materialize {
  0%, 12% { opacity: 0; clip-path: inset(0 100% 0 0); }
  13% { opacity: .35; clip-path: inset(44% 0 42% 0); transform: translateX(5px); }
  24% { opacity: 0; }
  31% { opacity: .55; clip-path: inset(18% 0 58% 0); transform: translateX(-2px); }
  43% { opacity: .22; clip-path: inset(72% 0 7% 0); }
  58% { opacity: .85; clip-path: inset(0); transform: translateX(1px); }
  72% { opacity: .45; }
  100% { opacity: 1; clip-path: inset(0); transform: none; }
}
@keyframes dev-channel-left {
  0%, 18%, 40%, 62%, 100% { opacity: 0; transform: none; }
  19%, 39% { opacity: .6; transform: translate(-3px, 1px); clip-path: inset(12% 0 58% 0); }
  63%, 78% { opacity: .35; transform: translateX(-1px); clip-path: inset(66% 0 8% 0); }
}
@keyframes dev-channel-right {
  0%, 26%, 50%, 73%, 100% { opacity: 0; transform: none; }
  27%, 49% { opacity: .5; transform: translate(3px, -1px); clip-path: inset(52% 0 20% 0); }
  74%, 86% { opacity: .28; transform: translateX(1px); clip-path: inset(8% 0 70% 0); }
}
.beat-left { left: clamp(24px, 8vw, 128px); top: 28%; }
.beat-right { right: clamp(24px, 8vw, 128px); top: 27%; text-align: right; }
.beat-center { left: 50%; top: 50%; text-align: center; transform: translate(-50%, calc(-50% + 34px)); }
.beat-center.is-active { transform: translate(-50%, -50%); }
.beat-final {
  left: 50%;
  top: 0;
  width: 92vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, 34px);
}
.beat-final.is-active { transform: translateX(-50%); }
.primary-cta {
  position: absolute;
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 0;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s, background .3s, border-color .3s;
}
.primary-cta:hover,
.primary-cta:focus-visible { color: #050505; background: var(--ink); border-color: var(--ink); }

.orbit-legend {
  position: absolute;
  left: clamp(22px, 4vw, 64px);
  bottom: 28px;
  display: flex;
  gap: 20px;
  color: #777;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.orbit-legend span { display: flex; align-items: center; gap: 7px; }
.legend-dot { width: 4px; height: 4px; border-radius: 50%; }
.legend-dot.red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.legend-dot.blue { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.legend-dot.gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; display: grid; justify-items: center; gap: 12px; transform: translateX(-50%); color: #696969; font-size: 8px; letter-spacing: .2em; }
.scroll-cue { transition: opacity .45s ease; }
.stage.has-scrolled .scroll-cue { opacity: 0; }
.scroll-cue i { width: 1px; height: 28px; overflow: hidden; background: rgba(255,255,255,.2); }
.scroll-cue i::after { content: ''; display: block; width: 100%; height: 40%; background: #fff; animation: scrollline 1.8s var(--ease) infinite; }
@keyframes scrollline { from { transform: translateY(-120%); } to { transform: translateY(260%); } }
.progress-rail { position: absolute; right: clamp(22px, 4vw, 64px); bottom: 28px; width: 86px; display: flex; align-items: center; gap: 12px; color: #777; font-size: 8px; }
.progress-rail::before { content: ''; position: absolute; left: 0; right: 28px; height: 1px; background: rgba(255,255,255,.18); }
.progress-fill { position: relative; z-index: 1; width: 0%; height: 1px; background: #fff; transition: width .12s linear; }
.progress-number { margin-left: auto; font-weight: 400; }

.manifesto {
  --section-pad: clamp(84px, 12vw, 190px);
  position: relative;
  z-index: 2;
  overflow: clip;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 64, 94, .07), transparent 26%),
    radial-gradient(circle at 84% 42%, rgba(188, 236, 255, .055), transparent 28%),
    #050505;
  color: var(--ink);
  padding: var(--section-pad) clamp(24px, 6vw, 96px) 0;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.manifesto > * { position: relative; }
.manifesto [hidden] { display: none !important; }
.manifesto .eyebrow { color: #aaa69e; }
.manifesto h2 { text-wrap: balance; }
.manifesto-intro h2 { max-width: 1300px; font-size: clamp(46px, 8.5vw, 132px); }
.closing { display: flex; min-height: 100vh; flex-direction: column; align-items: center; justify-content: center; padding: 13vw 0; text-align: center; }
.closing > p:first-child { margin: 0 0 30px; color: #8c8983; font-size: 9px; letter-spacing: .3em; }
.closing h2 { font-size: clamp(58px, 10vw, 160px); }
.closing-answer { margin: 42px 0 0; color: #c5c1b9; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(20px, 2vw, 30px); font-style: italic; }
.return-link { margin-top: 52px; padding-bottom: 8px; border-bottom: 1px solid; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; }

.business-nav {
  position: sticky;
  z-index: 12;
  top: 95px;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 42px);
  width: calc(100% + clamp(48px, 12vw, 192px));
  margin-left: calc(clamp(24px, 6vw, 96px) * -1);
  padding: 15px clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: rgba(3, 3, 3, .88);
  backdrop-filter: blur(18px);
}
.business-nav a { color: #aaa7a0; font-size: 9px; font-weight: 700; letter-spacing: .17em; text-decoration: none; text-transform: uppercase; transition: color .25s; }
.business-nav a:hover, .business-nav a:focus-visible { color: #fff; }
.business-nav .business-nav-cta { color: var(--gold); }

.business-section { scroll-margin-top: 132px; padding: var(--section-pad) 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 1160px; }
.section-heading h2,
.path-intro h2,
.pricing-intro h2,
.contact-intro h2 { font-size: clamp(48px, 7.2vw, 112px); line-height: .9; }
.section-heading .eyebrow,
.path-intro .eyebrow,
.pricing-intro .eyebrow,
.contact-intro .eyebrow { margin-bottom: 30px; }
.business-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  gap: 28px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.business-cta:hover, .business-cta:focus-visible { background: var(--ink); border-color: var(--ink); color: #050505; }
.manifesto a:focus-visible,
.manifesto button:focus-visible,
.manifesto input:focus-visible,
.manifesto select:focus-visible,
.manifesto textarea:focus-visible,
.site-footer a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.vision-section { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: clamp(50px, 10vw, 180px); align-items: end; min-height: 90vh; }
.vision-section h2 { font-size: clamp(54px, 8vw, 126px); }
.vision-copy { padding-bottom: 10px; }
.vision-copy > p { margin: 0 0 26px; color: #aaa7a0; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.7; }
.vision-copy .brand-promise { color: var(--ink); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(22px, 2vw, 32px); font-style: italic; line-height: 1.35; }

.service-orbit { margin-top: clamp(80px, 10vw, 150px); }
.service-line { display: grid; grid-template-columns: minmax(100px, .42fr) 1fr; gap: 32px; max-width: 1000px; min-height: 320px; padding: 48px 0; border-top: 1px solid var(--line); }
.service-line:nth-child(even) { margin-left: auto; }
.service-line:last-child { border-bottom: 1px solid var(--line); }
.service-index { display: flex; align-items: flex-start; gap: 16px; color: #777; font-size: 10px; letter-spacing: .18em; }
.service-index i { width: 8px; height: 8px; margin-top: 2px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.service-line[data-accent="red"] { --accent: var(--red); }
.service-line[data-accent="blue"] { --accent: var(--blue); }
.service-line[data-accent="gold"] { --accent: var(--gold); }
.service-line h3 { margin: 0 0 24px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(38px, 5vw, 74px); font-style: italic; font-weight: 400; letter-spacing: -.045em; }
.service-line div > p { max-width: 660px; margin: 0; color: #aaa7a0; font-size: 16px; line-height: 1.75; }
.service-line .service-outcome { margin-top: 26px; color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.6; text-transform: uppercase; }

.path-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 150px); align-items: start; }
.path-intro { position: sticky; top: 160px; }
.path-intro > p:last-child { max-width: 480px; color: #9c9992; font-size: 16px; line-height: 1.7; }
.project-selector fieldset { display: grid; padding: 0; border: 0; }
.project-selector label { position: relative; display: block; border-top: 1px solid var(--line); cursor: pointer; }
.project-selector label:last-child { border-bottom: 1px solid var(--line); }
.project-selector input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.project-selector label span { display: flex; min-height: 92px; align-items: center; padding: 20px 60px 20px 24px; color: #aaa7a0; font-size: clamp(18px, 2vw, 28px); transition: color .25s, padding-left .3s; }
.project-selector label span::after { content: '○'; position: absolute; right: 24px; color: #777; }
.project-selector label:hover span { color: #fff; padding-left: 32px; }
.project-selector input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: -4px; }
.project-selector input:checked + span { color: #fff; padding-left: 32px; }
.project-selector input:checked + span::after { content: '●'; color: var(--gold); text-shadow: 0 0 14px var(--gold); }
.path-recommendation { min-height: 230px; margin-top: 38px; padding: 28px; border-left: 1px solid var(--gold); background: linear-gradient(90deg, rgba(244,207,99,.055), transparent); }
.path-recommendation > span { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.path-recommendation p { max-width: 640px; margin: 22px 0 28px; color: #c8c4bc; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(21px, 2.2vw, 30px); font-style: italic; line-height: 1.45; }

.project-list { margin-top: clamp(80px, 10vw, 150px); }
.project-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(38px, 8vw, 120px); align-items: center; padding: 70px 0; border-top: 1px solid var(--line); }
.project-feature:last-child { border-bottom: 1px solid var(--line); }
.project-feature-reverse .project-visual { order: 2; }
.project-visual { position: relative; min-height: clamp(320px, 44vw, 620px); overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: #020202; }
.orbit-project { display: grid; place-items: center; background: radial-gradient(circle at center, #111827 0, #050609 36%, #010101 72%); }
.orbit-project > b { color: rgba(255,255,255,.11); font-family: Georgia, serif; font-size: clamp(140px, 25vw, 380px); font-weight: 400; }
.mini-orbit { position: absolute; width: 72%; aspect-ratio: 2 / 1; border: 1px solid rgba(210,230,255,.26); border-radius: 50%; transform: rotate(-18deg); }
.mini-orbit i { position: absolute; width: 10px; height: 10px; border-radius: 50%; }
.mini-orbit i:nth-child(1) { left: 5%; top: 44%; background: var(--red); box-shadow: 0 0 28px var(--red); }
.mini-orbit i:nth-child(2) { right: 10%; top: 16%; background: var(--blue); box-shadow: 0 0 28px var(--blue); }
.mini-orbit i:nth-child(3) { left: 48%; bottom: -5px; background: var(--gold); box-shadow: 0 0 28px var(--gold); }
.null-project { display: flex; flex-direction: column; justify-content: space-between; padding: 36px; background: repeating-linear-gradient(90deg, transparent 0 48px, rgba(255,255,255,.025) 49px 50px), repeating-linear-gradient(0deg, transparent 0 48px, rgba(255,255,255,.025) 49px 50px), #030303; }
.null-project::after { content: ''; position: absolute; inset: 18% 12%; border: 1px solid rgba(188,236,255,.25); box-shadow: inset 0 0 80px rgba(188,236,255,.04); }
.null-project span { color: var(--blue); font-size: 10px; letter-spacing: .3em; }
.null-project b { align-self: flex-end; color: rgba(255,255,255,.09); font-size: clamp(130px, 20vw, 300px); font-weight: 400; letter-spacing: -.1em; }
.project-category { color: #777; font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.project-copy h3 { margin: 24px 0; font-family: Georgia, serif; font-size: clamp(48px, 6vw, 88px); font-style: italic; font-weight: 400; letter-spacing: -.055em; }
.project-copy > p:not(.project-category) { color: #aaa7a0; font-size: 16px; line-height: 1.75; }
.current-project, .project-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: #d4d0c8; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; }
.current-project i { color: var(--gold); font-size: 7px; text-shadow: 0 0 10px var(--gold); }
.project-link[aria-disabled="true"] { color: #666; cursor: default; }

.process-path { position: relative; max-width: 1040px; margin: clamp(90px, 12vw, 180px) auto 0; padding: 0; list-style: none; }
.process-path::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(var(--red), var(--blue), var(--gold)); opacity: .42; }
.process-path li { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: start; min-height: 230px; }
.process-path li:nth-child(odd) div { grid-column: 1; grid-row: 1; padding-right: 44px; text-align: right; }
.process-path li:nth-child(even) div { grid-column: 3; padding-left: 44px; }
.process-path li > span { color: #666; font-size: 9px; letter-spacing: .16em; }
.process-path li:nth-child(odd) > span { grid-column: 3; padding-left: 44px; }
.process-path li:nth-child(even) > span { grid-column: 1; text-align: right; padding-right: 44px; }
.process-path li > i { z-index: 1; grid-column: 2; grid-row: 1; justify-self: center; width: 11px; height: 11px; border: 2px solid #070707; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 0 18px rgba(188,236,255,.28); }
.process-path h3 { margin: -8px 0 14px; font-family: Georgia, serif; font-size: clamp(38px, 4.5vw, 66px); font-style: italic; font-weight: 400; }
.process-path p { margin: 0; color: #99968f; font-size: 15px; line-height: 1.7; }

.pricing-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 160px); align-items: start; }
.pricing-intro { position: sticky; top: 160px; }
.pricing-intro > p:last-child { color: #aaa7a0; font-size: 16px; line-height: 1.75; }
.price-list { border-top: 1px solid var(--line); }
.price-list > div { display: flex; justify-content: space-between; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.price-list span { color: #c9c5bd; font-family: Georgia, serif; font-size: clamp(22px, 2.6vw, 36px); font-style: italic; }
.price-list strong { align-self: center; color: var(--gold); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.price-list > p { margin: 32px 0 0; color: #85827c; font-size: 13px; line-height: 1.65; }

.contact-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 10vw, 160px); padding-bottom: var(--section-pad); }
.contact-intro { position: sticky; top: 160px; align-self: start; }
.contact-intro > p:last-of-type { color: #aaa7a0; font-size: 16px; line-height: 1.75; }
.contact-intro > a { display: inline-block; margin-top: 22px; color: var(--blue); font-size: 13px; text-underline-offset: 5px; }
.project-form { padding: clamp(26px, 4vw, 54px); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.025); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
.field { min-width: 0; }
.field-wide, .check-field { grid-column: 1 / -1; }
.field > label { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 10px; color: #c8c4bc; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field > label > span { color: #666; font-size: 8px; }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; min-height: 50px; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 15px; transition: border-color .2s, background .2s; }
.field textarea { min-height: 130px; padding-top: 12px; resize: vertical; }
.field select {
  padding: 0 38px 0 12px;
  background-color: #0d1012;
  color: #f5f1e8;
  color-scheme: dark;
}
.field select:invalid { color: #aaa69e; }
.field select option { background-color: #101316; color: #f5f1e8; }
.field select option[value=""] { color: #aaa69e; }
.field select option:checked { background-color: #332d1b; color: #ffe184; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--blue); background: rgba(188,236,255,.025); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-bottom-color: var(--red); }
.field-error { display: block; min-height: 17px; padding-top: 6px; color: #ff8193; font-size: 11px; }
.check-field label { display: flex; align-items: flex-start; justify-content: flex-start; cursor: pointer; line-height: 1.5; text-transform: none; }
.check-field input { width: 17px; height: 17px; margin: 1px 10px 0 0; accent-color: var(--gold); }
.check-field label span { color: #aaa7a0; font-size: 13px; letter-spacing: normal; }
.submit-button { display: flex; width: 100%; justify-content: space-between; margin-top: 38px; padding: 19px 22px; border: 1px solid var(--ink); border-radius: 0; background: var(--ink); color: #050505; cursor: pointer; font: inherit; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; transition: background .25s, color .25s; }
.submit-button:hover { background: var(--gold); }
.form-note { margin: 16px 0 0; color: #716e69; font-size: 10px; line-height: 1.5; }
.honeypot { display: none; }
.form-success { margin-bottom: 30px; padding: 22px; border-left: 2px solid var(--gold); background: rgba(244,207,99,.06); }
.form-success strong { font-family: Georgia, serif; font-size: 24px; font-style: italic; font-weight: 400; }
.form-success p { margin: 8px 0 0; color: #aaa7a0; font-size: 13px; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px) 42px; border-top: 1px solid var(--line); background: #000; color: var(--ink); }
.site-footer p { margin: 8px 0 0; color: #777; font-size: 11px; line-height: 1.5; }
.footer-brand { font-family: Georgia, serif; font-size: clamp(28px, 3vw, 44px); font-style: italic; text-decoration: none; }
.site-footer nav { display: flex; flex-wrap: wrap; align-content: flex-start; justify-content: center; gap: 14px 24px; max-width: 380px; }
.site-footer nav a, .footer-contact a { color: #aaa7a0; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.footer-contact { text-align: right; }
.site-footer .footer-tagline { grid-column: 1 / -1; margin: 0; padding-top: 34px; border-top: 1px solid var(--line); font-size: clamp(8px, .8vw, 11px); letter-spacing: .08em; text-align: center; white-space: nowrap; }
.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; }
.reveal { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--ease); }
@media (scripting: enabled) {
  .reveal { opacity: 0; transform: translateY(48px); }
  .reveal.in-view { opacity: 1; transform: none; }
}
.noscript { position: fixed; inset: auto 16px 16px; z-index: 50; padding: 12px; background: #fff; color: #000; text-align: center; }

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto 1fr; padding: 22px; }
  .chapter-label { display: none; }
  .header-orbit { width: 82px; height: 24px; }
  .wordmark, .nav-cta { font-size: 8px; letter-spacing: .15em; }
  .beat h1, .beat h2 { font-size: clamp(48px, 16vw, 84px); }
  .beat-left { top: 24%; }
  .beat-right { top: 25%; }
  .orbit-legend { max-width: 180px; flex-wrap: wrap; gap: 8px 14px; bottom: 20px; }
  .scroll-cue { display: none; }
  .progress-rail { bottom: 22px; }
  .primary-cta { bottom: 92px; }
  .manifesto { --section-pad: 96px; padding: 120px 22px 0; }
  .manifesto-intro h2 { font-size: clamp(44px, 14vw, 70px); }
  .closing { min-height: 88vh; }
  .business-nav { top: 69px; justify-content: flex-start; width: calc(100% + 44px); margin-left: -22px; overflow-x: auto; padding-inline: 22px; scrollbar-width: none; }
  .business-nav::-webkit-scrollbar { display: none; }
  .business-nav a { white-space: nowrap; }
  .business-section { scroll-margin-top: 116px; }
  .section-heading h2, .path-intro h2, .pricing-intro h2, .contact-intro h2 { font-size: clamp(44px, 13vw, 70px); }
  .vision-section, .path-section, .pricing-section, .contact-section { grid-template-columns: 1fr; min-height: auto; gap: 56px; }
  .vision-section h2 { font-size: clamp(48px, 14vw, 76px); }
  .path-intro, .pricing-intro, .contact-intro { position: static; }
  .service-line, .service-line:nth-child(even) { grid-template-columns: 62px 1fr; min-height: auto; margin-left: 0; padding: 44px 0 58px; }
  .service-line h3 { font-size: clamp(38px, 11vw, 58px); }
  .project-selector label span { min-height: 80px; padding-left: 8px; font-size: 17px; }
  .project-selector input:checked + span, .project-selector label:hover span { padding-left: 14px; }
  .path-recommendation { padding: 24px 18px; }
  .project-feature, .project-feature-reverse { grid-template-columns: 1fr; gap: 38px; padding: 54px 0; }
  .project-feature-reverse .project-visual { order: 0; }
  .project-visual { min-height: 330px; }
  .process-path::before { left: 14px; }
  .process-path li { grid-template-columns: 28px 1fr; min-height: 210px; }
  .process-path li > i { grid-column: 1; justify-self: start; margin-left: 9px; }
  .process-path li:nth-child(odd) div, .process-path li:nth-child(even) div { grid-column: 2; grid-row: 1; padding: 0 0 0 28px; text-align: left; }
  .process-path li:nth-child(odd) > span, .process-path li:nth-child(even) > span { grid-column: 2; grid-row: 1; padding: 74px 0 0 28px; text-align: left; }
  .process-path p { padding-bottom: 38px; }
  .price-list > div { flex-direction: column; gap: 8px; }
  .price-list strong { align-self: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide, .check-field { grid-column: auto; }
  .project-form { padding: 28px 18px; }
  .site-footer { grid-template-columns: 1fr; gap: 38px; padding-inline: 22px; }
  .site-footer nav { justify-content: flex-start; }
  .footer-contact { text-align: left; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .vision-section, .path-section, .pricing-section, .contact-section { grid-template-columns: 1fr; gap: 70px; }
  .path-intro, .pricing-intro, .contact-intro { position: static; max-width: 760px; }
  .project-feature { grid-template-columns: 1fr 1fr; gap: 48px; }
  .service-line { max-width: 90%; }
}

@media (min-width: 1900px) {
  .manifesto { padding-inline: max(7vw, calc((100vw - 2200px) / 2)); }
  .manifesto-intro, .business-section, .closing { max-width: 2200px; margin-inline: auto; }
  .business-nav { width: 100vw; margin-left: calc((100vw - 100%) / -2); }
}

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