/* Padstone marketing — warm paper, orange CTAs only. No analytics. */

:root {
  --ink: #1a1108;
  --ink-soft: #241002;
  --ink-muted: #6b6358;
  --ink-faint: #9a9288;
  --hero-top: #f3f2ef;
  --hero-bottom: #f8f7f5;
  --paper: #f8f7f5;
  --paper-card: #ffffff;
  --paper-border: #e8e6e2;
  --paper-border-strong: #ddd9d3;
  --paper-text: #3d3830;
  --paper-muted: #6b6358;
  --accent: #ff994f;
  --accent-dark: #873a03;
  --accent-soft: rgba(255, 153, 79, 0.12);
  --accent-glow: rgba(255, 153, 79, 0.28);
  --accent-chip: #ffe8dc;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 100px;
  --max: 68rem;
  --section-y: clamp(3.5rem, 8vw, 5rem);
  --font-display: "General Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(26, 17, 8, 0.04), 0 4px 16px rgba(26, 17, 8, 0.03);
  --shadow-md: 0 2px 4px rgba(26, 17, 8, 0.03), 0 12px 40px rgba(26, 17, 8, 0.06);
  --shadow-lg: 0 4px 8px rgba(26, 17, 8, 0.04), 0 24px 56px rgba(26, 17, 8, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--paper-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent-chip);
  color: var(--ink);
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
}

.header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.45rem 0.45rem 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 230, 226, 0.9);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px) saturate(1.15);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .header__shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 0.45rem 0.55rem 0.45rem 1.15rem;
  }

  .logo {
    justify-self: start;
  }

  .header__nav {
    justify-self: center;
  }

  .btn--header {
    justify-self: end;
  }
}

.page-legal .header__shell {
  background: rgba(255, 255, 255, 0.92);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  display: block;
  width: 1.6rem;
  height: auto;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
  color: var(--ink);
}

.header__nav {
  display: none;
  gap: 2rem;
}

.header__nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--paper-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--ink);
  text-decoration: none;
}

@media (min-width: 640px) {
  .header__nav {
    display: flex;
  }
}

/* Buttons — orange reserved for CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--header {
  padding: 0.5rem 1.05rem;
  color: var(--ink-soft);
  background: var(--accent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 20px var(--accent-glow);
}

.btn--header:hover {
  color: var(--ink-soft);
  filter: brightness(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px var(--accent-glow);
}

.btn--primary {
  padding: 0.9rem 1.55rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  background: linear-gradient(180deg, #ffab6a 0%, var(--accent) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 28px var(--accent-glow);
}

.btn--primary:hover {
  color: var(--ink-soft);
  filter: brightness(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 12px 36px var(--accent-glow);
}

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

.btn--wide {
  width: 100%;
  max-width: 20rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
  background-color: var(--hero-bottom);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 92% 0%, rgba(255, 153, 79, 0.08), transparent 60%),
    linear-gradient(180deg, var(--hero-top) 0%, var(--hero-bottom) 88%, var(--paper-card) 100%);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 3rem 2.5rem;
  }
}

.eyebrow,
.section-eyebrow {
  font-family: var(--font-display);
}

.eyebrow {
  display: block;
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.036em;
  color: var(--ink);
  margin: 0 0 1.35rem;
  text-wrap: balance;
}

.headline__accent {
  color: var(--ink);
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--paper-muted);
  line-height: 1.7;
  margin: 0 0 1.85rem;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__beta {
  margin: 1.75rem 0 0;
  font-size: 0.875rem;
  color: var(--paper-muted);
}

.hero__beta a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--paper-border-strong);
}

.hero__beta a:hover {
  text-decoration-color: var(--ink);
}

/* Phone mockup */
.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}

.hero__device-glow {
  position: absolute;
  width: min(300px, 75%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 79, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(272px, 52vw);
  transform: rotate(2.5deg);
  filter: drop-shadow(0 32px 52px rgba(26, 17, 8, 0.12));
  animation: phone-float 8s var(--ease) infinite;
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(2.5deg) translateY(0);
  }

  50% {
    transform: rotate(2.5deg) translateY(-6px);
  }
}

