/* =========================================================
   Cash Advance by JST Inc. — Cash Advance by JST
   styles.css — Sticker craft maximalism
   ========================================================= */

/* -----------------------------
   1. Tokens
   ----------------------------- */
:root {
  /* Palette (from Colors.png) */
  --color-bg: #F0EFED;
  --color-bg-warm: #F5F0E8;
  --color-surface: rgba(255, 255, 255, 0.5);
  --color-white: #FFFFFF;
  --color-text: #010122;
  --color-text-muted: #6B7280;
  --color-accent: #EA7328;
  --color-accent-hover: #D2611B;
  --color-accent-soft: #FBE4D3;
  --color-accent-deep: #B8520F;
  --color-border: #E5E7EB;
  --color-border-soft: rgba(1, 1, 34, 0.08);
  --color-success: #15803D;
  --color-warn: #B45309;

  /* Typography — SF Pro stack */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.5rem; --space-6: 2rem;
  --space-7: 3rem;    --space-8: 4rem;   --space-9: 6rem;
  --space-10: 8rem;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-pill: 999px;

  /* Sticker shadows — signature look */
  --shadow-sticker: 0 1px 0 rgba(1,1,34,0.04), 0 12px 28px rgba(1, 1, 34, 0.10);
  --shadow-sticker-lg: 0 2px 0 rgba(1,1,34,0.04), 0 24px 48px rgba(1, 1, 34, 0.14);
  --shadow-sm: 0 1px 2px rgba(1, 1, 34, 0.04);
  --shadow-md: 0 6px 18px rgba(1, 1, 34, 0.06);
  --shadow-lg: 0 18px 40px rgba(1, 1, 34, 0.10);
  --shadow-accent: 0 8px 22px rgba(234, 115, 40, 0.30);
  --shadow-accent-lg: 0 14px 32px rgba(234, 115, 40, 0.38);

  /* Layout */
  --container-max: 1200px;
  --container-prose: 1200px;
  --header-h: 80px;

  /* Motion */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* -----------------------------
   2. Reset & base
   ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Faint paper-grain overlay for "craft" feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(234, 115, 40, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--color-accent-hover); }

h1, h2, h3, h4 {
  margin: 0 0 var(--space-4);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text);
  font-family: var(--font-sans);
}
h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); letter-spacing: -0.035em; line-height: 0.98; }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.55rem); letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; letter-spacing: -0.015em; }

.serif-italic {
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p { margin: 0 0 var(--space-4); }
ul { padding-left: 1.25rem; }
li { margin-bottom: var(--space-2); }

::selection { background: var(--color-accent); color: #fff; }

/* -----------------------------
   3. Layout helpers
   ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 1;
}
.container--prose { max-width: var(--container-prose); }

.section {
  padding: var(--space-8) 0;
  position: relative;
  isolation: isolate;
}
.section--tight { padding: var(--space-7) 0; }
.section--lg { padding: var(--space-9) 0; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem 0.4rem 0.65rem;
  background: var(--color-accent-soft);
  color: var(--color-accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.section__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.section__eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}
.section__eyebrow--on-dark::before {
  background: #93C5FD;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: var(--space-6);
}

.section-header {
  margin-inline: auto;
  margin-bottom: var(--space-6);
  text-align: center;
}
.section-header .section__lead {
  margin-inline: auto;
  max-width: none;
}

/* -----------------------------
   4. Brand / Logo
   ----------------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1;
}
.brand:hover { color: var(--color-text); }

.brand__img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(188px, 48vw);
}

@media (min-width: 641px) {
  .brand__img { height: 48px; max-width: 208px; }
}

.site-footer .brand__img,
.brand__img--footer {
  height: 52px;
  max-width: 220px;
}

@media (min-width: 641px) {
  .site-footer .brand__img,
  .brand__img--footer {
    height: 58px;
    max-width: 248px;
  }
}

/* -----------------------------
   5. Header
   ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background-color: rgba(240, 239, 237, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(1,1,34,0.04), 0 8px 24px rgba(1,1,34,0.04);
  border-bottom-color: var(--color-border-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-5);
}
.nav-desktop a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease;
}
.nav-desktop a:hover {
  color: var(--color-accent);
}

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  cursor: pointer; color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed; inset: 0;
  background-color: var(--color-bg);
  padding: var(--space-5) var(--space-4);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out-quart);
  z-index: 60;
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-6);
}
.mobile-menu__links {
  display: flex; flex-direction: column; gap: var(--space-3);
  list-style: none; padding: 0; margin: 0;
}
.mobile-menu__links a {
  display: block; padding: var(--space-3) var(--space-4);
  font-size: 1.25rem; color: var(--color-text); font-weight: 700;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: color 0.2s ease;
}
.mobile-menu__links a:hover {
  color: var(--color-accent);
}
.mobile-menu__cta { margin-top: auto; padding-top: var(--space-5); }

/* -----------------------------
   6. Buttons
   ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-spring),
              background-color 0.2s ease,
              color 0.2s ease,
              box-shadow 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary {
  background-color: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background-color: var(--color-accent-hover);
  color: #fff;
  box-shadow: var(--shadow-accent-lg);
}

.btn--ghost {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.btn--soft {
  background-color: var(--color-accent-soft);
  color: var(--color-accent-deep);
}
.btn--soft:hover { background-color: #F8D2B5; color: var(--color-accent-deep); }

.btn--dark {
  background-color: var(--color-text);
  color: #fff;
}
.btn--dark:hover { background-color: #0e0e3d; color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.2rem 1.9rem; font-size: 1.05rem; }
.btn--sm { padding: 0.7rem 1.1rem; font-size: 0.9rem; }

.btn-icon-back {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
}

/* -----------------------------
   7. Pattern blooms (pattern.png decor)
   ----------------------------- */
.pattern-field,
.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.pattern-bloom {
  position: absolute;
  pointer-events: none;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transform-origin: center center;
  animation: pattern-breathe 12s ease-in-out infinite;
  user-select: none;
}

.pattern-field--hero .pattern-bloom,
.pattern-field--hero-art .pattern-bloom {
  opacity: var(--bloom-opacity, 0.88);
}

.pattern-field--site .pattern-bloom,
.pattern-field--bg .pattern-bloom {
  opacity: var(--bloom-opacity, 0.48);
}

.pattern-field--cta .pattern-bloom {
  opacity: var(--bloom-opacity, 0.36);
}

@keyframes pattern-breathe {
  0%, 100% { opacity: calc(var(--bloom-opacity, 0.5) * 0.94); }
  50%      { opacity: calc(var(--bloom-opacity, 0.5) * 1.06); }
}

.hero__patterns {
  position: absolute;
  inset: -8% -4%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

#main {
  position: relative;
  isolation: isolate;
}

#main > :not(.pattern-field) {
  position: relative;
  z-index: 1;
}

.cta-strip {
  position: relative;
  overflow: hidden;
}

.cta-strip h2,
.cta-strip p,
.cta-strip .btn {
  position: relative;
  z-index: 1;
}

/* -----------------------------
   8. Sticker primitive
   ----------------------------- */
.sticker {
  display: inline-block;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-sticker);
  position: relative;
}
.sticker__inner {
  background: var(--color-white);
  border-radius: calc(var(--radius-lg) - 6px);
  padding: var(--space-5);
}
.sticker--lg { padding: 0.7rem; border-radius: var(--radius-xl); }
.sticker--lg .sticker__inner { border-radius: calc(var(--radius-xl) - 8px); }
.sticker--tilt-l { transform: rotate(-3deg); }
.sticker--tilt-r { transform: rotate(2.5deg); }

