:root {
  --slate: #0F172A;
  --slate-2: #1E293B;
  --slate-3: #334155;
  --emerald: #10B981;
  --emerald-dk: #059669;
  --emerald-soft: #ECFDF5;
  --paper: #FFFFFF;
  --warm: #FAFAF7;
  --mute: #64748B;
  --faint: #94A3B8;
  --line: #E2E8F0;
  --line-soft: #F1F5F9;
  --amber: #F59E0B;
  --red: #DC2626;
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.narrow    { max-width: 980px; }

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

/* ── Nav ─────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand .word {
  font-weight: 800; font-size: 19px; letter-spacing: -0.4px;
}
.nav-brand .word span { color: var(--emerald); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--mute);
}
.nav-links a:hover { color: var(--slate); }
.nav-cta {
  background: var(--slate); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: none;
}
.nav-cta { white-space: nowrap; }
.nav-cta:hover { background: var(--slate-2); }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }
@media (max-width: 480px) {
  .nav-inner { padding: 14px 20px; }
  .nav-brand .word { display: none; }
}

/* ── Hero ────────────────────────────── */
.hero {
  padding: 48px 0 64px;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(16,185,129,0.06) 0%, transparent 70%),
    radial-gradient(50% 60% at 0% 30%, rgba(15,23,42,0.04) 0%, transparent 70%),
    var(--paper);
  position: relative; overflow: hidden;
}
.hero .eyebrow {
  display: flex; align-items: center; gap: 10px;
  width: fit-content;
  margin-left: auto; margin-right: auto;
  padding: 7px 14px; border-radius: 999px;
  background: var(--emerald-soft); color: var(--emerald-dk);
  font-size: 12px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid rgba(16,185,129,0.25);
  margin-bottom: 28px;
}
.hero .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow .dot { animation: none; }
}
.hero h1 {
  font-size: clamp(48px, 8.4vw, 124px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--emerald); }

.hero h1.hero-logo {
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.hero h1.hero-logo img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
}
.hero p.lede {
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--mute); max-width: 620px;
  line-height: 1.5; margin-bottom: 40px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 72px; align-items: center;
}
/* Same min-width: 0 fix as .bag-compare: stops the email form's intrinsic
   content min-width from forcing the grid column wider than the viewport. */
.hero-grid > * { min-width: 0; }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 24px 0 40px; }
  .hero .eyebrow { margin-bottom: 20px; }
  .hero h1.hero-logo { margin-bottom: 10px; }
  .hero p.lede { margin-bottom: 0; }
}

/* email form */
.email-form {
  background: var(--slate);
  padding: 28px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(15,23,42,0.18), 0 4px 12px rgba(15,23,42,0.08);
}
.email-form h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.3px;
}
.email-form p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.email-row { display: flex; gap: 8px; margin-bottom: 16px; }
.email-row input[type="email"] {
  flex: 1; min-width: 0; padding: 14px 16px; border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.15s, background 0.15s;
}
.email-row input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.email-row input[type="email"]:focus { border-color: var(--emerald); background: rgba(16,185,129,0.06); }
.email-row button {
  padding: 14px 22px; background: var(--emerald); color: #fff;
  border: none; border-radius: 9px;
  font-size: 15px; font-weight: 700; letter-spacing: -0.2px;
  transition: background 0.15s;
}
.email-row button:hover:not(:disabled) { background: var(--emerald-dk); }
.email-row button:disabled { opacity: 0.7; cursor: progress; }
.creator-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.7); cursor: pointer;
  line-height: 1.45;
}
.creator-check input { margin-top: 3px; accent-color: var(--emerald); cursor: pointer; flex-shrink: 0; }
.creator-check strong { color: #fff; font-weight: 600; }
.form-note {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 8px;
}
.honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}

