/* ===== Design tokens ===== */
:root {
  --navy-900: #071B33;
  --navy-850: #0A2647;
  --navy-800: #0F3766;
  --blue-700: #185FA5;
  --blue-600: #2A72BE;
  --blue-400: #4A90D9;
  --amber: #F5B400;
  --amber-dark: #8A6300;
  --white: #FFFFFF;
  --ink-on-amber: #4A3600;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.76);
  --text-muted: rgba(255, 255, 255, 0.56);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --surface-1: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);

  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --shadow-md: 0 16px 40px rgba(2, 10, 22, 0.35);
  --shadow-lg: 0 28px 70px rgba(2, 10, 22, 0.5);

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

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--navy-900);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}
p { margin: 0; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--navy-900);
  padding: var(--space-2) var(--space-3);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-3); }
.container-narrow { max-width: 800px; }

/* ===== Backdrop: shared page glow ===== */
body {
  background-image:
    radial-gradient(circle at 10% 0%, rgba(24, 95, 165, 0.28), transparent 40%),
    radial-gradient(circle at 90% 8%, rgba(245, 180, 0, 0.09), transparent 35%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 100%);
  background-attachment: fixed;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  cursor: pointer;
  border: none;
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}
.btn-primary {
  position: relative;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-400));
  color: var(--white);
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 550ms ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(74, 144, 217, 0.4); }
.btn-primary:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { display: none; }
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-amber {
  background: var(--amber);
  color: var(--ink-on-amber);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245, 180, 0, 0.35); }
.btn-ghost {
  background: var(--surface-1);
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-2); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 27, 51, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}
.brand-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
}
.main-nav { display: none; gap: var(--space-4); }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}
.main-nav a:hover { color: var(--white); border-color: var(--blue-400); }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--white);
  transition: transform var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 767px) {
  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-850);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0 var(--space-3);
    gap: var(--space-1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 320ms var(--ease-out), opacity 220ms var(--ease-out), transform 280ms var(--ease-out), padding 320ms var(--ease-out);
  }
  .main-nav[data-open="true"] {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    padding: var(--space-2) var(--space-3) var(--space-3);
  }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .header-actions .btn.btn-sm { display: none; }
  .main-nav a.nav-cta {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, var(--blue-700), var(--blue-400));
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--space-2);
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .nav-cta { display: none; }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .main-nav { transition: none; }
}

/* ===== Basket ===== */
.basket-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
}
.basket-toggle:hover { border-color: var(--border-strong); }
.basket-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.basket-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}
.basket-count.is-popping { animation: basketBadgePop 420ms var(--ease-out); }
@keyframes basketBadgePop {
  0% { transform: scale(1); }
  35% { transform: scale(1.5) rotate(-8deg); }
  60% { transform: scale(0.9) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}

.basket-flyer {
  position: fixed;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 260;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(2, 10, 22, 0.45);
  background: var(--blue-400);
}
.basket-flyer svg { width: 17px; height: 17px; fill: var(--navy-900); }
.basket-flyer-guide { background: var(--amber); }

.basket-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 24, 0.6);
  backdrop-filter: blur(2px);
  z-index: 199;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}
.basket-overlay.is-open { opacity: 1; }

.basket-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(380px, 100vw);
  background: var(--navy-850);
  border-left: 1px solid var(--border-strong);
  box-shadow: -20px 0 50px rgba(2, 10, 22, 0.5);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 350ms var(--ease-out);
}
.basket-drawer.is-open { transform: translateX(0); }
.basket-drawer-head {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--border);
}
.basket-drawer-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at 15% 0%, rgba(74, 144, 217, 0.25), transparent 70%);
  pointer-events: none;
}
.basket-drawer-head h2 { position: relative; font-size: 19px; margin: 0; }
.basket-close {
  position: relative;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--white); font-size: 18px; line-height: 1;
}
.basket-close:hover { border-color: var(--border-strong); }
.basket-drawer-body { flex: 1; overflow-y: auto; padding: var(--space-3); display: flex; flex-direction: column; }

