@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/geist.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/geist-mono.woff2") format("woff2");
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --ink: #071124;
  --sun: #ffb400;
  --orange: #ff5a00;
  --hot: #ff2d00;
  --cream: #fff5d7;
  --paper: #f4efe5;
  --pointer-x: 0;
  --pointer-y: 0;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

button,
a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(calc(100% - 72px), 1500px);
  margin-inline: auto;
}

.solar-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 40%, rgba(255, 246, 118, .92) 0 8%, rgba(255, 172, 0, .26) 33%, transparent 53%),
    linear-gradient(125deg, #ffd735 0%, #ffad00 32%, #ff7300 59%, #ff3d00 100%);
  isolation: isolate;
}

.solar-hero::before {
  position: absolute;
  z-index: -1;
  inset: -25%;
  content: "";
  background:
    conic-gradient(from 205deg at 72% 45%, transparent 0 24%, rgba(255,255,255,.34) 28%, transparent 34% 60%, rgba(157,21,0,.16) 68%, transparent 78%);
  transform: translate3d(calc(var(--pointer-x) * -10px), calc(var(--pointer-y) * -10px), 0) rotate(-3deg);
  transition: transform .18s linear;
}

.hero-noise {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(0,0,0,.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 65%, rgba(255,255,255,.25) 0 1px, transparent 1.3px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.hero-speed-lines {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: -8%;
  width: 76%;
  height: 67%;
  opacity: .23;
  background: repeating-linear-gradient(170deg, transparent 0 16px, rgba(7,17,36,.34) 17px, transparent 18px 25px);
  mask-image: linear-gradient(to right, transparent, #000 22%, #000 76%, transparent);
  transform: skewY(-8deg) translate3d(calc(var(--pointer-x) * 24px), calc(var(--pointer-y) * 10px), 0);
  transition: transform .15s linear;
}

.nav {
  position: relative;
  z-index: 10;
  display: grid;
  height: 88px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(7,17,36,.28);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity .45s ease .05s, transform .45s cubic-bezier(.2,.8,.2,1) .05s;
}

.is-ready .nav { opacity: 1; transform: translateY(0); }

.wordmark {
  width: max-content;
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  animation: dotPulse 1.8s ease-in-out infinite;
}

.nav-email {
  display: flex;
  width: max-content;
  align-items: center;
  justify-self: end;
  gap: 22px;
  padding: 11px 14px 11px 18px;
  border: 1px solid rgba(7,17,36,.52);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.nav-email:hover,
.nav-email:focus-visible {
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-2px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 156px);
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 52px 0 98px;
}

.hero-content { position: relative; z-index: 4; }

.hero-kicker {
  display: flex;
  gap: 12px;
  margin: 0 0 24px;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease .18s, transform .4s ease .18s;
}

.is-ready .hero-kicker { opacity: .8; transform: translateY(0); }

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

h1 {
  max-width: 920px;
  margin: 0 0 28px;
  font-size: clamp(74px, 9vw, 146px);
  font-weight: 860;
  letter-spacing: -.082em;
  line-height: .76;
  text-transform: uppercase;
}

.headline-line {
  display: block;
  overflow: hidden;
  padding: .075em .08em .075em 0;
}

.headline-line > span {
  display: block;
  transform: translateY(110%) rotate(1deg);
  transition: transform .68s cubic-bezier(.16,1,.3,1);
}

.headline-line:nth-child(1) > span { transition-delay: .1s; }
.headline-line:nth-child(2) > span { transition-delay: .16s; }
.headline-line:nth-child(3) > span { transition-delay: .22s; }
.is-ready .headline-line > span { transform: translateY(0) rotate(0); }

.headline-dot { color: var(--cream); }

.hero-copy {
  max-width: 490px;
  margin: 0 0 31px 6px;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.42;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease .34s, transform .5s ease .34s;
}

.is-ready .hero-copy { opacity: .86; transform: translateY(0); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease .42s, transform .5s ease .42s;
}

.is-ready .hero-actions { opacity: 1; transform: translateY(0); }

.primary-action {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 11px 11px 21px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.action-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--ink);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

.primary-action:hover,
.primary-action:focus-visible {
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-3px);
}

.primary-action:hover .action-arrow { transform: translateX(3px) rotate(-12deg); }

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0 8px;
  border-bottom: 1px solid rgba(7,17,36,.48);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solar-stage {
  position: absolute;
  z-index: 1;
  top: -12%;
  right: -8%;
  width: min(68vw, 1050px);
  aspect-ratio: 1;
  pointer-events: none;
}

.solar-parallax {
  position: absolute;
  inset: 0;
  transform: translate3d(calc(var(--pointer-x) * 23px), calc(var(--pointer-y) * 18px), 0);
  transition: transform .16s linear;
}

.solar-core {
  position: absolute;
  inset: 12%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff9b1 0 2%, #ffd322 22%, #ff8300 57%, #ff3c00 78%, #ba1300 100%);
  box-shadow:
    0 0 0 34px rgba(255,193,0,.1),
    0 0 130px rgba(255,65,0,.48),
    inset -52px -26px 110px rgba(116,7,0,.38);
  animation: solarFloat 5.6s cubic-bezier(.45,.05,.55,.95) infinite alternate;
}

.solar-core::before,
.solar-core::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.solar-core::before {
  inset: -20%;
  opacity: .42;
  background: repeating-radial-gradient(circle at 65% 40%, transparent 0 5px, rgba(255,255,255,.17) 6px, transparent 8px 13px);
  animation: solarSpin 16s linear infinite;
}

.solar-core::after {
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.45) 43%, transparent 55%);
  transform: translateX(-110%);
  animation: solarSweep 4.8s ease-in-out infinite;
}

