:root {
  --bg: #0b1020;
  --bg-soft: rgba(17, 24, 39, 0.82);
  --bg-softer: rgba(15, 23, 42, 0.72);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent-start: #60a5fa;
  --accent-end: #a78bfa;
  --warning: #fca5a5;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --radius-card: 18px;
  --radius-ui: 14px;
  --container: 1100px;
  --section-gap: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.12), transparent 28%),
    linear-gradient(180deg, #0b1020 0%, #090d19 100%);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(100%, calc(var(--container) + 32px));
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 32, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

.brand-kicker {
  display: block;
  font-size: 12px;
  line-height: 1.1;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-title {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  padding: 34px 0 0;
}

.hero-card,
.surface-card {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.86), rgba(15, 23, 42, 0.84));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(11, 16, 32, 0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1,
.simple-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 7vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 900;
  max-width: 12ch;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy p,
.simple-hero p,
.card-copy,
.footer-note,
.legal-prose p,
.legal-prose li {
  font-size: 16px;
}

.hero-subheadline {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.075rem, 2vw, 1.2rem);
}

.hero-line {
  margin: 14px 0 0;
  color: var(--text);
  font-weight: 700;
}

.hero-disclaimer,
.footer-disclaimer {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.pill-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(11, 16, 32, 0.52);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: var(--section-gap) 0 0;
}

.section:last-of-type {
  padding-bottom: var(--section-gap);
}

.section-heading {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.info-card {
  padding: 22px 18px;
}

.card-copy {
  margin: 0;
  color: var(--text);
}

.deliverable-list,
.form-grid,
.legal-prose ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.deliverable-list li,
.legal-prose li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

.deliverable-list li::before,
.legal-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  transform: translateY(-50%);
}

.callout-card,
.price-card,
.form-card,
.simple-hero {
  padding: 24px 20px;
}

.callout-text,
.price-text {
  margin: 0;
  color: var(--text);
}

.price-headline {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 4vw, 1.7rem);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.form-intro {
  margin: 0 0 18px;
  color: var(--text);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  border-radius: var(--radius-ui);
  border: 1px solid var(--border);
  background: rgba(11, 16, 32, 0.88);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(148, 163, 184, 0.72);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(96, 165, 250, 0.75);
  background: rgba(11, 16, 32, 0.96);
}

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-ui);
  background: rgba(11, 16, 32, 0.55);
}

.consent-box input[type="checkbox"] {
  margin: 3px 0 0;
  width: 18px;
  height: 18px;
  accent-color: #8b5cf6;
  flex: 0 0 auto;
}

.consent-box label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #0b1020;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  box-shadow: 0 16px 40px rgba(96, 165, 250, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(11, 16, 32, 0.55);
  border-color: var(--border);
}

.btn-full {
  width: 100%;
}

.link-inline {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 28px 0 56px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-inner {
  display: grid;
  gap: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-disclaimer {
  font-size: 14px;
}

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

.simple-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.simple-main {
  flex: 1 0 auto;
  padding: 28px 0 72px;
}

.simple-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

.legal-prose {
  display: grid;
  gap: 18px;
}

.legal-block {
  display: grid;
  gap: 8px;
}

.legal-block h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal-prose p,
.legal-prose li {
  margin: 0;
  color: var(--text);
}

.legal-prose ul {
  display: grid;
  gap: 10px;
}

@media (min-width: 760px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-card {
    padding: 40px;
  }

  .callout-card,
  .price-card,
  .form-card,
  .simple-hero {
    padding: 32px;
  }

  .cards-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pill-row {
    display: flex;
    flex-wrap: wrap;
  }

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

  .field-span-2 {
    grid-column: 1 / -1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 959px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .header-actions .btn {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}