.basket-empty { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--text-secondary); margin: auto 0; font-size: 15px; line-height: 1.6; }
.basket-empty-icon { width: 44px; height: 44px; fill: none; stroke: var(--text-muted); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; opacity: 0.5; margin-bottom: 4px; }
.basket-empty p { margin-bottom: 4px; }

.basket-line-items { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-3); }

.basket-crosssell {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  margin-bottom: var(--space-3);
}
.basket-crosssell-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(74, 144, 217, 0.16);
}
.basket-crosssell-icon svg { width: 16px; height: 16px; fill: var(--blue-400); }
.basket-crosssell-icon-guide { background: rgba(245, 180, 0, 0.16); }
.basket-crosssell-icon-guide svg { fill: var(--amber); }
.basket-crosssell-info { flex: 1; min-width: 0; }
.basket-crosssell-title { font-family: var(--font-heading); font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.basket-crosssell-sub { font-size: 12px; color: var(--text-secondary); }
.basket-crosssell-add {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--blue-400);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  border: none;
}
.basket-crosssell-add:hover { filter: brightness(1.1); }

.basket-complete-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 180, 0, 0.12);
  border: 1px solid rgba(245, 180, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: var(--space-3);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
}
.basket-complete-note .icon-check { fill: var(--amber); width: 16px; height: 16px; flex-shrink: 0; }
.basket-line-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  animation: basketItemIn 320ms var(--ease-out);
  transition: border-color var(--duration) var(--ease-out);
}
.basket-line-item:hover { border-color: var(--border-strong); }
.basket-line-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(74, 144, 217, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  pointer-events: none;
}
.basket-line-item:hover::before { opacity: 1; }
.basket-line-icon, .basket-line-info, .basket-remove { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .basket-line-item { animation: none; } }
@keyframes basketItemIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}
.basket-line-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(74, 144, 217, 0.16);
}
.basket-line-icon svg { width: 18px; height: 18px; fill: var(--blue-400); }
.basket-line-icon-guide { background: rgba(245, 180, 0, 0.16); }
.basket-line-icon-guide svg { fill: var(--amber); }
.basket-line-info { flex: 1; min-width: 0; }
.basket-line-info .price-row { margin-bottom: 0; }
.basket-line-info .price-old { font-size: 12px; }
.basket-line-info .price-new { font-size: 15px; }
.basket-line-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; margin-bottom: 4px; line-height: 1.3; }
.basket-remove {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: 50%;
  color: var(--text-muted); font-size: 15px; line-height: 1;
}
.basket-remove:hover { color: var(--white); border-color: var(--border-strong); }

.basket-footer {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}
.basket-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at 100% 0%, rgba(245, 180, 0, 0.14), transparent 70%);
  pointer-events: none;
}
.basket-savings-row {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--text-secondary);
  margin-bottom: 8px;
}
.basket-savings-row span:last-child { color: var(--amber); font-size: 17px; }
.basket-bundle-row {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--text-muted);
  margin-bottom: 8px;
}
.basket-bundle-row span:last-child { color: var(--blue-400); font-weight: 600; }
.basket-total-row {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--text-secondary);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.basket-total-row span:last-child { font-weight: 700; font-size: 16px; color: var(--white); }
.basket-payback-note {
  position: relative;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: var(--space-3);
}
.basket-checkout-btn { position: relative; display: block; width: 100%; text-align: center; }
.basket-checkout-btn:disabled { opacity: 0.7; cursor: default; }
.basket-checkout-error { color: #E5484D; font-size: 13px; text-align: center; margin-top: 8px; }

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: var(--space-2);
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-7);
  overflow: hidden;
}
.hero-blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: float 16s ease-in-out infinite;
}
.blob-1 { width: 460px; height: 460px; background: var(--blue-700); top: -160px; left: -140px; }
.blob-2 { width: 340px; height: 340px; background: var(--amber); top: 20%; right: -100px; opacity: 0.16; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, -22px) scale(1.06); }
}

