:root {
  color-scheme: light;
  --bg: #f4efe6;
  --bg-deep: #eadfcd;
  --surface: rgba(255, 251, 245, 0.86);
  --surface-strong: rgba(255, 253, 249, 0.96);
  --surface-tint: rgba(255, 247, 238, 0.82);
  --text: #152118;
  --muted: #5a685f;
  --line: rgba(21, 33, 24, 0.12);
  --line-strong: rgba(21, 33, 24, 0.2);
  --accent: #2fcb7a;
  --accent-strong: #16995d;
  --accent-soft: rgba(47, 203, 122, 0.16);
  --accent-glow: rgba(47, 203, 122, 0.26);
  --indigo: #556af0;
  --indigo-soft: rgba(85, 106, 240, 0.16);
  --shadow: 0 26px 70px rgba(16, 28, 20, 0.12);
  --shadow-strong: 0 34px 90px rgba(16, 28, 20, 0.18);
  --header-height: 86px;
  --section-gap: clamp(80px, 10vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 203, 122, 0.1), transparent 22%),
    radial-gradient(circle at 92% 14%, rgba(85, 106, 240, 0.08), transparent 18%),
    linear-gradient(180deg, #fbf8f3 0%, #f6f1e9 56%, #efe6d8 100%);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: rgba(22, 153, 93, 0.18);
  touch-action: manipulation;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 20px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 999px;
  background: #152118;
  color: #f6fff9;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 0.94;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  max-width: 8.5ch;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  max-width: 11ch;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.18;
}

.site-shell {
  position: relative;
}

.site-footer,
.section-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-offset, var(--header-height)) + 40px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.92), rgba(244, 239, 230, 0.76));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 33, 24, 0.08);
}

.site-header-shell {
  width: min(1240px, calc(100vw - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(22, 153, 93, 0.22);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
  -webkit-tap-highlight-color: rgba(22, 153, 93, 0.18);
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.beta-modal-close:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(22, 153, 93, 0.28);
  outline-offset: 4px;
}

.button-primary {
  color: #f6fff9;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow:
    0 14px 28px rgba(22, 153, 93, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.button-primary:hover {
  box-shadow:
    0 16px 34px rgba(22, 153, 93, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(21, 33, 24, 0.12);
  box-shadow: 0 10px 24px rgba(16, 28, 20, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(16, 28, 20, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "->";
  color: var(--accent-strong);
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(2px);
}

.eyebrow,
.process-index,
.compare-label {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 16px;
}

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

.section-text,
.hero-text,
.hero-detail,
.hero-examples,
.process-copy p,
.inside-card p,
.starter-principles p,
.momentum-points p,
.compare-value,
.faq-list p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.section-text,
.hero-text {
  margin-top: 18px;
}

.home-main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 28px 0 76px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 26%, rgba(47, 203, 122, 0.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(85, 106, 240, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(237, 247, 241, 0.76), rgba(245, 239, 230, 0));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(380px, 470px);
  grid-template-areas:
    "intro visual"
    "prompts visual";
  justify-content: start;
  gap: 18px clamp(20px, 3vw, 48px);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 52px);
}

.hero-intro {
  grid-area: intro;
  display: grid;
  gap: 20px;
  max-width: 520px;
  padding-top: clamp(18px, 4vh, 58px);
}

.hero-copy {
  max-width: none;
}

.hero-body {
  display: grid;
  gap: 18px;
  max-width: 420px;
  align-content: start;
}

.hero h1 {
  font-size: clamp(2.7rem, 4vw, 4rem);
  max-width: 11.5ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions-secondary {
  gap: 10px;
}

.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;
}

.beta-signup-form {
  display: grid;
  gap: 10px;
  width: min(100%, 540px);
}

.beta-signup-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 33, 24, 0.1);
  box-shadow: 0 16px 36px rgba(16, 28, 20, 0.08);
}

.beta-signup-controls:focus-within {
  border-color: rgba(42, 95, 66, 0.42);
  box-shadow:
    0 0 0 4px rgba(98, 147, 119, 0.12),
    0 16px 36px rgba(16, 28, 20, 0.1);
}

.beta-signup-field {
  flex: 1 1 220px;
  min-width: 0;
  min-height: 52px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: 600 0.98rem/1.4 "Manrope", "Helvetica Neue", Arial, sans-serif;
}

.beta-signup-field::placeholder {
  color: #66756c;
}

.beta-signup-field:focus {
  outline: none;
}

.beta-signup-submit {
  white-space: nowrap;
}

.beta-signup-submit-full {
  width: 100%;
}

.beta-signup-note,
.beta-signup-status {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.beta-signup-note {
  color: var(--muted);
}

.beta-signup-status {
  min-height: 1.5em;
  font-weight: 700;
}

.beta-signup-status[data-state="pending"] {
  color: #4d5b53;
}

.beta-signup-status[data-state="success"] {
  color: #1d6b45;
}

.beta-signup-status[data-state="error"] {
  color: #9a3a24;
}

.beta-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.beta-modal[hidden] {
  display: none !important;
}

.beta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 18, 0.42);
  backdrop-filter: blur(12px);
}

.beta-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 34px 30px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 244, 236, 0.96));
  border: 1px solid rgba(21, 33, 24, 0.1);
  box-shadow: var(--shadow-strong);
}

