:root {
  --paper: #f2efe8;
  --paper-deep: #e7e2d9;
  --ink: #1b1d1a;
  --muted: #676962;
  --line: #cbc5ba;
  --night: #232522;
  --night-soft: #2e302c;
  --night-ink: #f2efe8;
  --night-muted: #c0c2ba;
  --accent: #e85d3f;
  --accent-dark: #bd3d28;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ol,
ul {
  margin-top: 0;
}

p {
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
strong {
  font-weight: 800;
}

.funnel-wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.funnel-header {
  border-bottom: 1px solid var(--line);
}

.funnel-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.funnel-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.funnel-brand-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--accent);
  font-size: 10px;
  letter-spacing: -0.08em;
}

.funnel-brand small {
  margin-left: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.funnel-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.funnel-nav-links a:not(.funnel-nav-cta):hover {
  color: var(--ink);
}

.funnel-nav-cta,
.funnel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 800;
  transition:
    background-color 700ms cubic-bezier(0.32, 0.72, 0, 1),
    border-color 700ms cubic-bezier(0.32, 0.72, 0, 1),
    color 700ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 700ms cubic-bezier(0.32, 0.72, 0, 1);
}

.funnel-nav-cta {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--paper) !important;
  background: var(--ink);
  font-size: 14px;
}

.funnel-nav-cta:hover,
.funnel-button--dark:hover {
  color: var(--paper);
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.funnel-button--accent {
  color: #fff;
  background: var(--accent);
}

.funnel-button--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.funnel-button--dark {
  color: var(--paper);
  background: var(--ink);
}

.funnel-button--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.funnel-button--outline:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.funnel-button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.funnel-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 80px;
  padding-top: 88px;
  padding-bottom: 96px;
}

.funnel-hero--aulao {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
}

.funnel-eyebrow,
.funnel-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.funnel-eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.funnel-hero h1 {
  max-width: 680px;
  margin: 24px 0;
  background: linear-gradient(90deg, #000 0%, #666 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 7.4vw, 6rem);
}

.funnel-hero h1 .funnel-accent {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.1em;
}

.funnel-lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.funnel-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.funnel-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 630px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.funnel-proof-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.funnel-proof-line span::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--accent);
}

.funnel-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.funnel-hero-card {
  position: relative;
  padding: 32px;
  background: var(--paper-deep);
  box-shadow: 12px 12px 0 var(--accent);
}

.funnel-hero-card::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 64px;
  height: 4px;
  content: "";
  background: var(--accent);
}