.hero-inner { position: relative; z-index: 2; display: grid; gap: var(--space-6); align-items: center; }
.hero-copy h1 {
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 800;
  margin: var(--space-3) 0 var(--space-2);
  line-height: 1.06;
}
.hero-copy h1 .grad {
  background: linear-gradient(90deg, var(--blue-400), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: 18px; color: var(--text-secondary); max-width: 46ch; margin-bottom: var(--space-4); }

.stat-strip { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-4); }
.stat .n { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--amber); }
.stat .l { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* Hero proof strip: percentage centered, cost/sell flanking */
.hero-proof {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.hero-proof-pills { display: flex; align-items: center; justify-content: center; gap: var(--space-2); flex-wrap: wrap; }
.hero-proof-pill {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-align: center;
  min-width: 96px;
}
.hero-proof-pill .v { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--white); }
.hero-proof-pill .l { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-proof-arrow { color: var(--blue-400); font-size: 18px; flex-shrink: 0; }
.hero-proof-center { text-align: center; }
.hero-proof-percent { font-family: var(--font-heading); font-weight: 800; font-size: clamp(36px, 7vw, 48px); color: var(--amber); line-height: 1; }
.hero-proof-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
@media (max-width: 480px) {
  .hero-proof-pills { gap: 8px; }
  .hero-proof-pill { min-width: 84px; padding: 8px 12px; }
}

.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: var(--space-3); }
.price-row-center { justify-content: center; }
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.price-new { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--white); }
.micro-note { margin-top: var(--space-2); font-size: 13px; color: var(--text-muted); }

/* Hero visual: glass guide card */
.hero-visual { display: flex; justify-content: center; position: relative; z-index: 2; }
.glass-card {
  width: min(360px, 100%);
  background: var(--surface-1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transition: transform 400ms var(--ease-out);
}
.glass-card:hover { transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg); }
.glass-card-star svg { width: 32px; height: 32px; fill: var(--amber); margin: 0 auto var(--space-2); }
.glass-card-title { font-family: var(--font-heading); font-weight: 800; font-size: 26px; }
.glass-card-subtitle {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-400); margin: 4px 0 var(--space-3);
}
.glass-card-tagline { font-size: 14px; color: var(--text-secondary); margin-top: var(--space-2); }
.glass-card-list { display: flex; flex-direction: column; gap: 0; text-align: left; }
.glass-card-list .row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; padding: 12px 0; border-top: 1px solid var(--border);
}
.glass-card-list .row:first-child { border-top: none; }
.glass-card-list .row svg { width: 16px; height: 16px; fill: var(--blue-400); flex-shrink: 0; }
.glass-card-cta {
  display: block; margin-top: var(--space-3); font-size: 13px; font-weight: 600;
  color: var(--amber);
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
  .hero-visual { justify-content: flex-end; }
}
.hero-inner:has(.hero-copy:only-child) { grid-template-columns: 1fr; }
.hero-inner:has(.hero-copy:only-child) .hero-copy { max-width: 640px; }

/* Flat, single-column hero variant (product pages e.g. guide.html) */
.hero-flat { background: var(--navy-900); }
.hero-single { max-width: 640px; margin: 0 auto; text-align: center; }
.hero-single .hero-sub { margin-left: auto; margin-right: auto; }
.hero-single .price-row { justify-content: center; }
.included-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: var(--space-4) 0 0;
}
.hero-single .included-strip { justify-content: center; }
.trust-strip { margin-top: var(--space-3); margin-bottom: var(--space-2); }
.included-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}
.included-pill svg { width: 14px; height: 14px; fill: var(--blue-400); flex-shrink: 0; }