/* Sticker badge — small floating ones */
.sticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem 0.55rem 0.65rem;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sticker);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text);
  white-space: nowrap;
}
.sticker-badge__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.sticker-badge__dot svg { width: 14px; height: 14px; }
.sticker-badge--success .sticker-badge__dot { background: var(--color-success); }

/* -----------------------------
   9. Hero
   ----------------------------- */
.hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-9);
  overflow: hidden;
  isolation: isolate;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__inner--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 54rem;
  margin-inline: auto;
}

.hero__pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-5);
}
.hero__pill-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.hero__pill-dot svg { width: 12px; height: 12px; }

.hero__title {
  margin-bottom: var(--space-4);
  line-height: 1.15;
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 800;
}

.hero__subtitle {
  font-size: 1.18rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.55;
}

.hero__cta-row {
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  width: 100%;
}

/* Hero — five-screen path */
.hero-path {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto var(--space-6);
}
.hero-path__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
}
.hero-path__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-accent-soft);
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}
.hero-path__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.15);
}
.hero-path__screens {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.35rem, 1.5vw, 0.65rem);
  min-height: clamp(100px, 22vw, 180px);
  padding: 0 var(--space-2);
}
.hero-path__screen {
  width: clamp(52px, 11vw, 108px);
  height: clamp(92px, 19.5vw, 192px);
  padding: 0;
  border: 3px solid var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  cursor: pointer;
  opacity: 0.5;
  box-shadow: var(--shadow-sticker);
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.hero-path__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.hero-path__screen.is-active {
  opacity: 1;
  border-color: var(--color-accent);
  transform: translateY(-6px) scale(1.08);
  box-shadow: var(--shadow-sticker-lg);
  z-index: 1;
}
.hero-path__screen:nth-child(1) { transform: translateY(10px) rotate(-6deg); }
.hero-path__screen:nth-child(2) { transform: translateY(5px) rotate(-3deg); }
.hero-path__screen:nth-child(4) { transform: translateY(5px) rotate(3deg); }
.hero-path__screen:nth-child(5) { transform: translateY(10px) rotate(6deg); }
.hero-path__screen.is-active:nth-child(1),
.hero-path__screen.is-active:nth-child(2),
.hero-path__screen.is-active:nth-child(3),
.hero-path__screen.is-active:nth-child(4),
.hero-path__screen.is-active:nth-child(5) {
  transform: translateY(-6px) scale(1.08) rotate(0deg);
}

.hero__trust {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  list-style: none; padding: 0; margin: 0;
}

/* Hero illustration stack */
.hero__art {
  position: relative;
  min-height: 360px;
  display: flex; justify-content: center; align-items: center;
}

.hero__sticker-main {
  position: relative;
  z-index: 3;
  max-width: 220px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 24px 48px rgba(1, 1, 34, 0.14));
}
.hero__sticker-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}
.hero__sticker-main--screen {
  max-width: min(280px, 72vw);
  transform: rotate(-4deg);
}
.hero__sticker-main--screen img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sticker-lg);
}