.funnel-card-kicker {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.funnel-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.funnel-card-copy {
  color: var(--muted);
  font-size: 15px;
}

.funnel-price-caption {
  margin: 24px 0 3px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.funnel-price {
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.95;
}

.funnel-price small {
  margin-left: 7px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.funnel-price-meta {
  margin: 12px 0 24px;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 800;
}

.funnel-price-meta strong {
  font-size: 20px;
}

.funnel-choices {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.funnel-choices-label {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 800;
}

.funnel-choices-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.funnel-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition:
    background-color 700ms cubic-bezier(0.32, 0.72, 0, 1),
    border-color 700ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 700ms cubic-bezier(0.32, 0.72, 0, 1);
}

.funnel-choice:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-2px);
}

.funnel-choice strong,
.funnel-choice small {
  display: block;
}

.funnel-choice strong {
  font-size: 15px;
}

.funnel-choice small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.funnel-choice-arrow {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 20px;
}

.funnel-microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.funnel-section {
  padding: 96px 0;
}

.funnel-section--dark {
  color: var(--night-ink);
  background: var(--night);
}

.funnel-section-label {
  display: grid;
  grid-template-columns: max-content minmax(32px, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 100%;
  color: var(--muted);
}

.funnel-section-label i {
  height: 1px;
  background: var(--line);
}

.funnel-section--dark .funnel-section-label {
  color: var(--night-muted);
}

.funnel-section--dark .funnel-section-label i {
  background: rgba(242, 239, 232, 0.25);
}

.funnel-section h2 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
}

.funnel-section-intro {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.funnel-section--dark .funnel-section-intro,
.funnel-section--dark .funnel-muted {
  color: var(--night-muted);
}

.funnel-grid-2,
.funnel-grid-3,
.funnel-grid-4 {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

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

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

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

.funnel-info-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.funnel-section--dark .funnel-info-card {
  border-color: rgba(242, 239, 232, 0.22);
  background: var(--night-soft);
}

.funnel-info-card > span:first-child {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.funnel-info-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.funnel-info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.funnel-section--dark .funnel-info-card p {
  color: var(--night-muted);
}

.funnel-checklist {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.funnel-checklist li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.funnel-checklist li::before {
  color: var(--accent);
  content: "✓";
  font-size: 20px;
  font-weight: 800;
}

.funnel-checklist strong,
.funnel-checklist p {
  display: block;
}

.funnel-checklist p {
  margin: 4px 0 0;
  color: var(--muted);
}

.funnel-steps {
  counter-reset: funnel-step;
}

.funnel-step {
  position: relative;
  padding-top: 52px;
}

.funnel-step::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: funnel-step;
  content: "0" counter(funnel-step);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.funnel-step h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.funnel-step p {
  margin: 0;
  color: var(--muted);
}

.funnel-section--dark .funnel-step p {
  color: var(--night-muted);
}

.funnel-statement {
  padding: 112px 0;
}

.funnel-statement p {
  max-width: 820px;
  margin: 0;
  color: rgba(27, 29, 26, 0.35);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.98;
}

.funnel-statement strong {
  color: var(--ink);
}

.funnel-statement .funnel-accent {
  color: var(--accent-dark);
}

.funnel-reveal-word {
  color: rgba(27, 29, 26, 0.35);
  transition: color 700ms cubic-bezier(0.32, 0.72, 0, 1);
  transition-delay: var(--delay, 0ms);
}

.funnel-statement.is-visible .funnel-reveal-word {
  color: var(--ink);
}

.funnel-statement.is-visible .funnel-reveal-word.funnel-accent {
  color: var(--accent-dark);
}

.funnel-faq {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.funnel-faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.funnel-faq summary {
  cursor: pointer;
  padding-right: 28px;
  font-size: 18px;
  font-weight: 800;
  text-wrap: balance;
}

.funnel-faq p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
}

.funnel-final {
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}

.funnel-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.55fr);
  gap: 72px;
  align-items: end;
}

.funnel-final h2 {
  margin-bottom: 0;
}

.funnel-final-copy p {
  max-width: 420px;
  margin-bottom: 24px;
  color: var(--muted);
}

.funnel-regular-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--accent-dark);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.funnel-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.funnel-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.funnel-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.funnel-form input:not([type="checkbox"]):focus {
  border-color: var(--accent);
}

.funnel-form input::placeholder {
  color: #8a8b84;
}

.funnel-checkbox {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.funnel-checkbox input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.funnel-form .funnel-button {
  width: 100%;
  border: 0;
}

.funnel-form-status {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.funnel-form-status[data-state="success"] {
  color: #276b44;
}

.funnel-form-status[data-state="error"] {
  color: var(--accent-dark);
}

.funnel-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.funnel-form-note a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.funnel-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.funnel-footer {
  padding: 28px 0 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.funnel-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.funnel-footer strong {
  color: var(--ink);
}

.funnel-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.funnel-footer a:hover {
  color: var(--ink);
}

.funnel-prose {
  max-width: 760px;
}

.funnel-prose h1 {
  max-width: 760px;
  margin: 28px 0 20px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.funnel-prose h2 {
  margin-top: 48px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.funnel-prose p,
.funnel-prose li {
  color: var(--muted);
  font-size: 17px;
}

.funnel-prose ul {
  padding-left: 24px;
}

@media (max-width: 900px) {
  .funnel-hero,
  .funnel-hero--aulao {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 72px;
  }

  .funnel-hero-card {
    max-width: 640px;
  }

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

  .funnel-final-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .funnel-wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .funnel-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .funnel-nav-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .funnel-hero {
    min-height: 0;
    padding-bottom: 72px;
  }

  .funnel-section,
  .funnel-final {
    padding: 72px 0;
  }

  .funnel-statement {
    padding: 80px 0;
  }

  .funnel-grid-2,
  .funnel-grid-3,
  .funnel-grid-4 {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .funnel-hero-card {
    padding: 24px;
    box-shadow: 8px 8px 0 var(--accent);
  }

  .funnel-hero-card::before {
    left: 24px;
  }

  .funnel-lede,
  .funnel-section-intro {
    font-size: 16px;
  }

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

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