.phone__frame {
  position: relative;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(168deg, #efeeeb 0%, #d4d0c9 50%, #b5afa6 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 0 1px rgba(26, 17, 8, 0.05),
    var(--shadow-lg);
}

.phone__screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  background: #141c28;
  padding: 0.85rem 0.7rem 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone__screen--light {
  background: var(--paper-card);
  gap: 0.5rem;
}

.app-record {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.55rem 0 0.25rem;
}

.app-record__status {
  margin: 0.5rem 0 0;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

.ui-rec {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-rec__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 153, 79, 0.35);
  background: var(--accent-soft);
  animation: rec-pulse 2.2s ease-out infinite;
}

.ui-rec__pulse--delay {
  animation-delay: 1.1s;
}

.ui-rec__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.app-card {
  flex-shrink: 0;
  margin: 0;
  border-radius: var(--radius-sm);
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  box-shadow: var(--shadow-sm);
}

.app-card--quote {
  padding: 0.65rem 0.75rem;
  font-size: 0.625rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}

.app-card--preview {
  padding: 0.6rem 0.75rem 0.7rem;
}

.app-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.app-preview__label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.app-badge {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

.app-badge--ready {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper-border);
}

.app-preview__rows {
  margin: 0;
}

.app-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.32rem 0;
  font-size: 0.625rem;
  border-bottom: 1px solid var(--paper-border);
}

.app-row:last-child {
  border-bottom: none;
}

.app-row dt {
  margin: 0;
  color: var(--paper-muted);
  font-weight: 500;
}

.app-row dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.app-row--total {
  padding-top: 0.45rem;
  margin-top: 0.1rem;
  border-top: 1px solid var(--paper-border-strong);
  border-bottom: none;
}

.app-row--total dt,
.app-row--total dd {
  font-weight: 600;
  color: var(--ink);
}

@keyframes rec-pulse {
  0% {
    transform: scale(0.94);
    opacity: 0.65;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Waveform */
.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 36px;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.waveform span {
  width: 3px;
  border-radius: 2px;
  background: var(--ink-faint);
  opacity: 0.45;
  animation: wave 1.2s ease-in-out infinite;
}

.waveform span:nth-child(odd) {
  animation-delay: 0.1s;
}

.waveform span:nth-child(3n) {
  animation-delay: 0.2s;
}

.waveform span:nth-child(1) { height: 35%; }
.waveform span:nth-child(2) { height: 70%; }
.waveform span:nth-child(3) { height: 45%; }
.waveform span:nth-child(4) { height: 85%; }
.waveform span:nth-child(5) { height: 50%; }
.waveform span:nth-child(6) { height: 65%; }
.waveform span:nth-child(7) { height: 40%; }
.waveform span:nth-child(8) { height: 75%; }
.waveform span:nth-child(9) { height: 55%; }
.waveform span:nth-child(10) { height: 80%; }
.waveform span:nth-child(11) { height: 42%; }
.waveform span:nth-child(12) { height: 68%; }
.waveform span:nth-child(13) { height: 58%; }
.waveform span:nth-child(14) { height: 48%; }
.waveform span:nth-child(15) { height: 62%; }

@keyframes wave {
  50% {
    transform: scaleY(1.15);
    opacity: 0.75;
  }
}

.voice-quote {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-style: italic;
}

.voice-quote--card {
  color: var(--ink);
  border-left: 2px solid var(--paper-border-strong);
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Showcase */
.showcase {
  padding: var(--section-y) 0;
  background: var(--paper-card);
}

.showcase__block {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.showcase__block .section-head {
  margin-bottom: 1.75rem;
}

.section-head {
  margin-bottom: 1.75rem;
  text-align: center;
}

.section-head--row {
  text-align: left;
  margin-bottom: 2rem;
}

.section-head--row .section-eyebrow,
.section-head--row .section-title {
  margin-left: 0;
  margin-right: 0;
}

.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.55rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 auto;
  line-height: 1.15;
  max-width: 24rem;
  text-wrap: balance;
}

.section-head--row .section-title {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.compare {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .compare {
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
  }
}

.showcase__block:not(.is-visible) .compare-card {
  opacity: 0;
  transform: translateY(14px);
}

.showcase__block.is-visible .compare-card:nth-child(1) {
  animation: card-rise 0.6s var(--ease) 0.08s backwards;
}

.showcase__block.is-visible .compare-card:nth-child(3) {
  animation: card-rise 0.6s var(--ease) 0.18s backwards;
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.compare-card {
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.compare-card:hover {
  transform: translateY(-3px);
  border-color: var(--paper-border-strong);
  box-shadow: var(--shadow-md);
}

.compare-card--pdf {
  position: relative;
}

.compare-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.compare-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.compare-card__title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.compare__arrow {
  display: none;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.compare__arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  color: var(--ink-faint);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .compare__arrow {
    display: flex;
  }
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.rec-badge__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ea580c;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.4;
  }
}

.pdf-brand {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pdf-meta {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--paper);
  border: 1px solid var(--paper-border);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.pdf-summary {
  font-size: 0.8125rem;
  color: var(--paper-muted);
  line-height: 1.55;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--paper-border);
}

.pdf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.pdf-table th {
  text-align: left;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--paper-border);
}

.pdf-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--paper-border);
  color: var(--paper-text);
}

.pdf-table tbody tr:last-child td {
  border-bottom: none;
}

.pdf-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--ink);
}

