/* ============================================================
   Candle & Home Fragrance Labels — "Warm Amber Glow" variant
   Design system mirrors beauty-cosmetic-labels-redesign.html
   Prefix: --cf-  | Navy #0033a0 + Copper Amber #b45309
   Max-width: 1280px
   ============================================================ */

:root {
  /* Brand navy (consistent across site) */
  --cf-navy: #0033a0;
  --cf-navy-deep: #001f5c;
  --cf-navy-ink: #0a1430;
  --cf-navy-pale: #eef3fc;
  --cf-navy-mist: #f6f9fe;
  --cf-navy-line: #cdddf6;

  /* Warm amber secondary (candle-flame inspired) */
  --cf-amber: #b45309;
  --cf-amber-deep: #92400e;
  --cf-amber-bright: #d97706;
  --cf-amber-glow: #f59e0b;
  --cf-amber-pale: #fef3c7;
  --cf-amber-line: #fcd9a3;

  /* Warm surfaces */
  --cf-cream: #faf6ef;
  --cf-paper: #ffffff;
  --cf-pearl: #fdfcfa;
  --cf-flax: #f7eedd;
  --cf-warm-mist: #fbf6ee;

  /* Neutrals */
  --cf-ink: #1c1917;
  --cf-slate: #44403c;
  --cf-slate-light: #78716c;
  --cf-cloud: #f5f5f4;
  --cf-line: #e7e5e4;
  --cf-line-soft: #f5f5f4;

  /* Typography */
  --cf-font-display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --cf-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --cf-font-mono: "Inter", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --cf-max: 1280px;
  --cf-pad: clamp(16px, 4vw, 40px);
  --cf-radius-sm: 8px;
  --cf-radius: 14px;
  --cf-radius-lg: 22px;
  --cf-shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06), 0 1px 3px rgba(28, 25, 23, 0.04);
  --cf-shadow: 0 4px 12px rgba(28, 25, 23, 0.06), 0 2px 4px rgba(28, 25, 23, 0.04);
  --cf-shadow-lg: 0 24px 48px rgba(0, 31, 92, 0.10), 0 8px 16px rgba(0, 31, 92, 0.06);
  --cf-shadow-amber: 0 14px 36px rgba(180, 83, 9, 0.18), 0 4px 10px rgba(180, 83, 9, 0.10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--cf-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cf-ink);
  background: var(--cf-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--cf-navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cf-amber); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, h4 { font-family: var(--cf-font-display); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; color: var(--cf-navy-ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.4vw, 38px); }
h3 { font-size: clamp(17px, 1.6vw, 20px); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Container ---------- */
.container { max-width: var(--cf-max); margin: 0 auto; padding: 0 var(--cf-pad); }
.container--narrow { max-width: 880px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 12px 18px;
  background: var(--cf-navy); color: #fff; z-index: 200; border-radius: 0 0 8px 0;
  font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--cf-line);
}
.site-header__inner {
  max-width: var(--cf-max); margin: 0 auto;
  padding: 14px var(--cf-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--cf-font-display); font-weight: 800; font-size: 20px;
  color: var(--cf-navy-ink); letter-spacing: -0.02em;
}
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--cf-navy) 0%, var(--cf-navy-deep) 100%);
  color: #fff; display: grid; place-items: center;
  font-size: 14px; font-weight: 800; letter-spacing: 0;
  box-shadow: 0 4px 10px rgba(0, 51, 160, 0.30);
}
.brand__name em {
  font-style: italic; color: var(--cf-amber-deep); font-weight: 700;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--cf-slate); transition: all .2s ease;
}
.site-nav a:hover { color: var(--cf-navy); background: var(--cf-navy-pale); }
.site-nav a.is-active { color: var(--cf-navy); font-weight: 600; }
.site-nav .btn { padding: 9px 16px; }
.nav-toggle {
  display: none; padding: 8px; border-radius: 8px;
  color: var(--cf-navy-ink); background: transparent;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--cf-cream); border-bottom: 1px solid var(--cf-line); }
.breadcrumbs ol {
  max-width: var(--cf-max); margin: 0 auto;
  padding: 12px var(--cf-pad);
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: var(--cf-slate);
}
.breadcrumbs li::after { content: "›"; margin-left: 6px; color: var(--cf-slate-light); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--cf-slate); }
.breadcrumbs a:hover { color: var(--cf-amber); }
.breadcrumbs li[aria-current="page"] { color: var(--cf-navy); font-weight: 500; }

/* ---------- Section common ---------- */
.section { padding: clamp(48px, 7vw, 80px) 0; }
.section--tight { padding: 32px 0 48px; }
.section--alt { background: var(--cf-cream); }
.section--navy { background: var(--cf-navy-ink); color: #fff; }
.section-head { max-width: 1080px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--cf-slate); font-size: 16px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--cf-amber-pale); color: var(--cf-amber-deep);
  font-family: var(--cf-font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--cf-amber-line);
}
.eyebrow--navy {
  background: var(--cf-navy-pale); color: var(--cf-navy);
  border-color: var(--cf-navy-line);
}
.eyebrow--light {
  background: rgba(245, 158, 11, 0.16); color: var(--cf-amber-glow);
  border-color: rgba(245, 158, 11, 0.30);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-family: var(--cf-font-display); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all .2s ease;
  text-decoration: none; border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--cf-navy); color: #fff;
  box-shadow: 0 6px 14px rgba(0, 51, 160, 0.25);
}
.btn--primary:hover {
  background: var(--cf-navy-deep); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 51, 160, 0.32);
}
.btn--amber {
  background: linear-gradient(135deg, var(--cf-amber-bright) 0%, var(--cf-amber-deep) 100%);
  color: #fff; box-shadow: var(--cf-shadow-amber);
}
.btn--amber:hover {
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(180, 83, 9, 0.25), 0 6px 12px rgba(180, 83, 9, 0.14);
}
.btn--ghost {
  background: transparent; color: var(--cf-navy);
  border-color: var(--cf-navy-line);
}
.btn--ghost:hover {
  background: var(--cf-navy-pale); color: var(--cf-navy-deep);
  border-color: var(--cf-navy);
}
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  border-color: rgba(255, 255, 255, 0.30);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.btn--lg { padding: 14px 26px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn__group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: clamp(40px, 6vw, 64px) 0 clamp(48px, 7vw, 80px);
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(245, 158, 11, 0.10), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(0, 51, 160, 0.06), transparent 60%),
    linear-gradient(180deg, var(--cf-paper) 0%, var(--cf-cream) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 18px; }
.hero h1 { margin-bottom: 20px; color: var(--cf-navy-ink); }
.hero h1 em {
  font-style: normal; font-weight: 800;
  background: linear-gradient(135deg, var(--cf-amber-deep) 0%, var(--cf-amber) 50%, var(--cf-amber-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 18px); color: var(--cf-slate);
  max-width: 560px; margin-bottom: 28px;
}
.hero__cta { margin-bottom: 28px; }
.hero__bullets {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hero__bullet {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; border-radius: var(--cf-radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--cf-line);
}
.hero__bullet svg {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--cf-amber-deep);
}
.hero__bullet-title {
  font-family: var(--cf-font-display); font-weight: 600; font-size: 13px;
  color: var(--cf-navy-ink); line-height: 1.3; margin-bottom: 2px;
}
.hero__bullet-sub { font-size: 12px; color: var(--cf-slate); line-height: 1.4; }

/* ---------- Material Compass (signature visual) ---------- */
.compass {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, var(--cf-flax) 100%);
  border: 1px solid var(--cf-line);
  border-radius: var(--cf-radius-lg);
  padding: 28px 24px 22px;
  box-shadow: var(--cf-shadow-lg);
}
.compass::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 240px at 70% 20%, rgba(245, 158, 11, 0.10), transparent 60%);
  border-radius: var(--cf-radius-lg); pointer-events: none;
}
.compass__header {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.compass__title {
  font-family: var(--cf-font-display); font-weight: 700; font-size: 14px;
  color: var(--cf-navy-ink); letter-spacing: 0.02em;
}
.compass__hint {
  font-size: 11px; color: var(--cf-slate); font-weight: 500;
}
.compass__plot {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, rgba(0, 51, 160, 0.04) 0%, rgba(245, 158, 11, 0.06) 100%);
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 51, 160, 0.20);
}
.compass__quadrants {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
}
.compass__quadrant {
  padding: 14px; font-size: 10px; color: var(--cf-slate-light);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}
.compass__quadrant--tl { border-right: 1px dashed rgba(0, 51, 160, 0.12); border-bottom: 1px dashed rgba(0, 51, 160, 0.12); text-align: left; }
.compass__quadrant--tr { border-bottom: 1px dashed rgba(0, 51, 160, 0.12); text-align: right; }
.compass__quadrant--bl { border-right: 1px dashed rgba(0, 51, 160, 0.12); text-align: left; align-self: end; }
.compass__quadrant--br { text-align: right; align-self: end; }
.compass__axis {
  position: absolute; font-size: 10px; font-weight: 700;
  color: var(--cf-navy); letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--cf-font-display);
}
.compass__axis--top { top: 6px; left: 50%; transform: translateX(-50%); color: var(--cf-amber-deep); }
.compass__axis--bottom { bottom: 6px; left: 50%; transform: translateX(-50%); }
.compass__axis--left { left: 8px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; color: var(--cf-amber-deep); }
.compass__axis--right { right: 8px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
.compass__dot {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 10px; font-weight: 800;
  font-family: var(--cf-font-display); letter-spacing: 0;
  box-shadow: 0 4px 10px rgba(0, 31, 92, 0.25), 0 0 0 3px rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
}
.compass__dot--tp { top: 28%; left: 30%; background: linear-gradient(135deg, #c89668 0%, #8b5a2b 100%); }
.compass__dot--kp { top: 72%; left: 22%; background: linear-gradient(135deg, #b89070 0%, #6b4226 100%); }
.compass__dot--cb { top: 60%; left: 60%; background: linear-gradient(135deg, #6ba3d0 0%, #1e4a8a 100%); }
.compass__dot--wb { top: 38%; left: 70%; background: linear-gradient(135deg, #d9e8f5 0%, #4a7ba8 100%); color: var(--cf-navy-ink); }
.compass__dot--ep { top: 22%; left: 56%; background: linear-gradient(135deg, #e8d4a8 0%, #a07a3f 100%); }
.compass__legend {
  position: relative;
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.compass__legend-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 10px; text-align: center; color: var(--cf-slate);
  font-weight: 500;
}
.compass__legend-swatch {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 4px rgba(0, 31, 92, 0.18);
}
.compass__legend-name {
  font-family: var(--cf-font-display); font-weight: 700;
  color: var(--cf-navy-ink); font-size: 11px;
}

/* ---------- Trust strip ---------- */
.trust {
  background: linear-gradient(135deg, var(--cf-navy-ink) 0%, var(--cf-navy-deep) 100%);
  color: #fff; padding: 32px 0;
  position: relative; overflow: hidden;
}
.trust::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 20% 50%, rgba(245, 158, 11, 0.10), transparent 60%),
    radial-gradient(300px 200px at 90% 50%, rgba(0, 51, 160, 0.30), transparent 60%);
  pointer-events: none;
}
.trust__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: var(--cf-max); margin: 0 auto;
  padding: 0 var(--cf-pad);
}
.trust__cell { text-align: center; }
.trust__num {
  font-family: var(--cf-font-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 38px); line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, var(--cf-amber-glow) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 6px;
}
.trust__label {
  font-size: 12px; color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}

/* ---------- Application grid ---------- */
.app-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.app-card {
  position: relative; padding: 22px 18px 20px;
  background: var(--cf-paper);
  border: 1px solid var(--cf-line); border-radius: var(--cf-radius);
  transition: all .25s ease; overflow: hidden;
}
.app-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cf-navy) 0%, var(--cf-amber-bright) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.app-card:hover {
  transform: translateY(-3px);
  border-color: var(--cf-navy-line);
  box-shadow: var(--cf-shadow);
}
.app-card:hover::before { opacity: 1; }
.app-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cf-amber-pale); color: var(--cf-amber-deep);
  display: grid; place-items: center; margin-bottom: 14px;
}
.app-card__icon svg { width: 22px; height: 22px; }
.app-card h3 { margin-bottom: 6px; font-size: 16px; }
.app-card p { margin: 0; font-size: 14px; color: var(--cf-slate); line-height: 1.55; }

/* ---------- Set Structure grid ---------- */
.set-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.set-card {
  position: relative; padding: 24px 22px;
  background: var(--cf-paper);
  border: 1px solid var(--cf-line); border-radius: var(--cf-radius);
  border-left: 4px solid var(--cf-amber);
  transition: all .25s ease;
}
.set-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--cf-shadow);
  border-left-color: var(--cf-amber-deep);
}
.set-card__num {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--cf-font-display); font-weight: 800;
  font-size: 13px; color: var(--cf-amber);
  letter-spacing: 0.05em;
}
.set-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cf-amber-pale) 0%, var(--cf-flax) 100%);
  color: var(--cf-amber-deep);
  display: grid; place-items: center; margin-bottom: 14px;
}
.set-card__icon svg { width: 20px; height: 20px; }
.set-card h3 { margin-bottom: 8px; font-size: 17px; }
.set-card p { margin: 0; font-size: 14px; color: var(--cf-slate); line-height: 1.55; }

