:root {
  --bg: #07090d;
  --panel: #10151b;
  --panel-2: #141b22;
  --ink: #f4f1ea;
  --muted: #aab3bb;
  --line: rgba(244, 241, 234, 0.14);
  --cyan: #65d8ff;
  --red: #e03232;
  --amber: #f0b35a;
  --green: #5ad7a0;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 13, 0.74);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 48px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.nav,
.actions,
.proof-strip,
.pipeline,
.footer {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 800;
  gap: 12px;
}

.mark {
  align-items: center;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  border-radius: 8px;
  color: #050608;
  display: inline-flex;
  font-size: 14px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.nav {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  gap: 24px;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink) !important;
  padding: 10px 14px;
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  margin: 0 auto;
  max-width: 1480px;
  min-height: min(860px, 100svh);
  padding: 136px clamp(18px, 4vw, 48px) 54px;
}

.hero-copy {
  align-self: center;
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.lede,
.system-copy p,
.money-layout p,
.tile p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 15px 20px;
}

.primary {
  background: var(--ink);
  color: #07090d;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-visual {
  align-self: stretch;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, var(--bg), rgba(7, 9, 13, 0.1) 34%, rgba(7, 9, 13, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  width: 100%;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px;
}

.proof-strip span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 12px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 104px 22px;
}

.section-head {
  margin-bottom: 34px;
  max-width: 800px;
}

.work-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile,
.sample-card,
.intake-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tile {
  min-height: 250px;
  padding: 28px;
}

.tile-num {
  color: var(--amber);
  display: block;
  font-weight: 800;
  margin-bottom: 42px;
}

.samples {
  padding-top: 0;
}

.sample-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 28px;
}

.sample-card span {
  color: var(--green);
  font-weight: 800;
  margin-bottom: 34px;
}

.sample-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.sample-card ul,
.intake-panel ol {
  color: var(--muted);
  line-height: 1.7;
  margin: auto 0 0;
  padding-left: 20px;
}

.sample-card li,
.intake-panel li {
  padding-left: 4px;
}

.system-band {
  background:
    linear-gradient(135deg, rgba(101, 216, 255, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(224, 50, 50, 0.16), transparent 40%),
    var(--panel-2);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  padding: 92px max(22px, calc((100vw - var(--max)) / 2));
}

.system-copy {
  max-width: 620px;
}

.pipeline {
  align-self: center;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 10px;
  justify-content: space-between;
  padding: 18px;
}

.pipeline div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  flex: 1;
  font-size: 13px;
  font-weight: 800;
  min-height: 88px;
  padding: 18px 12px;
}

.intake-band {
  align-items: start;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  margin: 0 auto;
  max-width: var(--max);
  padding: 92px 22px;
}

.intake-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 26px 0 0;
  max-width: 720px;
}

.intake-panel {
  padding: 28px;
}

.intake-panel h3 {
  margin-bottom: 20px;
}

.intake-panel ol {
  margin-bottom: 24px;
}

.money-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.packages {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-panel {
  background: var(--ink);
  border-radius: 8px;
  color: #07090d;
  min-height: 260px;
  padding: 28px;
}

.price-panel.dark {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
}

.price-panel span,
.price-panel small {
  display: block;
  font-weight: 800;
}

.price-panel strong {
  display: block;
  font-size: clamp(42px, 4.2vw, 58px);
  letter-spacing: 0;
  margin: 12px 0;
  overflow-wrap: anywhere;
}

.price-panel small {
  color: #38424b;
  line-height: 1.5;
}

.price-panel.dark small {
  color: var(--muted);
}

.money-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 34px 0 0;
  max-width: 760px;
  padding-top: 22px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 48px);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .system-band,
  .intake-band,
  .money-layout,
  .packages,
  .sample-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-visual {
    min-height: 340px;
    order: -1;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, var(--bg), rgba(7, 9, 13, 0.1) 48%, rgba(7, 9, 13, 0));
  }

  h1 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .section,
  .system-band,
  .intake-band {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .pipeline {
    align-items: stretch;
    flex-direction: column;
  }

  .pipeline div {
    min-height: 64px;
  }
}

@media (max-width: 520px) {
  .button {
    width: 100%;
  }

  .proof-strip {
    justify-content: flex-start;
  }

  .price-panel strong {
    font-size: 46px;
  }
}
