:root {
  --cream: #f3eee4;
  --cream-deep: #e8e0d2;
  --paper: #fffaf1;
  --ink: #141820;
  --ink-soft: #5b616c;
  --navy: #0e1622;
  --navy-2: #182433;
  --paid: #1e7a4c;
  --paid-deep: #165c39;
  --paid-soft: #dcece3;
  --gold: #c4a15b;
  --gold-soft: #efe4c8;
  --line: rgba(20, 24, 32, 0.1);
  --line-strong: rgba(20, 24, 32, 0.16);
  --shadow: 0 18px 50px rgba(20, 24, 32, 0.1);
  --radius: 18px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 20;
  border-radius: 8px;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paid-deep);
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--paid);
  box-shadow: 0 0 0 4px var(--paid-soft);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.muted {
  color: var(--ink-soft);
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 620;
  letter-spacing: -0.04em;
  font-size: 1.12rem;
}

.wordmark strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.035em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 580;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--paid);
  color: #f6fff9;
  box-shadow: 0 10px 22px rgba(30, 122, 76, 0.22);
}

.btn-primary:hover {
  background: var(--paid-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(20, 24, 32, 0.04);
}

.btn-light {
  background: var(--paper);
  color: var(--navy);
}

.btn-light:hover {
  background: #fff;
}

.fineprint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
}

/* Nav */
.nav {
  position: relative;
  z-index: 5;
  padding: 1.1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  margin: 0.85rem 0 1rem;
  max-width: 14ch;
}

.hero .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.hero-actions {
  margin-top: 1.6rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 1.5rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-row svg {
  width: 16px;
  height: 16px;
}

.hero-visual {
  position: relative;
}

.invoice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.invoice-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.invoice h3 {
  margin: 0.55rem 0 0.15rem;
  font-size: 1.45rem;
}

.invoice .client {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.lines {
  margin: 1.1rem 0;
  border-top: 1px dashed var(--line-strong);
  border-bottom: 1px dashed var(--line-strong);
  padding: 0.7rem 0;
}

.line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.32rem 0;
  font-size: 0.95rem;
}

.invoice-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.due {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.total {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.stamp {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 92px;
  height: 92px;
  border: 3px solid var(--paid);
  color: var(--paid);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transform: rotate(-18deg);
  background: rgba(255, 250, 241, 0.7);
  box-shadow: inset 0 0 0 3px rgba(30, 122, 76, 0.18);
}

.timeline {
  display: none;
  position: absolute;
  left: -18px;
  top: 18%;
  background: var(--navy);
  color: #e8edf3;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  width: 168px;
  box-shadow: var(--shadow);
}

.timeline li {
  list-style: none;
  font-size: 0.78rem;
  padding: 0.35rem 0 0.35rem 0.9rem;
  position: relative;
  color: #c5ced8;
}

.timeline ul {
  margin: 0.4rem 0 0;
  padding: 0;
}

.timeline li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.65rem;
}

.timeline li.done::before {
  background: var(--paid);
}

.timeline b {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Form panel */
.trial-panel {
  display: none;
  margin-top: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.25rem;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.trial-panel.open {
  display: block;
}

.trial-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 580;
}

.field input,
.field textarea {
  font: inherit;
  padding: 0.72rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid var(--gold-soft);
  border-color: var(--gold);
}

.field .error {
  color: #9b2c2c;
  font-size: 0.78rem;
  min-height: 1em;
}

.success {
  display: none;
  padding: 0.4rem 0 0.2rem;
}

.success.open {
  display: block;
}

.success p {
  color: var(--paid-deep);
  font-size: 1rem;
}

/* Sections */
section {
  position: relative;
  z-index: 1;
}

.pain {
  background: var(--navy);
  color: #e9eef4;
  padding: 4.5rem 0;
}

.pain h2 {
  color: #f7f1e4;
  max-width: 16ch;
}

.pain .body {
  margin-top: 1.2rem;
  max-width: 54ch;
  color: #c5ced8;
  font-size: 1.08rem;
}

.pain-stats {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.stat span {
  color: #b7c1cc;
  font-size: 0.9rem;
}

.how {
  padding: 4.5rem 0 4.2rem;
}

.how header {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem 1.3rem 1.4rem;
}

.step h3 {
  margin: 0.45rem 0 0.45rem;
}

.num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 650;
}

.pricing {
  padding: 1rem 0 4.5rem;
}

.price-card {
  background: var(--navy);
  color: #e9eef4;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.price-card h2 {
  color: #f7f1e4;
}

.amount {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.amount small {
  font-size: 1.05rem;
  font-family: var(--sans);
  letter-spacing: 0;
  color: #c5ced8;
  margin-left: 0.2rem;
}

.perks {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.perks li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: #d5dde6;
}

.perks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paid);
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.faq {
  padding: 0 0 4.5rem;
}

.faq header {
  margin-bottom: 1.3rem;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  margin: 0.6rem 0;
}

summary {
  cursor: pointer;
  font-weight: 580;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--paid);
  font-size: 1.2rem;
  font-weight: 500;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.bottom-cta {
  padding: 0 0 4.5rem;
}

.bottom-panel {
  background: var(--cream-deep);
  border-radius: 28px;
  padding: 2.2rem 1.4rem;
  text-align: center;
}

.bottom-panel h2 {
  margin: 0.5rem auto 0.8rem;
  max-width: 16ch;
}

.bottom-panel .lede {
  color: var(--ink-soft);
  max-width: 42ch;
  margin-inline: auto;
}

.bottom-panel .btn {
  margin-top: 1.3rem;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.4rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: space-between;
  align-items: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .pain-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .price-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 2.6rem 2.4rem;
  }

  .timeline {
    display: block;
  }

  .hero {
    padding-top: 2.2rem;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .wrap {
    width: min(var(--max), calc(100% - 3.5rem));
  }
}

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

  .btn {
    transition: none;
  }
}