.beta-modal-text {
  max-width: 32ch;
}

.beta-signup-form-modal {
  width: 100%;
  margin-top: 18px;
}

.beta-signup-controls-modal {
  margin-bottom: 6px;
}

.beta-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 33, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.beta-modal-close:hover {
  background: rgba(255, 255, 255, 0.98);
}

.hero-text {
  max-width: 31ch;
  color: #4d5b53;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-prompts {
  grid-area: prompts;
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin-top: 4px;
}

.hero-prompts-label {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.prompt-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.prompt-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: prompt-scroll 42.5s linear infinite;
  will-change: transform;
}

.prompt-group {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.prompt-group span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 241, 0.68));
  border: 1px solid rgba(21, 33, 24, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(16, 28, 20, 0.05);
}

.hero-visual {
  grid-area: visual;
  width: min(100%, 470px);
  justify-self: end;
  margin-left: 0;
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: #50614f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-flow span {
  display: inline-flex;
  align-items: center;
}

.hero-flow span + span::before {
  content: "->";
  margin-right: 10px;
  color: rgba(80, 97, 79, 0.72);
}

.hero-proof {
  position: relative;
  min-height: 0;
  padding: 8px 0 24px;
}

.hero-shot {
  margin: 0;
  padding: 8px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 33, 24, 0.08);
  box-shadow: 0 18px 42px rgba(16, 28, 20, 0.1);
}

.hero-shot img {
  width: 100%;
  border-radius: 20px;
}

.hero-shot-primary {
  width: min(100%, 398px);
  margin-left: auto;
}

.hero-shot-inset {
  position: absolute;
  left: 0;
  bottom: 44px;
  width: 170px;
  box-shadow: 0 18px 42px rgba(16, 28, 20, 0.12);
}

.hero-notes {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 10px;
}

.hero-notes p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.breadth-strip,
.inside-section,
.momentum-section,
.credibility-section,
.faq-section,
.support-section,
.final-cta {
  padding-top: var(--section-gap);
}

.example-marquee {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.example-group {
  display: block;
}

.example-row {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.example-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: example-scroll-left var(--example-duration, 60s) linear infinite;
  will-change: transform;
}

.example-row-reverse .example-track {
  animation-name: example-scroll-right;
}

.example-set {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.example-card {
  display: flex;
  align-items: flex-start;
  min-width: clamp(260px, 24vw, 360px);
  min-height: 112px;
  padding: 22px 24px;
  border-radius: 32px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 34px rgba(16, 28, 20, 0.08);
}

.example-group:nth-child(1) .example-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 237, 0.82));
}

.example-group:nth-child(2) .example-card {
  background: linear-gradient(180deg, rgba(251, 255, 252, 0.94), rgba(237, 247, 241, 0.84));
}

.example-group:nth-child(3) .example-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 252, 0.84));
}

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

