:root {
  color-scheme: light;
  --ink: #1f1633;
  --night: #150f23;
  --muted: #5d5669;
  --paper: #f7f7fb;
  --panel: #ffffff;
  --line: #d9d6e2;
  --accent: #6a5fc1;
  --accent-dark: #422082;
  --signal: #c2ef4e;
  --signal-ink: #152014;
  --teal: #116b64;
  --teal-soft: #e4f5f2;
  --soft: #efedf7;
  --warning: #8d2f4d;
  --shadow: 0 24px 80px rgba(31, 22, 51, 0.13);
  font-family: Rubik, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(31, 22, 51, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(31, 22, 51, 0.035) 1px, transparent 1px) 0 0 / 54px 54px,
    var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 40px;
  border-bottom: 1px solid rgba(31, 22, 51, 0.12);
  background: rgba(247, 247, 251, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.2;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--signal);
  color: var(--signal-ink);
  font-weight: 700;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:last-child {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--night);
  color: var(--panel);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding: 64px 72px;
}

.section-grid > * {
  min-width: 0;
}

.hero {
  min-height: calc(100vh - 59px);
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}

p,
label,
summary,
li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 700px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 14px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
}

.primary {
  background: var(--night);
  color: white;
}

.ghost {
  background: var(--panel);
}

.boundary,
.status-note,
.hero-boundary {
  max-width: 640px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-boundary {
  max-width: 620px;
  margin: 0;
  line-height: 1.45;
}

.hero-readiness,
.setup-card,
.waitlist-form {
  border: 1px solid var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-readiness {
  max-width: 100%;
  overflow: hidden;
  align-self: center;
}

.readiness-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
}

.readiness-product {
  color: var(--ink);
  font-size: 15px;
}

.readiness-state {
  padding: 6px 8px;
  background: var(--signal);
  color: var(--signal-ink);
  font-size: 11px;
  text-transform: uppercase;
}

.readiness-route {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.readiness-route div {
  min-width: 0;
  padding: 12px 16px;
}

.readiness-route div + div {
  border-left: 1px solid var(--line);
}

.readiness-route span,
.handoff-strip span,
.handoff-strip small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.readiness-route strong,
.handoff-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.readiness-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.readiness-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 12px 14px;
  background: var(--panel);
}

.checkmark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--teal);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.readiness-list strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.readiness-list p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.handoff-strip {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 107, 100, 0.1) 1px, transparent 1px) 0 0 / 16px 16px,
    var(--teal-soft);
}

.handoff-strip small {
  margin-top: 6px;
  text-transform: none;
}

.snippet-disclosure {
  border-top: 1px solid var(--ink);
  padding: 0;
}

.snippet-disclosure summary {
  padding: 13px 18px;
  background: var(--night);
  color: var(--panel);
  font-size: 13px;
}

.snippet-disclosure[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.snippet-disclosure pre {
  margin: 0;
  overflow: auto;
  padding: 18px;
  background: var(--night);
  color: #f7f7fb;
  font-size: 13px;
  line-height: 1.55;
  max-width: 100%;
}

code {
  font-family: Monaco, Menlo, "Ubuntu Mono", monospace;
}

.hero-readiness .boundary {
  max-width: none;
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #fbfbfd;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.value-band,
.workflow-delta,
.benchmark,
.pricing,
.faq {
  padding: clamp(38px, 7vw, 76px) clamp(18px, 6vw, 88px);
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--night);
}

.value-band article {
  min-height: 260px;
  padding: 28px;
  background: var(--soft);
}

.value-band span,
.benchmark-grid h3,
.plan-grid span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.setup {
  align-items: start;
}

.framework-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tab,
.copy-code,
.checklist button {
  border: 1px solid var(--ink);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}

.tab {
  padding: 10px 12px;
}

.tab.active {
  background: var(--night);
  color: var(--panel);
}

.setup-card {
  padding: 28px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.checklist button,
.copy-code {
  width: 100%;
  padding: 14px;
  text-align: left;
}

.checklist-panel {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.checklist-list {
  grid-template-columns: 1fr;
}

.checklist-list li {
  align-items: center;
}

.launch-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-checklist button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.launch-checklist button strong {
  color: var(--ink);
  font-size: 16px;
}

.checklist-cta .button {
  color: var(--panel);
}

.workflow-delta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.workflow-delta > div {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
}

.pricing {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--accent-dark);
  color: var(--panel);
}

.pricing p,
.pricing .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-copy {
  max-width: 860px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.plan-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.benchmark {
  background: var(--panel);
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.benchmark-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.waitlist {
  align-items: start;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.waitlist-form label,
fieldset {
  display: grid;
  gap: 8px;
}

fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
}

legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 700;
}

fieldset label,
.paid-interest {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: 16px/1.4 Rubik, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  padding: 12px;
}

.paid-interest input,
fieldset input {
  align-self: start;
  margin: 4px 0 0;
  width: auto;
}

.progressive-qualifier {
  border: 1px solid var(--line);
  padding: 0;
}

.progressive-qualifier summary {
  padding: 12px 14px;
}

.progressive-qualifier fieldset {
  border: 0;
  border-top: 1px solid var(--line);
}

.submit {
  width: 100%;
  cursor: pointer;
}

.submit[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.form-message {
  min-height: 28px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.faq {
  max-width: 960px;
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 860px) {
  .topbar,
  .nav,
  .hero-actions {
    align-items: flex-start;
  }

  .topbar,
  .section-grid,
  .workflow-delta,
  .value-band,
  .benchmark-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .nav {
    flex-direction: column;
  }

  .topbar {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand small {
    display: none;
  }

  .nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav a {
    font-size: 12px;
  }

  .nav a:last-child {
    padding: 8px 10px;
  }

  .section-grid {
    gap: 24px;
    padding: 36px 16px;
  }

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

  h1 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    margin: 24px 0 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .boundary,
  .status-note,
  .hero-boundary {
    max-width: 100%;
  }

  .readiness-route {
    grid-template-columns: 1fr;
  }

  .readiness-list {
    grid-template-columns: 1fr;
  }

  .readiness-route div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .readiness-list li {
    padding: 14px;
  }

  .snippet-disclosure pre {
    white-space: pre-wrap;
    word-break: break-word;
  }

  fieldset {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) and (max-height: 760px) {
  .topbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 50px;
  }

  .lead {
    font-size: 19px;
  }

  .readiness-route {
    grid-template-columns: 1fr;
  }
}