.hero__phone {
  position: absolute;
  top: 50%; right: -10px;
  transform: translateY(-50%) rotate(4deg);
  width: 240px;
  z-index: 4;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  box-shadow: var(--shadow-sticker-lg);
}
.hero__phone-inner {
  background: var(--color-bg);
  border-radius: calc(var(--radius-xl) - 8px);
  padding: var(--space-4);
}
.hero__phone-h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-3);
}
.hero__phone-title { font-size: 0.85rem; font-weight: 800; }
.hero__phone-badge {
  font-size: 0.65rem; font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--color-accent); color: #fff;
}
.hero__phone-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.82rem;
}
.hero__phone-row:last-of-type { border-bottom: none; }
.hero__phone-label { color: var(--color-text-muted); }
.hero__phone-value { font-weight: 700; }

.hero__floating-badge {
  position: absolute;
  z-index: 5;
}
.hero__floating-badge--tl {
  top: 8%; left: -10px;
  transform: rotate(-8deg);
}
.hero__floating-badge--br {
  bottom: 10%; left: 30%;
  transform: rotate(6deg);
}

/* Animated counter */
.counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* -----------------------------
   10. Calculator widget
   ----------------------------- */
.calc {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sticker-lg);
  position: relative;
}
.calc__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.calc__controls {
  display: flex; flex-direction: column;
  gap: var(--space-5);
}
.calc__field-h {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--space-3);
}
.calc__label {
  font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.calc__value {
  font-size: 1.8rem; font-weight: 800; letter-spacing: -0.025em;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}
.calc__value-sub { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 500; margin-left: 0.3em; }

/* Custom slider */
.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 14px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-pill);
  outline: none;
  margin: var(--space-2) 0;
}
.calc__slider::-webkit-slider-runnable-track {
  height: 14px;
  background: linear-gradient(to right, var(--color-accent) var(--fill, 50%), var(--color-accent-soft) var(--fill, 50%));
  border-radius: var(--radius-pill);
}
.calc__slider::-moz-range-track {
  height: 14px;
  background: linear-gradient(to right, var(--color-accent) var(--fill, 50%), var(--color-accent-soft) var(--fill, 50%));
  border-radius: var(--radius-pill);
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  background: #fff;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(234, 115, 40, 0.35);
  margin-top: -7px;
  transition: transform 0.15s ease;
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__slider::-moz-range-thumb {
  width: 28px; height: 28px;
  background: #fff;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(234, 115, 40, 0.35);
}
.calc__minmax {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--color-text-muted); font-weight: 600;
}

/* Schumer Box */
.schumer {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1.5px solid var(--color-border);
}
.schumer__title {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1.5px solid var(--color-text);
}
.schumer__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--color-border);
}
.schumer__row:last-of-type { border-bottom: none; padding-top: var(--space-3); }
.schumer__row-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
}
.schumer__row-value {
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}
.schumer__row--total .schumer__row-label { font-size: 1rem; }
.schumer__row--total .schumer__row-value { font-size: 1.3rem; color: var(--color-accent); }
.schumer__note {
  margin-top: var(--space-4);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.shot-disclaimer {
  margin-top: var(--space-5);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: center;
}

.hero-path__disclaimer {
  margin-top: var(--space-4);
  max-width: 36rem;
}

/* -----------------------------
   11. How it works — scroll narrative
   ----------------------------- */
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  list-style: none; padding: 0;
}
.how-step {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sticker);
  position: relative;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.how-step:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-sticker-lg);
}
.how-step:nth-child(2):hover { transform: translateY(-6px) rotate(0.5deg); }
.how-step:nth-child(3):hover { transform: translateY(-6px) rotate(-0.3deg); }

.how-step__num {
  position: absolute;
  top: -18px; left: var(--space-5);
  background: var(--color-text);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(1, 1, 34, 0.25);
  border: 4px solid var(--color-bg);
}
.how-step__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-2) 0 var(--space-4);
}
.how-step__icon-wrap.icon-slot {
  width: 5.75rem;
  height: 5.75rem;
}
.how-step__icon-wrap.icon-slot .icon-slot__placeholder {
  border-color: rgba(234, 115, 40, 0.4);
  background: rgba(255, 255, 255, 0.6);
}
.how-step__title { margin: 0 0 var(--space-2); }
.how-step__text { color: var(--color-text-muted); margin: 0; font-size: 0.98rem; }

/* -----------------------------
   12. Loan offer cards
   ----------------------------- */
.offers {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
}
.offer {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sticker);
  display: flex; flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.35s ease;
  position: relative;
}
.offer:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-sticker-lg);
}
.offer:nth-child(even):hover { transform: translateY(-6px) rotate(1deg); }

