/* ============================================================
   Paycheck Reset — landing page styles
   Editorial-poster aesthetic. Navy / forest green / cream gold.
   ============================================================ */

:root {
  --navy-900: #0F2540;
  --navy-800: #142C45;
  --navy-700: #1E3A5F;
  --navy-100: #E1E6EF;

  --green-700: #1F6A41;
  --green-600: #2D7D4F;
  --green-100: #D4E5DA;

  --gold-500: #E8C77E;
  --gold-400: #EFD49A;
  --gold-300: #F2DDA8;

  --cream-100: #F5EFE2;
  --cream-50:  #FBF8F1;
  --paper:     #FFFFFF;

  --ink:        #14202F;
  --ink-muted:  #5A6470;
  --rule:       #E6DFD0;

  --shadow-card: 0 14px 32px -18px rgba(15, 37, 64, 0.28), 0 2px 6px -2px rgba(15, 37, 64, 0.08);
  --shadow-cta:  0 18px 30px -16px rgba(15, 37, 64, 0.55);

  --maxw:   1080px;
  --narrow: 680px;

  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body:    "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-italic:  "Newsreader", Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.container.narrow { max-width: var(--narrow); }
.center { text-align: center; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-reveal],
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal-group] > * {
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}

[data-reveal].is-visible,
[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
}
.brand__name {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 14px;
  text-transform: uppercase;
}
.topbar__cta {
  display: inline-block;
  padding: 9px 14px;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.topbar__cta:hover {
  background: var(--navy-800);
  text-decoration: none;
}

/* ============================================================
   HERO — centered poster
   ============================================================ */

.hero {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(232,199,126,0.20), transparent 70%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.hero::before {
  background: var(--green-100);
  top: -80px; left: -120px;
}
.hero::after {
  background: var(--gold-300);
  bottom: -120px; right: -100px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.hero__tagline {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero__icp {
  margin: 4px 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 8.5vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  max-width: 14ch;
  text-wrap: balance;
}
.hero__icp-mark {
  position: relative;
  display: inline-block;
  color: var(--navy-900);
}
.hero__icp-mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.04em;
  height: 0.32em;
  background: var(--gold-400);
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-6deg);
}

.hero__divider {
  width: 56px;
  height: 3px;
  background: var(--navy-900);
  margin: 8px 0 4px;
  border-radius: 2px;
}

.hero__h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  max-width: 22ch;
  text-wrap: balance;
}
.hero__hl { color: var(--green-600); }

.hero__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 38ch;
}
.hero__sub em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--navy-700);
}

.hero__title-line {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__title-line strong {
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: 0.14em;
}
.hero__title-line span:last-child {
  color: var(--green-700);
  font-weight: 700;
}

.hero__micro {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.hero__by {
  margin: 18px 0 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-muted);
  max-width: 52ch;
  line-height: 1.55;
}

.hero__art {
  margin-top: 8px;
  width: 100%;
  max-width: 720px;
}
.hero__art img {
  border-radius: 0;
  box-shadow: none;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(15, 37, 64, 0.18))
          drop-shadow(0 6px 12px rgba(15, 37, 64, 0.08));
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: 14px;
  transition: transform 0.08s var(--ease-out), background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
  text-decoration: none;
  letter-spacing: 0.005em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--navy-900);
  color: var(--gold-400);
  padding: 16px 26px;
  font-size: 17px;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--navy-800); }

.btn--gold {
  background: var(--gold-400);
  color: var(--navy-900);
  padding: 18px 32px;
  font-size: 17px;
  box-shadow: var(--shadow-cta);
  border: 2px solid var(--gold-500);
}
.btn--gold:hover {
  background: var(--gold-300);
}

.btn--large { padding: 18px 30px; font-size: 18px; }
.btn--xlarge {
  padding: 22px 40px;
  font-size: 20px;
  border-radius: 16px;
  letter-spacing: 0.005em;
  min-width: 260px;
}
.btn--full { width: 100%; }

/* ============================================================
   BANDS
   ============================================================ */

.band {
  padding: 72px 0;
  background: var(--cream-50);
}
.band--cream { background: var(--cream-100); }
.band--navy  { background: var(--navy-900); color: var(--paper); }
.band--final {
  background:
    radial-gradient(1200px 400px at 50% 0%, rgba(232,199,126,0.20), transparent 60%),
    var(--navy-900);
  color: var(--paper);
  padding: 88px 0;
}

.section-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.06;
  color: var(--navy-900);
  margin: 0 0 24px;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.section-h--invert { color: var(--paper); }

.invert { color: rgba(255,255,255,0.86); }