.solar-shine {
  position: absolute;
  top: 16%;
  left: 22%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.29);
}

.solar-orbit {
  position: absolute;
  border: 1px solid rgba(7,17,36,.2);
  border-radius: 50%;
}

.solar-orbit::after {
  position: absolute;
  top: 46%;
  left: -5px;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid rgba(7,17,36,.86);
  border-radius: 50%;
  background: var(--sun);
}

.solar-orbit-one { inset: 4%; animation: solarSpin 19s linear infinite; }
.solar-orbit-two { inset: 0; transform: scaleY(.64) rotate(-14deg); animation: orbitTilt 10s ease-in-out infinite alternate; }

.kinetic-type {
  position: absolute;
  z-index: 2;
  color: rgba(255,245,215,.19);
  font-size: clamp(95px, 12vw, 210px);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: 1;
  mix-blend-mode: screen;
  text-transform: uppercase;
  will-change: transform;
}

.kinetic-type-one { top: 22%; left: -5%; animation: typeDriftOne 7s ease-in-out infinite alternate; }
.kinetic-type-two { top: 47%; right: -3%; animation: typeDriftTwo 8.3s ease-in-out infinite alternate; }
.kinetic-type-three { bottom: 12%; left: 12%; animation: typeDriftOne 9.2s ease-in-out -3s infinite alternate; }

.hero-ticker {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 17px 0 16px;
  border-top: 1px solid rgba(7,17,36,.34);
  color: var(--cream);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
  will-change: transform;
  animation: tickerMove 23s linear infinite;
}

.ticker-track span {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ticker-track i {
  color: var(--sun);
  font-size: 11px;
  font-style: normal;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity .62s ease, transform .7s cubic-bezier(.16,1,.3,1);
}

.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

.section-index {
  margin: 0;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.expertise {
  position: relative;
  overflow: hidden;
  padding: 150px 0 110px;
  color: var(--cream);
  background: var(--ink);
}

.expertise::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255,180,0,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,180,0,.025), 0 0 0 160px rgba(255,180,0,.018);
}