.offer__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-3);
}
.offer__brand { display: flex; flex-direction: column; gap: 0.25rem; }
.offer__stars { color: var(--color-text); font-size: 0.9rem; letter-spacing: 0.05em; }
.offer__name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.015em; }
.offer__avail { text-align: right; }
.offer__avail-l { font-size: 0.72rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.offer__avail-v { font-weight: 800; font-size: 0.98rem; font-variant-numeric: tabular-nums; }

.offer__badge-row {
  display: flex; justify-content: center;
  padding: var(--space-2) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.offer__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 700; color: var(--color-text);
}
.offer__badge svg { width: 16px; height: 16px; color: var(--color-accent); }

.offer__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem;
}
.offer__row-label { color: var(--color-text-muted); }
.offer__row-value { font-weight: 800; font-variant-numeric: tabular-nums; }

.offer__cta { margin-top: var(--space-2); }
.offer__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.offers-disclaimer {
  max-width: 60ch;
  margin: var(--space-6) auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: var(--space-4) var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* -----------------------------
   13. State coverage map
   ----------------------------- */
.coverage {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sticker);
}
.coverage__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
.coverage__info {
  min-width: 0;
}
.coverage__stat {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-accent);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.coverage__stat-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}
.coverage__detail {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  min-height: 13.5rem;
  box-sizing: border-box;
}
.coverage__detail-hint {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.coverage__detail-title {
  margin: 0 0 var(--space-2);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}
.coverage__detail-status {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.coverage__detail-status.is-available {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.coverage__detail-status.is-limited {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}
.coverage__detail-status.is-unavailable {
  background: rgba(107, 114, 128, 0.15);
  color: #4b5563;
}
.coverage__detail-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.coverage__detail-list li + li {
  margin-top: var(--space-2);
}
.coverage__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-4);
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0;
  font-size: 0.88rem;
}
.coverage__list li {
  display: flex; align-items: center; gap: 0.4rem;
  margin: 0;
}
.coverage__list svg { width: 14px; height: 14px; color: var(--color-success); flex-shrink: 0; }

.us-map {
  position: relative;
  align-self: start;
  width: 100%;
  contain: layout;
}
.us-map svg {
  display: block;
  width: 100%;
  height: auto;
}
.us-map__state {
  fill: var(--color-accent-soft);
  stroke: var(--color-white);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.2s ease;
  vector-effect: non-scaling-stroke;
}
.us-map__state:hover {
  fill: var(--color-accent);
}
.us-map__state.is-unavailable {
  fill: var(--color-border);
}
.us-map__state.is-unavailable:hover {
  fill: #cdd0d6;
}
.us-map__state.is-limited {
  fill: #fde8d8;
}
.us-map__state.is-limited:hover {
  fill: var(--color-accent);
}
.us-map__state.is-active {
  fill: var(--color-accent);
  stroke: var(--color-text);
  stroke-width: 1.5;
}

.us-map__tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--color-text);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: 14rem;
  white-space: normal;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity 0.15s ease;
  transform: translate(-50%, calc(-100% - 10px));
  z-index: 10;
}
.us-map__tooltip.is-visible { opacity: 1; }
.us-map__tooltip strong {
  color: #fff;
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}
.us-map__tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

/* -----------------------------
   14. Features (why us)
   ----------------------------- */
.features {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
}
.feature {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker);
  transition: transform 0.3s var(--ease-spring);
}
.feature:hover { transform: translateY(-3px); }
.feature__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature__icon.icon-slot .icon-slot__placeholder {
  border-color: rgba(234, 115, 40, 0.4);
  background: rgba(255, 255, 255, 0.65);
}
.feature__title { margin: 0 0 var(--space-2); font-size: 1.1rem; }
.feature__text { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* -----------------------------
   15. Trust band
   ----------------------------- */
.trust-band {
  position: relative;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-5);
  overflow: hidden;
  box-shadow: var(--shadow-sticker);
}
.trust-band__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 22ch;
  margin: 0 auto var(--space-5);
  letter-spacing: -0.03em;
  position: relative; z-index: 2;
}
.trust-band__title em { font-style: italic; color: var(--color-accent); }

.partners {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  max-width: 720px;
  margin: var(--space-6) auto 0;
  position: relative; z-index: 2;
}
.partner {
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------------
   16. FAQ accordion
   ----------------------------- */
.faq-header {
  text-align: center;
  margin: 0 auto var(--space-5);
  max-width: 50ch;
}

.faq-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: 720px;
  margin: 0 auto var(--space-5);
}

.faq-tag {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.25s var(--ease-spring),
    box-shadow 0.2s ease;
}

.faq-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-deep);
  transform: translateY(-1px);
}

.faq-tag.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.3s ease,
    max-height 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item.is-filtered-out {
  display: none;
}

.faq-item.is-closing {
  opacity: 0.92;
}

.faq-item:hover:not(.is-open) { box-shadow: var(--shadow-md); }

.faq-item.is-open {
  box-shadow: var(--shadow-sticker);
  transform: translateY(-1px);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3);
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
  color: var(--color-text);
  cursor: pointer;
}

