:root {
  color-scheme: dark;
  --bg: #0d0f10;
  --panel: #15191a;
  --panel-2: #1c2223;
  --text: #f2f0eb;
  --muted: #b7b6ad;
  --quiet: #7f837c;
  --line: #313839;
  --teal: #77d0c4;
  --amber: #e7bc70;
  --red: #dd6a5f;
  --shadow: rgba(0, 0, 0, 0.36);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(13, 15, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--text);
  color: var(--bg);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 13px;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
footer a {
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: calc(100vh - 67px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 16, 0.96), rgba(13, 15, 16, 0.74) 43%, rgba(13, 15, 16, 0.28)),
    linear-gradient(0deg, var(--bg), rgba(13, 15, 16, 0) 36%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding: clamp(96px, 14vw, 160px) clamp(20px, 5vw, 72px) clamp(64px, 9vw, 108px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 16px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--text);
  color: var(--bg);
}

.button.secondary {
  background: rgba(21, 25, 26, 0.78);
  color: var(--text);
}

.proof-strip span {
  border: 1px solid rgba(242, 240, 235, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.section,
.band {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
}

.band {
  border-block: 1px solid var(--line);
  background: #101314;
}

.band > * {
  max-width: 1180px;
  margin-inline: auto;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.panel,
.pricing article,
.grid article,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 60px var(--shadow);
}

.panel {
  padding: 24px;
}

.checklist {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 8px;
}

.full-button {
  width: 100%;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid article {
  min-height: 220px;
  padding: 24px;
}

.num {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 13px;
}

.compact {
  padding-block: clamp(54px, 7vw, 84px);
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  background: var(--panel);
}

.timeline strong {
  color: var(--text);
}

.timeline p {
  margin-bottom: 0;
}

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

.pricing article {
  padding: 24px;
}

.pricing .featured {
  background: var(--panel-2);
  border-color: rgba(119, 208, 196, 0.55);
}

.price {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 34px;
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--text);
  padding: 12px;
  font: inherit;
}

select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--text);
  padding: 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

output {
  grid-column: 1 / -1;
  border-left: 4px solid var(--amber);
  background: var(--panel);
  padding: 18px 20px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
}

.final-cta {
  padding: clamp(28px, 5vw, 54px);
}

.final-cta p {
  max-width: 720px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--quiet);
  border-top: 1px solid var(--line);
}

footer span {
  color: var(--muted);
  font-weight: 700;
}

.intake-hero {
  padding-top: clamp(76px, 10vw, 120px);
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
}

.intake-form {
  display: grid;
  gap: 16px;
}

.metric-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
}

.metric-row strong {
  color: var(--text);
  font-size: 28px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.prepared-email {
  display: grid;
  gap: 16px;
}

@media (max-width: 820px) {
  .topbar,
  nav,
  .split,
  .grid.three,
  .pricing,
  .calculator,
  .intake-grid,
  .timeline div {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 780px;
  }
}