.starter-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: 64px;
  align-items: start;
  padding-top: var(--section-gap);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 38px;
}

.process-step {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 24px clamp(28px, 5vw, 54px);
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.process-copy {
  max-width: 34ch;
}

.process-copy h3 {
  margin-top: 10px;
  max-width: 13ch;
}

.process-copy p {
  margin-top: 10px;
}

.media-frame {
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.process-step .media-frame {
  width: min(100%, 320px);
  max-width: 320px;
  aspect-ratio: 0.7;
}

.process-step:nth-child(even) .media-frame {
  order: 2;
  justify-self: end;
}

.process-step:nth-child(even) .process-copy {
  order: 1;
}

.compare-section {
  margin-top: var(--section-gap);
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 203, 122, 0.18), transparent 28%),
    linear-gradient(180deg, #142018, #101611);
  color: #eff8f1;
}

.compare-shell {
  padding-top: 84px;
  padding-bottom: 88px;
}

.compare-band {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: start;
}

.compare-intro {
  max-width: 420px;
}

.compare-section .section-text {
  max-width: 35ch;
  margin-top: 18px;
  color: rgba(239, 248, 241, 0.72);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 56px rgba(5, 10, 7, 0.18);
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table th,
.compare-table td {
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: rgba(239, 248, 241, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-table tbody td {
  color: rgba(239, 248, 241, 0.92);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.32;
}

.compare-table tbody tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table th:first-child,
.compare-table td:first-child {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table th:last-child,
.compare-table td:last-child {
  background:
    radial-gradient(circle at top right, rgba(47, 203, 122, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.06);
}

.compare-table th:first-child,
.compare-table td:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.inside-card {
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 242, 0.7));
  box-shadow: 0 18px 40px rgba(16, 28, 20, 0.08);
}

.inside-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 292px minmax(0, 420px);
  gap: 20px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-top: none;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(47, 203, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 241, 0.78));
  border: 1px solid rgba(21, 33, 24, 0.08);
  box-shadow: 0 20px 48px rgba(16, 28, 20, 0.08);
}

.inside-card-featured .media-frame {
  aspect-ratio: 0.72;
  max-width: 300px;
  justify-self: start;
}

.inside-copy {
  max-width: 38ch;
}

.inside-kicker {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inside-kicker + h3 {
  margin-top: 10px;
  max-width: 11ch;
}

.inside-card .media-frame {
  aspect-ratio: 0.82;
  box-shadow: 0 16px 34px rgba(16, 28, 20, 0.08);
}

.inside-card h3 {
  margin-top: 18px;
}

.inside-card p {
  margin-top: 12px;
  max-width: 40ch;
}

.inside-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 247, 242, 0.72));
}

.inside-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 243, 235, 0.78));
}

.inside-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 246, 252, 0.74));
}

.starter-principles {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.starter-principles article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.starter-principles h3 {
  max-width: 16ch;
}

.starter-principles p {
  margin-top: 12px;
  max-width: 42ch;
}

.starter-visual {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  max-width: 360px;
  aspect-ratio: 0.73;
}

.momentum-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(300px, 0.44fr);
  gap: 42px;
  align-items: start;
  margin-top: 30px;
}