.faq-item__lead {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}

.faq-item__lead .how-step__num {
  position: static;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
  border-width: 3px;
  box-shadow: 0 4px 12px rgba(1, 1, 34, 0.2);
}

.faq-item__question {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s var(--ease-spring),
    background 0.25s ease,
    color 0.25s ease;
}

.faq-item__chevron svg { width: 14px; height: 14px; }

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: #fff;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out-quart);
}

.faq-item.is-closing .faq-item__body {
  transition: max-height 0.32s var(--ease-out-quart);
}

.faq-item__body-inner {
  padding: 0 var(--space-3) var(--space-3);
  padding-left: calc(var(--space-3) + 40px + var(--space-2));
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.faq-empty {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: var(--space-5) auto 0;
  max-width: 36ch;
}

.faq-empty[hidden] { display: none; }

@media (max-width: 640px) {
  .faq-item__body-inner {
    padding-left: var(--space-3);
  }
}

.icon-slot--faq {
  width: 40px;
  height: 40px;
}

/* -----------------------------
   17. CTA strip
   ----------------------------- */
.cta-strip {
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--space-9) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 18ch;
  margin: 0 auto var(--space-4);
}
.cta-strip h2 em { font-style: italic; color: var(--color-accent); }
.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto var(--space-6);
  max-width: 50ch;
}
.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  align-items: center;
}
.cta-strip__ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: none;
}
.cta-strip__ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Product details */
.product-details {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}
.product-details__header {
  margin: 0;
  margin-bottom: 0;
}
.product-details__terms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: 0;
}
.product-details__term {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-sm);
}
.product-details__term dt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-2);
}
.product-details__term dd {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}
.product-details__shot {
  max-width: 280px;
  margin: 0 auto;
  align-self: start;
}
.product-details__shot img { width: 100%; height: auto; display: block; }
.product-details__note {
  font-size: 0.92rem;
  margin: 0;
  max-width: 58ch;
}

/* -----------------------------
   17b. Built different + Inside the app
   ----------------------------- */
.app-shot {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker-lg);
  overflow: hidden;
  background: var(--color-white);
}
.app-shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* — Concept A — */
.concept-a {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
.concept-a__matrix {
  display: grid;
  gap: var(--space-4);
}
.concept-a__col {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sticker);
}
.concept-a__col--can {
  border: 2px solid rgba(21, 128, 61, 0.18);
}
.concept-a__col--cant {
  border: 2px solid rgba(1, 1, 34, 0.08);
  background: var(--color-bg-warm);
}
.concept-a__heading {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
  font-size: 1.15rem;
}
.concept-a__mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.concept-a__mark--yes {
  background: rgba(21, 128, 61, 0.12);
  color: var(--color-success);
}
.concept-a__mark--no {
  background: rgba(1, 1, 34, 0.06);
  color: var(--color-text-muted);
}
.concept-a__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}
.concept-a__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
.concept-a__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}
.concept-a__col--cant .concept-a__list li::before {
  background: var(--color-text-muted);
  opacity: 0.45;
}
.concept-a__stage {
  position: relative;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: var(--space-7) 0 var(--space-3);
}
.concept-a__phone {
  position: absolute;
  width: clamp(120px, 28vw, 168px);
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: var(--shadow-sticker-lg);
  background: var(--color-white);
  text-align: center;
}
.concept-a__phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.concept-a__phone--back {
  left: 8%;
  bottom: 2%;
  transform: rotate(-14deg);
  z-index: 1;
  opacity: 0.88;
}
.concept-a__phone--mid {
  left: 50%;
  bottom: 0;
  transform: translateX(-58%) rotate(4deg);
  z-index: 2;
  width: clamp(130px, 30vw, 178px);
}
.concept-a__phone--front {
  right: 8%;
  bottom: 4%;
  transform: rotate(11deg);
  z-index: 3;
  width: clamp(140px, 32vw, 190px);
}
.concept-a__badge {
  position: absolute;
  z-index: 4;
}
.concept-a__badge--tl { top: 12%; left: 4%; transform: rotate(-3deg); }
.concept-a__badge--tr { top: 16%; right: 2%; transform: rotate(2deg); }
.concept-a__badge--bl { bottom: 0; left: 18%; transform: rotate(-1.5deg); }