.pdf-table tfoot td {
  border-bottom: none;
  padding-top: 0.65rem;
  border-top: 1px solid var(--paper-border-strong);
  font-weight: 500;
  color: var(--ink);
}

.pdf-total {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pdf-foot {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: var(--ink-faint);
}

.showcase__tagline {
  margin: 1.75rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--paper-border);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}

/* Steps */
.steps {
  padding: var(--section-y) 0;
  background: var(--paper);
  border-top: 1px solid var(--paper-border);
}

.steps__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .steps__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
  }
}

.step-pill {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem;
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.step-pill:hover {
  transform: translateY(-2px);
  border-color: var(--paper-border-strong);
  box-shadow: var(--shadow-md);
}

.step-pill__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: var(--accent-chip);
  border: 1px solid rgba(255, 153, 79, 0.22);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.step-pill__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.4rem;
}

.step-pill__body {
  margin: 0;
  font-size: 0.875rem;
  color: var(--paper-muted);
  line-height: 1.6;
}

/* Benefits */
.benefits {
  padding: var(--section-y) 0;
  background: var(--paper-card);
  border-top: 1px solid var(--paper-border);
}

.benefits-bento {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .benefits-bento {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
  }
}

.benefit-tile {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.benefit-tile:hover {
  border-color: var(--paper-border-strong);
  box-shadow: var(--shadow-sm);
}

.benefit-tile h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.benefit-tile p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--paper-muted);
  line-height: 1.6;
}

.benefits__trades {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--paper-border);
  text-align: center;
}

.benefits__trades-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 1.1rem;
}

.trade-marquee {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.trade-marquee li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--paper-text);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--paper-border);
  transition: border-color 0.2s, background 0.2s;
}

.trade-marquee li:hover {
  border-color: var(--paper-border-strong);
  background: var(--paper-card);
}

/* CTA — editorial close, no heavy box */
.cta-final {
  padding: clamp(2.75rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
  background: var(--paper);
  border-top: 1px solid var(--paper-border);
  text-align: center;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 26rem;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}

.cta-final__lead {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--paper-muted);
  line-height: 1.5;
}

.cta-final__lead a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--paper-border-strong);
}

.cta-final__lead a:hover {
  text-decoration-color: var(--ink);
}

.cta-final .btn--primary {
  margin-top: 0.35rem;
}

/* Footer */
.footer {
  padding: 2rem 0 2.75rem;
  border-top: 1px solid var(--paper-border);
  background: var(--paper-card);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__legal {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-faint);
  max-width: 28rem;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.footer__links a {
  color: var(--paper-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--ink);
  text-decoration: none;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal */
.page-legal {
  background: var(--paper);
}

.legal {
  padding: 6rem 0 3rem;
  max-width: 40rem;
}

.legal .back-link {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.legal .back-link:hover {
  color: var(--ink);
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.legal .updated {
  font-size: 0.75rem;
  color: var(--paper-muted);
  margin: 0 0 1.5rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  margin: 1.75rem 0 0.5rem;
}

.legal p,
.legal li {
  color: var(--paper-text);
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rec-badge__dot,
  .waveform span,
  .ui-rec__pulse {
    animation: none;
  }

  .phone {
    animation: none;
  }

  .showcase__block:not(.is-visible) .compare-card,
  .showcase__block.is-visible .compare-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn:hover,
  .step-pill:hover,
  .benefit-tile:hover,
  .compare-card:hover,
  .trade-marquee li:hover {
    transform: none;
  }
}