/* ===== Sections ===== */
.section { padding: var(--space-7) 0; position: relative; }
@media (max-width: 700px) {
  .section { padding: var(--space-5) 0; }
  .hero { padding-bottom: var(--space-5); }
}
.section h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; max-width: 22ch; }
.section-sub { font-size: 18px; color: var(--text-secondary); max-width: 62ch; margin-top: var(--space-2); margin-bottom: var(--space-6); }
.section-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--space-3); }

/* Benefit cards ("What's inside") */
.benefit-grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.benefit-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.benefit-card:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-2px); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(74, 144, 217, 0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.benefit-icon svg { width: 22px; height: 22px; fill: var(--blue-400); }
.benefit-card h3 { font-size: 19px; margin-bottom: 10px; }
.benefit-card p { color: var(--text-secondary); font-size: 15px; }

@media (min-width: 700px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); } }

/* Guide page mockup preview */
.guide-page-mock {
  max-width: 480px;
  margin: var(--space-5) auto 0;
  background: #F7F3EA;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(2, 10, 22, 0.45), 0 8px 20px rgba(2, 10, 22, 0.3);
  transform: rotate(-1.2deg);
  overflow: hidden;
  transition: transform 400ms var(--ease-out);
}
.guide-page-mock:hover { transform: rotate(0deg) scale(1.02); }
.guide-page-mock-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 12px 20px;
  background: #EDE6D6;
  border-bottom: 1px dashed #C9BFA5;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8A7C5C;
}
.guide-page-mock-body { padding: 24px 22px 28px; }
.guide-page-mock-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: #1D2B3A;
  margin-bottom: 12px;
}
.guide-page-mock-body p { color: #3B3126; font-size: 14.5px; line-height: 1.65; margin-bottom: 12px; }
.guide-page-mock-body p:last-child { margin-bottom: 0; }
.guide-page-mock-body strong { color: #1D2B3A; }
.preview-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: var(--space-3); margin-bottom: var(--space-4); }
@media (prefers-reduced-motion: reduce) { .guide-page-mock { transition: none; } }

/* Sticky mobile buy bar */
.sticky-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  background: rgba(7, 27, 51, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-strong);
  padding: 10px var(--space-3);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
}
.sticky-buy-bar.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-buy-info { display: flex; align-items: baseline; gap: 8px; }
.sticky-buy-info .price-old { font-size: 12px; margin-bottom: 0; }
.sticky-buy-info .price-new { font-size: 18px; margin-bottom: 0; }
@media (min-width: 900px) { .sticky-buy-bar { display: none; } }
@media (prefers-reduced-motion: reduce) { .sticky-buy-bar { transition: none; } }

/* 404 */
.not-found-hero { padding: var(--space-7) 0; min-height: 60vh; display: flex; align-items: center; }
.not-found { max-width: 560px; margin: 0 auto; text-align: center; }
.not-found-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  background: linear-gradient(90deg, var(--blue-400), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-2);
}
.not-found .dual-cta-row { justify-content: center; margin-top: var(--space-4); }

/* Legal content */
.legal-content { padding-bottom: var(--space-6); }
.legal-content h2 { font-size: 20px; margin-top: var(--space-5); margin-bottom: var(--space-2); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 16px; margin-top: var(--space-3); margin-bottom: 6px; color: var(--white); }
.legal-content p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: var(--space-2); }
.legal-content ul, .legal-content ol { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin: 0 0 var(--space-2) 1.2em; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--blue-400); }
.legal-content .legal-meta { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-4); }
.legal-notice {
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

/* Bundle deal */
.bundle-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: -8px;
  margin-bottom: var(--space-3);
}
.bundle-note a { color: var(--amber); font-weight: 600; }