/* — Concept B — */
.concept-b__layout {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}
.concept-b__header {
  margin: 0;
  margin-bottom: 0;
}
.concept-b__nav {
  display: grid;
  gap: var(--space-3);
}
.concept-b__tab {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  width: 100%;
  text-align: left;
  padding: var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-spring);
  font-family: inherit;
  color: inherit;
}
.concept-b__tab:hover {
  border-color: rgba(234, 115, 40, 0.35);
  transform: translateY(-1px);
}
.concept-b__tab.is-active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sticker);
  background: linear-gradient(135deg, #fff 0%, var(--color-accent-soft) 120%);
}
.concept-b__tab-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-deep);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.concept-b__tab.is-active .concept-b__tab-num {
  background: var(--color-accent);
  color: #fff;
}
.concept-b__tab-text {
  display: grid;
  gap: 0.2rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.concept-b__tab-text strong {
  color: var(--color-text);
  font-size: 0.98rem;
}
.concept-b__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  min-height: 0;
  padding: 0;
}
.concept-b__display {
  position: relative;
  width: min(272px, 80vw);
}
.concept-b__screen {
  position: relative;
  width: 100%;
  transition: opacity 0.35s var(--ease-out-quart), transform 0.35s var(--ease-out-quart);
}
.concept-b__screen[hidden] {
  display: none;
}
.concept-b__screen.is-active {
  animation: concept-screen-in 0.45s var(--ease-out-quart);
}
@keyframes concept-screen-in {
  from { opacity: 0; transform: translateY(12px) rotate(-2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0); }
}
.concept-b__shot { transform: rotate(-3deg); }
.concept-b__callout {
  position: absolute;
  top: -6%;
  right: -8%;
  transform: rotate(4deg);
  z-index: 2;
}
.concept-b__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  max-width: min(360px, 100%);
}
.concept-b__thumb {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-white);
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.concept-b__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.concept-b__thumb.is-active,
.concept-b__thumb:hover {
  opacity: 1;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* -----------------------------
   18. Footer
   ----------------------------- */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-8) 0 var(--space-5);
  font-size: 0.9rem;
  margin-top: var(--space-7);
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--color-accent); }

.footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.footer__address {
  color: rgba(255, 255, 255, 0.6);
  font-style: normal; line-height: 1.65;
  margin-top: 1rem;
}
.footer__col-title {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-3);
}
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: var(--space-2); }

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}
.footer__legal p { margin: 0; }

/* -----------------------------
   19. Lead form (TCPA-compliant)
   ----------------------------- */
.lead-form {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sticker-lg);
  max-width: 560px;
  margin: 0 auto;
}
.form-row { margin-bottom: var(--space-4); }
.form-row label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 700; font-size: 0.85rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-row textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: var(--radius-lg);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(234, 115, 40, 0.15);
}

.consent-block {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin: var(--space-5) 0;
}
.consent-row {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: var(--space-3) 0;
}
.consent-row + .consent-row { border-top: 1px solid var(--color-border); }
.consent-row input[type="checkbox"] {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.consent-row label {
  font-size: 0.84rem; line-height: 1.5;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-text);
  margin: 0;
  cursor: pointer;
}
.consent-row label strong { font-weight: 700; }
.consent-row .consent-required {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800;
  color: var(--color-warn);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.4em;
}
.consent-row .consent-optional {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800;
  color: var(--color-success);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.4em;
}

.form-status {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(21, 128, 61, 0.1);
  color: var(--color-success);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }

/* -----------------------------
   20. Inner pages (legal, help, learn)
   ----------------------------- */
.page-hero {
  padding: var(--space-8) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-hero__eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent);
}
.page-hero__title {
  margin: var(--space-3) 0 var(--space-3);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.page-hero__meta {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
  margin-inline: auto;
}
.page-hero__lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: var(--space-3) auto 0;
  line-height: 1.55;
}

.prose {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-7) var(--space-4);
}
@media (min-width: 641px) {
  .prose { padding: var(--space-7) var(--space-5); }
}
@media (min-width: 1025px) {
  .prose { padding: var(--space-8) var(--space-5); }
}
.prose h2 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { margin-top: var(--space-6); font-size: 1.2rem; }
.prose p, .prose li {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}
.prose ul { padding-left: 1.4rem; }
.prose .callout {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-5) 0;
  font-size: 0.97rem;
  box-shadow: var(--shadow-sticker);
}

/* Help center */
.help-page { padding-top: var(--space-5); }

.help-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
}

.help-sidebar__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-5);
}
.help-sidebar__header .section__eyebrow { margin-bottom: var(--space-3); }
.help-sidebar__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.help-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.help-topic {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sticker);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}
.help-topic:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sticker-lg);
}
.help-topic h3 { margin-top: 0; font-size: 1.1rem; }
.help-topic p { color: var(--color-text-muted); margin-bottom: 0; font-size: 0.94rem; }

.help-topic--sidebar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 var(--space-4);
  align-items: start;
  padding: var(--space-4);
}
.help-topic--sidebar .help-topic__icon {
  grid-row: 1 / span 2;
  align-self: center;
}
.help-topic--sidebar .help-topic__icon.icon-slot {
  margin-bottom: 0;
}
.help-topic--sidebar .help-topic__body { min-width: 0; }
.help-topic--sidebar h3 {
  margin: 0 0 var(--space-1);
  font-size: 0.98rem;
  line-height: 1.25;
}
.help-topic--sidebar p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.help-sidebar__note {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: var(--color-accent-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(234, 115, 40, 0.15);
}
.help-sidebar__note-title {
  margin: 0 0 var(--space-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
}
.help-sidebar__note p {
  margin: 0 0 var(--space-3);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.45;
}

.help-form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-5);
}
.help-form-header .section__eyebrow { margin-bottom: var(--space-3); }
.help-form-header h2 {
  margin: 0 0 var(--space-3);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.help-form-header p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.55;
}