.momentum-panel {
  padding: 34px clamp(20px, 4vw, 38px);
  border-radius: 38px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  background:
    radial-gradient(circle at top left, rgba(47, 203, 122, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(229, 241, 233, 0.82), rgba(255, 250, 244, 0.88));
  box-shadow: 0 22px 58px rgba(16, 28, 20, 0.08);
}

.momentum-visual {
  max-width: 350px;
  aspect-ratio: 0.74;
  background: linear-gradient(180deg, rgba(248, 252, 250, 0.92), rgba(231, 240, 236, 0.9));
}

.momentum-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.momentum-points article {
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 20px rgba(16, 28, 20, 0.04);
}

.momentum-points p {
  margin-top: 12px;
}

.credibility-note {
  max-width: 760px;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.credibility-strip article {
  min-height: 108px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.7)),
    rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(16, 28, 20, 0.04);
  font-weight: 700;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.faq-list details {
  padding: 0 22px;
  border-radius: 24px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 28px rgba(16, 28, 20, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 22px 34px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 19px;
  color: var(--accent-strong);
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding-bottom: 22px;
  max-width: 62ch;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 40px;
  align-items: start;
  padding: 34px clamp(20px, 4vw, 38px);
  border-radius: 38px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  background:
    radial-gradient(circle at top right, rgba(47, 203, 122, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 244, 236, 0.86));
  box-shadow: 0 22px 58px rgba(16, 28, 20, 0.08);
}

.support-copy {
  max-width: 640px;
}

.support-card {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(21, 33, 24, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 28px rgba(16, 28, 20, 0.05);
}

.support-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.support-card-meta {
  min-width: 0;
}

.support-icon {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 244, 0.88));
  border: 1px solid rgba(47, 203, 122, 0.18);
  box-shadow:
    0 12px 28px rgba(16, 28, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
  animation:
    support-icon-float 4.8s ease-in-out infinite,
    support-icon-glow 4.8s ease-in-out infinite;
}

.support-icon-paper {
  position: absolute;
  left: 13px;
  top: 10px;
  width: 28px;
  height: 34px;
  border-radius: 10px 10px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 251, 248, 0.96));
  box-shadow:
    0 8px 18px rgba(21, 33, 24, 0.1),
    inset 0 -1px 0 rgba(47, 203, 122, 0.12);
}