.bundle-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  background: var(--surface-1);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-4);
}
.bundle-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at 0% 50%, rgba(245, 180, 0, 0.14), transparent 70%);
  pointer-events: none;
}
.bundle-banner-info { position: relative; }
.bundle-banner-title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--amber); margin-bottom: 2px; }
.bundle-banner-sub { font-size: 13px; color: var(--text-secondary); }
.bundle-banner .btn { position: relative; flex-shrink: 0; }
@media (max-width: 480px) {
  .bundle-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* Pull quote */
.pull-quote {
  max-width: 760px;
  margin: var(--space-6) auto 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  color: var(--white);
  padding: var(--space-4) var(--space-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pull-quote .grad {
  background: linear-gradient(90deg, var(--blue-400), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Earnings scaling proof — mobile-first: compact 3-up from the smallest screens
   so the bars stay comparable side by side instead of stacking and losing the chart. */
.earnings-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-4);
}
.earnings-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
}
.earnings-card .n { font-family: var(--font-heading); font-weight: 700; font-size: 10.5px; color: var(--text-secondary); line-height: 1.25; }
.earnings-card .v { font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--amber); margin: 4px 0; }
.earnings-card .l { font-size: 12px; color: var(--text-muted); }
.earnings-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: var(--space-2); }
.earnings-bar-wrap { height: 46px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 6px; }
.earnings-bar {
  width: 20px;
  height: 0%;
  opacity: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--amber));
  transition: opacity 700ms var(--ease-out), height 1.8s var(--ease-out);
}
.earnings-bar.is-visible { height: var(--target-h); opacity: 1; }

@media (min-width: 500px) {
  .earnings-grid { gap: var(--space-2); }
  .earnings-card { padding: var(--space-2); border-radius: var(--radius-md); }
  .earnings-card .n { font-size: 13px; }
  .earnings-card .v { font-size: 20px; }
  .earnings-bar-wrap { height: 66px; }
  .earnings-bar { width: 32px; }
}
@media (min-width: 700px) {
  .earnings-grid { gap: var(--space-3); }
  .earnings-card { padding: var(--space-3); }
  .earnings-card .n { font-size: 15px; }
  .earnings-card .v { font-size: 26px; margin: 6px 0; }
  .earnings-bar-wrap { height: 90px; margin-bottom: var(--space-2); }
  .earnings-bar { width: 44px; }
}

/* Product cards (products.html) — compact, immersive spotlight+tilt */
.product-select-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-4);
}
@media (min-width: 800px) { .product-select-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); } }
.product-select-grid > .reveal { display: flex; }
.product-select-grid > .reveal > .product-card { width: 100%; }

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg));
  transition: transform 350ms var(--ease-out), border-color var(--duration) var(--ease-out);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(74, 144, 217, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  pointer-events: none;
}
.product-card:hover,
.product-card:focus,
.product-card:focus-within { border-color: var(--border-strong); }
.product-card:hover::before,
.product-card:focus::before,
.product-card:focus-within::before { opacity: 1; }
.product-card { text-decoration: none; color: inherit; }
.product-card-amber::before { background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(245, 180, 0, 0.18), transparent 70%); }

.product-card-top { position: relative; z-index: 1; display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2); }
.product-card-icon { width: 40px; height: 40px; border-radius: 11px; background: rgba(74, 144, 217, 0.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-card-icon svg { width: 20px; height: 20px; fill: var(--blue-400); }
.product-card-amber .product-card-icon { background: rgba(245, 180, 0, 0.16); }
.product-card-amber .product-card-icon svg { fill: var(--amber); }
.product-card-eyebrow { font-family: var(--font-heading); font-weight: 700; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-400); }
.product-card-amber .product-card-eyebrow { color: var(--amber); }
.product-card h2 { position: relative; z-index: 1; font-size: 19px; margin-bottom: 6px; }
.product-card-tagline { position: relative; z-index: 1; color: var(--text-secondary); font-size: 14px; margin-bottom: var(--space-3); }
.product-card-footer {
  position: relative; z-index: 1;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}
.product-card-footer .price-row { margin-bottom: 0; }
@media (min-width: 420px) and (max-width: 799px), (min-width: 800px) {
  .product-card { padding: var(--space-4); }
}

/* Rail (how it works) */
.rail-wrap { position: relative; margin-bottom: var(--space-6); }
.rail { position: relative; display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.rail-line { display: none; }
.node { position: relative; text-align: left; background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-3); }
.node .dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); border: 2px solid var(--blue-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--white);
  margin-bottom: var(--space-2);
}
.node h3 { font-size: 17px; margin-bottom: 6px; }
.node p { font-size: 14px; color: var(--text-secondary); }