.lead-form--help {
  max-width: none;
  margin: 0;
}

.help-direct {
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker-lg);
}

.help-direct__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.help-direct__inboxes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.help-direct__card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s var(--ease-spring), border-color 0.2s ease;
}
a.help-direct__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(234, 115, 40, 0.45);
  transform: translateY(-2px);
}
a.help-direct__card:hover .help-direct__value { color: var(--color-accent); }

.help-direct__card--static {
  cursor: default;
}

.help-direct__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.help-direct__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.help-direct__icon--lg {
  width: 48px;
  height: 48px;
}
.help-direct__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}
.help-direct__icon--lg svg {
  width: 20px;
  height: 20px;
}

.help-direct__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.help-direct__value {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
  transition: color 0.2s ease;
  word-break: break-word;
}

.help-direct__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}
.help-direct__company {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-white);
}
.help-direct__address {
  margin: 0;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.help-direct__meta {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}
.help-direct__contact a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.help-direct__contact a:hover {
  color: var(--color-white);
}

/* -----------------------------
   21. Learn page — Cost 101, Loan Types, Red Flags, Glossary
   ----------------------------- */

/* Cost 101 — visual blocks */
.cost101 {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-5);
}
.cost101-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sticker);
}
.cost101-card__num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.cost101-card__title { margin: 0 0 var(--space-3); font-size: 1.3rem; }
.cost101-card__text { color: var(--color-text-muted); margin: 0 0 var(--space-4); }
.cost101-card__example {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
.cost101-card__example strong { color: var(--color-accent); }

/* Loan types — comparison */
.loan-types {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
}
.loan-type {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sticker);
  position: relative;
  transition: transform 0.3s var(--ease-spring);
}
.loan-type:hover { transform: translateY(-4px) rotate(-0.5deg); }
.loan-type__h {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.loan-type__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.loan-type__icon.icon-slot .icon-slot__placeholder {
  border-color: rgba(234, 115, 40, 0.4);
  background: rgba(255, 255, 255, 0.65);
}
.loan-type__row {
  display: flex; justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--color-border);
}
.loan-type__row:last-of-type { border-bottom: none; }
.loan-type__row strong { font-weight: 700; font-variant-numeric: tabular-nums; }

/* Red flags */
.red-flag {
  display: flex; gap: var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-3);
  border-left: 4px solid #DC2626;
}
.red-flag__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: #FEE2E2;
  color: #DC2626;
  display: inline-flex; align-items: center; justify-content: center;
}
.red-flag__title { margin: 0 0 var(--space-2); font-size: 1rem; }
.red-flag__text { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

/* Glossary */
.glossary {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-3);
}
.glossary-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.glossary-item__term {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 800; letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
}
.glossary-item__abbr {
  font-size: 0.72rem; font-weight: 800;
  background: var(--color-accent-soft);
  color: var(--color-accent-deep);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
}
.glossary-item__def { margin: 0; font-size: 0.93rem; color: var(--color-text-muted); line-height: 1.6; }

/* -----------------------------
   22. Sticker icon slots (placeholder → img)
   Replace .icon-slot__placeholder with:
   <img src="assets/icons/…" alt="" />
   Full generation prompt is in data-icon-prompt on .icon-slot.
   ----------------------------- */
.icon-slot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-slot__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  height: 100%;
  padding: 0.35rem;
  text-align: center;
  background: var(--color-white);
  border: 2.5px dashed var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9);
  color: var(--color-text-muted);
  user-select: none;
  pointer-events: none;
}

.icon-slot__label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  line-height: 1.2;
}

.icon-slot__prompt {
  font-size: 0.52rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-muted);
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.icon-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
}

.icon-slot:has(> img) {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transform: rotate(-2deg);
}

.icon-slot:has(> img):not(.red-flag__icon):not(.offer__logo):not(.icon-slot--partner)::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: rgba(234, 115, 40, 0.42);
  top: 60%;
  left: 56%;
  transform: translate(-50%, -50%);
  z-index: 0;
  box-shadow: 0 6px 16px rgba(234, 115, 40, 0.28);
  pointer-events: none;
}

.icon-slot:has(> img) img {
  position: relative;
  z-index: 1;
  padding: 0.55rem;
  filter: drop-shadow(0 5px 12px rgba(1, 1, 34, 0.1));
}

.icon-slot:has(> img) .icon-slot__placeholder {
  display: none;
}

/* Size variants */
.icon-slot--hero {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
}

.icon-slot--hero .icon-slot__placeholder {
  border-radius: var(--radius-xl);
  border-width: 3px;
  padding: var(--space-4);
}

.icon-slot--hero .icon-slot__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.icon-slot--hero .icon-slot__prompt {
  font-size: 0.68rem;
  -webkit-line-clamp: 5;
}

.icon-slot--lg {
  width: 56px;
  height: 56px;
  transform: rotate(-3deg);
}

.icon-slot--lg:has(> img) {
  width: 5.75rem;
  height: 5.75rem;
  transform: rotate(-2deg);
}

.icon-slot--md {
  width: 44px;
  height: 44px;
  transform: rotate(-4deg);
}