.support-icon-paper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, rgba(47, 203, 122, 0.22), rgba(255, 255, 255, 0) 72%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.support-icon-line,
.support-icon-check {
  position: absolute;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.support-icon-line {
  left: 19px;
  height: 3px;
  border-radius: 999px;
  background: rgba(22, 153, 93, 0.34);
  transform-origin: left center;
}

.support-icon-line-one {
  top: 22px;
  width: 17px;
}

.support-icon-line-two {
  top: 28px;
  width: 13px;
}

.support-icon-check {
  left: 20px;
  top: 23px;
  width: 16px;
  height: 9px;
  border-left: 3px solid #16995d;
  border-bottom: 3px solid #16995d;
  opacity: 0;
  transform: rotate(-45deg) scale(0.72);
  transform-origin: center;
}

.support-panel[data-copy-state="success"] .support-icon {
  background: linear-gradient(180deg, rgba(242, 255, 248, 0.98), rgba(223, 246, 233, 0.94));
  box-shadow:
    0 14px 32px rgba(22, 153, 93, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.support-panel[data-copy-state="success"] .support-icon-line {
  opacity: 0;
  transform: scaleX(0.45);
}

.support-panel[data-copy-state="success"] .support-icon-check {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.support-label {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-mail-link {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.support-mail-link:hover {
  color: var(--accent-strong);
}

.support-mail-link:focus-visible {
  outline: 3px solid rgba(22, 153, 93, 0.28);
  outline-offset: 4px;
}

.support-note,
.support-status {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.support-kindness {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(47, 203, 122, 0.12), transparent 40%),
    rgba(244, 250, 246, 0.92);
  border: 1px solid rgba(47, 203, 122, 0.16);
}

.support-kindness-label {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-kindness p + p {
  margin-top: 8px;
  color: #435247;
  font-size: 0.96rem;
  line-height: 1.6;
}

.support-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
  align-content: start;
}

.support-status {
  min-height: 1.6em;
  margin-top: 2px;
  font-weight: 700;
}

.support-status[data-state="success"] {
  color: #1d6b45;
}

.support-status[data-state="error"] {
  color: #9a3a24;
}

.final-cta {
  padding-bottom: 120px;
  text-align: center;
}

.final-cta .section-text,
.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .section-text {
  max-width: 34ch;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
}

.brand-footer {
  font-size: 1.18rem;
}

.brand-footer img {
  width: 34px;
  height: 34px;
}

.reveal,
.reveal-delay {
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes float-a {
  0%,
  100% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-6deg) translate3d(0, -14px, 0);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: rotate(6deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(7deg) translate3d(0, 14px, 0);
  }
}

@keyframes prompt-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

@keyframes example-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes example-scroll-right {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes support-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes support-icon-glow {
  0%,
  100% {
    box-shadow:
      0 12px 28px rgba(16, 28, 20, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  50% {
    box-shadow:
      0 16px 34px rgba(16, 28, 20, 0.1),
      0 0 0 6px rgba(47, 203, 122, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prompt-carousel {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .example-row {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .prompt-track {
    animation: none;
  }

  .example-track {
    animation: none;
  }

  .support-icon {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .starter-section,
  .momentum-layout,
  .compare-band,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    grid-template-areas:
      "intro visual"
      "prompts prompts";
    min-height: auto;
    gap: 22px 28px;
  }

  .hero-intro {
    max-width: none;
    padding-top: 0;
  }

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

  .inside-card-featured {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .starter-visual {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-footer,
  .section-shell {
    width: min(1240px, calc(100vw - 28px));
  }

  .site-header-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-nav,
  .footer-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

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

  .momentum-points {
    grid-template-columns: 1fr 1fr;
  }

  .process-step .media-frame,
  .starter-visual,
  .momentum-visual {
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.55rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .site-header-shell {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .header-actions {
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .site-nav {
    display: flex;
    gap: 0;
  }

  .site-nav a:not([href="#support"]) {
    display: none;
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "prompts";
    gap: 18px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .hero-visual {
    width: min(100%, 300px);
    justify-self: start;
    margin-left: 0;
  }

  .hero-body {
    max-width: 30ch;
    gap: 16px;
  }

  .hero-proof {
    min-height: auto;
    padding: 0;
  }

  .hero-flow {
    display: none;
  }

  .hero-shot {
    padding: 8px;
    border-radius: 26px;
  }

  .hero-shot img {
    border-radius: 20px;
  }

  .hero-shot-primary {
    width: min(100%, 278px);
    margin: 0;
  }

  .hero-shot-inset,
  .hero-notes {
    display: none;
  }

  .hero-text {
    max-width: 27ch;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-prompts {
    max-width: none;
    gap: 10px;
  }

  .example-marquee {
    gap: 14px;
  }

  .example-card {
    min-width: min(82vw, 320px);
    min-height: 104px;
    padding: 20px 20px 22px;
    font-size: 1rem;
  }

  .example-grid,
  .inside-grid,
  .credibility-strip,
  .momentum-points {
    grid-template-columns: 1fr;
  }

  .inside-card-featured {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .compare-shell {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .compare-table {
    min-width: 0;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px 14px;
  }

  .compare-table tbody td {
    font-size: 1rem;
    line-height: 1.4;
  }

  .momentum-panel {
    padding: 28px 18px;
  }

  .process-step .media-frame {
    justify-self: start;
    width: min(100%, 320px);
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step:nth-child(even) .media-frame,
  .process-step:nth-child(even) .process-copy {
    order: initial;
    justify-self: start;
  }

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

  .support-card-header {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 74px;
  }

  .site-header-shell {
    width: min(1240px, calc(100vw - 20px));
    min-height: 74px;
    padding: 8px 0;
  }

  .brand {
    gap: 10px;
    font-size: 1.12rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
  }

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

  .text-link {
    width: auto;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
    margin-top: 18px;
  }

  .beta-signup-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .beta-signup-field {
    min-height: 46px;
    padding: 0 4px;
  }

  .beta-signup-submit {
    width: 100%;
  }

  .hero-actions .button,
  .support-actions .button,
  .final-cta .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(1.82rem, 9.6vw, 2.3rem);
  }

  .hero-shot-primary {
    width: min(100%, 244px);
  }

  .prompt-group span {
    padding: 0 13px;
    min-height: 34px;
    font-size: 0.88rem;
  }

  .prompt-track {
    gap: 8px;
    animation-duration: 35s;
  }

  .prompt-group {
    gap: 8px;
  }

  .media-frame,
  .faq-list details,
  .example-card {
    border-radius: 26px;
  }

  .beta-modal {
    padding: 12px;
  }

  .beta-modal-panel {
    padding: 28px 18px 20px;
    border-radius: 24px;
  }
}