/* ── Section primitives ───────────────── */
section.feature {
  padding: 120px 0;
  border-top: 1px solid var(--line-soft);
}
section.feature.dark {
  background: var(--slate); color: #fff; border-top: none;
}
section.feature.warm { background: var(--warm); border-top: none; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--emerald); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 24px;
}
.section-eyebrow .num {
  display: inline-flex; width: 22px; height: 22px;
  border: 1px solid currentColor; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600;
}
.feature h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 800; line-height: 1; letter-spacing: -0.5px;
  margin-bottom: 24px; max-width: 880px;
  text-wrap: balance;
}
.feature h2 .accent { color: var(--emerald); }
.feature p.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--mute); max-width: 640px;
  line-height: 1.55;
}
.feature.dark p.lede { color: rgba(255,255,255,0.6); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2 > * { min-width: 0; }
.grid-2.reverse > :first-child { order: 2; }
@media (max-width: 920px) {
  .grid-2, .grid-2.reverse { grid-template-columns: 1fr; gap: 56px; }
  .grid-2.reverse > :first-child { order: 0; }
  section.feature { padding: 80px 0; }
}

/* ── Mobile: center text blocks now that the page is single-column.
   The desktop split layouts justify left-alignment; on mobile the
   text floats next to empty space, so it reads better centered. */
@media (max-width: 920px) {
  .hero-grid > div:first-child { text-align: center; }
  .hero h1,
  .hero p.lede { margin-left: auto; margin-right: auto; }

  .grid-2 > div { text-align: center; }
  .grid-2 .answer-card,
  .grid-2 .timeline { text-align: left; }
  .feature h2,
  .feature p.lede { margin-left: auto; margin-right: auto; }

  .feature > .container > div[style*="max-width"] {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .bag-label,
  .bag-heading,
  .compare-eyebrow { text-align: center; }
}

/* ── Answer card (find next paddle) ───── */
.answer-card {
  background: #fff; border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -20px rgba(15,23,42,0.16);
  overflow: hidden;
}
.ac-q {
  padding: 24px 28px; background: var(--slate); color: #fff;
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; font-weight: 500;
}
.ac-q .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: #1E3A3A; color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.ac-answers { padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.ac-step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--warm);
}
.ac-step .check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--emerald); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ac-step .check svg { width: 12px; height: 12px; }
.ac-step .step-text { flex: 1; }
.ac-step .step-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ac-step .step-desc { font-size: 13px; color: var(--mute); line-height: 1.5; }