.icon-slot--md:has(> img) {
  width: 4.5rem;
  height: 4.5rem;
  transform: rotate(-2deg);
}

.icon-slot--sm {
  width: 48px;
  height: 48px;
}

.icon-slot--xs {
  width: 28px;
  height: 28px;
}

.icon-slot--partner {
  width: 100%;
  height: 40px;
}

.icon-slot--partner .icon-slot__placeholder {
  border-radius: var(--radius-pill);
  border-width: 2px;
}

.icon-slot--partner .icon-slot__label {
  font-size: 0.55rem;
}

.icon-slot--partner .icon-slot__prompt {
  -webkit-line-clamp: 2;
}

.icon-slot--card {
  width: 72px;
  height: 72px;
  margin-bottom: var(--space-3);
}

.icon-slot--card .icon-slot__placeholder {
  border-radius: var(--radius-lg);
}

/* Context wrappers — variant H offset orange circle */
.feature__icon.icon-slot,
.loan-type__icon.icon-slot,
.how-step__icon-wrap.icon-slot,
.help-topic__icon.icon-slot,
.cost101-card__icon.icon-slot {
  transform: rotate(-2deg);
}

.loan-type__icon.icon-slot:has(> img) {
  width: 4.5rem;
  height: 4.5rem;
}

.red-flag__icon.icon-slot { transform: none; border-radius: 50%; }
.red-flag__icon .icon-slot__placeholder {
  border-radius: 50%;
  border-color: #FECACA;
  background: #FEE2E2;
}

.help-topic__icon.icon-slot {
  margin-bottom: var(--space-3);
}

.help-topic__icon.icon-slot .icon-slot__placeholder {
  border-color: rgba(234, 115, 40, 0.4);
  background: rgba(255, 255, 255, 0.65);
}

.help-topic--sidebar .help-topic__icon.icon-slot:has(> img) {
  width: 3.75rem;
  height: 3.75rem;
}

.cost101-card__icon.icon-slot {
  float: right;
  margin: 0 0 var(--space-2) var(--space-3);
}

.offer__logo.icon-slot {
  margin-bottom: 0.35rem;
}

.offer__logo .icon-slot__placeholder {
  border-radius: var(--radius-md);
}

/* -----------------------------
   23. Scroll reveals
   ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-quart), transform 0.7s var(--ease-out-quart);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
   24. Utilities
   ----------------------------- */
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.no-scroll { overflow: hidden; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* -----------------------------
   25. Responsive
   ----------------------------- */
@media (min-width: 641px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .offers { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(4, 1fr); }
  .help-layout {
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: var(--space-6) var(--space-8);
  }
  .help-layout__sidebar {
    position: sticky;
    top: 5.5rem;
  }
  .help-direct__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: var(--space-3);
  }
  .help-direct__inboxes {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-3);
    min-height: 100%;
  }
  .help-direct__inboxes .help-direct__card {
    min-height: 0;
  }
  .help-direct__contact {
    align-self: stretch;
    height: 100%;
  }
  .cost101 { grid-template-columns: repeat(2, 1fr); }
  .loan-types { grid-template-columns: repeat(3, 1fr); }
  .glossary { grid-template-columns: repeat(2, 1fr); }
  .hero__cta-row { flex-direction: row; align-items: center; justify-content: center; }
  .hero-path { max-width: 44rem; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .container { padding: 0 var(--space-5); }
  .section { padding: var(--space-9) 0; }
  .calc__layout { grid-template-columns: 1.05fr 0.95fr; }
  .coverage__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    align-items: start;
  }
  .faq { grid-template-columns: repeat(2, 1fr); gap: var(--space-2) var(--space-3); }
  .concept-a { grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; }
  .concept-a__matrix { grid-template-columns: 1fr 1fr; }
  .concept-a__stage { margin-top: var(--space-9); }
  .concept-b__layout {
    grid-template-columns: 1fr 0.95fr;
    grid-template-areas:
      "stage header"
      "stage nav";
    gap: var(--space-5) var(--space-7);
    align-items: start;
  }
  .concept-b__header { grid-area: header; max-width: none; margin-inline: auto; }
  .concept-b__nav { grid-area: nav; }
  .concept-b__stage {
    grid-area: stage;
    justify-self: center;
    align-self: start;
    justify-content: flex-start;
    min-height: 0;
    padding-top: var(--space-2);
  }
  .concept-b__display { width: min(310px, 100%); }
  .concept-b__thumbs { max-width: min(400px, 100%); }
  .product-details {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "shot header"
      "shot terms"
      "shot note";
    gap: var(--space-6) var(--space-7);
    align-items: start;
  }
  .product-details__header { grid-area: header; max-width: none; margin-inline: auto; }
  .product-details__shot { grid-area: shot; margin: 0; justify-self: start; align-self: start; }
  .product-details__terms { grid-area: terms; max-width: none; }
  .product-details__note { grid-area: note; max-width: none; }
}

@media (min-width: 1025px) {
  .nav-desktop { display: inline-flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
  .offers { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .sparkle { animation: none; }
  .pattern-bloom { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
