:root {
  --background: oklch(0.985 0.008 86);
  --surface: oklch(0.998 0.004 86);
  --surface-warm: oklch(0.962 0.017 78);
  --foreground: oklch(0.285 0.019 66);
  --muted: oklch(0.51 0.022 72);
  --primary: oklch(0.49 0.064 172);
  --primary-dark: oklch(0.38 0.055 175);
  --primary-foreground: oklch(0.985 0.008 86);
  --accent: oklch(0.82 0.07 58);
  --accent-soft: oklch(0.935 0.036 62);
  --rose: oklch(0.88 0.045 28);
  --border: oklch(0.88 0.015 78);
  --shadow: 0 24px 80px rgb(65 49 31 / 12%);
  --radius: 8px;
  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, Cambria, "Times New Roman",
    serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary-dark);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-200%);
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 0.5rem 0.75rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--foreground);
  text-decoration: none;
  flex: none;
}

.brand__mark {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 560;
}

.brand--footer .brand__mark {
  width: 2.25rem;
  height: 2.25rem;
}

.brand--footer .brand__name {
  font-size: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  font-size: 0.95rem;
}

.site-nav a,
.site-footer a,
.text-link {
  color: var(--foreground);
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

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

.button--small {
  min-height: 40px;
  padding-inline: 1rem;
}

main {
  padding-block: 2rem 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100svh - 140px);
}

.hero--simple {
  display: block;
  max-width: 760px;
  min-height: 0;
  padding-block: 4rem 2rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--foreground);
  line-height: 1.05;
  margin: 0;
  font-weight: 560;
}

h1 {
  font-size: 5.75rem;
  max-width: 760px;
}

.hero--simple h1 {
  font-size: 4.75rem;
}

h2 {
  font-size: 3.1rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.hero__tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  color: var(--primary-dark);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
}

.hero__lead {
  margin-top: 1.35rem;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.3rem;
}

.hero__actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.trust-strip {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
}

.trust-strip li {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: oklch(1 0.004 86 / 0.68);
  padding: 0.35rem 0.7rem;
}

.voice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.voice-card__label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.voice-card__prompt {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
}

.voice-card__wave {
  margin-top: 1.5rem;
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 76px;
}

.voice-card__wave span {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.82;
}

.voice-card__wave span:nth-child(1) { height: 38%; }
.voice-card__wave span:nth-child(2) { height: 74%; }
.voice-card__wave span:nth-child(3) { height: 48%; }
.voice-card__wave span:nth-child(4) { height: 92%; }
.voice-card__wave span:nth-child(5) { height: 58%; }

.section {
  padding-block: 4.5rem;
}

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

.section-heading h2 + p,
.hero--simple p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.three-grid,
.prompt-grid,
.two-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.prompt-card,
.price-card,
.newsletter,
.founder-note {
  background: oklch(1 0.004 86 / 0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card {
  padding: 1.25rem;
}

.card p,
.prompt-card p,
.price-card p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--foreground);
  font-weight: 700;
}

.feature-band,
.cta-band {
  border-radius: var(--radius);
  padding: 2.5rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  background: var(--surface-warm);
}

.feature-band p:last-child,
.cta-band p {
  color: var(--muted);
  font-size: 1.1rem;
}

.founder-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  margin-block: 3rem;
}

.founder-note p:first-child {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.founder-note__photo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
}

.signature {
  margin-top: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.cta-band {
  margin-block: 4rem;
  background: var(--foreground);
  color: var(--primary-foreground);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--primary-foreground);
}

.cta-band .button {
  background: var(--accent);
  color: var(--foreground);
}

.newsletter {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.newsletter--standalone {
  margin-top: 1rem;
}

.newsletter h2 {
  font-size: 2.4rem;
}

.newsletter p {
  color: var(--muted);
  margin-top: 0.6rem;
}

.newsletter form {
  display: grid;
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label,
.sms-consent label > span:first-child {
  color: var(--foreground);
  font-weight: 700;
}

.form-field label span {
  color: var(--muted);
  font-weight: 500;
}

.sms-disclosure {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

.sms-disclosure a {
  color: var(--primary-dark);
}

.newsletter input[type="email"],
.newsletter input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 0 0.85rem;
  font: inherit;
  color: var(--foreground);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.sms-disclosure-panel {
  grid-column: 2;
  text-align: left;
  margin-top: 1rem;
}

.sms-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.85rem;
  background: oklch(1 0.004 86 / 0.62);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.sms-consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.35rem;
  accent-color: var(--primary);
}

.sms-consent label {
  display: grid;
  gap: 0.35rem;
}

.sms-consent label > span:last-child {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.newsletter button {
  min-height: 48px;
  padding: 0 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--primary-foreground);
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.fineprint,
.status {
  grid-column: 2;
  font-size: 0.9rem;
}

.status[data-state="error"] {
  color: oklch(0.45 0.16 28);
}

.newsletter__success {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.newsletter__success svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--primary);
  flex: none;
}

.hp,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-stack {
  max-width: 880px;
  padding-block: 2rem 5rem;
}

.content-section {
  padding-block: 2rem;
  border-top: 1px solid var(--border);
}

.content-section h2 {
  font-size: 2.7rem;
}

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 1.08rem;
}

.content-section p {
  margin-top: 1rem;
}

.content-section ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.prompt-card {
  padding: 1rem;
}

.prompt-card p {
  font-family: var(--font-display);
  color: var(--foreground);
  font-size: 1.25rem;
  line-height: 1.2;
}

.price-card {
  padding: 1.5rem;
  max-width: 760px;
}

.price {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price strong {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 560;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
}

@media (max-width: 880px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .hero,
  .feature-band,
  .newsletter,
  .three-grid,
  .two-grid,
  .prompt-grid {
    grid-template-columns: 1fr;
  }

  .fineprint,
  .status {
    grid-column: 1;
  }

  .sms-disclosure-panel {
    grid-column: 1;
    text-align: left;
  }

  .hero {
    min-height: 0;
    padding-block: 2rem;
  }

  h1,
  .hero--simple h1 {
    font-size: 4rem;
  }

  h2,
  .content-section h2 {
    font-size: 2.45rem;
  }

  .voice-card__prompt {
    font-size: 2.7rem;
  }

  .fineprint,
  .status {
    grid-column: 1;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .button {
    width: 100%;
  }

  .site-header .button {
    width: auto;
  }

  .feature-band,
  .cta-band {
    padding: 1.5rem;
  }

  .brand__name {
    font-size: 1.25rem;
  }

  .brand__mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  h1,
  .hero--simple h1 {
    font-size: 3.2rem;
  }

  .hero__tagline {
    font-size: 1.5rem;
  }

  h2,
  .content-section h2,
  .newsletter h2 {
    font-size: 2rem;
  }

  .hero__lead,
  .content-section p,
  .content-section li {
    font-size: 1rem;
  }

  .voice-card__prompt {
    font-size: 2.25rem;
  }

  .price strong {
    font-size: 3.3rem;
  }
}