.lede { font-size: 20px; }
.emph { font-size: 19px; }
.quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 22px;
  margin: 6px 0 18px;
  color: var(--navy-900);
  padding-left: 16px;
  border-left: 3px solid var(--gold-400);
}
.quote em { font-style: italic; }

.bullets {
  margin: 0 0 1.4em;
  padding-left: 1.2em;
}
.bullets li { margin-bottom: 0.5em; }

/* ============================================================
   4 ZONES
   ============================================================ */

.zones__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy-900);
  text-align: center;
  margin: 12px 0 28px;
  letter-spacing: -0.005em;
}
.zones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 40px;
}
.zone {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-card);
}
.zone__icon { font-size: 26px; margin-bottom: 8px; }
.zone__h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--navy-900);
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}
.zone p { margin: 0; color: var(--ink-muted); }

.zone--1 { border-top: 4px solid var(--navy-700); }
.zone--2 { border-top: 4px solid var(--gold-500); }
.zone--3 { border-top: 4px solid var(--green-600); }
.zone--4 { border-top: 4px solid var(--navy-900); }

/* ============================================================
   CHECKLIST
   ============================================================ */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--rule);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  width: 24px; height: 24px;
  background: var(--green-600);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================================
   OFFER CARD
   ============================================================ */

.offer {
  max-width: 520px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
}
.offer__kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 22px;
  font-weight: 600;
}
.offer__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.offer__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer__features li:last-child { border-bottom: 0; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green-600);
  color: var(--paper);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 22px;
}
.offer__price { margin: 8px 0 24px; }
.offer__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 76px;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  display: inline-block;
}
.offer__terms {
  display: block;
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 6px;
}

/* ============================================================
   INLINE CTA BLOCKS
   ============================================================ */

.inline-cta {
  text-align: center;
  margin: 40px auto 0;
  max-width: 600px;
  padding: 0 22px;
}
.inline-cta--tight { margin-top: 32px; }
.inline-cta .btn { min-width: 280px; }
.inline-cta__micro {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */

.mobile-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--navy-900);
  color: var(--paper);
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -14px 30px -14px rgba(15,37,64,0.45);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease-out);
  padding-bottom: max(14px, env(safe-area-inset-bottom));
}
.mobile-cta.is-visible {
  transform: translateY(0);
}
.mobile-cta__row {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-cta__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  padding-left: 4px;
}
.mobile-cta__price strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-400);
  letter-spacing: -0.01em;
}
.mobile-cta__price span {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-cta__btn {
  flex: 1;
  padding: 13px 18px !important;
  font-size: 15px !important;
  border-radius: 12px !important;
  border-width: 0 !important;
  min-width: 0;
}

@media (min-width: 880px) {
  .mobile-cta { display: none !important; }
}

/* ============================================================
   GUARANTEE
   ============================================================ */

.badge {
  display: inline-block;
  background: var(--gold-400);
  color: var(--navy-900);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 32px 18px 0;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 14px;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink-muted);
  transition: transform 0.15s var(--ease-out);
}
.faq[open] summary::after { content: "−"; }
.faq p { margin: 0 0 18px; color: var(--ink-muted); }

/* ============================================================
   DISCLAIMER
   ============================================================ */

.disclaimer {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  font-family: var(--font-italic);
  font-style: italic;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal {
  background: var(--cream-50);
  padding: 56px 0 80px;
}
.legal__back {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.legal__back:hover { color: var(--navy-900); }
.legal h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  color: var(--navy-900);
  margin: 0 0 8px;
  letter-spacing: -0.012em;
}
.legal__updated {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 24px);
  color: var(--navy-900);
  margin: 36px 0 12px;
  letter-spacing: -0.005em;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.legal p { margin: 0 0 1em; }
.legal ul, .legal ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.legal li { margin-bottom: 0.4em; }
.legal a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--navy-900); }
.legal__crosslinks {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.legal__crosslinks a {
  color: var(--navy-700);
  text-decoration: none;
}
.legal__crosslinks a:hover { color: var(--navy-900); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 28px 0;
  font-size: 13px;
}
.footer__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer__links a {
  color: var(--gold-400);
  margin: 0 6px;
}
.footer p { margin: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */

.br-desktop { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 640px) {
  .br-desktop { display: inline; }
}

@media (min-width: 880px) {
  body { font-size: 19px; }

  .hero { padding: 88px 0 96px; }
  .hero__inner { gap: 22px; }
  .hero__art { max-width: 820px; margin-top: 16px; }

  .band { padding: 96px 0; }
  .band--final { padding: 112px 0; }

  .zones {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer__row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1080px) {
  .zones { gap: 24px; }
  .offer { padding: 44px 40px; }
  .hero__art { max-width: 920px; }
}