.section-head {
  display: grid;
  grid-template-columns: 22% 51% 27%;
  align-items: end;
  margin-bottom: 100px;
}

.section-head .section-index { align-self: start; color: var(--sun); }

.section-head h2,
.method-head h2,
.manifesto-head h2,
.commerce-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(62px, 7.7vw, 122px);
  font-weight: 820;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
}

.section-head h2 em,
.manifesto-head h2 em,
.commerce-copy h2 em {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

.section-intro {
  margin: 0 0 7px 34px;
  color: rgba(255,245,215,.64);
  font-size: 14px;
  line-height: 1.7;
}

.expertise-list { border-top: 1px solid rgba(255,245,215,.24); }

.expertise-row {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 11% 36% 1fr 54px;
  align-items: center;
  border-bottom: 1px solid rgba(255,245,215,.24);
  transition: color .28s ease, padding .35s cubic-bezier(.16,1,.3,1);
}

.expertise-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--sun));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .38s cubic-bezier(.16,1,.3,1);
}

.expertise-row:hover { z-index: 1; padding-inline: 22px; color: var(--ink); }
.expertise-row:hover::before { transform: scaleY(1); }

.service-number {
  color: var(--sun);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  transition: color .25s ease;
}

.expertise-row:hover .service-number { color: var(--ink); }

.expertise-row h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 750;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.expertise-row p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,245,215,.58);
  font-size: 13px;
  line-height: 1.65;
  transition: color .25s ease;
}

.expertise-row:hover p { color: rgba(7,17,36,.75); }

.service-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,245,215,.35);
  border-radius: 50%;
  transition: transform .32s cubic-bezier(.16,1,.3,1), border-color .25s ease;
}

.expertise-row:hover .service-arrow { border-color: var(--ink); transform: rotate(45deg); }

.platform-line {
  display: grid;
  grid-template-columns: 22% 78%;
  align-items: center;
  padding: 60px 0 0;
}

.platform-line > span {
  color: var(--sun);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.platform-line div { display: flex; justify-content: space-between; gap: 20px; }

.platform-line strong {
  color: rgba(255,245,215,.54);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: -.02em;
}

.velocity-band {
  overflow: hidden;
  padding: 26px 0 29px;
  color: var(--ink);
  background: var(--sun);
  transform: rotate(-1.25deg) scale(1.02);
}

.velocity-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  will-change: transform;
  animation: velocityMove 18s linear infinite;
}

.velocity-track span {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 850;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.velocity-track b { font-size: 28px; font-weight: 500; }

.method {
  padding: 170px 0 180px;
  background: var(--paper);
}

.method-head {
  display: grid;
  grid-template-columns: 22% 56% 22%;
  align-items: end;
  margin-bottom: 120px;
}

.method-head .section-index { align-self: start; color: var(--orange); }

.method-head h2 { font-size: clamp(54px, 6.3vw, 100px); }

.method-head > p:last-child {
  margin: 0 0 5px 28px;
  color: rgba(7,17,36,.62);
  font-size: 13px;
  line-height: 1.7;
}

.method-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-top: 52px;
}

.method-line {
  position: absolute;
  top: 17px;
  right: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(7,17,36,.15);
}

.method-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--sun), var(--hot));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1) .18s;
}

.method-rail.is-visible .method-line span { transform: scaleX(1); }

.method-rail article { position: relative; }