@media (min-width: 700px) { .rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .rail { grid-template-columns: repeat(5, 1fr); }
  .rail-line { display: block; position: absolute; top: 20px; left: 4%; right: 4%; height: 2px; background: var(--border); }
  .rail-line-fill {
    position: absolute; top: 0; left: 0; height: 100%; width: 100%;
    background: linear-gradient(90deg, var(--blue-400), var(--amber));
    transform-origin: left; transform: scaleX(0);
  }
  .rail-line-fill.is-visible { transition: transform 1.4s var(--ease-out); transform: scaleX(1); }
  .node { background: transparent; border: none; padding: 0; text-align: center; }
  .node .dot { margin: 0 auto var(--space-2); }
}

/* Step list (guide.html — deliberately different from the homepage rail) */
.step-list { display: flex; flex-direction: column; margin-bottom: var(--space-5); }
.step-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}
.step-list-item:last-child { border-bottom: none; }
.step-list-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--amber);
  min-width: 2.4ch;
  line-height: 1.3;
  flex-shrink: 0;
}
.step-list-item h3 { font-size: 17px; margin-bottom: 4px; }
.step-list-item p { color: var(--text-secondary); font-size: 15px; }

/* Markup / proof box */
.markup-box {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid; gap: var(--space-4); text-align: center;
}
.markup-percent { font-family: var(--font-heading); font-size: clamp(40px, 7vw, 60px); font-weight: 800; color: var(--amber); }
.markup-label { color: var(--text-secondary); font-size: 15px; margin-top: 4px; }
.markup-flow { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.markup-pill { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-3) var(--space-4); min-width: 220px; }
.markup-pill-sale { background: linear-gradient(90deg, var(--blue-700), var(--blue-400)); border-color: transparent; }
.markup-pill-label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.markup-pill-sale .markup-pill-label { color: rgba(255, 255, 255, 0.8); }
.markup-pill-value { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--white); }
.markup-arrow { font-size: 22px; color: var(--blue-400); }

@media (min-width: 700px) { .markup-flow { flex-direction: row; } }
@media (min-width: 900px) {
  .markup-box { grid-template-columns: 1fr 1fr; text-align: left; align-items: center; }
  .markup-flow { justify-content: flex-end; }
}

