:root {
  --gold-light: #e2c97e;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --rose-dim: rgba(201, 123, 132, 0.15);
  --ink-2: #1a1820;
  --ink-3: #252230;
  --surface: #1e1c26;
  --surface-2: #252230;
  --muted-2: #554f6a;
  --border-gold: rgba(201, 168, 76, 0.3);
  --text: #e8e4f0;
  --text-dim: #a09cb8;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.22s ease;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

/* ── LIGHT MODE OVERRIDES FOR SUBSCRIPTION PAGE ── */
body.light-mode {
  --ink-2: #ede7dc;
  --ink-3: #e2d9cc;
  --surface: #ffffff;
  --surface-2: #f5f1eb;
  --text: #1a1208;
  --text-dim: #3d3020;
  --muted-2: #8b7a6a;
  --border-gold: rgba(139, 100, 40, 0.35);
  --gold-dim: rgba(180, 130, 40, 0.12);
  --gold-light: #8b6914;
  --rose-dim: rgba(180, 80, 90, 0.1);
}

/* ── NAV ICON FIX (search, filter, theme toggle) — Subscription page ── */
.btn-nav-search,
.theme-toggle {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.btn-nav-search:hover,
.theme-toggle:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

body.light-mode .btn-nav-search,
body.light-mode .theme-toggle {
  background: rgba(139, 100, 40, 0.1);
  border-color: rgba(139, 100, 40, 0.2);
  color: #8b6914;
}
body.light-mode .btn-nav-search:hover,
body.light-mode .theme-toggle:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Theme toggle moon/sun swap */
.theme-toggle .icon-dark,
.theme-toggle .icon-light {
  display: none;
  line-height: 1;
}
body:not(.light-mode) .theme-toggle .icon-dark {
  display: block;
}
body.light-mode .theme-toggle .icon-light {
  display: block;
}

body.light-mode .announce-bar {
  background: #b8860b;
  color: #fff;
}

body.light-mode .hero-sub::before {
  background: radial-gradient(
    ellipse 70% 55% at 50% 0%,
    rgba(180, 130, 40, 0.1) 0%,
    transparent 70%
  );
}

body.light-mode .plan-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.light-mode .plan-card.featured {
  border-color: #b8860b;
  background: linear-gradient(160deg, rgba(180, 130, 40, 0.06) 0%, #ffffff 50%);
}

body.light-mode .plan-name {
  color: #1a1208;
}

body.light-mode .plan-price {
  color: #1a1208;
}

body.light-mode .plan-retail s {
  color: #8b7a6a;
}

body.light-mode .value-card,
body.light-mode .policy-card,
body.light-mode .dash-card,
body.light-mode .dash-pick-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.09);
}

body.light-mode .value-section,
body.light-mode .policy-section {
  background: #ede7dc;
  border-color: rgba(139, 100, 40, 0.14);
}

body.light-mode .price-table tbody tr:hover {
  background: #f5f1eb;
}

body.light-mode .price-table thead th {
  color: #8b6914;
}

body.light-mode .price-table tbody td:first-child {
  color: #1a1208;
}

body.light-mode .price-table tbody td {
  color: #3d3020;
}

body.light-mode .savings-mini-table th {
  color: #8b6914;
  border-color: rgba(139, 100, 40, 0.3);
}

body.light-mode .savings-mini-table td {
  color: #3d3020;
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .savings-mini-table td:first-child {
  color: #1a1208;
}

body.light-mode .savings-mini-table .save-num {
  color: #7a5c00;
}

body.light-mode .faq-q {
  color: #1a1208;
}

body.light-mode .faq-q:hover {
  color: #8b6914;
}

body.light-mode .faq-a {
  color: #3d3020;
}

body.light-mode .faq-item {
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .faq-icon {
  color: #8b6914;
  border-color: rgba(139, 100, 40, 0.3);
  background: rgba(180, 130, 40, 0.08);
}

body.light-mode .cta-banner {
  background: linear-gradient(
    135deg,
    rgba(180, 130, 40, 0.08) 0%,
    rgba(180, 80, 90, 0.04) 100%
  );
  border-color: rgba(139, 100, 40, 0.22);
}

body.light-mode .cta-banner h2 {
  color: #1a1208;
}

body.light-mode .cta-banner p {
  color: #3d3020;
}

body.light-mode .btn-ghost-lg {
  color: #1a1208;
  border-color: rgba(0, 0, 0, 0.18);
}

body.light-mode .btn-ghost-lg:hover {
  border-color: #b8860b;
  color: #8b6914;
}

body.light-mode .availability-note span {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #3d3020;
}

body.light-mode .modal {
  background: #ffffff;
  border-color: rgba(139, 100, 40, 0.25);
}

body.light-mode .modal h3 {
  color: #1a1208;
}

body.light-mode .modal-close {
  color: #6b5e4e;
}

body.light-mode .modal-close:hover {
  color: #1a1208;
}

body.light-mode .modal-input {
  background: #f5f1eb;
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1208;
}

body.light-mode .modal-input::placeholder {
  color: #6b5e4e;
}

body.light-mode .modal-input:focus {
  border-color: #b8860b;
}

body.light-mode .modal-success h4 {
  color: #1a1208;
}

body.light-mode .modal-success p {
  color: #3d3020;
}

body.light-mode .hero-badge {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #3d3020;
}

body.light-mode .hero-savings {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .toggle-track {
  background: #ede7dc;
}

body.light-mode .billing-toggle span {
  color: #6b5e4e;
}

body.light-mode .billing-toggle span.active {
  color: #1a1208;
}

body.light-mode .plan-features li {
  color: #3d3020;
}

body.light-mode .plan-features li strong {
  color: #1a1208;
}

body.light-mode .plan-tagline {
  color: #3d3020;
}

body.light-mode .plan-price-suffix {
  color: #6b5e4e;
}

body.light-mode .plan-retail {
  color: #6b5e4e;
}

body.light-mode .policy-title {
  color: #1a1208;
}

body.light-mode .policy-desc {
  color: #3d3020;
}

body.light-mode .dash-plan-name {
  color: #1a1208;
}

body.light-mode .dash-pick-title {
  color: #1a1208;
}

body.light-mode .dash-pick-format {
  color: #6b5e4e;
}

body.light-mode .dash-subhead {
  color: #1a1208;
}

body.light-mode .dash-expiry-note {
  color: #6b5e4e;
}

body.light-mode .dash-carry-row .btn-carry-forward {
  color: #6b5e4e;
  border-color: rgba(0, 0, 0, 0.14);
}

body.light-mode .btn-carry-forward:hover {
  border-color: #b8860b;
  color: #8b6914;
}

body.light-mode .footer {
  background: #ede7dc;
  border-color: rgba(139, 100, 40, 0.14);
}

body.light-mode .footer-logo {
  color: #8b6914;
}

body.light-mode .footer-desc {
  color: #6b5e4e;
}

body.light-mode .footer-col h5 {
  color: #8b7a6a;
}

body.light-mode .footer-col ul a {
  color: #6b5e4e;
}

body.light-mode .footer-col ul a:hover {
  color: #8b6914;
}

body.light-mode .footer-bottom {
  color: #6b5e4e;
}

body.light-mode .disclaimer-text {
  color: #6b5e4e;
}

body.light-mode .section-title {
  color: #1a1208;
}

body.light-mode .section-sub {
  color: #3d3020;
}

body.light-mode .shipping-note {
  color: #6b5e4e;
}

body.light-mode .value-headline {
  color: #1a1208;
}

body.light-mode .value-detail {
  color: #3d3020;
}

body.light-mode .demo-flag {
  color: #a03040;
  background: rgba(180, 80, 90, 0.08);
  border-color: rgba(180, 80, 90, 0.25);
}

body.light-mode .hero-stat-label {
  color: #6b5e4e;
}

body.light-mode .hero-footnote {
  color: #6b5e4e;
}

body.light-mode .hero-sub h1 {
  color: #1a1208;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.gold {
  color: var(--gold);
}
.rose {
  color: var(--rose);
}
em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
}
a {
  color: inherit;
  text-decoration: none;
}

.announce-bar {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
}
.hero-sub {
  padding: 90px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 0%,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  background: var(--gold-dim);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.hero-sub h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.hero-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.hero-badge.gold-badge {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.hero-savings {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-footnote {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 48px;
}

.section {
  padding: 72px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 52px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}
.billing-toggle span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--transition);
}
.billing-toggle span.active {
  color: var(--text);
}
.billing-segment {
  display: inline-flex;
  background: var(--surface-2);
  border: 1.5px solid var(--border-gold);
  border-radius: 99px;
  padding: 4px;
  gap: 2px;
}
.segment-btn {
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 99px;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}
.segment-btn.active {
  background: var(--gold);
  color: var(--ink);
}
.segment-btn:hover:not(.active) {
  color: var(--text);
}
body.light-mode .segment-btn.active {
  color: #fff;
}
.save-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 3px 10px;
  border-radius: 99px;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.save-pill.show {
  opacity: 1;
  transform: translateY(0);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 880px;
  margin: 0 auto;
}

.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.plan-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.plan-card.featured {
  border-color: var(--gold);
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.08) 0%,
    var(--surface) 50%
  );
}
.plan-card.featured:hover {
  box-shadow: 0 20px 48px rgba(201, 168, 76, 0.18);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.plan-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.4;
}
.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.plan-price-suffix {
  font-size: 0.88rem;
  color: var(--text-dim);
}
.plan-retail {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.plan-retail s {
  color: var(--muted-2);
}
.plan-saving {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.plan-features li .check {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.plan-features li .check svg {
  width: 9px;
  height: 9px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan-features li strong {
  color: var(--text);
  font-weight: 600;
}
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  letter-spacing: 0.02em;
}
.btn-plan:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-plan.primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-plan.primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.4);
}

.annual-price {
  display: none;
}
.monthly-price {
  display: block;
}
body.show-annual .annual-price {
  display: block;
}
body.show-annual .monthly-price {
  display: none;
}

.value-section {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px;
}
.value-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.value-card:hover {
  border-color: var(--border-gold);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  text-align: center;
}
.value-plan-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
}
.value-headline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: center;
}
.savings-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.savings-mini-table th {
  text-align: left;
  color: var(--gold);
  font-weight: 700;
  padding: 6px 4px;
  border-bottom: 1px solid var(--border-gold);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.savings-mini-table td {
  padding: 7px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.savings-mini-table td:first-child {
  color: var(--text);
}
.savings-mini-table .save-num {
  color: var(--gold-light);
  font-weight: 700;
}
.value-detail {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.55;
}
.value-tbd-note {
  font-size: 0.75rem;
  color: var(--rose);
  margin-top: 10px;
  font-style: italic;
}

.price-table-section {
  padding: 72px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.price-table thead tr {
  border-bottom: 2px solid var(--border-gold);
}
.price-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.price-table tbody tr:hover {
  background: var(--surface);
}
.price-table tbody td {
  padding: 14px 16px;
  color: var(--text-dim);
}
.price-table tbody td:first-child {
  color: var(--text);
  font-weight: 500;
}
.price-table .tbd {
  color: var(--rose);
  font-style: italic;
}
.shipping-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

.policy-section {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
}
.policy-inner {
  max-width: 780px;
  margin: 0 auto;
}
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.policy-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.policy-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.policy-desc {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ─── SUBSCRIBER DASHBOARD (DEMO) ─── */
.dashboard-section {
  padding: 72px 24px;
  max-width: 880px;
  margin: 0 auto;
}
.demo-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-dim);
  border: 1px solid rgba(201, 123, 132, 0.4);
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin: 0 auto 32px;
  display: table;
}
.dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.dash-plan-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.dash-plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.dash-credit-pill {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 99px;
}
.dash-subhead {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.dash-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.dash-pick-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.dash-pick-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.dash-pick-format {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.dash-pick-btn {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px;
  border-radius: 99px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}
.dash-pick-btn:hover {
  background: var(--gold);
  color: var(--ink);
}
.dash-carry-row {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.btn-carry-forward {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.btn-carry-forward:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.dash-expiry-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}
.dash-expiry-note strong {
  color: var(--rose);
}

.faq-section {
  padding: 72px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
}
.faq-q:hover {
  color: var(--gold);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-dim);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 20px;
}

.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12) 0%,
    rgba(201, 123, 132, 0.07) 100%
  );
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 1.02rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-lg {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary-lg:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transform: translateY(-1px);
}
.btn-ghost-lg {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 99px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.btn-ghost-lg:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.availability-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 16px;
}
.availability-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
}
.flag {
  font-size: 1rem;
}

.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 52px 32px 32px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 220px;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1080px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.disclaimer-text {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
  line-height: 1.6;
  padding: 0 16px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--ink-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: var(--text);
}
.modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.modal-price-label {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.modal-saving-banner {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.5;
}
.modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--text-dim);
}
.modal-features li::before {
  content: "✦";
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 3px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-input {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.modal-input::placeholder {
  color: var(--muted);
}
.modal-input:focus {
  border-color: var(--gold);
}
.modal-legal {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}
.btn-modal-submit {
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 99px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--transition),
    box-shadow var(--transition);
  width: 100%;
  letter-spacing: 0.02em;
}
.btn-modal-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success .success-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.modal-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-success p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.theme-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-dim);
  padding: 4px;
  transition: color var(--transition);
}
.theme-btn:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .value-row {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 48px auto 0;
  }
  .policy-grid {
    grid-template-columns: 1fr;
  }
  .dash-picks {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .nav {
    padding: 0 16px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 60px 16px 52px;
  }
  .hero-savings {
    gap: 20px;
    padding: 16px 24px;
  }
  .hero-stat-num {
    font-size: 1.5rem;
  }
  .section {
    padding: 52px 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .modal {
    padding: 28px 22px;
  }
  .billing-toggle {
    font-size: 0.82rem;
  }
  .dash-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ─── AGGRESSIVE SPACING OVERRIDES ─── */
.hero-sub {
  padding: 40px 24px 32px;
}
.hero-badges {
  margin-bottom: 20px;
}
.hero-savings {
  padding: 14px 28px;
  margin-bottom: 16px;
}
.hero-footnote {
  margin-bottom: 16px;
}
.section {
  padding: 32px 24px;
}
.section-sub {
  margin-bottom: 22px;
}
.billing-toggle {
  margin-bottom: 18px;
}
.plans-grid {
  gap: 16px;
}
.plan-card {
  padding: 22px 22px 18px;
}
.plan-tagline {
  margin-bottom: 12px;
}
.plan-saving {
  margin-bottom: 14px;
}
.plan-divider {
  margin-bottom: 12px;
}
.plan-features {
  gap: 8px;
  margin-bottom: 16px;
}
.value-section {
  padding: 32px 24px;
}
.value-row {
  gap: 14px;
  margin-top: 20px;
}
.price-table-section {
  padding: 32px 24px;
}
.policy-section {
  padding: 32px 24px;
}
.policy-grid {
  gap: 12px;
  margin-top: 18px;
}
.policy-card {
  padding: 16px 18px;
}
.dashboard-section {
  padding: 32px 24px;
}
.demo-flag {
  margin: 0 auto 14px;
}
.dash-card {
  padding: 20px;
}
.dash-row {
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.faq-section {
  padding: 28px 24px;
}
.faq-q {
  padding: 14px 0;
}
.cta-banner {
  padding: 36px 24px;
}
.cta-banner p {
  margin: 0 auto 16px;
}
.footer {
  padding: 28px 32px 16px;
}
.disclaimer-text {
  margin: 18px auto 0;
}
