
  :root {
    --night: #0a1020;
    --night-2: #0d1526;
    --night-3: #131d33;
    --cream: #f7efe1;
    --cream-2: #fdf8ee;
    --ink: #16120a;
    --ink-soft: #4a4335;

    --g1: #8a6414; --g2: #b7891f; --g3: #e9c65f; --g4: #f6e4a6; --g5: #c9992c;
    --gold: #d4a72c;
    --gold-line: rgba(212,167,44,.36);
    --bone: #f6efe2;
    --verify: #4f9a77;

    --metal: linear-gradient(103deg, #8a6414 0%, #c9992c 20%, #f6e4a6 42%, #e3b845 58%, #a2761a 76%, #f0d47f 100%);
    --metal-soft: linear-gradient(103deg, #9c7420 0%, #d4a72c 40%, #f0d891 60%, #b98a22 100%);

    --display: "Archivo Black", "Helvetica Neue", "Arial Black", system-ui, sans-serif;
    --serif: "Didot", "Bodoni MT", "Hoefler Text", Garamond, Georgia, serif;
    --script: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
    --sans: ui-sans-serif, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --band-max: 1180px;

    /* theme-neutral chrome */
    --page: var(--night);
  }
  @media (prefers-color-scheme: light) { :root { --page: var(--cream); } }
  :root[data-theme="dark"]  { --page: var(--night); }
  :root[data-theme="light"] { --page: var(--cream); }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0;
    background: var(--page);
    color: var(--bone);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .band { padding: clamp(3.5rem, 8vw, 7rem) clamp(1.1rem, 4vw, 2.5rem); }
  .band-inner { max-width: var(--band-max); margin: 0 auto; }
  .night { background: var(--night); color: var(--bone); }
  .night-2 { background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%); color: var(--bone); }
  .cream { background: var(--cream); color: var(--ink); }
  .cream-2 { background: var(--cream-2); color: var(--ink); }

  .metal {
    background: var(--metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }

  .kicker {
    display: inline-flex; align-items: center; gap: .7rem;
    font-size: clamp(.56rem, 1vw, .68rem); letter-spacing: .32em; text-transform: uppercase;
    font-weight: 700; margin: 0 0 1.2rem;
  }
  .kicker svg { width: 13px; height: 13px; flex: none; }
  .night .kicker, .night-2 .kicker { color: var(--g3); }
  .cream .kicker, .cream-2 .kicker { color: var(--g1); }
  .kicker i { width: 34px; height: 1px; background: var(--gold); opacity: .6; }

  h1, h2, h3 { font-family: var(--display); font-weight: 900; margin: 0; letter-spacing: -0.02em; line-height: .98; text-transform: uppercase; text-wrap: balance; }

  .lede { font-size: clamp(.92rem, 1.3vw, 1.06rem); line-height: 1.7; }
  .night .lede, .night-2 .lede { color: rgba(246,239,226,.82); }
  .cream .lede, .cream-2 .lede { color: var(--ink-soft); }

  /* ---------- buttons ---------- */
  .btn { display: inline-flex; align-items: center; gap: .7rem; border-radius: 3px; text-decoration: none;
    font-size: clamp(.6rem, 1vw, .72rem); font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    padding: clamp(.85rem, 1.6vw, 1.1rem) clamp(1.4rem, 2.6vw, 2.1rem); transition: transform .2s ease, filter .2s ease, background .2s ease; cursor: pointer; border: 0; }
  .btn-gold { background: var(--metal); color: #14100a; }
  .btn-gold:hover { transform: translateY(-2px); filter: brightness(1.07); }
  .btn-line { background: transparent; border: 1px solid var(--gold-line); }
  .night .btn-line, .night-2 .btn-line { color: var(--g3); }
  .cream .btn-line { color: var(--g1); }
  .btn-line:hover { background: rgba(212,167,44,.1); }

  /* ---------- header ---------- */
  header.site {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: .7rem clamp(1.1rem, 4vw, 2.5rem);
    background: rgba(10,16,32,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212,167,44,.18);
  }
  .brand-lock { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
  .brand-img { height: 50px; width: auto; display: block; }
  header.site nav { display: flex; gap: 1.6rem; align-items: center; }
  header.site nav a { color: rgba(246,239,226,.78); text-decoration: none; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
  header.site nav a:hover { color: var(--g3); }
  header.site .head-cta { display: inline-flex; }
  .burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--g3); margin: 5px 0; transition: transform .25s ease; }
  @media (max-width: 860px) {
    header.site nav { display: none; }
    .burger { display: block; }
  }

  .announce { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.2rem; align-items: center;
    padding: .55rem 1rem; background: #070c18; border-bottom: 1px solid rgba(212,167,44,.14);
    font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(246,239,226,.66); }
  .announce b { color: var(--g3); font-weight: 700; }
  .announce svg { width: 10px; height: 10px; vertical-align: -1px; }

  /* ---------- hero ---------- */
  .hero { position: relative; overflow: hidden; padding-top: clamp(3rem, 7vw, 5.5rem); }
  #dust { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: .9; }
  .hero .band-inner { position: relative; z-index: 2; }
  .hero-copy { max-width: 40rem; }
  .hero h1 { font-size: clamp(2.7rem, 8vw, 6rem); }
  .hero h1 .metal { display: block; }
  .hero .lede { max-width: 42ch; margin: clamp(1.1rem,2.4vw,1.8rem) 0 0; }
  .hero .cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: clamp(1.4rem,3vw,2.2rem); }

  .assure { align-self: stretch; border: 1px solid rgba(212,167,44,.28); background: rgba(9,14,28,.55);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: clamp(1.2rem,2.4vw,1.7rem); border-radius: 4px; }
  .assure h4 { font-family: var(--sans); font-weight: 800; font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--g3); margin: 0 0 1rem; }
  .assure ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .95rem; }
  .assure li { display: flex; gap: .75rem; align-items: flex-start; font-size: .85rem; line-height: 1.4; color: rgba(246,239,226,.9); }
  .assure li svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
  .assure li b { color: #fff; font-weight: 700; }

  /* ---------- trust strip ---------- */
  .strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(212,167,44,.2);
    border-top: 1px solid rgba(212,167,44,.2); border-bottom: 1px solid rgba(212,167,44,.2); }
  @media (max-width: 720px) { .strip { grid-template-columns: repeat(2, 1fr); } }
  .strip div { background: var(--night); padding: 1.2rem 1rem; text-align: center; }
  .strip b { display: block; font-family: var(--display); font-size: clamp(1.1rem,2.2vw,1.5rem); letter-spacing: -0.01em;
    background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .strip span { display: block; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,239,226,.6); margin-top: .35rem; }

  /* ---------- section heads ---------- */
  .head-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.9fr); gap: 1.5rem 3rem; align-items: end; margin-bottom: clamp(2rem,4vw,3rem); }
  @media (max-width: 820px) { .head-row { grid-template-columns: 1fr; } }
  .head-row h2 { font-size: clamp(1.8rem, 4.4vw, 3.1rem); }
  .head-row h2 em { font-style: normal; }
  .head-row .head-note { font-size: .92rem; line-height: 1.7; }
  .cream .head-row .head-note { color: var(--ink-soft); }
  .night .head-row .head-note, .night-2 .head-row .head-note { color: rgba(246,239,226,.78); }

  /* ---------- trust cards ---------- */
  .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,15.5rem),1fr)); gap: 1rem; }
  .tcard { border: 1px solid rgba(22,18,10,.12); border-radius: 5px; padding: clamp(1.3rem,2.5vw,1.7rem); background: #fff; display: flex; flex-direction: column; gap: .7rem; }
  .tcard .ico { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg,#faf3e2,#f0dfb6); }
  .tcard .ico svg { width: 22px; height: 22px; }
  .tcard h3 { font-family: var(--serif); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 1.18rem; color: var(--ink); }
  .tcard p { margin: 0; font-size: .86rem; line-height: 1.6; color: var(--ink-soft); }
  .tcard .verify { display: inline-flex; align-items: center; gap: .4rem; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--verify); margin-top: auto; }
  .tcard .verify svg { width: 14px; height: 14px; }

  /* ---------- margin / profit ---------- */
  .margin-wrap { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
  @media (max-width: 900px) { .margin-wrap { grid-template-columns: 1fr; } }
  .calc { border: 1px solid rgba(212,167,44,.28); border-radius: 6px; padding: clamp(1.3rem,3vw,2rem); background: rgba(9,14,28,.5); }
  .calc label { display: block; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--g3); font-weight: 700; margin-bottom: .55rem; }
  .calc select, .calc input[type=range] { width: 100%; }
  .calc select { appearance: none; background: #0b1428; color: var(--bone); border: 1px solid rgba(212,167,44,.32); border-radius: 4px; padding: .75rem .9rem; font: inherit; font-size: .9rem; }
  .calc .field { margin-bottom: 1.3rem; }
  .calc input[type=range] { accent-color: var(--gold); margin-top: .3rem; }
  .calc .rangehead { display: flex; justify-content: space-between; align-items: baseline; }
  .calc .rangehead b { font-family: var(--display); font-size: 1.1rem; background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .calc .out { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(212,167,44,.2); border: 1px solid rgba(212,167,44,.2); border-radius: 5px; overflow: hidden; margin-top: 1.3rem; }
  .calc .out div { background: #0a1226; padding: 1rem; }
  .calc .out div:last-child { background: linear-gradient(135deg,#1a1305,#241a06); }
  .calc .out span { display: block; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,239,226,.6); }
  .calc .out b { display: block; font-family: var(--display); font-size: clamp(1.1rem,2.4vw,1.5rem); margin-top: .35rem; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
  .calc .out b.n { color: var(--bone); }
  .calc .out b.p { background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .calc .fine { font-size: .66rem; line-height: 1.5; color: rgba(246,239,226,.5); margin: 1rem 0 0; }

  /* ---------- bundles table ---------- */
  .tier-tabs { display: inline-flex; gap: .4rem; padding: .35rem; border: 1px solid rgba(22,18,10,.14); border-radius: 999px; margin-bottom: 1.6rem; }
  .tier-tabs button { border: 0; background: transparent; font: inherit; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer; color: var(--ink-soft); }
  .tier-tabs button[aria-pressed="true"] { background: var(--metal); color: #14100a; }
  .btable { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 6px; border: 1px solid rgba(22,18,10,.12); }
  .btable caption { text-align: left; font-size: .78rem; color: var(--ink-soft); margin-bottom: .8rem; }
  .btable th, .btable td { text-align: left; padding: .95rem 1.1rem; font-size: .9rem; border-bottom: 1px solid rgba(22,18,10,.08); }
  .btable thead th { background: var(--night); color: var(--g3); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; }
  .btable tbody tr:nth-child(even) { background: #fbf5ea; }
  .btable .name { font-weight: 800; color: var(--ink); }
  .btable .pcs { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
  .btable .price { font-family: var(--display); font-size: 1.05rem; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
  .btable .per { font-size: .72rem; color: var(--verify); font-variant-numeric: tabular-nums; }
  .tablewrap { overflow-x: auto; }

  /* ---------- how it works ---------- */
  .steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(212,167,44,.2); border: 1px solid rgba(212,167,44,.2); border-radius: 6px; overflow: hidden; }
  @media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
  .step { background: var(--night-2); padding: clamp(1.2rem,2.4vw,1.6rem); display: flex; flex-direction: column; gap: .6rem; }
  .step .no { font-family: var(--display); font-size: 1.5rem; background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .step h4 { font-family: var(--sans); font-weight: 800; font-size: .95rem; color: #fff; text-transform: none; letter-spacing: 0; }
  .step p { margin: 0; font-size: .78rem; line-height: 1.55; color: rgba(246,239,226,.72); }
  .step.key { background: linear-gradient(160deg,#141d33,#1c1606); }
  .step.key .safe { display: inline-flex; align-items: center; gap: .35rem; font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--g3); }
  .step.key .safe svg { width: 13px; height: 13px; }

  /* ---------- authenticity ---------- */
  .auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 720px) { .auth-grid { grid-template-columns: 1fr; } }
  .acard { border: 1px solid rgba(22,18,10,.12); border-radius: 6px; padding: clamp(1.4rem,3vw,2rem); background: #fff; }
  .acard .tag { display: inline-block; font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem; }
  .acard.sealed .tag { background: #1a2540; color: var(--g3); }
  .acard.open .tag { background: #f0e3c2; color: var(--g1); }
  .acard h3 { font-family: var(--serif); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 1.35rem; color: var(--ink); margin-bottom: .6rem; }
  .acard p { margin: 0 0 1rem; font-size: .87rem; line-height: 1.6; color: var(--ink-soft); }
  .acard ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
  .acard li { display: flex; gap: .5rem; font-size: .84rem; color: var(--ink); }
  .acard li svg { width: 16px; height: 16px; flex: none; color: var(--verify); margin-top: 2px; }

  /* ---------- testimonials ---------- */
  .quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,17rem),1fr)); gap: 1rem; }
  .quote { border: 1px solid rgba(212,167,44,.22); border-radius: 6px; padding: clamp(1.3rem,2.6vw,1.8rem); background: rgba(9,14,28,.5); display: flex; flex-direction: column; gap: 1rem; }
  .quote .stars { color: var(--g3); letter-spacing: .1em; font-size: .8rem; }
  .quote p { margin: 0; font-family: var(--serif); font-size: 1.05rem; line-height: 1.5; color: var(--bone); }
  .quote .who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
  .quote .av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#2a2038,#3a2c10); display: grid; place-items: center; font-family: var(--display); color: var(--g3); font-size: .9rem; }
  .quote .who b { display: block; font-size: .82rem; color: #fff; }
  .quote .who span { display: block; font-size: .68rem; color: rgba(246,239,226,.55); letter-spacing: .04em; }
  .ph-note { font-size: .7rem; color: rgba(246,239,226,.5); font-style: italic; margin: 1.2rem 0 0; }

  /* ---------- final cta ---------- */
  .final { text-align: center; }
  .final h2 { font-size: clamp(2rem,5.5vw,4rem); margin-bottom: 1rem; }
  .final .lede { max-width: 46ch; margin: 0 auto 2rem; }
  .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
  .contact-line { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.6rem; margin-top: 2rem; font-size: .82rem; }
  .cream .contact-line a { color: var(--g1); }
  .contact-line a { text-decoration: none; font-weight: 700; }
  .contact-line span { color: var(--ink-soft); }

  /* ---------- footer ---------- */
  footer.site { background: #070c18; color: rgba(246,239,226,.62); padding: 2.5rem clamp(1.1rem,4vw,2.5rem); }
  footer.site .fin { max-width: var(--band-max); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; font-size: .74rem; }
  footer.site a { color: var(--g3); text-decoration: none; }
  footer.site .disc { width: 100%; font-size: .68rem; line-height: 1.6; color: rgba(246,239,226,.4); border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.2rem; margin-top: .5rem; }

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  .sparkle-note { display: inline-flex; align-items: center; gap: .4rem; }

  /* ---------- flyer carousel ---------- */
  .carousel { position: relative; display: flex; align-items: center; gap: .6rem; }
  .car-viewport { flex: 1; overflow: hidden; border-radius: 6px; }
  .car-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
  @media (prefers-reduced-motion: reduce) { .car-track { transition: none; } }
  .car-slide { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; }
  .car-slide img { max-height: min(78vh, 900px); max-width: 100%; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 24px 60px -24px rgba(0,0,0,.7); cursor: zoom-in; }
  .car-empty { border: 1px dashed rgba(212,167,44,.4); border-radius: 6px; text-align: center; padding: 2rem; width: 100%; }
  .car-empty b { display: block; font-family: var(--display); font-size: 1.3rem; background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .car-empty span { display: block; margin-top: .6rem; font-size: .86rem; color: rgba(246,239,226,.7); max-width: 34ch; margin-inline: auto; }
  .car-nav { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(212,167,44,.4); background: rgba(9,14,28,.7); color: var(--g3); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease; display: grid; place-items: center; }
  .car-nav:hover { background: rgba(212,167,44,.18); transform: scale(1.06); }
  .car-nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  @media (max-width: 640px) { .car-nav { width: 36px; height: 36px; font-size: 1.3rem; } .car-slide img { max-height: min(72vh, 720px); } }
  .car-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
  .car-dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 0; background: rgba(212,167,44,.3); cursor: pointer; transition: background .2s ease, transform .2s ease; }
  .car-dot.on { background: var(--gold); transform: scale(1.25); }
  .car-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  .lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(4,7,14,.92); display: flex; align-items: center; justify-content: center; padding: 1rem; cursor: zoom-out; overflow: auto; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  .lightbox img { max-width: 96vw; max-height: 94vh; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }