/* ---- 0. Self-hosted fonts (Latin subset — no Google Fonts CDN required) ---- */
@font-face{
  font-family:'Fraunces'; font-style:normal; font-weight:400 600; font-display:swap;
  src:url('../fonts/fraunces-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Fraunces'; font-style:italic; font-weight:400 600; font-display:swap;
  src:url('../fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Inter'; font-style:normal; font-weight:100 900; font-display:swap;
  src:url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ============================================================================
   WebNomad Studio — AI Retirement Income Planner marketing site
   Design system: "Quiet Fintech × Editorial"
   Warm ivory base · deep navy ink · teal/emerald accents · refined serif display
   Crafted, build-free CSS. Works on any static host.
   ============================================================================ */

/* ---- 1. Design tokens ---------------------------------------------------- */
:root{
  /* Brand palette */
  --paper:        #F7F2E8;   /* warm ivory page background */
  --paper-2:      #F1EADB;   /* slightly deeper cream for bands */
  --surface:      #FFFFFF;   /* cards */
  --surface-soft: #FCFAF4;   /* soft card */
  --ink:          #14304B;   /* deep navy — primary text */
  --ink-2:        #1F4E79;   /* mid navy — headings/links */
  --ink-soft:     #51637A;   /* muted body text */
  --ink-faint:    #556879;   /* meta / captions — darkened from #8A97A4 to pass WCAG AA 4.5:1 */

  --teal:         #1E7A6E;   /* primary accent (buttons, emphasis) */
  --teal-deep:    #155E54;   /* hover */
  --emerald:      #2E8B6F;   /* secondary green (success, ticks) */
  --gold:         #C19A2E;   /* highlight / sale */
  --gold-soft:    #E7CF86;
  --sage:         #E4EBDD;   /* icon chip background */
  --sky:          #E7EFF7;   /* cool tint */

  --line:         #E4DBC8;   /* warm hairline on paper */
  --line-soft:    #EFE8D8;
  --line-cool:    #D7E0EA;

  --danger:       #B5402F;
  --warn:         #B7791F;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --fs-eyebrow: .82rem;
  --fs-body:    1.0625rem;   /* ~19px at 18px root */
  --fs-lead:    1.2rem;
  --fs-h3:      1.45rem;
  --fs-h2:      clamp(1.8rem, 1.2rem + 2.4vw, 2.7rem);
  --fs-h1:      clamp(2.4rem, 1.6rem + 3.4vw, 3.9rem);

  /* Space + shape */
  --maxw: 1180px;
  --maxw-narrow: 820px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(20,48,75,.06), 0 2px 6px rgba(20,48,75,.05);
  --shadow:    0 10px 30px -12px rgba(20,48,75,.22), 0 4px 10px -6px rgba(20,48,75,.10);
  --shadow-lg: 0 30px 70px -28px rgba(20,48,75,.40), 0 10px 24px -12px rgba(20,48,75,.18);
  --ring: 0 0 0 3px rgba(30,122,110,.35);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ---- 2. Reset / base ----------------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ font-size:112.5%; -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; font-family:var(--font-sans); font-size:var(--fs-body);
  line-height:1.65; color:var(--ink); background:var(--paper);
  background-image:linear-gradient(rgba(20,48,75,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(20,48,75,.05) 1px,transparent 1px);
  background-size:28px 28px;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img,svg,video{ max-width:100%; height:auto; display:block; }
a{ color:var(--teal-deep); text-underline-offset:3px; }
a:hover{ color:var(--teal); }
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--ink); line-height:1.12; font-weight:600; letter-spacing:-.01em; margin:0 0 .5em; }
h1{ font-size:var(--fs-h1); } h2{ font-size:var(--fs-h2); } h3{ font-size:var(--fs-h3); }
p{ margin:0 0 1rem; }
strong{ color:var(--ink); font-weight:650; }
ul,ol{ margin:0 0 1rem; padding-left:1.2em; }
small{ font-size:.85em; }
hr{ border:none; border-top:1px solid var(--line); margin:2.5rem 0; }
:focus-visible{ outline:none; box-shadow:var(--ring); border-radius:6px; }

/* skip link */
.skip{ position:absolute; left:-9999px; top:auto; background:var(--ink); color:#fff;
  padding:.7rem 1.1rem; border-radius:0 0 10px 0; z-index:200; }
.skip:focus{ left:0; top:0; color:#fff; }

/* ---- 3. Layout ----------------------------------------------------------- */
.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:clamp(1.1rem,4vw,2.2rem); }
.narrow{ max-width:var(--maxw-narrow); }
.section{ padding-block:clamp(3.2rem,7vw,6rem); }
.section-tight{ padding-block:clamp(2.2rem,4vw,3.4rem); }
.band{ background-color:var(--paper-2); background-image:radial-gradient(circle,rgba(20,48,75,.13) 1.5px,transparent 1.5px); background-size:22px 22px; }
.band-ink{ background:linear-gradient(160deg,#10283F,#16324F 55%,#1c3d5e); color:#EaF1F8; }
.band-ink h1,.band-ink h2,.band-ink h3{ color:#fff; }
.band-ink p{ color:#C5D4E3; }
/* Light surfaces inside a dark band keep their dark text */
.band-ink .card h3,.band-ink .callout h3{ color:var(--ink); }
.band-ink .card p,.band-ink .callout p{ color:var(--ink-soft); }
.grid{ display:grid; gap:clamp(1.1rem,2.4vw,1.8rem); }
.cols-2{ grid-template-columns:repeat(2,1fr); }
.cols-3{ grid-template-columns:repeat(3,1fr); }
.cols-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .cols-3,.cols-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .cols-2,.cols-3,.cols-4{ grid-template-columns:1fr; } }
.center{ text-align:center; }
.center .lead{ margin-inline:auto; }

/* ---- 4. Header / nav ----------------------------------------------------- */
/* Nav spans full viewport width — unconstrained from the 1180px content max-width */
.site-header .container{ max-width:100%; }
.site-header{
  position:sticky; top:0; z-index:100;
  background:
    linear-gradient(rgba(247,242,232,.10), rgba(247,242,232,.12)),
    url("../img/header-beach.jpg") center 38% / cover no-repeat;
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; min-height:72px; }
.brand{ display:inline-flex; align-items:center; gap:.6rem; text-decoration:none; }
.brand:hover{ color:inherit; }
.brand .logo{ width:38px; height:38px; flex:none; }
.brand-name{ font-family:var(--font-display); font-weight:600; font-size:1.22rem; color:var(--ink); line-height:1; letter-spacing:-.01em; }
.brand-sub{ display:block; font-family:var(--font-sans); font-size:.62rem; letter-spacing:.22em; color:var(--teal); font-weight:600; text-transform:uppercase; margin-top:3px; }
.brand-tagline{ display:block; font-family:var(--font-sans); font-size:.7rem; letter-spacing:.01em; color:#fff; font-weight:600; margin-top:1px; white-space:nowrap; background:rgba(0,0,0,.35); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); padding:2px 6px; border-radius:3px; }
html[data-theme="contrast"] .brand-tagline{ background:none; backdrop-filter:none; -webkit-backdrop-filter:none; padding:0; color:var(--teal); }
@media (max-width:380px){ .brand-tagline{ font-size:.52rem; } }
.nav-links{ display:flex; align-items:center; gap:.35rem; list-style:none; margin:0; padding:0; }
.nav-links a{ display:inline-block; padding:.55rem .85rem; border-radius:9px; text-decoration:none;
  color:var(--ink); font-weight:550; font-size:1rem; transition:background var(--transition),color var(--transition); }
.nav-links a:hover{ background:var(--paper-2); color:var(--ink-2); }
.nav-links a[aria-current="page"]{ color:var(--teal-deep); background:rgba(30,122,110,.28); }
.nav-cta{ display:flex; align-items:center; gap:.6rem; }
.nav-toggle{ display:none; }

@media (max-width:1420px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px;
    border:1px solid var(--line); background:var(--surface); border-radius:10px; cursor:pointer; }
  .nav-toggle span{ display:block; width:20px; height:2px; background:var(--ink); position:relative; }
  .nav-toggle span::before,.nav-toggle span::after{ content:""; position:absolute; left:0; width:20px; height:2px; background:var(--ink); }
  .nav-toggle span::before{ top:-6px; } .nav-toggle span::after{ top:6px; }
  .nav-panel{ position:fixed; inset:72px 0 auto 0; background:var(--paper);
    border-bottom:1px solid var(--line); box-shadow:var(--shadow);
    display:none; flex-direction:column; padding:1rem clamp(1.1rem,4vw,2.2rem) 1.6rem; gap:.2rem; }
  .nav-panel.open{ display:flex; }
  .nav-links{ flex-direction:column; align-items:stretch; gap:.1rem; }
  .nav-links a{ padding:.85rem .6rem; font-size:1.1rem; border-bottom:1px solid var(--line-soft); border-radius:0; }
  .nav-cta{ margin-top:.9rem; }
  .nav-cta .btn{ width:100%; justify-content:center; }
}
@media (min-width:1421px){ .nav-panel{ display:flex !important; align-items:center; gap:1.5rem; } }

/* ---- 5. Buttons ---------------------------------------------------------- */
.btn{ display:inline-flex; align-items:center; gap:.55rem; font-family:var(--font-sans);
  font-weight:600; font-size:1rem; line-height:1; text-decoration:none; cursor:pointer;
  padding:.85rem 1.4rem; border-radius:999px; border:1.5px solid transparent;
  transition:transform var(--transition),background var(--transition),box-shadow var(--transition),border-color var(--transition); }
.btn:active{ transform:translateY(1px); }
.btn svg{ width:1.05em; height:1.05em; }
.btn-primary{ background:var(--teal); color:#fff; box-shadow:0 6px 18px -8px rgba(30,122,110,.7); }
.btn-primary:hover{ background:var(--teal-deep); color:#fff; box-shadow:0 10px 24px -8px rgba(30,122,110,.75); }
.btn-etsy{ background:#F1641E; color:#fff; box-shadow:0 6px 18px -8px rgba(241,100,30,.7); }
.btn-etsy:hover{ background:#d8540f; color:#fff; }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:#fff; }
.btn-ghost{ background:var(--surface); color:var(--ink-2); border-color:var(--line); box-shadow:var(--shadow-sm); }
.btn-ghost:hover{ border-color:var(--ink-2); color:var(--ink); }
.btn-lg{ padding:1.05rem 1.8rem; font-size:1.08rem; }
.btn-sm{ padding:.6rem 1rem; font-size:.92rem; }
.btn-block{ width:100%; justify-content:center; }
.on-ink .btn-outline{ color:#fff; border-color:rgba(255,255,255,.6); }
.on-ink .btn-outline:hover{ background:#fff; color:var(--ink); }

/* ---- 6. Eyebrow / section heads ----------------------------------------- */
.eyebrow{ display:inline-flex; align-items:center; gap:.5rem; font-size:var(--fs-eyebrow);
  font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--teal);
  margin:0 0 .9rem; }
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold); border-radius:2px; }
.center .eyebrow{ }
.lead{ font-size:var(--fs-lead); color:var(--ink-soft); max-width:60ch; }
.band-ink .lead{ color:#C5D4E3; }

/* ---- 7. Hero ------------------------------------------------------------- */
.hero{ position:relative; overflow:hidden; padding-block:clamp(2.6rem,6vw,4.6rem); }
.hero-grid{ display:grid; grid-template-columns:1.02fr 1.1fr; gap:clamp(1.6rem,4vw,3.2rem); align-items:center; }
@media (max-width:960px){ .hero-grid{ grid-template-columns:1fr; } }
.hero h1{ margin-bottom:.6rem; }
.hero .accent{ font-style:italic; color:var(--teal-deep); }
.hero-sub{ font-size:1.22rem; color:var(--ink-soft); max-width:52ch; margin-bottom:1.5rem; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:.8rem; align-items:center; }
.hero-trust{ margin-top:1.4rem; display:flex; flex-wrap:wrap; gap:.4rem 1.3rem; color:var(--ink-soft); font-size:.95rem; }
.hero-trust span{ display:inline-flex; align-items:center; gap:.4rem; }
.hero-media{ position:relative; }
.hero-media img{ border-radius:var(--radius); box-shadow:var(--shadow-lg); border:1px solid var(--line); }
.blob{ position:absolute; border-radius:50%; filter:blur(40px); opacity:.5; z-index:-1; }
.blob-1{ width:340px; height:340px; background:radial-gradient(circle,#bfe0d6,transparent 70%); top:-60px; right:-40px; }
.blob-2{ width:300px; height:300px; background:radial-gradient(circle,#e7d8a6,transparent 70%); bottom:-70px; left:-50px; }

/* ---- Photo hero (cinematic image background + scrim) ---- */
.hero-photo{ position:relative; overflow:hidden; isolation:isolate; color:#fff;
  min-height:clamp(460px, 72vh, 700px); display:flex; align-items:center; padding-block:0; }
.hero-photo .hero-photo-bg{ position:absolute; inset:0; z-index:-2;
  background:#0c1d2f url("../img/hero.jpg") right top / cover no-repeat; }
.hero-photo::before{ content:""; position:absolute; inset:0; z-index:-1; background:
  linear-gradient(90deg, rgba(8,20,33,.93) 0%, rgba(8,20,33,.8) 28%, rgba(8,20,33,.46) 54%, rgba(8,20,33,.12) 80%, rgba(8,20,33,0) 100%),
  linear-gradient(0deg, rgba(8,20,33,.5), rgba(8,20,33,0) 42%); }
.hero-photo .container{ position:relative; z-index:1; width:100%; }
.hero-content{ max-width:600px; padding-block:clamp(2.6rem,7vw,4.4rem); }
.hero-photo h1{ color:#fff; }
.hero-photo .accent{ color:#86D6C6; font-style:italic; }
.hero-photo .hero-sub{ color:#D8E3EC; }
.hero-photo .eyebrow{ color:#EAD18A; }
.hero-photo .eyebrow::before{ background:#EAD18A; }
.hero-photo .hero-trust{ color:#CCD9E4; }
.hero-photo .btn-outline{ color:#fff; border-color:rgba(255,255,255,.65); }
.hero-photo .btn-outline:hover{ background:#fff; color:var(--ink); border-color:#fff; }
@media (max-width:760px){
  .hero-photo{ min-height:auto; }
  .hero-photo .hero-photo-bg{ background-position:center top; }
  .hero-photo::before{ background:linear-gradient(0deg, rgba(8,20,33,.92) 0%, rgba(8,20,33,.62) 55%, rgba(8,20,33,.5) 100%); }
  .hero-content{ max-width:100%; padding-block:clamp(2.4rem,9vw,3.4rem); }
}

/* ---- 8. Browser frame for screenshots ----------------------------------- */
.frame{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); border:1px solid var(--line); background:#fff; }
.frame-bar{ display:flex; align-items:center; gap:7px; padding:10px 14px; background:#Eef2f6; border-bottom:1px solid #dfe6ec; }
.frame-bar i{ width:11px; height:11px; border-radius:50%; background:#cbd5dd; display:block; }
.frame-bar i:nth-child(1){ background:#e7837b; } .frame-bar i:nth-child(2){ background:#ecc469; } .frame-bar i:nth-child(3){ background:#8fc99c; }
.frame img{ display:block; width:100%; }

/* ---- 9. Feature rows (alternating) -------------------------------------- */
.feature-row{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.6rem,4vw,3.4rem); align-items:center; }
.feature-row + .feature-row{ margin-top:clamp(2.6rem,5vw,4.6rem); }
.feature-row.flip .feature-text{ order:2; }
@media (max-width:860px){ .feature-row{ grid-template-columns:1fr; } .feature-row.flip .feature-text{ order:0; } }
.feature-text h3{ font-size:clamp(1.5rem,1.1rem+1.2vw,2rem); }
.feature-media img{ border-radius:var(--radius); box-shadow:var(--shadow); border:1px solid var(--line); }

/* checklist */
.checklist{ list-style:none; padding:0; margin:1rem 0 0; }
.checklist li{ position:relative; padding-left:2rem; margin:.6rem 0; color:var(--ink-soft); }
.checklist li::before{ content:""; position:absolute; left:0; top:2px; width:1.35rem; height:1.35rem;
  border-radius:50%; background:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E7A6E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size:.85rem; background-repeat:no-repeat; background-position:center; }
.checklist li strong{ color:var(--ink); }

/* ---- 10. Cards ----------------------------------------------------------- */
.card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(1.3rem,2.5vw,1.8rem); box-shadow:var(--shadow-sm); transition:transform var(--transition),box-shadow var(--transition);
  border-top:3px solid var(--teal); }
.card.hoverable:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.icon-chip{ width:50px; height:50px; border-radius:13px; background:var(--sage); color:var(--teal-deep);
  display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
.icon-chip svg{ width:26px; height:26px; }
.icon-chip.gold{ background:#F4ECD3; color:var(--gold); }
.icon-chip.sky{ background:var(--sky); color:var(--ink-2); }
.card h3{ font-size:1.25rem; margin-bottom:.4rem; }
.card p{ color:var(--ink-soft); margin:0; font-size:1rem; }

/* ---- 11. Product cards --------------------------------------------------- */
.product-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow); }
.product-card.featured{ border-color:var(--teal); box-shadow:var(--shadow-lg); position:relative; }
.product-figure{ position:relative; background:var(--paper-2); }
.product-figure img{ width:100%; aspect-ratio:16/10; object-fit:cover; }
.product-tag{ position:absolute; top:14px; left:14px; background:var(--ink); color:#fff;
  font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:.4rem .7rem; border-radius:999px; }
.product-tag.best{ background:var(--teal); }
.product-body{ padding:clamp(1.3rem,2.4vw,1.7rem); display:flex; flex-direction:column; flex:1; }
.product-body h3{ font-size:1.4rem; margin-bottom:.35rem; }
.product-desc{ color:var(--ink-soft); font-size:1rem; }
.product-features{ list-style:none; padding:0; margin:.6rem 0 1.1rem; }
.product-features li{ position:relative; padding-left:1.6rem; margin:.4rem 0; font-size:.97rem; color:var(--ink-soft); }
.product-features li::before{ content:"✓"; position:absolute; left:0; color:var(--emerald); font-weight:800; }
.price-row{ display:flex; align-items:baseline; gap:.6rem; margin-top:auto; margin-bottom:1rem; flex-wrap:wrap; }
.price{ font-family:var(--font-display); font-size:2rem; font-weight:600; color:var(--ink); }
.price-was{ color:var(--ink-faint); text-decoration:line-through; font-size:1.05rem; }
.price-save{ background:#F4ECD3; color:#6e540a; font-weight:700; font-size:.78rem; padding:.25rem .55rem; border-radius:999px; letter-spacing:.03em; }
.product-actions{ display:flex; flex-direction:column; gap:.55rem; }
.product-note{ font-size:.85rem; color:var(--ink-faint); margin:.6rem 0 0; text-align:center; }

/* ---- 12. Stats / logos band --------------------------------------------- */
.stat{ text-align:center; }
.stat .num{ font-family:var(--font-display); font-size:clamp(2rem,1.4rem+2vw,2.9rem); color:var(--ink); font-weight:600; line-height:1; }
.stat .lbl{ color:var(--ink-soft); font-size:.98rem; margin-top:.4rem; }
.band-ink .stat .num{ color:#fff; } .band-ink .stat .lbl{ color:#B9CADA; }

/* pills */
.pill-row{ display:flex; flex-wrap:wrap; gap:.55rem; justify-content:center; }
.pill{ background:var(--surface); border:1px solid var(--line); border-radius:999px; padding:.5rem 1rem;
  font-size:.88rem; color:var(--ink-soft); font-weight:400; box-shadow:var(--shadow-sm); }
.pill b{ color:var(--ink); font-weight:700; font-size:1rem; }

/* ---- 13. Quote / callout ------------------------------------------------- */
.quote{ font-family:var(--font-display); font-size:clamp(1.5rem,1.1rem+1.6vw,2.3rem); line-height:1.32;
  color:var(--ink); font-weight:500; max-width:24ch; }
.callout{ background:var(--surface); border:1px solid var(--line); border-left:4px solid var(--teal);
  border-radius:var(--radius); padding:1.3rem 1.5rem; box-shadow:var(--shadow-sm); }
.callout.warn{ border-left-color:var(--warn); }

/* ---- 14. CTA band -------------------------------------------------------- */
.cta-band{ text-align:center; }
.cta-band h2{ max-width:18ch; margin-inline:auto; }
.cta-actions{ display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; margin-top:1.4rem; }

/* ---- 15. FAQ accordion --------------------------------------------------- */
.faq{ max-width:var(--maxw-narrow); margin-inline:auto; }
.faq details{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-sm);
  margin-bottom:.8rem; box-shadow:var(--shadow-sm); overflow:hidden; }
.faq summary{ cursor:pointer; list-style:none; padding:1.1rem 1.3rem; font-weight:600; font-size:1.1rem;
  color:var(--ink); display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; font-size:1.5rem; color:var(--teal); font-weight:400; transition:transform var(--transition); }
.faq details[open] summary::after{ transform:rotate(45deg); }
.faq details > div{ padding:0 1.3rem 1.2rem; color:var(--ink-soft); }
.faq details > div p:last-child{ margin-bottom:0; }
.faq summary{ transition:background var(--transition); }
.faq details[open] summary, .faq summary:hover{ background:var(--surface-soft); }

/* ---- 16. Figure + lightbox ---------------------------------------------- */
figure{ margin:0; }
figure.shot{ cursor:zoom-in; }
figcaption{ font-size:.9rem; color:var(--ink-faint); margin-top:.6rem; text-align:center; }
.lightbox{ position:fixed; inset:0; background:rgba(15,30,46,.86); display:none; align-items:center; justify-content:center;
  z-index:300; padding:2rem; cursor:zoom-out; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width:96vw; max-height:92vh; border-radius:10px; box-shadow:var(--shadow-lg); }
.lightbox-close{ position:fixed; top:1.1rem; right:1.3rem; width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,.15); color:#fff; border:none; font-size:1.5rem; cursor:pointer; }

/* ---- 17. Breadcrumb / page header --------------------------------------- */
.page-head{ padding-block:clamp(2.4rem,5vw,4rem) clamp(1.6rem,3vw,2.4rem); }
.crumb{ font-size:.9rem; color:var(--ink-faint); margin-bottom:1rem; }
.crumb a{ color:var(--ink-soft); text-decoration:none; } .crumb a:hover{ color:var(--teal); }

/* ---- 18. Footer ---------------------------------------------------------- */
.site-footer{ background:#12283F; color:#AFC1D3; padding-block:3.2rem 2rem; margin-top:0; }
.site-footer a{ color:#CFDDEA; text-decoration:none; }
.site-footer a:hover{ color:#fff; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2rem; }
@media (max-width:780px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:1.6rem; } }
@media (max-width:460px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand .brand-name{ color:#fff; }
.footer-brand p{ color:#92A6BA; font-size:.95rem; max-width:34ch; margin-top:.8rem; }
.footer-col h4{ color:#fff; font-family:var(--font-sans); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:.9rem; }
.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col li{ margin:.45rem 0; font-size:.97rem; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:2.4rem; padding-top:1.4rem;
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.86rem; color:#7E93A8; }
.footer-disclaimer{ font-size:.82rem; color:#8BA5BC; max-width:80ch; margin-top:1rem; line-height:1.55; }

/* ---- 19. Utilities ------------------------------------------------------- */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.mt-1{ margin-top:.6rem; } .mt-2{ margin-top:1.2rem; } .mt-3{ margin-top:2rem; }
.muted{ color:var(--ink-soft); }
.maxw-prose{ max-width:68ch; }
.maxw-prose.center{ margin-inline:auto; }
.flex{ display:flex; gap:.8rem; flex-wrap:wrap; }
.flex-center{ justify-content:center; align-items:center; }
.divider-soft{ border-top:1px solid var(--line); }
.tag-row{ display:flex; flex-wrap:wrap; gap:.5rem; }
.tag{ font-size:.8rem; font-weight:600; color:var(--teal-deep); background:rgba(30,122,110,.10);
  padding:.3rem .7rem; border-radius:999px; }

/* anchor offset for sticky header */
[id]{ scroll-margin-top:90px; }

/* ============================================================================
   20. MOTION & POLISH (progressive — only active when JS adds .reveal-on)
   ============================================================================ */
.site-header{ transition:box-shadow .35s var(--transition), background .35s var(--transition); }
.site-header.scrolled{
  background:
    linear-gradient(rgba(247,242,232,.10), rgba(247,242,232,.12)),
    url("../img/header-beach.jpg") center 38% / cover no-repeat;
  box-shadow:0 8px 30px -18px rgba(20,48,75,.45);
}

/* Scroll reveal */
html.reveal-on .reveal{ opacity:0; transform:translateY(24px);
  transition:opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
html.reveal-on .reveal.is-visible{ opacity:1; transform:none; }

/* Hero entrance (finite — no perpetual motion) */
@keyframes wn-rise{ from{ opacity:0; transform:translateY(18px); } to{ opacity:1; transform:none; } }
.hero-text > *, .hero-content > *{ animation:wn-rise .8s both; }
.hero-text > *:nth-child(2), .hero-content > *:nth-child(2){ animation-delay:.08s; }
.hero-text > *:nth-child(3), .hero-content > *:nth-child(3){ animation-delay:.16s; }
.hero-text > *:nth-child(4), .hero-content > *:nth-child(4){ animation-delay:.24s; }
.hero-text > *:nth-child(5), .hero-content > *:nth-child(5){ animation-delay:.32s; }
.hero-media{ animation:wn-rise 1s .18s both; }

/* Image zoom inside frames/figures on hover */
.frame, .shot-media{ overflow:hidden; }
.frame > img, figure.shot img:not(.no-zoom){ transition:transform .6s cubic-bezier(.2,.7,.2,1); }
.frame:hover > img, .feature-media figure.shot:hover img{ transform:scale(1.035); }
.btn, .card.hoverable, .product-card{ transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition); }

/* Premium sheen sweep on solid CTAs (hover-triggered, not perpetual) */
.btn-primary, .btn-etsy{ position:relative; overflow:hidden; isolation:isolate; }
.btn-primary::after, .btn-etsy::after{ content:""; position:absolute; top:0; left:-130%; width:55%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform:skewX(-18deg); transition:left .6s cubic-bezier(.4,0,.2,1); z-index:-1; pointer-events:none; }
.btn-primary:hover::after, .btn-etsy:hover::after{ left:150%; }

/* Featured product card: soft ambient glow */
.product-card.featured{ box-shadow:var(--shadow-lg), 0 0 0 1px rgba(30,122,110,.18); }

/* ---- Stats / by-the-numbers band ---- */
.stats-band{ display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; }
.stats-band .stat{ padding:.4rem; }
.stats-band .stat .num{ display:flex; align-items:baseline; justify-content:center; gap:.05em; }
.stats-band .num-pre{ font-family:var(--font-sans); font-size:.58em; font-weight:600; color:#9FB3C6; margin-right:.15em; letter-spacing:.01em; }
@media (max-width:780px){ .stats-band{ grid-template-columns:repeat(2,1fr); gap:1.6rem 1rem; } }
@media (max-width:420px){ .stats-band{ grid-template-columns:1fr 1fr; } }

/* ---- Showcase gallery (full-bleed screenshots, no white space) ---- */
.showcase-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm); transition:transform var(--transition), box-shadow var(--transition); }
.showcase-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.showcase-card .shot-media{ position:relative; }
.showcase-card .shot-media img{ width:100%; aspect-ratio:16/10; object-fit:cover; object-position:top center;
  display:block; transition:transform .6s cubic-bezier(.2,.7,.2,1); }
.showcase-card:hover .shot-media img{ transform:scale(1.05); }
.showcase-card .shot-media::after{ content:"⤢"; position:absolute; right:.7rem; bottom:.6rem; width:2rem; height:2rem;
  display:flex; align-items:center; justify-content:center; background:rgba(20,48,75,.62); color:#fff;
  border-radius:8px; font-size:1rem; opacity:0; transition:opacity var(--transition); }
.showcase-card:hover .shot-media::after{ opacity:1; }
.showcase-cap{ padding:.95rem 1.15rem 1.15rem; }
.showcase-cap h3{ font-size:1.12rem; margin:0 0 .2rem; }
.showcase-cap p{ font-size:.92rem; color:var(--ink-soft); margin:0; }

/* ---- Interactive theme gallery ---- */
.theme-gallery{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:clamp(1rem,2.4vw,1.6rem); box-shadow:var(--shadow); }
.tg-controls{ display:flex; align-items:center; justify-content:space-between; gap:1rem 1.4rem; flex-wrap:wrap; margin-bottom:1.1rem; }
.tg-tabs{ display:flex; flex-wrap:wrap; gap:.4rem; }
.tg-tab{ border:1px solid var(--line); background:var(--paper); color:var(--ink); cursor:pointer;
  padding:.5rem .95rem; border-radius:999px; font:inherit; font-weight:600; font-size:.95rem;
  transition:background var(--transition), color var(--transition), border-color var(--transition); }
.tg-tab:hover{ border-color:var(--ink-2); }
.tg-tab.active{ background:var(--ink); color:#fff; border-color:var(--ink); }
.tg-tab .tg-short{ display:none; }
@media (max-width:560px){
  .tg-controls{ gap:.7rem; }
  .tg-tabs{ gap:.35rem; }
  .tg-tab{ padding:.45rem .7rem; font-size:.88rem; }
  .tg-tab .tg-long{ display:none; }
  .tg-tab .tg-short{ display:inline; }
  .tg-toggle button{ padding:.45rem .85rem; font-size:1.02rem; }
  .tg-mode-label{ display:none; }
}
.tg-toggle{ display:inline-flex; border:1px solid var(--line); border-radius:999px; overflow:hidden; background:var(--paper); }
.tg-toggle button{ border:none; background:transparent; cursor:pointer; font:inherit; font-weight:600; font-size:.92rem;
  padding:.5rem 1rem; color:var(--ink-soft); display:inline-flex; align-items:center; gap:.4rem; transition:background var(--transition), color var(--transition); }
.tg-toggle button.active{ background:var(--teal); color:#fff; }
.tg-stage{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); background:#0e2236; }
.tg-stage img{ width:100%; display:block; transition:opacity .35s ease; }
.tg-stage.swapping img{ opacity:0; }
.tg-meta{ margin-top:.9rem; color:var(--ink-soft); font-size:.96rem; min-height:1.2em; }
.tg-meta strong{ color:var(--ink); }

/* ---- Video facade (click to play) ---- */
.video-facade{ position:relative; cursor:pointer; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-lg); border:1px solid var(--line); background:#000; aspect-ratio:16/9; }
.video-facade img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s, opacity .3s; }
.video-facade::before{ content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(8,18,30,.45),rgba(8,18,30,.05) 45%); z-index:1; }
.video-facade:hover img{ transform:scale(1.04); }
.video-facade .play-btn{ position:absolute; inset:0; margin:auto; width:86px; height:86px; z-index:2;
  border:none; border-radius:50%; background:rgba(193,154,46,.95); color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center; box-shadow:0 12px 36px -10px rgba(0,0,0,.6);
  transition:transform var(--transition), background var(--transition); }
.video-facade:hover .play-btn{ transform:scale(1.08); background:var(--gold); }
.video-facade .play-btn svg{ width:34px; height:34px; margin-left:4px; }
.video-facade iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; z-index:3; }
.video-facade .v-label{ position:absolute; left:1.1rem; bottom:1rem; z-index:2; color:#fff; font-weight:600;
  font-size:1rem; text-shadow:0 2px 8px rgba(0,0,0,.5); }

@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  html.reveal-on .reveal{ opacity:1 !important; transform:none !important; }
}

/* ============================================================================
   21. THEME CONTROLS — dark-mode toggle + colour-theme selector in nav
   ============================================================================ */
.nav-theme{ display:flex; align-items:center; gap:.5rem; }
.dark-toggle{
  width:36px; height:36px; border-radius:9px; flex:none;
  background:var(--paper-2); border:1px solid var(--line); color:var(--ink);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background var(--transition),color var(--transition),border-color var(--transition);
}
.dark-toggle:hover{ background:var(--surface); color:var(--teal); border-color:var(--teal); }
.dark-toggle svg{ pointer-events:none; }
.dark-toggle .icon-sun{ display:none; }
.dark-toggle .icon-moon{ display:block; }
html.dark .dark-toggle .icon-sun{ display:block; }
html.dark .dark-toggle .icon-moon{ display:none; }
.theme-select{
  appearance:none; -webkit-appearance:none;
  padding:.42rem .55rem; font-size:.82rem; font-family:var(--font-sans); font-weight:500;
  border:1px solid var(--line); border-radius:9px;
  background:var(--paper-2); color:var(--ink); cursor:pointer;
  transition:background var(--transition),color var(--transition),border-color var(--transition);
  max-width:130px;
}
.theme-select:hover{ background:var(--surface); border-color:var(--teal-deep); }
.theme-select:focus-visible{ outline:none; box-shadow:var(--ring); }

@media (max-width:1420px){
  .nav-theme{ margin-top:.9rem; gap:.6rem; }
  .theme-select{ max-width:100%; font-size:.95rem; padding:.6rem .7rem; }
  .dark-toggle{ width:44px; height:44px; }
}
@media (min-width:1421px){
  .nav-panel{ gap:1rem; }
  .nav-cta{ padding-inline-end:.85rem; }
}

/* ============================================================================
   22. DARK MODE — default Quiet Fintech × Editorial palette
   ============================================================================ */
html.dark{
  --paper:        #13171e;
  --paper-2:      #1a1f2c;
  --surface:      #1e2536;
  --surface-soft: #171b28;
  --ink:          #e0e8f4;
  --ink-2:        #9ab0cc;
  --ink-soft:     #7090a8;
  --ink-faint:    #8aa8b8;
  --teal:         #2ab5a4;
  --teal-deep:    #1d9086;
  --emerald:      #3db58a;
  --gold:         #d4a830;
  --gold-soft:    #3a2e10;
  --sage:         #0e2e28;
  --sky:          #101c2a;
  --line:         rgba(180,210,240,.12);
  --line-soft:    rgba(180,210,240,.08);
  --line-cool:    rgba(180,210,240,.10);
  --danger:       #e05548;
  --warn:         #d09030;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.3);
  --shadow:    0 10px 30px -12px rgba(0,0,0,.7), 0 4px 10px -6px rgba(0,0,0,.4);
  --shadow-lg: 0 30px 70px -28px rgba(0,0,0,.85), 0 10px 24px -12px rgba(0,0,0,.55);
  --ring:      0 0 0 3px rgba(42,181,164,.40);
}
html.dark body{ color:var(--ink); background:var(--paper); background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size:28px 28px; }
html.dark .site-header{
  background:linear-gradient(rgba(19,23,30,.88),rgba(19,23,30,.90)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
  border-color:rgba(180,210,240,.10);
}
html.dark .site-header.scrolled{
  background:linear-gradient(rgba(19,23,30,.96),rgba(19,23,30,.98)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
  box-shadow:0 8px 30px -18px rgba(0,0,0,.7);
}
html.dark .nav-toggle{ background:var(--surface); border-color:var(--line); }
html.dark .nav-toggle span,
html.dark .nav-toggle span::before,
html.dark .nav-toggle span::after{ background:var(--ink); }
html.dark .nav-panel{ background:var(--paper); border-color:var(--line); box-shadow:var(--shadow); }
html.dark .frame-bar{ background:#0e1520; border-color:rgba(180,210,240,.08); }
html.dark .frame-bar i{ background:#2a3448; }
html.dark .frame-bar i:nth-child(1){ background:#5a3a38; }
html.dark .frame-bar i:nth-child(2){ background:#5a4c28; }
html.dark .frame-bar i:nth-child(3){ background:#2a4838; }
html.dark .band{ background-image:radial-gradient(circle,rgba(255,255,255,.07) 1px,transparent 1px); }
html.dark .band-ink{ background:linear-gradient(160deg,#0c1e30,#102840 55%,#163252); }
html.dark .site-footer{ background:#0c1220; }
html.dark .site-footer a{ color:#9ab8cc; }
html.dark .footer-col h4{ color:var(--ink); }
html.dark .footer-bottom{ color:#6a8898; }
html.dark .footer-disclaimer{ color:#7a96ae; }
html.dark .footer-brand p{ color:#617888; }
html.dark .lightbox{ background:rgba(0,0,0,.92); }
html.dark .price-save{ background:var(--gold-soft); color:var(--gold); }
html.dark .product-tag{ background:#1e2d42; color:#c8d8e8; }
html.dark .product-tag.best{ background:var(--teal-deep); color:#fff; }
html.dark .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ab5a4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
html.dark .tag{ background:rgba(42,181,164,.15); color:var(--teal); }
html.dark .icon-chip{ background:var(--sage); }
html.dark .icon-chip.gold{ background:var(--gold-soft); color:var(--gold); }
html.dark .icon-chip.sky{ background:var(--sky); color:var(--ink-2); }
html.dark .btn-ghost{ background:var(--surface); border-color:var(--line); color:var(--ink-2); }
html.dark .btn-outline{ border-color:var(--ink); color:var(--ink); }
html.dark .btn-outline:hover{ background:var(--ink); color:var(--paper); }
html.dark .pill{ background:var(--surface); border-color:var(--line); color:var(--ink-soft); }
html.dark .pill b{ color:var(--ink); }
html.dark .callout{ background:var(--surface); border-color:var(--line); }
html.dark .quote{ color:var(--ink); }
html.dark .tg-tab{ background:var(--paper-2); border-color:var(--line); color:var(--ink); }
html.dark .tg-tab.active{ background:var(--ink); color:var(--paper); border-color:var(--ink); }
html.dark .tg-toggle{ background:var(--paper-2); border-color:var(--line); }
html.dark .tg-toggle button{ color:var(--ink-soft); }
html.dark .theme-gallery{ background:var(--surface); border-color:var(--line); }
html.dark .showcase-card{ background:var(--surface); border-color:var(--line); }
html.dark .faq details{ background:var(--surface); border-color:var(--line); }
html.dark .faq summary{ color:var(--ink); }
html.dark .video-facade{ border-color:var(--line); }
html.dark .dark-toggle{ background:var(--paper-2); border-color:var(--line); color:var(--ink); }
html.dark .theme-select{ background:var(--paper-2); border-color:var(--line); color:var(--ink); }

/* ============================================================================
   23. SOFT CONSUMER THEME — warm cream, rounded, friendly
   ============================================================================ */
html[data-theme="soft"]{
  --paper:        #faf4e8;
  --paper-2:      #efe6d6;
  --surface:      #ffffff;
  --surface-soft: #faf4e8;
  --ink:          #1c1812;
  --ink-2:        #4a3e2a;
  --ink-soft:     #6b5e50;
  --ink-faint:    #6b5e50;
  --teal:         #2e8b6f;
  --teal-deep:    #1f6b52;
  --emerald:      #3a8a62;
  --gold:         #b88c20;
  --gold-soft:    #f0d8a0;
  --sage:         #d8edd8;
  --sky:          #e0eef4;
  --line:         rgba(60,42,24,.16);
  --line-soft:    rgba(60,42,24,.10);
  --line-cool:    rgba(60,42,24,.10);
  --danger:       #c0402e;
  --warn:         #b8780e;
  --shadow-sm: 0 1px 2px rgba(40,28,14,.04),0 2px 6px rgba(40,28,14,.05);
  --shadow:    0 10px 30px -12px rgba(40,28,14,.20),0 4px 10px -6px rgba(40,28,14,.10);
  --shadow-lg: 0 30px 70px -28px rgba(40,28,14,.38),0 10px 24px -12px rgba(40,28,14,.18);
  --ring:      0 0 0 3px rgba(46,139,111,.35);
}
html[data-theme="soft"] .site-header{
  background:linear-gradient(rgba(250,244,232,.10),rgba(250,244,232,.12)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html[data-theme="soft"] .band-ink{ background:linear-gradient(160deg,#1a1208,#221a0a 55%,#2a2010); }
html[data-theme="soft"] .site-footer{ background:#1a1208; }
html[data-theme="soft"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e8b6f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
html[data-theme="soft"] .price-save{ background:#eedfa0; color:#6b5010; }
html[data-theme="soft"] .nav-links a[aria-current="page"]{ color:var(--teal-deep); background:rgba(46,139,111,.28); }
html[data-theme="soft"] .eyebrow{ color:var(--teal); }
html.dark[data-theme="soft"]{
  --paper:        #211d18;
  --paper-2:      #2a251e;
  --surface:      #302a22;
  --surface-soft: #1a1612;
  --ink:          #f1ede4;
  --ink-2:        #c4b9a6;
  --ink-soft:     #9e9082;
  --ink-faint:    #9e9082;
  --teal:         #3aaa84;
  --teal-deep:    #2a8864;
  --emerald:      #4ab888;
  --gold:         #c8a030;
  --gold-soft:    #3d2e0a;
  --sage:         #0e2e1e;
  --sky:          #101828;
  --line:         rgba(255,240,220,.12);
  --line-soft:    rgba(255,240,220,.08);
  --line-cool:    rgba(255,240,220,.08);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4),0 2px 6px rgba(0,0,0,.3);
  --shadow:    0 10px 30px -12px rgba(0,0,0,.7),0 4px 10px -6px rgba(0,0,0,.4);
  --shadow-lg: 0 30px 70px -28px rgba(0,0,0,.85),0 10px 24px -12px rgba(0,0,0,.55);
}
html.dark[data-theme="soft"] .site-header{
  background:linear-gradient(rgba(33,29,24,.88),rgba(33,29,24,.90)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html.dark[data-theme="soft"] .site-header.scrolled{
  background:linear-gradient(rgba(33,29,24,.96),rgba(33,29,24,.98)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html.dark[data-theme="soft"] .band-ink{ background:linear-gradient(160deg,#120d08,#1a1408 55%,#221a0e); }
html.dark[data-theme="soft"] .site-footer{ background:#0e0908; }
html.dark[data-theme="soft"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233aaa84' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ============================================================================
   24. EDITORIAL THEME — warm ivory, literary, serif-forward
   ============================================================================ */
html[data-theme="editorial"]{
  --paper:        #fbf8f3;
  --paper-2:      #f1ece1;
  --surface:      #ffffff;
  --surface-soft: #fbf8f3;
  --ink:          #14110c;
  --ink-2:        #2e3858;
  --ink-soft:     #555048;
  --ink-faint:    #6a6558;
  --teal:         #3d5a80;
  --teal-deep:    #2a4060;
  --emerald:      #3d5a80;
  --gold:         #b35a1a;
  --gold-soft:    #f5e0cc;
  --sage:         #cfe5db;
  --sky:          #d7e3f4;
  --line:         rgba(20,15,8,.12);
  --line-soft:    rgba(20,15,8,.08);
  --line-cool:    rgba(20,15,8,.08);
  --danger:       #b5402f;
  --warn:         #b35a1a;
  --shadow-sm: 0 0 0 1px rgba(20,15,8,.04),0 2px 4px rgba(20,15,8,.04);
  --shadow:    0 0 0 1px rgba(20,15,8,.06),0 8px 24px -10px rgba(20,15,8,.18);
  --shadow-lg: 0 0 0 1px rgba(20,15,8,.06),0 20px 50px -18px rgba(20,15,8,.28);
  --ring:      0 0 0 3px rgba(61,90,128,.30);
}
html[data-theme="editorial"] .site-header{
  background:linear-gradient(rgba(251,248,243,.10),rgba(251,248,243,.12)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html[data-theme="editorial"] .band-ink{ background:linear-gradient(160deg,#0d0c08,#181610 55%,#201e16); }
html[data-theme="editorial"] .site-footer{ background:#0d0c08; }
html[data-theme="editorial"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d5a80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
html[data-theme="editorial"] .price-save{ background:#f5e0cc; color:#7a3508; }
html[data-theme="editorial"] .nav-links a[aria-current="page"]{ color:var(--teal-deep); background:rgba(61,90,128,.28); }
html[data-theme="editorial"] .eyebrow{ color:var(--gold); }
html[data-theme="editorial"] .eyebrow::before{ background:var(--teal); }
html.dark[data-theme="editorial"]{
  --paper:        #1a1814;
  --paper-2:      #221f19;
  --surface:      #2a261e;
  --surface-soft: #13110d;
  --ink:          #ece8df;
  --ink-2:        #a8c0d4;
  --ink-soft:     #a09a8e;
  --ink-faint:    #a09a8e;
  --teal:         #7aa0c0;
  --teal-deep:    #5a80a4;
  --emerald:      #7aa0c0;
  --gold:         #e08840;
  --gold-soft:    #3d2508;
  --sage:         #0a2820;
  --sky:          #0e1c2e;
  --line:         rgba(255,240,220,.08);
  --line-soft:    rgba(255,240,220,.05);
  --line-cool:    rgba(255,240,220,.06);
  --shadow-sm: 0 0 0 1px rgba(255,240,220,.04);
  --shadow:    0 0 0 1px rgba(255,240,220,.05),0 8px 24px -10px rgba(0,0,0,.6);
  --shadow-lg: 0 0 0 1px rgba(255,240,220,.05),0 20px 50px -18px rgba(0,0,0,.8);
}
html.dark[data-theme="editorial"] .site-header{
  background:linear-gradient(rgba(26,24,20,.88),rgba(26,24,20,.90)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html.dark[data-theme="editorial"] .site-header.scrolled{
  background:linear-gradient(rgba(26,24,20,.96),rgba(26,24,20,.98)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html.dark[data-theme="editorial"] .band-ink{ background:linear-gradient(160deg,#0a0908,#12100c 55%,#1a1810); }
html.dark[data-theme="editorial"] .site-footer{ background:#080706; }
html.dark[data-theme="editorial"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237aa0c0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ============================================================================
   25. PRO DASHBOARD THEME — clean, dense, IBM-Blue accent
   ============================================================================ */
html[data-theme="pro"]{
  --paper:        #f5f5f5;
  --paper-2:      #ededed;
  --surface:      #ffffff;
  --surface-soft: #f5f5f5;
  --ink:          #161616;
  --ink-2:        #0f62fe;
  --ink-soft:     #525252;
  --ink-faint:    #6b6b6b;
  --teal:         #0f62fe;
  --teal-deep:    #0050e6;
  --emerald:      #198038;
  --gold:         #8a5a00;
  --gold-soft:    #fce7a0;
  --sage:         #d4e8d0;
  --sky:          #d0e2ff;
  --line:         rgba(22,22,22,.12);
  --line-soft:    rgba(22,22,22,.08);
  --line-cool:    rgba(22,22,22,.08);
  --danger:       #da1e28;
  --warn:         #8a4000;
  --shadow-sm: 0 1px 2px rgba(22,22,22,.06);
  --shadow:    0 4px 12px -4px rgba(22,22,22,.12);
  --shadow-lg: 0 12px 32px -8px rgba(22,22,22,.20);
  --ring:      0 0 0 3px rgba(15,98,254,.30);
  --radius:    4px;
  --radius-sm: 2px;
  --radius-lg: 4px;
}
html[data-theme="pro"] .site-header{
  background:linear-gradient(rgba(245,245,245,.10),rgba(245,245,245,.12)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html[data-theme="pro"] .band-ink{ background:linear-gradient(160deg,#0a0a0a,#161616 55%,#1e1e1e); }
html[data-theme="pro"] .site-footer{ background:#0a0a0a; }
html[data-theme="pro"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f62fe' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
html[data-theme="pro"] .price-save{ background:#fff1cc; color:#5a3a00; }
html[data-theme="pro"] .btn-primary{ background:#0f62fe; box-shadow:0 4px 12px -6px rgba(15,98,254,.6); }
html[data-theme="pro"] .btn-primary:hover{ background:#0050e6; }
html[data-theme="pro"] .nav-links a[aria-current="page"]{ color:#0050e6; background:rgba(15,98,254,.28); }
html[data-theme="pro"] .eyebrow{ color:#0f62fe; }
html[data-theme="pro"] .eyebrow::before{ background:#0f62fe; }
html.dark[data-theme="pro"]{
  --paper:        #161616;
  --paper-2:      #262626;
  --surface:      #1c1c1c;
  --surface-soft: #0a0a0a;
  --ink:          #f4f4f4;
  --ink-2:        #78a9ff;
  --ink-soft:     #a8a8a8;
  --ink-faint:    #a8a8a8;
  --teal:         #4589ff;
  --teal-deep:    #0f62fe;
  --emerald:      #42be65;
  --gold:         #f1c21b;
  --gold-soft:    #3d3000;
  --sage:         #0a2610;
  --sky:          #0a1e3a;
  --line:         rgba(244,244,244,.12);
  --line-soft:    rgba(244,244,244,.08);
  --line-cool:    rgba(244,244,244,.08);
  --danger:       #ff8389;
  --warn:         #f1c21b;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.5);
  --shadow:    0 4px 12px -4px rgba(0,0,0,.7);
  --shadow-lg: 0 12px 32px -8px rgba(0,0,0,.85);
}
html.dark[data-theme="pro"] .site-header{
  background:linear-gradient(rgba(22,22,22,.88),rgba(22,22,22,.90)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html.dark[data-theme="pro"] .site-header.scrolled{
  background:linear-gradient(rgba(22,22,22,.97),rgba(22,22,22,.99)),url("../img/header-beach.jpg") center 38%/cover no-repeat;
}
html.dark[data-theme="pro"] .band-ink{ background:linear-gradient(160deg,#000000,#0a0a0a 55%,#161616); }
html.dark[data-theme="pro"] .site-footer{ background:#000000; }
html.dark[data-theme="pro"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234589ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ============================================================================
   26. HIGH CONTRAST THEME — AAA-level, built for visibility
   ============================================================================ */
html[data-theme="contrast"]{
  --paper:        #ffffff;
  --paper-2:      #f0f0f0;
  --surface:      #ffffff;
  --surface-soft: #f8f8f8;
  --ink:          #000000;
  --ink-2:        #000000;
  --ink-soft:     #1c1c1c;
  --ink-faint:    #3a3a3a;
  --teal:         #003d80;
  --teal-deep:    #002860;
  --emerald:      #006618;
  --gold:         #5a3600;
  --gold-soft:    #fce8c0;
  --sage:         #c8e8c8;
  --sky:          #c8d8f8;
  --line:         rgba(0,0,0,.55);
  --line-soft:    rgba(0,0,0,.35);
  --line-cool:    rgba(0,0,0,.35);
  --danger:       #7a0010;
  --warn:         #5a3300;
  --shadow-sm: 0 0 0 1px rgba(0,0,0,.5);
  --shadow:    0 0 0 2px rgba(0,0,0,.7);
  --shadow-lg: 0 0 0 2px rgba(0,0,0,.8);
  --ring:      0 0 0 3px #003d80;
  --radius:    4px;
  --radius-sm: 2px;
  --radius-lg: 6px;
}
html[data-theme="contrast"] .site-header{
  background:#ffffff;
  border-bottom:2px solid #000000;
  backdrop-filter:none;
}
html[data-theme="contrast"] .site-header.scrolled{
  background:#ffffff;
  box-shadow:0 2px 0 0 #000000;
}
html[data-theme="contrast"] a{ color:#003d80; }
html[data-theme="contrast"] a:hover{ color:#002860; }
html[data-theme="contrast"] .nav-links a[aria-current="page"]{ color:#003d80; background:rgba(0,61,128,.12); }
html[data-theme="contrast"] .band-ink{ background:#000000; }
html[data-theme="contrast"] .site-footer{ background:#000000; border-top:2px solid rgba(255,255,255,.3); }
html[data-theme="contrast"] .btn-primary{ background:#003d80; box-shadow:none; }
html[data-theme="contrast"] .btn-primary:hover{ background:#002860; }
html[data-theme="contrast"] .eyebrow{ color:#003d80; }
html[data-theme="contrast"] .eyebrow::before{ background:#003d80; }
html[data-theme="contrast"] .hero-photo .accent{ color:#86a8d4; }
html[data-theme="contrast"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003d80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
html[data-theme="contrast"] .price-save{ background:#fce8c0; color:#3a1c00; }
html[data-theme="contrast"] .tg-tab.active{ background:#000000; color:#ffffff; border-color:#000000; }
html.dark[data-theme="contrast"]{
  --paper:        #000000;
  --paper-2:      #161616;
  --surface:      #0a0a0a;
  --surface-soft: #000000;
  --ink:          #ffffff;
  --ink-2:        #ffffff;
  --ink-soft:     #f2f2f2;
  --ink-faint:    #d4d4d4;
  --teal:         #9cc7ff;
  --teal-deep:    #78a9ff;
  --emerald:      #6bdb7c;
  --gold:         #ffd27a;
  --gold-soft:    #3a2400;
  --sage:         #00332a;
  --sky:          #001f4d;
  --line:         rgba(255,255,255,.55);
  --line-soft:    rgba(255,255,255,.35);
  --line-cool:    rgba(255,255,255,.35);
  --danger:       #ff9a92;
  --warn:         #ffb87a;
  --shadow-sm: 0 0 0 1px rgba(255,255,255,.3);
  --shadow:    0 0 0 2px rgba(255,255,255,.3);
  --shadow-lg: 0 0 0 2px rgba(255,255,255,.4);
  --ring:      0 0 0 3px #9cc7ff;
}
html.dark[data-theme="contrast"] .site-header{
  background:#000000;
  border-bottom:2px solid #ffffff;
  backdrop-filter:none;
}
html.dark[data-theme="contrast"] .site-header.scrolled{
  background:#000000;
  box-shadow:0 2px 0 0 #ffffff;
}
html.dark[data-theme="contrast"] a{ color:#9cc7ff; }
html.dark[data-theme="contrast"] a:hover{ color:#c4dcff; }
html.dark[data-theme="contrast"] .btn-primary{ background:#78a9ff; color:#000000; box-shadow:none; }
html.dark[data-theme="contrast"] .btn-primary:hover{ background:#9cc7ff; color:#000000; }
html.dark[data-theme="contrast"] .band-ink{ background:#000000; border-top:1px solid rgba(255,255,255,.2); border-bottom:1px solid rgba(255,255,255,.2); }
html.dark[data-theme="contrast"] .site-footer{ background:#000000; border-top:2px solid #ffffff; }
html.dark[data-theme="contrast"] .checklist li::before{
  background-color:var(--sage);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239cc7ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
html.dark[data-theme="contrast"] .eyebrow{ color:#ffd27a; }
html.dark[data-theme="contrast"] .tg-tab.active{ background:#ffffff; color:#000000; border-color:#ffffff; }
