:root {
  --graphite: #10131a;
  --graphite-2: #1a2230;
  --orange: #4fc3f7;
  --orange-dark: #0879b0;
  --chalk: #f3f7f9;
  --paper: #fbfdfe;
  --line: #d5dce1;
  --muted: #5d6b75;
  --green: #ffb300;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--graphite);
  background: var(--chalk);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; }

.site-header {
  width: min(1320px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 35, 34, .15);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--graphite);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -.03em;
  text-decoration: none;
}
.brand-mark { width: 34px; height: 34px; overflow: visible; }
.brand-mark .fork, .cta-mark .fork {
  fill: none;
  stroke: var(--orange);
  stroke-width: 86px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-mark .route-node, .cta-mark .route-node { fill: var(--orange); }
.brand-mark .package-node, .cta-mark .package-node { fill: var(--green); }
nav { display: flex; align-items: center; gap: 34px; }
nav a { font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-cta { padding: 11px 18px; border: 1px solid var(--graphite); border-radius: 99px; }
.nav-cta:hover { background: var(--graphite); color: white; }

.hero {
  min-height: 720px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow > span { width: 26px; height: 3px; background: var(--orange); }
.hero h1 {
  margin: 0;
  max-width: 730px;
  font-size: clamp(62px, 7.5vw, 116px);
  line-height: .87;
  letter-spacing: -.072em;
  font-weight: 900;
}
.hero h1 em { color: var(--orange-dark); font-style: normal; }
.hero-lede {
  max-width: 600px;
  margin: 36px 0 0;
  color: #43504e;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 27px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--graphite); }
.button-primary:hover { background: var(--orange-dark); }
.text-link { font-size: 13px; font-weight: 800; text-decoration: none; border-bottom: 1px solid; }
.proof-strip {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proof-strip div { display: flex; flex-direction: column; }
.proof-strip strong { font-size: 18px; letter-spacing: -.03em; }
.proof-strip span { color: var(--muted); font-size: 11px; }

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  padding: 44px 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: white;
  background: var(--graphite);
  border-radius: 8px;
  box-shadow: 22px 28px 0 rgba(79, 195, 247, .13);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 28px 28px;
}
.phone {
  position: relative;
  z-index: 1;
  width: min(240px, 68vw);
  padding: 9px;
  background: #05070a;
  border-radius: 32px;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,.55);
}
.phone img { position: relative; display: block; width: 100%; height: auto; border-radius: 24px; }
.phone-notch {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 18px;
  background: #05070a;
  border-radius: 0 0 12px 12px;
}
.hero-tag {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #adb8b5;
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .13em;
}
.hero-tag span:first-child { color: var(--orange); }

.problem-band {
  padding: 48px max(24px, calc((100vw - 1320px)/2));
  color: #c0c8c6;
  background: var(--graphite);
}
.problem-band > p { margin: 0 0 17px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.old-flow { display: flex; align-items: center; gap: 25px; font-size: clamp(19px, 2vw, 28px); font-weight: 650; letter-spacing: -.025em; }
.old-flow b { color: #5f6d6a; font-weight: 400; }
.cut-line { position: relative; margin-top: 32px; border-top: 1px solid #44514f; }
.cut-line span { position: relative; top: -11px; padding-right: 18px; color: white; background: var(--graphite); font-size: 13px; }

.section { padding: 120px max(24px, calc((100vw - 1320px)/2)); }
.section-heading { max-width: 760px; }
.section h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}
.section-heading > p:last-child { max-width: 620px; margin: 30px 0 0; color: var(--muted); font-size: 18px; }
.steps {
  padding: 70px 0 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.steps li { position: relative; min-height: 340px; padding: 28px 35px 32px; border: 1px solid var(--line); border-right: 0; }
.steps li:last-child { border-right: 1px solid var(--line); }
.step-index { position: absolute; top: 18px; right: 20px; color: #959c9a; font: 700 10px/1 monospace; }
.step-shot {
  width: 128px;
  aspect-ratio: 1 / 1.05;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(16, 19, 26, .08);
  box-shadow: 0 16px 30px -16px rgba(16, 19, 26, .4);
}
.step-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.steps h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.035em; }
.steps p { max-width: 290px; margin: 0; color: var(--muted); font-size: 14px; }

.floor {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  color: white;
  background: var(--graphite);
}
.eyebrow.light { color: #bec8c5; }
.floor-copy > p:nth-of-type(2) { max-width: 540px; margin: 30px 0 38px; color: #b7c2bf; font-size: 17px; }
.button-light { color: var(--graphite); background: var(--orange); }
.button-light:hover { background: #ff8652; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #3d4c49; border-left: 1px solid #3d4c49; }
.feature-grid article {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 24px;
  border-right: 1px solid #3d4c49;
  border-bottom: 1px solid #3d4c49;
}
.feature-grid article:last-child { justify-content: center; }
.feature-shot {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: #0c1116;
}
.feature-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.feature-number { color: var(--orange); font: 700 11px/1 monospace; }
.feature-grid h3 { margin: 14px 0 9px; font-size: 21px; letter-spacing: -.035em; }
.feature-grid p { margin: 0; color: #9fadaa; font-size: 13px; }

.final-cta { position: relative; overflow: hidden; text-align: center; display: flex; flex-direction: column; align-items: center; }
.final-cta .eyebrow { margin-bottom: 27px; }
.final-cta h2 { position: relative; z-index: 1; }
.final-cta .button { margin-top: 42px; }
.cta-mark { position: absolute; width: 620px; right: -150px; top: -140px; opacity: .09; transform: rotate(-8deg); }

footer {
  min-height: 120px;
  padding: 34px max(24px, calc((100vw - 1320px)/2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #aeb9b6;
  background: #101918;
  font-size: 12px;
}
.footer-brand { color: white; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
footer > p { text-align: right; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 650px; }
  .floor { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 240px; border-right: 1px solid var(--line); border-bottom: 0; }
  .steps li:last-child { border-bottom: 1px solid var(--line); }
}
@media (max-width: 680px) {
  .site-header, .hero { width: min(100% - 32px, 1320px); }
  .site-header { height: 72px; }
  nav > a:not(.nav-cta) { display: none; }
  .hero { padding: 58px 0 70px; min-height: 0; }
  .hero h1 { font-size: clamp(56px, 17vw, 78px); }
  .proof-strip { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; padding: 30px 18px 18px; }
  .old-flow { align-items: flex-start; flex-direction: column; gap: 9px; }
  .old-flow b { transform: rotate(90deg); margin-left: 10px; }
  .section { padding-top: 84px; padding-bottom: 84px; }
  .steps { padding-top: 45px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 210px; }
  footer { grid-template-columns: 1fr; }
  footer > p { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