/* ── Reviews mosaic ───────────────────── */
.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 24px;
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: #1E3A3A; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.review-meta .u { font-size: 14px; font-weight: 700; }
.review-meta .l { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.review-stars { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.review-stars .n { font-size: 15px; font-weight: 800; color: var(--emerald); }
.review-body { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.review-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px;
  border: 1px solid;
}
.pill.pro { color: #6EE7B7; background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.3); }
.pill.con { color: #FCA5A5; background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.25); }
.pill.tag { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }

/* ── Durability timeline ──────────────── */
.timeline {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,0.14);
}
.tl-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.tl-paddle-name { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; }
.tl-paddle-sub { font-size: 13px; color: var(--mute); margin-top: 3px; }
.tl-lifespan {
  background: var(--emerald-soft); color: var(--emerald-dk);
  padding: 6px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 700;
  border: 1px solid rgba(16,185,129,0.25);
  flex-shrink: 0;
}
.tl-rail {
  position: relative; padding-left: 28px;
  border-left: 2px dashed var(--line);
  display: flex; flex-direction: column; gap: 22px;
}
.tl-point { position: relative; }
.tl-point::before {
  content: ''; position: absolute; left: -36px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 2px solid var(--emerald);
}
.tl-point.faded::before { border-color: var(--line); background: #fff; }
.tl-when { font-size: 12px; font-weight: 700; color: var(--emerald-dk); letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 4px; }
.tl-point.faded .tl-when { color: var(--faint); }
.tl-event { font-size: 15px; font-weight: 600; }
.tl-event small { font-weight: 400; color: var(--mute); display: block; margin-top: 3px; font-size: 13px; line-height: 1.5; }

/* ── Bag + compare ────────────────────── */
.bag-compare {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: start;
}
/* CSS Grid items default to min-width: auto, which is their content's
   intrinsic size. The compare table sets min-width: 480px on its rows
   for the side-by-side comparison; without this override, that 480px
   propagates upward through the grid and forces the whole page wider
   than narrow viewports. With min-width: 0, the grid column respects
   its fr-allocation and .compare's own overflow-x scroll kicks in. */
.bag-compare > * { min-width: 0; }
@media (max-width: 920px) {
  .bag-compare { grid-template-columns: 1fr; }
}
.bag-label {
  font-size: 12px; font-weight: 700; color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px;
}
.bag-heading {
  font-size: 24px; font-weight: 800; letter-spacing: -0.5px;
}
.bag {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 28px;
}
.bag-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bag-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(15,23,42,0.12); }
.bag-card.current { border-color: var(--emerald); background: var(--emerald-soft); }
.bag-card .bag-top { display: flex; justify-content: space-between; align-items: flex-start; }
.bag-thumb { width: 44px; height: 44px; background: #F1F5F9; border-radius: 8px; }
.bag-card.current .bag-thumb { background: #fff; }
.bag-score {
  font-size: 18px; font-weight: 800; color: var(--slate);
  background: #fff; padding: 4px 10px; border-radius: 7px;
  border: 1px solid var(--line);
}
.bag-brand { font-size: 10px; font-weight: 700; color: var(--mute); text-transform: uppercase; letter-spacing: 0.6px; }
.bag-name { font-size: 14px; font-weight: 700; line-height: 1.2; }
.bag-dur { font-size: 12px; color: var(--mute); }
.bag-card.current .bag-flag {
  font-size: 10px; font-weight: 700; color: var(--emerald-dk);
  text-transform: uppercase; letter-spacing: 0.6px;
}
@media (max-width: 600px) { .bag { grid-template-columns: 1fr; } }

/* compare table */
.compare-eyebrow {
  font-size: 12px; font-weight: 700; color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px;
}
.compare {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,0.14);
}
.compare-head {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-head > div { padding: 18px 20px; }
.compare-head > div + div { border-left: 1px solid var(--line); }
.compare-head .winner { background: var(--emerald-soft); position: relative; }
.compare-head .winner::before {
  content: 'WINNER'; position: absolute; top: 8px; right: 12px;
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  color: var(--emerald-dk); letter-spacing: 1.5px;
}
.compare-head .col-brand { font-size: 11px; color: var(--mute); font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 3px; }
.compare-head .col-name { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; }
.compare-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  font-size: 14px;
}
.compare-row + .compare-row { border-top: 1px solid var(--line-soft); }
.compare-row > div { padding: 14px 20px; }
.compare-row > div + div { border-left: 1px solid var(--line); }
.compare-row .label { color: var(--mute); font-weight: 500; }
.compare-row .v { font-weight: 700; }
.compare-row .v.win { color: var(--emerald-dk); }
.compare-row .v.win::before {
  content: '↑ '; font-weight: 800;
}
/* At narrow widths, keep the 3-col grid (otherwise the comparison
   context is lost) and let the table scroll horizontally inside its
   card. Min-width on header + rows enforces the layout regardless of
   viewport; the .compare wrapper handles overflow. */
@media (max-width: 600px) {
  .compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-head,
  .compare-row { min-width: 480px; }
  .compare-head > div { padding: 14px 14px; }
  .compare-head .col-name { font-size: 14px; }
  .compare-row { font-size: 13px; }
  .compare-row > div { padding: 12px 14px; }
}

/* ── Final CTA ────────────────────────── */
.final-cta {
  padding: 120px 0;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(16,185,129,0.12) 0%, transparent 70%),
    var(--slate);
  color: #fff; text-align: center;
}
@media (max-width: 920px) { .final-cta { padding: 80px 0; } }
.final-cta h2 {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1;
  margin-bottom: 20px; text-wrap: balance;
}
.final-cta h2 .accent { color: var(--emerald); }
.final-cta p.lede {
  font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,0.6);
  max-width: 540px; margin: 0 auto 44px; line-height: 1.5;
}
.final-cta .email-form { max-width: 520px; margin: 0 auto; text-align: left; }

/* ── Footer ───────────────────────────── */
footer.foot {
  background: var(--slate); color: rgba(255,255,255,0.55);
  padding: 56px 0 36px; border-top: 1px solid rgba(255,255,255,0.08);
}
.foot-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.foot-brand-row { display: flex; align-items: center; gap: 12px; }
.foot-brand-row .word { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.foot-brand-row .word span { color: var(--emerald); }
.foot-tag { font-size: 14px; max-width: 420px; line-height: 1.55; }
.foot-meta { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* utility */
.ok-msg {
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35);
  color: #6EE7B7; padding: 14px 16px; border-radius: 10px;
  font-size: 14px; margin-top: 8px;
}
.ok-msg strong { color: #fff; }
.ok-msg.err {
  background: rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.35); color: #FCA5A5;
}
