:root {
  --ink: #090b0c;
  --ink-soft: #111517;
  --paper: #f2f0e9;
  --paper-soft: #d8d6cf;
  --mint: #adffcf;
  --cyan: #87e9ff;
  --violet: #9894ff;
  --line: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(9, 11, 12, 0.18);
  --muted: rgba(242, 240, 233, 0.62);
  --shell: min(1500px, calc(100% - 48px));
  --reading: 68ch;
  --control-height: 46px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --focus: 0 0 0 3px rgba(173, 255, 207, 0.45);
  color-scheme: dark;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background: var(--ink);
  color: var(--paper);
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.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;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  min-height: 78px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 12, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.brand-mark svg {
  width: 18px;
  fill: var(--mint);
}

.brand-name {
  font-weight: 730;
  letter-spacing: -0.035em;
}

.brand-name span {
  color: var(--muted);
  font-weight: 430;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a,
.header-cta {
  position: relative;
  min-height: 44px;
  align-content: center;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.header-cta span {
  color: var(--mint);
  font-size: 18px;
  transition: transform 180ms ease;
}

.header-cta:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 78px);
  width: var(--shell);
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  grid-template-rows: 1fr auto;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 540px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}

.hero-glow-one {
  top: -180px;
  left: -220px;
  background: var(--cyan);
}

.hero-glow-two {
  right: -200px;
  bottom: 30px;
  background: var(--violet);
}

.hero-copy {
  align-self: center;
  padding: clamp(92px, 10vw, 154px) clamp(32px, 5vw, 84px) 72px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 24px rgba(173, 255, 207, 0.75);
}

.hero h1,
.section-heading h2,
.manifesto h2,
.approach h2,
.contact h2 {
  margin: 0;
  font-size: clamp(60px, 7.25vw, 126px);
  font-weight: 510;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 em,
.manifesto h2 em,
.contact h2 em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: var(--control-height);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: var(--mint);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.07);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: #202628;
}

.hero-stage {
  position: relative;
  min-height: 610px;
  align-self: center;
  margin: 64px 0 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42% 42% var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.stage-label {
  position: absolute;
  z-index: 3;
  margin: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-label-top {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px rgba(173, 255, 207, 0.65);
  content: "";
}

.orbit-one {
  width: 560px;
  height: 350px;
  top: 96px;
  left: -20px;
  transform: rotate(-11deg);
}

.orbit-one::after {
  top: 32px;
  right: 92px;
}

.orbit-two {
  width: 440px;
  height: 540px;
  right: -90px;
  bottom: -110px;
  transform: rotate(22deg);
}

.orbit-two::after {
  bottom: 84px;
  left: 28px;
  background: var(--cyan);
}

.product-window {
  position: absolute;
  z-index: 2;
  top: 118px;
  left: 50%;
  width: min(76%, 510px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-md);
  background: rgba(11, 15, 17, 0.82);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%) rotate(2deg);
  backdrop-filter: blur(20px);
}

.window-bar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--paper-soft);
}

