:root {
  color-scheme: dark;
  --bg: #101214;
  --bg-2: #151719;
  --panel: #1b1e20;
  --panel-2: #202427;
  --line: #34383b;
  --line-soft: #272b2e;
  --text: #f2eee4;
  --muted: #b7b0a1;
  --quiet: #817b70;
  --gold: #d6b66d;
  --gold-strong: #f0cb78;
  --teal: #68c7b6;
  --green: #85d38b;
  --red: #e06a61;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(214, 182, 109, 0.07) 0, transparent 420px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-feature-settings: "kern", "liga", "tnum";
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

button,
input,
select {
  font: inherit;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111416;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

input:focus-visible,
select:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin-inline: auto;
  padding: 18px 24px;
  background: rgba(16, 18, 20, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(214, 182, 109, 0.45);
  border-radius: var(--radius);
  background: #181a1c;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  border-radius: var(--radius);
  padding: 8px 10px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding-block: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 77px);
  padding-block: 72px 88px;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(44px, 7.2vw, 86px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 52px);
}

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

p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-subtext {
  max-width: 64ch;
  margin-bottom: 32px;
  color: #d2cabd;
  font-size: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  border: 1px solid rgba(240, 203, 120, 0.78);
  background: var(--gold);
  color: #15110a;
}

.button-primary:hover {
  background: var(--gold-strong);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(104, 199, 182, 0.5);
  background: rgba(104, 199, 182, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof span,
.audit-row span,
.resource-links a {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 7px 10px;
}

.case-panel,
.feature-card,
.process-step,
.pricing-card,
.trust-list article,
.waitlist-form {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.case-panel {
  min-width: 0;
  max-width: 100%;
  box-shadow: var(--shadow);
  padding: 20px;
}

.panel-topbar,
.card-heading,
.audit-row,
.recommendation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topbar {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 18px;
}

.panel-kicker,
.field-label,
.confidence {
  display: block;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-review {
  background: rgba(104, 199, 182, 0.12);
  color: var(--teal);
}

.status-ready {
  background: rgba(133, 211, 139, 0.12);
  color: var(--green);
}

.status-planned {
  background: rgba(214, 182, 109, 0.12);
  color: var(--gold-strong);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-block: 18px;
}

.case-grid > div {
  min-height: 82px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
  padding: 14px;
}

.evidence-card {
  border: 1px solid rgba(104, 199, 182, 0.22);
  border-radius: var(--radius);
  background: rgba(104, 199, 182, 0.07);
  padding: 16px;
}

.evidence-card p {
  margin: 12px 0 0;
}

.confidence {
  color: var(--teal);
}

.recommendation {
  justify-content: flex-start;
  margin-top: 14px;
  border: 1px solid rgba(214, 182, 109, 0.26);
  border-radius: var(--radius);
  background: rgba(214, 182, 109, 0.08);
  padding: 16px;
}

.recommendation p {
  margin: 4px 0 0;
  font-size: 14px;
}

.signal {
  width: 12px;
  height: 44px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.signal-info {
  background: var(--gold-strong);
}

.audit-row {
  align-items: stretch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.audit-row span {
  flex: 1;
  text-align: center;
}

.section-band {
  width: 100%;
  max-width: none;
  border-block: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 650px;
}

.section-heading p,
.beta-copy p {
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-step,
.feature-card,
.pricing-card,
.trust-list article {
  padding: 20px;
}

.process-step {
  min-height: 240px;
}

.step-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card {
  min-height: 176px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
}

.sticky-heading {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-bottom: 0;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list article {
  background: rgba(255, 255, 255, 0.035);
}

.pricing-section {
  padding-top: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
}

.pricing-card {
  min-height: 294px;
}

.pricing-card.highlighted {
  border-color: rgba(214, 182, 109, 0.44);
  background: linear-gradient(180deg, rgba(214, 182, 109, 0.11), rgba(255, 255, 255, 0.025));
}

.pricing-card h3 {
  margin-top: 22px;
}

.price {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.beta-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line-soft);
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}

.resource-links a {
  color: var(--teal);
}

.resource-links a:hover {
  border-color: rgba(104, 199, 182, 0.5);
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-button,
.form-note,
.form-success {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
}

.form-success {
  margin: 0;
  border: 1px solid rgba(104, 199, 182, 0.34);
  border-radius: var(--radius);
  background: rgba(104, 199, 182, 0.1);
  color: #c9fff3;
  padding: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin-inline: auto;
  border-top: 1px solid var(--line-soft);
  padding: 30px 24px 44px;
}

.site-footer p {
  max-width: 660px;
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
}

.site-footer strong {
  display: block;
}

.subpage .subpage-hero {
  padding-block: 72px 38px;
}

.subpage h1 {
  max-width: 13ch;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 24px;
}

.doc-grid.single-column {
  max-width: 860px;
  grid-template-columns: 1fr;
}

.doc-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  padding: 22px;
}

.doc-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.doc-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.doc-card li::marker {
  color: var(--gold-strong);
}

.doc-card a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .trust-layout,
  .beta-section {
    grid-template-columns: 1fr;
  }

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

  .case-panel {
    max-width: 680px;
  }

  .process-grid,
  .feature-grid,
  .pricing-grid,
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    display: grid;
    padding: 16px 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: visible;
    padding-bottom: 0;
    font-size: 13px;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
    padding-block: 68px;
  }

  .section-band {
    width: 100%;
    padding-inline: 14px;
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.06;
  }

  .hero,
  .hero-copy,
  .case-panel,
  .section-heading {
    min-width: 0;
    max-width: 100%;
  }

  .hero-subtext {
    max-width: 31ch;
    font-size: 17px;
  }

  .hero-proof {
    max-width: 100%;
  }

  .hero-proof span {
    max-width: 100%;
  }

  .cta-row,
  .cta-row .button {
    width: 100%;
  }

  .process-grid,
  .feature-grid,
  .pricing-grid,
  .waitlist-form,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .panel-topbar,
  .audit-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .audit-row span {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 14px;
  }

  .section-shell {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    gap: 32px;
    padding-block: 44px 56px;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(32px, 9vw, 36px);
  }

  .case-panel,
  .waitlist-form,
  .process-step,
  .feature-card,
  .pricing-card,
  .trust-list article,
  .doc-card {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