.method-node {
  position: absolute;
  top: -44px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  background: var(--paper);
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.method-rail article:hover .method-node { color: var(--paper); background: var(--ink); transform: scale(1.14); }

.method-rail h3 {
  margin: 25px 0 16px;
  font-size: clamp(26px, 3vw, 43px);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.method-rail p { max-width: 270px; margin: 0; color: rgba(7,17,36,.58); font-size: 13px; line-height: 1.65; }

.manifesto {
  position: relative;
  overflow: hidden;
  padding: 160px 0 150px;
  color: var(--cream);
  background: var(--ink);
}

.manifesto-inner { position: relative; z-index: 2; }

.manifesto-head {
  display: grid;
  grid-template-columns: 22% 78%;
  margin-bottom: 110px;
}

.manifesto-head .section-index { color: var(--sun); }
.manifesto-head h2 { font-size: clamp(66px, 9vw, 140px); }

.manifesto-rings {
  position: absolute;
  top: -18%;
  right: -16%;
  width: min(66vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,180,0,.17);
  border-radius: 50%;
  animation: ringBreathe 7s ease-in-out infinite alternate;
}

.manifesto-rings::before,
.manifesto-rings::after,
.manifesto-rings span {
  position: absolute;
  content: "";
  border: 1px solid rgba(255,180,0,.1);
  border-radius: 50%;
}

.manifesto-rings::before { inset: 14%; }
.manifesto-rings::after { inset: 29%; }
.manifesto-rings span:nth-child(1) { inset: 43%; background: var(--sun); box-shadow: 0 0 80px rgba(255,90,0,.65); }
.manifesto-rings span:nth-child(2) { top: 46%; left: -6px; width: 12px; height: 12px; background: var(--hot); }
.manifesto-rings span:nth-child(3) { display: none; }

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,245,215,.22);
  border-bottom: 1px solid rgba(255,245,215,.22);
}

.standard-grid article {
  min-height: 330px;
  padding: 34px 38px 42px 0;
}

.standard-grid article + article {
  padding-left: 38px;
  border-left: 1px solid rgba(255,245,215,.22);
}

.standard-grid article > span { color: var(--sun); font-family: "Geist Mono", monospace; font-size: 9px; }
.standard-grid h3 { margin: 140px 0 18px; font-size: clamp(24px, 2.7vw, 40px); letter-spacing: -.05em; }
.standard-grid p { max-width: 340px; margin: 0; color: rgba(255,245,215,.56); font-size: 13px; line-height: 1.65; }

.commerce {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  background: #f5efe3;
}

.commerce-ghost {
  position: absolute;
  top: 25px;
  left: -2vw;
  color: rgba(255,90,0,.065);
  font-size: 17vw;
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: 1;
  white-space: nowrap;
}

.commerce-layout {
  position: relative;
  display: grid;
  grid-template-columns: 63% 37%;
  align-items: end;
  gap: 70px;
}

.commerce-copy .section-index { margin-bottom: 52px; color: var(--orange); }
.commerce-copy h2 { margin-bottom: 55px; font-size: clamp(58px, 7vw, 108px); }
.commerce-copy h2 em { color: var(--orange); }
.commerce-copy > p:last-child { max-width: 620px; margin: 0 0 0 22%; color: rgba(7,17,36,.66); font-size: 15px; line-height: 1.75; }

