@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --canvas: #09090b;
  --canvas-2: #101014;
  --paper: #f7f2e9;
  --paper-soft: rgba(247, 242, 233, 0.045);
  --ink: #faf7f1;
  --ink-muted: rgba(250, 247, 241, 0.66);
  --ink-soft: rgba(250, 247, 241, 0.44);
  --line: rgba(250, 247, 241, 0.08);
  --line-strong: rgba(250, 247, 241, 0.16);
  --accent: #aaa0ff;
  --accent-strong: #bbb2ff;
  --accent-ink: #191323;
  --warm: #f28b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --container: 1130px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(58% 52% at 50% 0%, rgba(170, 160, 255, 0.11), transparent 72%),
    radial-gradient(rgba(247, 242, 233, 0.035) 1px, transparent 1px),
    var(--canvas);
  background-size: auto, 3px 3px, auto;
  color: var(--ink);
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

::selection {
  background: rgba(199, 163, 255, 0.32);
  color: var(--ink);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  margin: 0;
  padding: 16px max(48px, calc((100% - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.76);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.logo-word {
  color: var(--ink);
}

.brand-logo {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-links .nav-download {
  min-height: 38px;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}

.nav-links .nav-download:hover {
  background: var(--accent-strong);
  color: var(--accent-ink);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(215, 190, 255, 0.32);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 14px 44px rgba(199, 163, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  box-shadow: 0 18px 52px rgba(199, 163, 255, 0.24);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: calc(100vh - 69px);
  margin: 0 auto;
  padding: 108px 0 92px;
  text-align: center;
}

.hero-content {
  width: min(760px, 100%);
  animation: fadeUp 0.7s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  margin-bottom: 28px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(170, 160, 255, 0.8);
}

.hero-title {
  margin-bottom: 26px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(4.8rem, 8.4vw, 7.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.text-gradient {
  color: var(--accent);
  font-style: italic;
}

.hero-subtitle {
  width: min(690px, 100%);
  margin: 0 auto;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  width: min(1040px, 100%);
  min-height: clamp(370px, 34vw, 424px);
  margin-top: 44px;
  padding: clamp(46px, 7vw, 72px) clamp(20px, 5vw, 52px) clamp(34px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 242, 233, 0.035);
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s ease 0.12s both;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 18px;
  transform: translateX(-50%);
  background: rgba(199, 163, 255, 0.6);
  z-index: 0;
}

.hero-visual::before {
  top: 48px;
}

.hero-visual::after {
  bottom: 48px;
}

.reader-word {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  max-width: 100%;
  min-height: 126px;
  color: #d8d5cf;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(4.1rem, 7.2vw, 6.25rem);
  font-weight: 400;
  line-height: 1;
  transform: translateX(var(--reader-offset, 0px));
  white-space: nowrap;
  will-change: transform;
}

.reader-before {
  text-align: right;
}

.reader-pivot {
  color: var(--accent);
  font-style: italic;
}

.reader-after {
  text-align: left;
}

.reader-controls {
  position: relative;
  z-index: 1;
  width: min(336px, 100%);
  margin-top: 18px;
}

.reader-slider {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  appearance: none;
  background: rgba(250, 247, 241, 0.16);
  cursor: pointer;
  accent-color: var(--accent);
}

.reader-slider::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(9, 9, 11, 0.55), 0 2px 10px rgba(0, 0, 0, 0.38);
}

.reader-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(9, 9, 11, 0.55), 0 2px 10px rgba(0, 0, 0, 0.38);
}

.reader-speed-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.reader-speed-labels span:nth-child(2) {
  color: var(--accent);
}

.reader-toggle {
  margin: 26px auto 0;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.reader-toggle:hover {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.hero-actions p {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.features,
.how-it-works,
.learn-section,
.benefits {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 94px 0;
}

.features-header {
  max-width: 760px;
  margin: 0 0 42px;
  text-align: left;
}

.features-header h2,
.resource-copy h2,
.benefit-content h2,
.cta-section h2,
.content-page h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.features-header h2,
.resource-copy h2,
.benefit-content h2 {
  font-size: clamp(2.9rem, 5vw, 5rem);
}

.section-subtitle,
.resource-copy p,
.feature-desc,
.quick-facts dd,
.benefit-list li,
.cta-section p {
  color: var(--ink-muted);
}

.section-subtitle {
  width: min(650px, 100%);
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.features-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-strip {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 14px;
  margin-top: 18px;
}

.support-strip div {
  min-height: 118px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 242, 233, 0.032);
}

.support-strip strong,
.language-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.support-strip span,
.language-list span {
  display: block;
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.feature-card,
.step-card,
.learn-card,
.quick-facts div,
.press-card,
.brief-box,
.fact-note,
.answer-box,
.guide-note,
.orp-demo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.feature-card,
.step-card {
  min-height: 236px;
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover,
.step-card:hover,
.learn-card:hover,
.press-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(247, 242, 233, 0.075);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid rgba(199, 163, 255, 0.24);
  border-radius: 999px;
  background: rgba(199, 163, 255, 0.1);
  color: var(--accent);
}

.feature-title,
.step-title,
.learn-card h3,
.quick-facts dt,
.press-card h2,
.press-card h3,
.brief-box h2,
.brief-box h3 {
  color: var(--ink);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.feature-title {
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.98rem;
  line-height: 1.7;
}

.how-it-works,
.learn-section {
  border-top: 1px solid var(--line);
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(199, 163, 255, 0.12);
  color: var(--accent);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.25rem;
}

.step-title {
  margin-bottom: 12px;
}

.resource-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: start;
}

.resource-copy p {
  width: min(650px, 100%);
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.learn-kicker,
.guide-kicker,
.guide-fact-label {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.resource-links a,
.guide-links a:not(.btn-primary),
.brief-links a:not(.btn-primary),
.fact-links a:not(.btn-primary),
.press-actions a:not(.btn-primary) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 242, 233, 0.035);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.resource-links a:hover,
.guide-links a:not(.btn-primary):hover,
.brief-links a:not(.btn-primary):hover,
.fact-links a:not(.btn-primary):hover {
  border-color: rgba(199, 163, 255, 0.35);
  background: rgba(199, 163, 255, 0.08);
}

.quick-facts {
  display: grid;
  gap: 12px;
}

.quick-facts div {
  padding: 22px;
}

.quick-facts dt {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.quick-facts dd {
  line-height: 1.65;
}

.benefits {
  max-width: 980px;
}

.benefit-content {
  display: grid;
  gap: 22px;
}

.benefit-content > .feature-desc {
  max-width: 680px;
  font-size: 1.08rem;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  list-style: none;
}

.benefit-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  line-height: 1.65;
}

.benefit-list strong {
  color: var(--ink);
  font-weight: 700;
}

.landing-navbar {
  position: sticky;
  width: 100%;
  padding-right: max(48px, calc((100% - var(--container)) / 2));
  padding-left: max(48px, calc((100% - var(--container)) / 2));
}

.landing-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.landing-nav-actions a {
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.landing-nav-actions a:hover {
  color: var(--ink);
}

.landing-nav-actions .nav-download {
  min-height: 38px;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}

.landing-nav-actions .nav-download:hover {
  background: var(--accent-strong);
  color: var(--accent-ink);
}

.funnel-page {
  background:
    linear-gradient(180deg, rgba(247, 242, 233, 0.022), transparent 34rem),
    radial-gradient(rgba(247, 242, 233, 0.035) 1px, transparent 1px),
    var(--canvas);
  background-size: auto, 3px 3px, auto;
}

.funnel-hero,
.funnel-proof-strip,
.funnel-section,
.funnel-final {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.funnel-hero {
  display: grid;
  gap: 42px;
  padding: 96px 0 74px;
  text-align: center;
}

.funnel-hero-content {
  width: min(780px, 100%);
  margin: 0 auto;
  animation: fadeUp 0.7s ease both;
}

.funnel-title {
  margin-bottom: 24px;
  font-size: 7.1rem;
}

.funnel-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.funnel-actions p,
.funnel-final p,
.funnel-section-header p,
.funnel-split p,
.no-trick-copy p,
.pain-card p,
.funnel-steps span,
.funnel-proof-strip span,
.no-trick-list div {
  color: var(--ink-muted);
}

.funnel-actions p {
  font-size: 0.86rem;
}

.funnel-reader {
  margin-top: 0;
  min-height: 500px;
  background:
    linear-gradient(180deg, rgba(233, 222, 199, 0.035), rgba(17, 16, 13, 0.76)),
    #11100d;
}

.funnel-reader::before,
.funnel-reader::after {
  display: none;
}

.reader-canvas {
  display: block;
  width: min(760px, 100%);
  height: clamp(250px, 24vw, 330px);
  border: 1px solid rgba(239, 233, 218, 0.09);
  border-radius: var(--radius);
  background: #11100d;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.22),
    0 22px 60px rgba(0, 0, 0, 0.26);
}

.funnel-demo-label {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.funnel-demo-label span:last-child {
  color: var(--accent);
}

.funnel-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 10px 0 76px;
}

.funnel-proof-strip div,
.pain-card,
.funnel-steps li,
.no-trick-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.funnel-proof-strip div {
  min-height: 112px;
  padding: 20px;
}

.funnel-proof-strip strong,
.pain-card span,
.funnel-steps strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.funnel-proof-strip span {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.funnel-section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.funnel-section-header {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.funnel-section-header h2,
.funnel-split h2,
.no-trick-copy h2,
.funnel-final h2 {
  color: var(--ink);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 4.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.funnel-section-header p,
.funnel-split p,
.no-trick-copy p,
.funnel-final p {
  margin-top: 18px;
  font-size: 1.07rem;
  line-height: 1.75;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pain-card {
  min-height: 220px;
  padding: 24px;
}

.pain-card span {
  min-height: 48px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.pain-card p {
  margin-top: 18px;
  font-size: 0.96rem;
  line-height: 1.65;
}

.funnel-split,
.no-trick {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.funnel-split .btn-primary {
  margin-top: 28px;
}

.funnel-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.funnel-steps li {
  padding: 22px;
}

.funnel-steps span {
  display: block;
  margin-top: 8px;
  line-height: 1.65;
}

.no-trick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.no-trick-list div {
  min-height: 124px;
  padding: 22px;
  line-height: 1.65;
}

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

.funnel-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 86px 0 104px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.funnel-final img {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  object-fit: cover;
}

.funnel-final p {
  width: min(620px, 100%);
  margin-bottom: 28px;
}

.cta-section {
  width: min(840px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 110px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.cta-section p {
  width: min(580px, 100%);
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.cta-btn {
  padding-inline: 22px;
}

.content-page {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 72px;
}

.content-page h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.content-page h2 {
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.content-page h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.3;
}

.content-page p,
.content-page li,
.content-page dd,
.content-page td,
.content-page th {
  color: var(--ink-muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.content-page p,
.content-page ul,
.content-page ol {
  margin-bottom: 18px;
}

.content-page ul,
.content-page ol {
  padding-left: 24px;
}

.content-page li + li {
  margin-top: 8px;
}

.content-page a {
  color: var(--ink);
  text-decoration-color: rgba(199, 163, 255, 0.65);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.content-page code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(247, 242, 233, 0.06);
  color: var(--ink);
  font-size: 0.94em;
}

.content-page table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.98rem;
}

.content-page th,
.content-page td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.content-page th {
  color: var(--ink);
  background: rgba(247, 242, 233, 0.06);
  font-weight: 700;
}

.content-page .breadcrumb {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.answer-box,
.guide-note,
.orp-demo,
.brief-box,
.fact-note {
  margin: 30px 0;
  padding: 24px;
}

.guide-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.guide-table {
  min-width: 620px;
}

.guide-links,
.brief-links,
.fact-links,
.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.learn-grid,
.press-grid,
.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

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

.learn-card,
.press-card {
  display: block;
  min-height: 190px;
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.learn-card p,
.press-card p {
  margin-top: 12px;
  color: var(--ink-muted);
}

.copy-list {
  display: grid;
  gap: 12px;
  padding-left: 0 !important;
  list-style: none;
}

.copy-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.language-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.language-list div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.press-asset {
  margin: 26px 0;
}

.orp-word {
  color: var(--ink);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  text-align: center;
}

.orp-word span {
  color: var(--warm);
  font-style: italic;
}

footer {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-copyright {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--ink-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.rsvp-pivot {
  color: var(--warm);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .features-grid,
  .steps-grid,
  .support-strip,
  .press-grid,
  .funnel-proof-strip,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .resource-panel {
    grid-template-columns: 1fr;
  }

  .learn-grid,
  .brief-grid,
  .funnel-split,
  .no-trick,
  .funnel-faq .quick-facts {
    grid-template-columns: 1fr;
  }

  .funnel-title {
    font-size: 5.6rem;
  }

  .funnel-section-header h2,
  .funnel-split h2,
  .no-trick-copy h2,
  .funnel-final h2 {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  .hero,
  .features,
  .how-it-works,
  .learn-section,
  .benefits,
  .cta-section,
  .content-page,
  .funnel-hero,
  .funnel-proof-strip,
  .funnel-section,
  .funnel-final,
  footer {
    width: min(100% - 32px, var(--container));
  }

  .navbar {
    width: 100%;
    min-height: 62px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .funnel-page .landing-navbar {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .landing-nav-actions {
    gap: 10px;
  }

  .landing-nav-actions > a:not(.nav-download) {
    display: none;
  }

  .landing-nav-actions .nav-download {
    min-height: 36px;
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(3.35rem, 16vw, 4.35rem);
  }

  .hero-visual {
    margin-top: 42px;
    min-height: 330px;
    padding: 44px 18px 30px;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .reader-word {
    min-height: 82px;
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .reader-controls {
    width: min(300px, 100%);
  }

  .reader-speed-labels {
    font-size: 0.64rem;
  }

  .funnel-hero {
    gap: 34px;
    padding: 54px 0 52px;
  }

  .funnel-title {
    font-size: 4rem;
  }

  .funnel-reader {
    min-height: 410px;
    padding-top: 56px;
  }

  .reader-canvas {
    height: 220px;
  }

  .funnel-demo-label {
    top: 16px;
    left: 16px;
    right: 16px;
    font-size: 0.64rem;
  }

  .funnel-proof-strip {
    padding-bottom: 54px;
  }

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

  .funnel-section-header h2,
  .funnel-split h2,
  .no-trick-copy h2,
  .funnel-final h2 {
    font-size: 3.1rem;
  }

  .pain-card {
    min-height: auto;
  }

  .pain-card span {
    min-height: auto;
  }

  .no-trick-list {
    grid-template-columns: 1fr;
  }

  .funnel-final {
    padding-bottom: 120px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .features,
  .how-it-works,
  .learn-section,
  .benefits {
    padding: 64px 0;
  }

  .features-header {
    margin-bottom: 28px;
  }

  .resource-links {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step-card,
  .learn-card,
  .press-card,
  .answer-box,
  .guide-note,
  .orp-demo,
  .brief-box,
  .fact-note {
    padding: 22px;
  }

  .content-page {
    padding-top: 62px;
  }

  .content-page p,
  .content-page li,
  .content-page dd,
  .content-page td,
  .content-page th {
    font-size: 1rem;
  }

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

@media (max-width: 420px) {
  .navbar,
  .funnel-page .landing-navbar {
    padding-right: 16px;
    padding-left: 16px;
  }

  .funnel-title {
    font-size: 3.35rem;
  }

  .reader-canvas {
    height: 210px;
  }

  .funnel-section-header h2,
  .funnel-split h2,
  .no-trick-copy h2,
  .funnel-final h2 {
    font-size: 2.72rem;
  }
}

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