/* Guide teaser (How It Works -> sell the guide) */
.guide-teaser {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  margin-top: var(--space-5);
  text-align: center;
  overflow: hidden;
}
.guide-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 50% 0%, rgba(245, 180, 0, 0.14), transparent 70%);
  pointer-events: none;
}
.guide-teaser-tag {
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-2);
}
.guide-teaser h3 {
  position: relative;
  font-size: clamp(20px, 3vw, 26px);
  max-width: 34ch;
  margin: 0 auto var(--space-3);
}
.guide-teaser-list {
  position: relative;
  text-align: left;
  max-width: 44ch;
  margin: 0 auto var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-teaser-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.guide-teaser-list .icon-check { margin-top: 2px; }
.blur-text {
  filter: blur(5px);
  user-select: none;
  cursor: default;
}
.guide-teaser-note {
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto var(--space-4);
}

/* Conversion trend chart */
.trend-chart {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-5);
}
.trend-svg { width: 220px; max-width: 100%; height: auto; flex-shrink: 0; }
.trend-line { fill: none; stroke: url(#trendGrad); stroke-width: 3; stroke-linecap: round; }
.trend-dot { fill: var(--amber); opacity: 0; transition: opacity 400ms var(--ease-out) 1.6s; }
.trend-chart.is-visible .trend-dot { opacity: 1; }
.trend-label { font-size: 14px; font-weight: 600; color: var(--text-secondary); margin: 0; }

/* NFC card showcase */
.card-showcase { display: grid; gap: var(--space-4); margin-bottom: var(--space-5); }
.showcase-link {
  display: block;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}
.showcase-link:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-3px); }
.showcase-img-frame { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; padding: var(--space-3); }
.showcase-img-frame::before {
  content: '';
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.28), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}
.showcase-link img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(2, 10, 22, 0.55));
}
.card-illus { width: 100%; height: 100%; max-width: 260px; margin: 0 auto; display: block; }
.showcase-caption {
  padding: var(--space-2) var(--space-3) var(--space-3);
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.showcase-caption span:first-child { font-weight: 600; color: var(--white); }
.showcase-caption .view-link { font-size: 13px; color: var(--amber); font-weight: 600; }
@media (min-width: 700px) { .card-showcase { grid-template-columns: repeat(2, 1fr); } }

.feature-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
.feature-grid h3 { font-size: 17px; margin-bottom: 6px; }
.feature-grid p { color: var(--text-secondary); font-size: 15px; }
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-5); }
.faq-item { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-3); }
.faq-item summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--white);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--amber); flex-shrink: 0; transition: transform var(--duration) var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  color: var(--text-secondary);
  font-size: 15px;
  transition: max-height 300ms var(--ease-out), opacity 220ms var(--ease-out), margin-top 300ms var(--ease-out);
}
.faq-item[open] p {
  max-height: 160px;
  opacity: 1;
  margin-top: var(--space-2);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item p { transition: none; }
}

/* Pricing / final CTA */
.pricing-card { max-width: 640px; margin: 0 auto; text-align: center; }
.pricing-card h2 { margin: var(--space-2) 0; }
.pricing-sub { color: var(--text-secondary); font-size: 17px; margin-bottom: var(--space-4); max-width: 50ch; margin-left: auto; margin-right: auto; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-4); }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 16px; color: var(--text-secondary); }
.check-list-center { align-items: center; margin-left: auto; margin-right: auto; width: fit-content; }
.dual-cta-row { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-3); }
.icon-check { flex-shrink: 0; fill: var(--blue-400); width: 22px; height: 22px; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding-top: var(--space-6); }
.footer-inner { display: grid; gap: var(--space-5); padding-bottom: var(--space-5); }
.footer-logo { height: 22px; margin-bottom: var(--space-2); filter: brightness(0) invert(1); }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 32ch; }
.footer-col-title { font-family: var(--font-heading); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); margin-bottom: var(--space-2); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--blue-400); }
.footer-bottom { border-top: 1px solid var(--border); padding: var(--space-3) var(--space-3); font-size: 13px; color: var(--text-muted); }
@media (min-width: 700px) { .footer-inner { grid-template-columns: 2fr 1fr; } }

/* ===== Product page specifics ===== */
.spec-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; margin: var(--space-6) 0; }
.spec-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4); }
.spec-card .k { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.spec-card .v { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--white); }
@media (min-width: 700px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; margin-bottom: var(--space-6); }
.gallery-item { position: relative; background: var(--surface-1); border-radius: var(--radius-md); padding: var(--space-4); border: 1px solid var(--border); overflow: hidden; }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.25), transparent 70%);
  filter: blur(32px);
  z-index: 0;
}
.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(2, 10, 22, 0.5));
}
.gallery-caption { text-align: center; margin-top: var(--space-2); color: var(--text-primary); font-weight: 600; }
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: var(--space-3); }
.breadcrumb a { color: var(--blue-400); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