.commerce-corner {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 38px;
  color: var(--cream);
  background: linear-gradient(145deg, #071124 25%, #183461 100%);
}

.commerce-corner::after {
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 160px;
  height: 160px;
  content: "";
  background: var(--orange);
  transform: rotate(45deg);
}

.commerce-corner > p { margin: 0 0 90px; color: var(--sun); font-family: "Geist Mono", monospace; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.commerce-corner ul { position: relative; z-index: 2; margin: 0 0 65px; padding: 0; list-style: none; }
.commerce-corner li { display: grid; grid-template-columns: 40px 1fr; padding: 15px 0; border-bottom: 1px solid rgba(255,245,215,.18); font-size: 13px; }
.commerce-corner li span { color: var(--sun); font-family: "Geist Mono", monospace; font-size: 8px; }
.commerce-corner strong { display: block; font-size: 22px; line-height: 1.18; letter-spacing: -.04em; }

.corner-orbit {
  position: absolute;
  top: -130px;
  right: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,180,0,.32);
  border-radius: 50%;
  animation: solarSpin 17s linear infinite;
}

.corner-orbit span { position: absolute; top: 50%; left: -5px; width: 10px; height: 10px; border-radius: 50%; background: var(--sun); }

.contact {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(125deg, #ffd630, #ff9b00 40%, #ff3b00 100%);
}

.contact-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  justify-content: center;
}

.contact .section-index { margin-bottom: 35px; }
.contact h2 { max-width: 1120px; margin-bottom: 58px; font-size: clamp(72px, 10vw, 156px); }

.contact-email {
  display: flex;
  max-width: 750px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 650;
  letter-spacing: -.035em;
  transition: padding .3s cubic-bezier(.16,1,.3,1), color .25s ease, background .25s ease;
}

.contact-email:hover { padding-inline: 18px; color: var(--cream); background: var(--ink); }

.contact-sun {
  position: absolute;
  z-index: 1;
  top: -10%;
  right: -11%;
  display: grid;
  width: min(65vw, 920px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 29%, #fff38a, #ffb000 28%, #ff5100 68%, #a70d00 100%);
  box-shadow: 0 0 120px rgba(255,71,0,.5), inset -60px -40px 100px rgba(86,4,0,.35);
  animation: solarFloat 6s ease-in-out infinite alternate;
}

.contact-sun::before { position: absolute; inset: -20%; content: ""; opacity: .3; background: repeating-radial-gradient(circle, transparent 0 8px, rgba(255,255,255,.22) 9px, transparent 11px 16px); animation: solarSpin 20s linear infinite; }
.contact-sun span { color: rgba(255,245,215,.25); font-size: 12vw; font-weight: 900; letter-spacing: -.1em; animation: typeDriftOne 7s ease-in-out infinite alternate; }

.footer { color: var(--cream); background: var(--ink); }

.footer-grid {
  display: grid;
  min-height: 260px;
  grid-template-columns: 30% 24% 30% 16%;
  align-items: end;
  padding: 70px 0 52px;
  border-top: 1px solid rgba(255,245,215,.18);
}

.footer-wordmark {
  align-self: start;
  max-width: 240px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: .9;
  white-space: normal;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 13px; color: rgba(255,245,215,.62); font-size: 10px; line-height: 1.65; }
.footer-grid > div > span:first-child { color: rgba(255,245,215,.32); font-family: "Geist Mono", monospace; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid address { font-style: normal; }
.footer-legal { align-items: flex-end; }

@keyframes dotPulse { 50% { opacity: .25; transform: scale(.72); } }
@keyframes solarFloat { to { transform: translate3d(0, 12px, 0) rotate(1.1deg); } }
@keyframes solarSpin { to { transform: rotate(360deg); } }
@keyframes solarSweep { 0%, 42% { transform: translateX(-120%); } 75%, 100% { transform: translateX(120%); } }
@keyframes orbitTilt { to { transform: scaleY(.69) rotate(-9deg); } }
@keyframes typeDriftOne { to { transform: translate3d(26px, -15px, 0) rotate(-2deg); } }
@keyframes typeDriftTwo { to { transform: translate3d(-24px, 18px, 0) rotate(2deg); } }
@keyframes tickerMove { to { transform: translate3d(-50%, 0, 0); } }
@keyframes velocityMove { to { transform: translate3d(-50%, 0, 0); } }
@keyframes ringBreathe { to { transform: scale(1.04) rotate(3deg); opacity: .78; } }

@media (max-width: 1000px) {
  .shell { width: min(calc(100% - 40px), 1500px); }
  .nav { grid-template-columns: 1fr auto; }
  .nav-center { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-content { align-self: center; }
  .solar-stage { top: 3%; right: -31%; width: min(98vw, 850px); opacity: .78; }
  h1 { font-size: clamp(72px, 14vw, 126px); }
  .hero-copy { max-width: 460px; }
  .section-head,
  .method-head { grid-template-columns: 1fr; gap: 38px; }
  .section-intro,
  .method-head > p:last-child { max-width: 520px; margin-left: 0; }
  .expertise-row { grid-template-columns: 10% 38% 1fr 46px; }
  .platform-line { grid-template-columns: 1fr; gap: 28px; }
  .method-rail { grid-template-columns: repeat(2, 1fr); row-gap: 70px; }
  .method-line { display: none; }
  .method-node { top: -22px; }
  .manifesto-head { grid-template-columns: 1fr; gap: 35px; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-grid article { min-height: 270px; }
  .standard-grid article + article { padding-left: 0; border-top: 1px solid rgba(255,245,215,.22); border-left: 0; }
  .standard-grid h3 { margin-top: 90px; }
  .commerce-layout { grid-template-columns: 1fr; }
  .commerce-corner { width: min(100%, 560px); justify-self: end; }
  .contact-sun { right: -36%; width: 90vw; opacity: .78; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 54px; }
  .footer-wordmark { grid-column: 1 / -1; }
  .footer-legal { align-items: flex-start; }
}

@media (max-width: 620px) {
  .shell { width: calc(100% - 30px); }
  .nav { height: 72px; }
  .wordmark { font-size: 21px; }
  .nav-email { gap: 10px; padding: 9px 11px 9px 14px; font-size: 9px; }
  .hero-layout { min-height: calc(100svh - 128px); padding: 60px 0 100px; align-items: end; }
  .hero-kicker { flex-wrap: wrap; max-width: 220px; line-height: 1.5; }
  h1 { font-size: clamp(55px, 18.2vw, 84px); line-height: .8; }
  .hero-copy { max-width: 350px; margin-left: 2px; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; margin-left: 2px; }
  .primary-action { min-width: 216px; }
  .solar-stage { top: -2%; right: -50%; width: 130vw; opacity: .67; }
  .kinetic-type { font-size: 27vw; }
  .hero-speed-lines { width: 110%; right: -32%; }
  .ticker-track { animation-duration: 18s; }
  .expertise { padding: 110px 0 80px; }
  .section-head { margin-bottom: 68px; }
  .section-head h2,
  .manifesto-head h2,
  .commerce-copy h2 { font-size: 53px; }
  .expertise-row {
    min-height: 240px;
    grid-template-columns: 36px 1fr 40px;
    align-content: center;
    gap: 18px 0;
  }
  .expertise-row h3 { font-size: 35px; }
  .expertise-row p { grid-column: 2 / 4; }
  .service-arrow { width: 36px; height: 36px; }
  .platform-line div { flex-wrap: wrap; justify-content: flex-start; gap: 16px 28px; }
  .velocity-band { padding: 18px 0 20px; }
  .method { padding: 120px 0 130px; }
  .method-head { margin-bottom: 85px; }
  .method-head h2 { font-size: 48px; }
  .method-rail { grid-template-columns: 1fr; row-gap: 60px; }
  .method-rail article { padding-left: 54px; }
  .method-node { top: 0; left: 0; }
  .method-rail h3 { margin-top: 0; }
  .manifesto { padding: 110px 0 100px; }
  .manifesto-head { margin-bottom: 70px; }
  .manifesto-rings { top: 2%; right: -50%; width: 115vw; opacity: .65; }
  .standard-grid article { min-height: 250px; padding-right: 0; }
  .standard-grid h3 { margin-top: 74px; }
  .commerce { padding: 120px 0; }
  .commerce-layout { gap: 65px; }
  .commerce-copy > p:last-child { margin-left: 0; }
  .commerce-corner { min-height: 440px; padding: 30px; }
  .contact,
  .contact-inner { min-height: 640px; }
  .contact h2 { font-size: 60px; }
  .contact-sun { top: -3%; right: -60%; width: 130vw; opacity: .68; }
  .contact-email { max-width: 100%; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-wordmark { grid-column: auto; }
}

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