/* ---------- Material Spectrum ---------- */
.spectrum {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.spectrum__card {
  padding: 22px;
  background: var(--cf-paper);
  border: 1px solid var(--cf-line); border-radius: var(--cf-radius);
  transition: all .25s ease;
}
.spectrum__card:hover {
  border-color: var(--cf-navy-line);
  box-shadow: var(--cf-shadow);
}
.spectrum__head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.spectrum__swatch {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--cf-line);
  flex-shrink: 0;
}
.spectrum__head h3 { margin: 0; font-size: 15px; }
.spectrum__bar { margin-bottom: 10px; }
.spectrum__bar:last-child { margin-bottom: 0; }
.spectrum__bar-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--cf-slate);
  font-family: var(--cf-font-display); font-weight: 500;
  margin-bottom: 4px;
}
.spectrum__bar-label strong {
  color: var(--cf-navy-ink); font-weight: 700;
}
.spectrum__bar-track {
  height: 6px; border-radius: 999px;
  background: var(--cf-cloud); overflow: hidden;
}
.spectrum__bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--cf-navy) 0%, var(--cf-amber-bright) 100%);
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Finish Studio ---------- */
.finish-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.finish-card {
  border-radius: var(--cf-radius);
  background: var(--cf-paper);
  border: 1px solid var(--cf-line);
  overflow: hidden; transition: all .25s ease;
}
.finish-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cf-shadow-lg);
}
.finish-swatch {
  height: 110px; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.finish-swatch svg {
  width: 28px; height: 28px; color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}
.finish-swatch--gold { background: linear-gradient(135deg, #f7e08a 0%, #d4a017 50%, #8b6914 100%); }
.finish-swatch--rosegold { background: linear-gradient(135deg, #f7d1c4 0%, #d49b8c 50%, #a05643 100%); }
.finish-swatch--copper { background: linear-gradient(135deg, #e8a87c 0%, #b45309 50%, #6b2d09 100%); }
.finish-swatch--emboss { background: linear-gradient(135deg, #f5f1eb 0%, #c8b9a3 50%, #8b7355 100%); color: var(--cf-navy-ink); }
.finish-swatch--emboss svg { color: var(--cf-amber-deep); filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30)); }
.finish-swatch--matte { background: linear-gradient(135deg, #faf6ef 0%, #d4c8b0 100%); color: var(--cf-navy-ink); }
.finish-swatch--matte svg { color: var(--cf-navy); }
.finish-swatch--gloss { background: linear-gradient(135deg, #c8e0f5 0%, #6ba3d0 50%, #1e4a8a 100%); }
.finish-swatch--spotuv { background: linear-gradient(135deg, #1c1917 0%, #44403c 100%); position: relative; }
.finish-swatch--spotuv::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.85) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(0, 51, 160, 0.70) 0%, transparent 40%);
}
.finish-swatch--softtouch { background: linear-gradient(135deg, #3d3833 0%, #1c1917 100%); }
.finish__body { padding: 16px 16px 18px; }
.finish__body h3 { margin-bottom: 6px; font-size: 15px; }
.finish__body p { margin: 0; font-size: 13px; color: var(--cf-slate); line-height: 1.5; }

/* ---------- Buying scenarios grid ---------- */
.scenario-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.scenario-card {
  padding: 24px 22px;
  background: var(--cf-paper);
  border: 1px solid var(--cf-line); border-radius: var(--cf-radius);
  transition: all .25s ease; position: relative; overflow: hidden;
}
.scenario-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--cf-amber) 0%, var(--cf-navy) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.scenario-card:hover::before { opacity: 1; }
.scenario-card:hover {
  transform: translateY(-2px);
  border-color: var(--cf-navy-line);
  box-shadow: var(--cf-shadow);
}
.scenario-card__num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--cf-font-display); font-weight: 800; font-size: 12px;
  color: var(--cf-amber); letter-spacing: 0.05em;
}
.scenario-card h3 { margin-bottom: 8px; font-size: 17px; padding-right: 30px; }
.scenario-card p { margin: 0; font-size: 14px; color: var(--cf-slate); line-height: 1.55; }

/* ---------- Featured products ---------- */
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.featured-card {
  position: relative; padding: 22px 20px;
  background: var(--cf-paper);
  border: 1px solid var(--cf-line); border-radius: var(--cf-radius);
  transition: all .25s ease; overflow: hidden;
}
.featured-card:hover {
  transform: translateY(-2px);
  border-color: var(--cf-navy);
  box-shadow: var(--cf-shadow);
}
.featured-card__num {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--cf-font-display); font-weight: 800; font-size: 12px;
  color: var(--cf-amber); letter-spacing: 0.05em;
}
.featured-card__icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--cf-navy-pale); color: var(--cf-navy);
  display: grid; place-items: center; margin-bottom: 12px;
}
.featured-card__icon svg { width: 20px; height: 20px; }
.featured-card h3 { margin-bottom: 6px; font-size: 16px; padding-right: 30px; }
.featured-card h3 a { color: inherit; }
.featured-card h3 a:hover { color: var(--cf-amber); }
.featured-card p { margin: 0; font-size: 13px; color: var(--cf-slate); line-height: 1.5; }

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--cf-paper);
  border: 1px solid var(--cf-line);
  border-radius: var(--cf-radius);
  overflow: hidden; transition: all .25s ease;
}
.faq-item[open] {
  border-color: var(--cf-amber-line);
  box-shadow: var(--cf-shadow);
}
.faq-item > summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--cf-font-display); font-weight: 600; font-size: 16px;
  color: var(--cf-navy-ink); transition: color .2s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--cf-amber-deep); }
.faq-item__plus {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1.5px solid var(--cf-amber);
  display: grid; place-items: center;
  color: var(--cf-amber-deep);
  transition: all .25s ease;
  position: relative;
}
.faq-item__plus::before,
.faq-item__plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cf-amber-deep); border-radius: 1px;
  transition: all .25s ease;
}
.faq-item__plus::before { width: 10px; height: 2px; }
.faq-item__plus::after { width: 2px; height: 10px; }
.faq-item[open] .faq-item__plus {
  background: var(--cf-amber); border-color: var(--cf-amber); transform: rotate(135deg);
}
.faq-item[open] .faq-item__plus::before,
.faq-item[open] .faq-item__plus::after { background: #fff; }
.faq-item__body {
  padding: 0 22px 20px;
  color: var(--cf-slate); font-size: 15px; line-height: 1.65;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 20% 30%, rgba(245, 158, 11, 0.20), transparent 60%),
    radial-gradient(500px 300px at 80% 80%, rgba(0, 51, 160, 0.40), transparent 60%),
    linear-gradient(135deg, var(--cf-navy-ink) 0%, var(--cf-navy-deep) 100%);
  color: #fff; padding: clamp(48px, 7vw, 80px) 0;
  position: relative; overflow: hidden;
}
.cta-band__inner {
  max-width: 760px; margin: 0 auto;
  padding: 0 var(--cf-pad);
  text-align: center; position: relative;
}
.cta-band h2 {
  color: #fff; margin-bottom: 14px;
}
.cta-band h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cf-amber-glow) 0%, #fde68a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.80); font-size: 17px;
  margin-bottom: 26px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cf-navy-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 24px;
}
.site-footer__grid {
  max-width: var(--cf-max); margin: 0 auto;
  padding: 0 var(--cf-pad);
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
}
.site-footer__brand .brand { color: #fff; margin-bottom: 14px; }
.site-footer__brand p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
.site-footer h4 {
  color: var(--cf-amber-glow); font-family: var(--cf-font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 14px;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  color: rgba(255, 255, 255, 0.72); font-size: 14px;
}
.site-footer ul a:hover { color: var(--cf-amber-glow); }
.site-footer__bottom {
  max-width: var(--cf-max); margin: 32px auto 0;
  padding: 20px var(--cf-pad) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255, 255, 255, 0.50);
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 18px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 90; opacity: 0;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.sticky-cta__inner {
  display: flex; gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--cf-line);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 31, 92, 0.20);
}
.sticky-cta__inner .btn { border-radius: 999px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__bullets { grid-template-columns: repeat(3, 1fr); }
  .app-grid, .finish-grid { grid-template-columns: repeat(2, 1fr); }
  .set-grid, .spectrum, .scenario-grid, .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .compass { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--cf-line);
    padding: 16px var(--cf-pad); gap: 4px;
    box-shadow: var(--cf-shadow);
  }
  .hero h1 { font-size: 32px; }
  .hero__bullets { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .app-grid, .finish-grid, .set-grid, .spectrum, .scenario-grid, .featured-grid {
    grid-template-columns: 1fr;
  }
  .compass__legend { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .compass__quadrant { font-size: 9px; padding: 8px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .sticky-cta { left: 12px; right: 12px; transform: translateY(120px); }
  .sticky-cta.is-visible { transform: translateY(0); }
  .sticky-cta__inner { justify-content: center; }
  .sticky-cta__inner .btn { flex: 1; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .spectrum__bar-fill { transition: none; }
}