.window-bar small {
  margin-left: auto;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-body {
  padding: 28px;
}

.window-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.window-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.window-title {
  max-width: 400px;
  margin-top: 36px;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.window-chart {
  display: flex;
  height: 122px;
  align-items: end;
  gap: 7px;
  margin-top: 42px;
}

.window-chart span {
  width: 100%;
  height: var(--height);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(173, 255, 207, 0.18), var(--mint));
}

.window-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 680;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.stage-chip span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.chip-one {
  top: 206px;
  left: 18px;
  transform: rotate(-8deg);
}

.chip-two {
  right: 20px;
  bottom: 66px;
  transform: rotate(5deg);
}

.hero-meta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-meta p {
  margin: 0;
  padding: 18px 22px;
  color: var(--paper);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta p + p {
  border-left: 1px solid var(--line);
}

.hero-meta span {
  margin-right: 12px;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: var(--mint);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-group {
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding: 15px 24px;
  white-space: nowrap;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-group i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.26fr 0.74fr;
  padding: clamp(100px, 12vw, 190px) 0;
  border-bottom: 1px solid var(--line);
}

.section-marker {
  display: flex;
  align-items: start;
  gap: 14px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-marker span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
}

.section-marker p {
  margin: 6px 0 0;
}

.manifesto-copy {
  max-width: 1060px;
}

.manifesto h2 {
  font-size: clamp(52px, 6.2vw, 104px);
}

.manifesto-copy > p:last-child {
  max-width: var(--reading);
  margin: 50px 0 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 22px);
}

.work,
.services,
.approach {
  padding: clamp(90px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.52fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.approach h2 {
  max-width: 1000px;
  font-size: clamp(52px, 6.2vw, 96px);
}

.section-heading > p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.portfolio-controls {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.portfolio-controls p {
  margin: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.portfolio-controls > div {
  display: flex;
  gap: 8px;
}

.portfolio-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.portfolio-controls button:hover:not(:disabled) {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.portfolio-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.portfolio-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 52px;
  scroll-behavior: smooth;
}

.project-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.project-featured {
  display: grid;
  min-height: 720px;
  grid-template-columns: 0.84fr 1.16fr;
  background: var(--paper);
  color: var(--ink);
}

.project-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 64px);
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 84px 0 0;
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 510;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.project-featured .project-copy h3 {
  max-width: 9ch;
  font-size: clamp(54px, 5.4vw, 88px);
  line-height: 0.92;
}

.project-summary {
  max-width: 44ch;
  margin: 34px 0 0;
  color: rgba(9, 11, 12, 0.72);
  font-size: clamp(17px, 1.3vw, 21px);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.project-note {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.project-note span {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-note p {
  margin: 8px 0 0;
  color: rgba(9, 11, 12, 0.65);
  font-size: 14px;
}

.stellar-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(173, 255, 207, 0.3), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(135, 233, 255, 0.22), transparent 30%),
    #101316;
}

.stellar-visual::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.5px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(135deg, black, transparent 75%);
  opacity: 0.36;
}

.growth-browser {
  position: absolute;
  z-index: 2;
  top: 92px;
  left: 7%;
  width: 86%;
  min-height: 446px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.48);
  transform: rotate(-2deg);
}

.growth-browser-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line-dark);
  background: #e6e4dd;
}

.growth-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(9, 11, 12, 0.34);
}

.growth-browser-bar span {
  margin-left: auto;
  color: rgba(9, 11, 12, 0.5);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.growth-browser-body {
  display: grid;
  min-height: 400px;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(173, 255, 207, 0.22), transparent 42%),
    var(--paper);
}

.growth-browser-copy small {
  display: block;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.growth-browser-copy strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.growth-browser-copy p {
  max-width: 34ch;
  margin: 20px 0;
  color: rgba(9, 11, 12, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.growth-browser-copy > span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.ai-widget {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(9, 11, 12, 0.12);
}

.ai-widget > div {
  display: grid;
  min-height: 52px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
}

.ai-widget > div i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(37, 160, 91, 0.42);
}

.ai-widget > div strong {
  font-size: 12px;
}

.ai-widget > div small {
  color: rgba(9, 11, 12, 0.48);
  font-size: 9px;
}

.ai-widget p {
  margin: 16px 14px 24px;
  padding: 12px;
  border-radius: 12px 12px 12px 3px;
  background: #edf8f1;
  color: rgba(9, 11, 12, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.ai-widget > span {
  display: block;
  margin: 0 14px 14px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(9, 11, 12, 0.38);
  font-size: 10px;
}

.lead-flow-card {
  position: absolute;
  z-index: 4;
  display: flex;
  width: min(280px, 42%);
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(11, 15, 17, 0.9);
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.lead-flow-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--mint);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.lead-flow-card div {
  display: grid;
  gap: 3px;
}

.lead-flow-card small {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-flow-card strong {
  font-size: 12px;
  line-height: 1.25;
}

.lead-flow-one {
  bottom: 46px;
  left: 5%;
  transform: rotate(-4deg);
}

.lead-flow-two {
  right: 5%;
  bottom: 72px;
  transform: rotate(4deg);
}

.lead-flow-line {
  position: absolute;
  z-index: 3;
  right: 23%;
  bottom: 90px;
  left: 23%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  box-shadow: 0 0 12px rgba(173, 255, 207, 0.55);
}

.stellar-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.stellar-orbit-one {
  width: 650px;
  height: 390px;
  top: 120px;
  left: -40px;
  transform: rotate(-18deg);
}

.stellar-orbit-two {
  width: 420px;
  height: 680px;
  top: 42px;
  right: 10px;
  transform: rotate(28deg);
}

.phone {
  position: absolute;
  z-index: 2;
  width: clamp(220px, 22vw, 322px);
  aspect-ratio: 0.49;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 42px;
  background: #050607;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 28px 22px;
  border-radius: 33px;
  background: linear-gradient(155deg, #1c1831, #0c1117 62%, #1c2830);
  color: var(--paper);
}

.phone-screen::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #030405;
  content: "";
  transform: translateX(-50%);
}

.phone-back {
  top: 104px;
  left: 12%;
  opacity: 0.75;
  transform: rotate(-10deg) scale(0.9);
}

.phone-front {
  top: 72px;
  right: 13%;
  transform: rotate(7deg);
}

.phone p {
  position: relative;
  z-index: 1;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.phone span {
  position: absolute;
  bottom: 28px;
  left: 22px;
  color: var(--mint);
  font-size: 11px;
}

.moon {
  width: 120px;
  height: 120px;
  margin: 44px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #a5b1c8 62%, #5b577d);
  box-shadow: 0 0 80px rgba(160, 155, 255, 0.4);
}

.phone-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
}

.phone-status span {
  position: static;
  color: var(--paper);
  font-weight: 700;
}

.phone-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.zodiac-map {
  position: relative;
  width: 80%;
  aspect-ratio: 1;
  margin: 30px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.zodiac-map::before,
.zodiac-map::after,
.zodiac-map span {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.zodiac-map::after {
  inset: 38%;
  background: rgba(173, 255, 207, 0.08);
}

.zodiac-map span {
  inset: 8%;
  border-radius: 0;
  clip-path: polygon(50% 0, 64% 35%, 100% 50%, 64% 64%, 50% 100%, 35% 64%, 0 50%, 35% 35%);
  background: rgba(255, 255, 255, 0.06);
}

.zodiac-map i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.zodiac-map i:nth-child(1) { top: 8%; left: 47%; }
.zodiac-map i:nth-child(2) { top: 28%; right: 8%; }
.zodiac-map i:nth-child(3) { right: 16%; bottom: 18%; }
.zodiac-map i:nth-child(4) { bottom: 5%; left: 40%; }
.zodiac-map i:nth-child(5) { bottom: 28%; left: 5%; }
.zodiac-map i:nth-child(6) { top: 22%; left: 14%; }

.phone button {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-next {
  position: relative;
  min-height: 520px;
  padding: clamp(30px, 4vw, 64px);
  background: var(--mint);
  color: var(--ink);
}

.next-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 780px;
  min-height: 380px;
  flex-direction: column;
  align-items: start;
  justify-content: end;
}

.next-copy .eyebrow > span {
  background: var(--ink);
  box-shadow: none;
}

.next-copy h3 {
  margin: 0;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 510;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.next-copy > p:not(.eyebrow) {
  max-width: 54ch;
  margin: 28px 0;
  color: rgba(9, 11, 12, 0.68);
  font-size: 18px;
}

.next-orbit {
  position: absolute;
  z-index: 1;
  top: -80px;
  right: -30px;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(9, 11, 12, 0.22);
  border-radius: 50%;
}

.next-orbit span {
  position: absolute;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
}

.next-orbit span:nth-child(1) { top: 8%; left: 42%; }
.next-orbit span:nth-child(2) { right: 8%; bottom: 22%; }
.next-orbit span:nth-child(3) { bottom: 22%; left: 8%; }

.services-heading {
  margin-bottom: 68px;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-height: 156px;
  grid-template-columns: 0.1fr 0.37fr 0.43fr 0.1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-row > span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(28px, 2.7vw, 46px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-row p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
}

.service-row i {
  justify-self: end;
  color: var(--mint);
  font-size: 26px;
  font-style: normal;
}

.approach {
  display: grid;
  grid-template-columns: 0.26fr 0.74fr;
}

.approach-main > .eyebrow {
  margin-bottom: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.process-grid h3 {
  margin: 58px 0 0;
  font-size: 30px;
  font-weight: 520;
  letter-spacing: -0.045em;
}

.process-grid p {
  max-width: 38ch;
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: clamp(90px, 11vw, 170px) max(24px, calc((100vw - min(1500px, calc(100vw - 48px))) / 2));
  background: var(--paper);
  color: var(--ink);
}

.contact .eyebrow > span {
  background: var(--ink);
  box-shadow: none;
}

.contact h2 {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  font-size: clamp(72px, 9vw, 154px);
}

.contact h2 em {
  color: var(--ink);
}

.contact-link {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - min(1500px, calc(100vw - 48px))) / 2));
  bottom: 68px;
  left: max(24px, calc((100vw - min(1500px, calc(100vw - 48px))) / 2));
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--ink);
  font-size: clamp(19px, 2.2vw, 34px);
  font-weight: 650;
}

.contact-link span:last-child {
  font-size: clamp(32px, 4vw, 58px);
  transition: transform 180ms ease;
}

.contact-link:hover span:last-child {
  transform: translate(6px, -6px);
}

.contact-orbit {
  position: absolute;
  top: -32%;
  right: -10%;
  width: min(76vw, 1080px);
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  opacity: 0.7;
}

.contact-orbit span {
  position: absolute;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
}

.contact-orbit span:nth-child(1) { top: 7%; left: 39%; }
.contact-orbit span:nth-child(2) { right: 7%; bottom: 20%; }
.contact-orbit span:nth-child(3) { bottom: 20%; left: 7%; }

.site-footer {
  display: grid;
  width: var(--shell);
  min-height: 240px;
  grid-template-columns: 1fr 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 30px;
  align-items: start;
  margin: 0 auto;
  padding: 46px 0 24px;
}

.footer-brand {
  align-self: start;
}

.site-footer > p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
}

.footer-links a {
  min-height: 40px;
  align-content: center;
}

.footer-links a:hover {
  color: var(--mint);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .hero h1 {
    max-width: 1100px;
  }

  .hero-stage {
    width: min(820px, 100%);
    margin: 18px 0 46px auto;
  }

  .project-featured {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .project-copy h3 {
    margin-top: 54px;
  }

  .phone-back {
    left: 4%;
  }

  .phone-front {
    right: 5%;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .manifesto,
  .approach {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .project-featured {
    grid-template-columns: 1fr;
  }

  .project-copy {
    min-height: 570px;
  }

  .stellar-visual {
    min-height: 680px;
  }

  .service-row {
    grid-template-columns: 0.1fr 0.48fr 0.42fr;
  }

  .service-row i {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:not(.copyright) {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --control-height: 48px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand-name {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--paper);
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 11, 12, 0.98);
  }

  .menu-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    min-height: 52px;
    align-content: center;
    padding: 0 14px;
    font-size: 16px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-rows: auto auto auto;
  }

  .hero-copy {
    padding: 72px 0 32px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1,
  .manifesto h2,
  .section-heading h2,
  .approach h2 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-stage {
    min-height: 500px;
    margin: 10px 0 28px;
    border-radius: 44% 44% 18px 18px;
  }

  .product-window {
    top: 108px;
    width: 82%;
  }

  .window-body {
    padding: 22px;
  }

  .window-title {
    margin-top: 26px;
    font-size: 33px;
  }

  .window-chart {
    height: 92px;
    margin-top: 30px;
  }

  .chip-one {
    top: 84px;
    left: 4px;
  }

  .chip-two {
    right: 4px;
    bottom: 28px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta p {
    padding: 15px 4px;
  }

  .hero-meta p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .marquee-group {
    min-width: max-content;
    padding-inline: 24px;
  }

  .manifesto,
  .work,
  .services,
  .approach {
    padding: 82px 0;
  }

  .section-marker {
    margin-bottom: 4px;
  }

  .manifesto-copy > p:last-child {
    margin: 34px 0 0;
    font-size: 17px;
  }

  .section-heading > p {
    font-size: 16px;
  }

  .portfolio-controls {
    display: flex;
    margin-top: 34px;
  }

  .portfolio-rail {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--mint) rgba(255, 255, 255, 0.08);
  }

  .portfolio-rail::-webkit-scrollbar {
    height: 5px;
  }

  .portfolio-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--mint);
  }

  .portfolio-rail::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
  }

  .project-card {
    width: 92%;
    min-width: 92%;
    scroll-snap-align: start;
  }

  .project-featured {
    display: block;
  }

  .project-copy {
    min-height: 600px;
    padding: 26px;
  }

  .project-topline {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .project-copy h3 {
    margin-top: 54px;
    font-size: 76px;
  }

  .project-featured .project-copy h3 {
    max-width: 10ch;
    font-size: 54px;
  }

  .project-summary {
    font-size: 17px;
  }

  .stellar-visual {
    min-height: 620px;
  }

  .growth-browser {
    top: 52px;
    left: 4%;
    width: 92%;
    min-height: 442px;
  }

  .growth-browser-body {
    display: block;
    min-height: 396px;
    padding: 24px;
  }

  .growth-browser-copy strong {
    font-size: 31px;
  }

  .growth-browser-copy p {
    margin-block: 14px;
  }

  .ai-widget {
    width: 88%;
    margin: 24px 0 0 auto;
  }

  .ai-widget p {
    margin-bottom: 14px;
  }

  .lead-flow-card {
    width: 62%;
    min-height: 64px;
  }

  .lead-flow-card > span {
    width: 38px;
    height: 38px;
  }

  .lead-flow-one {
    bottom: 20px;
    left: 2%;
  }

  .lead-flow-two {
    right: 2%;
    bottom: 78px;
  }

  .lead-flow-line {
    right: 20%;
    bottom: 75px;
    left: 20%;
  }

  .phone {
    width: 222px;
  }

  .phone-back {
    top: 64px;
    left: -18px;
  }

  .phone-front {
    top: 44px;
    right: -4px;
  }

  .phone strong {
    font-size: 22px;
  }

  .project-next {
    min-height: 680px;
    padding: 26px;
  }

  .next-copy {
    min-height: 610px;
  }

  .next-copy h3 {
    font-size: 58px;
  }

  .next-orbit {
    top: -20px;
    right: -40%;
    width: 130%;
  }

  .services-heading {
    margin-bottom: 44px;
  }

  .service-row {
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 12px 18px;
    padding: 28px 0;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .service-row h3 {
    font-size: 30px;
  }

  .service-row p {
    grid-column: 2;
    font-size: 15px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .process-grid article {
    min-height: 230px;
  }

  .contact {
    min-height: 650px;
    padding: 82px 18px;
  }

  .contact h2 {
    font-size: clamp(62px, 18vw, 88px);
  }

  .contact-link {
    right: 18px;
    bottom: 46px;
    left: 18px;
    min-height: 72px;
    font-size: 17px;
  }

  .contact-orbit {
    top: 14%;
    right: -70%;
    width: 140%;
  }

  .site-footer {
    min-height: 260px;
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .copyright {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-name span {
    display: block;
    margin-top: -4px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .hero-stage {
    min-height: 460px;
  }

  .stage-chip {
    max-width: 158px;
    font-size: 10px;
  }

  .window-footer {
    gap: 6px;
    font-size: 8px;
  }

  .phone {
    width: 205px;
  }

  .phone-front {
    right: -34px;
  }

  .phone-back {
    left: -42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
