/* ==========================================================================
   PayCard — section-specific styles
   ========================================================================== */

/* =========================== 1. HEADER =========================== */

/* ---------- utility rate strip (mobile-first scope) ----------
   Dark navy ticker line above the header. Legacy palette: ink-900 ground,
   green live dot, gold shop link. Hardcoded darks on purpose — it must read
   as a rate board, not as page chrome. */
.utilbar {
  background: var(--ink-900); color: #CFDCEA;
  font-size: var(--fs-xs);
}
.utilbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  min-block-size: 36px; padding-block: var(--sp-1);
}
.utilbar__rate { display: inline-flex; align-items: center; gap: var(--sp-2); margin: 0; }
.utilbar__val { font-weight: 700; color: #fff; }
.utilbar__dot {
  inline-size: 7px; block-size: 7px; border-radius: 50%; flex: none;
  background: var(--verified);
  box-shadow: 0 0 0 3px rgba(30,127,90,.25);
}
.utilbar__date { color: #93A9C1; }
.utilbar__link {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  color: var(--gold-400); font-weight: 700; text-decoration: none;
  white-space: nowrap; min-block-size: 36px;
}
.utilbar__link svg { inline-size: 14px; block-size: 14px; }
@media (max-width: 560px) { .utilbar__date { display: none; } }

/* ---------- shop news strip (mobile-first scope) ----------
   Paper line under the header: brass-tagged facts that come from the live
   catalogue. Content never duplicates the utilbar (rates vs news). */
.subbar {
  background: var(--bg-surface);
  border-block-end: 1px solid var(--border-subtle);
  font-size: var(--fs-xs);
}
.subbar__inner {
  display: flex; align-items: center; gap: var(--sp-3);
  min-block-size: 34px; padding-block: var(--sp-1);
}
.subbar__tag {
  flex: none; font-weight: 700; color: var(--green-700);
  background: var(--verified-wash); border: 1px solid #C9E4D8;
  border-radius: 4px; padding: 2px var(--sp-2);
}
.subbar__line { margin: 0; color: var(--text-body); font-weight: 600; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,240,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-block-end: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.header.is-scrolled {
  border-block-end-color: var(--border-subtle);
  background: rgba(247,245,240,.94);
  box-shadow: 0 1px 20px rgba(11,31,58,.06);
}
.header__inner {
  min-block-size: var(--header-h);
  display: flex; align-items: center; gap: var(--sp-5);
}

.logo {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  text-decoration: none; color: var(--text-strong); flex: none;
  min-block-size: 44px; padding-inline-end: var(--sp-1);
}
/* Footer uses the official reverse lockup (bone wordmark on navy). */
.logo__lockup,
.footer__lockup {
  display: block;
  inline-size: clamp(8.75rem, 12vw, 10.5rem);
  block-size: auto;
  aspect-ratio: 239 / 100;
}
.footer__lockup { filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .25)); }
.footer__brand {
  display: inline-flex;
  border-radius: .5rem;
  margin-block-end: var(--sp-3);
}
.footer__brand:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: var(--font-head); font-weight: 800; font-size: 1.0625rem; }
.logo__tag { font-size: .6875rem; color: var(--text-muted); letter-spacing: .02em; }

.nav { margin-inline-start: auto; }
.nav__list { display: flex; align-items: center; gap: var(--sp-2); }
.nav__link {
  display: inline-flex; align-items: center;
  min-block-size: 44px; padding-inline: var(--sp-3);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--slate-600); text-decoration: none;
  transition: color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--ink-700); background: rgba(11,31,58,.05); }
.nav__link[aria-current="true"] { color: var(--ink-700); font-weight: 700; }

.header__actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }
.header__phone {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  min-block-size: 44px; padding-inline: var(--sp-2);
  font-size: var(--fs-sm); font-weight: 700; color: var(--text-strong);
  text-decoration: none; direction: ltr;
}
.header__phone svg { inline-size: 17px; block-size: 17px; color: var(--verified); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  inline-size: 46px; block-size: 46px; flex: none;
  background: transparent; border: 1px solid var(--border-hairline);
  border-radius: var(--r-sm); color: var(--text-strong); cursor: pointer;
}
.nav-toggle svg { inline-size: 22px; block-size: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; margin-inline-start: auto; }
  .header__phone { display: none; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 120;
    margin: 0; padding: 0;
    background: transparent; border: 0; box-shadow: none;
    display: none;
  }
  .nav.is-open { display: block; }
  /* Grouped drawer over a dimmed + blurred scrim: the panel reads as a layer
     on top of the page, not a second page. Capped near 1/3 viewport. */
  .nav.is-open::before {
    content: ''; position: fixed; inset: 0; z-index: -1;
    background: rgba(5,15,30,.55);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    animation: scrimIn var(--dur-base) var(--ease-out) 1;
  }
  @keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }
  .nav__list { display: none; }
  .drawer {
    display: block;
    background: var(--bg-surface);
    border-block-end: 1px solid var(--border-subtle);
    border-end-start-radius: var(--r-lg); border-end-end-radius: var(--r-lg);
    box-shadow: var(--sh-3);
    padding: var(--sp-3) clamp(1.125rem,4vw,2.5rem) var(--sp-4);
    max-block-size: 38vh; overflow-y: auto;
    animation: drawerIn var(--dur-slow) var(--ease-out) 1;
    transform-origin: top center;
  }
  @keyframes drawerIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .drawer__group {
    font-size: var(--fs-xs); font-weight: 700; color: var(--text-muted);
    margin: var(--sp-3) 0 var(--sp-1);
  }
  .drawer__group:first-child { margin-block-start: 0; }
  .drawer__list { display: grid; }
  .drawer__link {
    display: flex; align-items: center; gap: var(--sp-2);
    min-block-size: 48px; padding-block: var(--sp-1);
    font-size: var(--fs-sm); font-weight: 700; color: var(--text-strong);
    text-decoration: none; border-block-end: 1px solid var(--border-subtle);
  }
  .drawer__link svg { inline-size: 18px; block-size: 18px; color: var(--verified); flex: none; }
  .drawer__link[aria-current="true"] { color: var(--verified); }
  .drawer__n {
    margin-inline-start: auto; font-size: var(--fs-xs); font-weight: 700;
    color: var(--green-700); background: var(--verified-wash);
    border-radius: var(--r-pill); padding: 2px var(--sp-2);
  }
  .drawer .btn { margin-block-start: var(--sp-3); }
  /* Lock the page behind the open panel. The scroll container is <html>, not
     <body>, so the rule has to sit on the root element — body{overflow:hidden}
     alone does not stop the viewport from scrolling. */
  html.has-nav-open,
  html.has-nav-open body { overflow: hidden; }
}
@media (min-width: 901px) {
  .drawer { display: none !important; }
  .nav__cta { display: none; }
  /* Mobile-first scope: the new strips stay mobile-only until the desktop
     pass. Desktop header remains exactly as it was. */
  .utilbar, .subbar { display: none; }
}
/* =========================== 2. HERO =========================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--ink-800) 0%, var(--ink-700) 46%, var(--ink-600) 100%);
  color: var(--text-on-inverse);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 9vw, 7rem);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(58% 48% at 78% 8%, rgba(201,162,39,.20), transparent 62%),
    radial-gradient(46% 40% at 6% 96%, rgba(30,127,90,.16), transparent 68%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(75% 70% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 70% at 50% 30%, #000 30%, transparent 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { color: #fff; margin-bottom: var(--sp-5); }
.hero h1 .accent {
  color: var(--gold-400);
  display: inline-block;
  position: relative;
}
.hero__lead {
  font-size: var(--fs-lead); color: var(--text-on-inverse-muted);
  max-width: 54ch; margin-bottom: var(--sp-6);
}
.hero__lead strong { color: #fff; font-weight: 700; }

/* three value pillars under the lead — a compact 3-col row on desktop,
   stacked on phones. Each is icon + short title + one line. */
.hero__pillars {
  list-style: none; margin: 0 0 var(--sp-6); padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4);
  max-width: 60ch;
}
.hero__pillar {
  display: flex; flex-direction: column; gap: .25rem;
  padding-inline-start: .875rem;
  border-inline-start: 2px solid rgba(201,162,39,.45);
  /* staggered entrance — each pillar rises in turn (delay set inline). */
  opacity: 0; transform: translateY(12px);
  animation: pcf-pillar-in .6s var(--ease-out, cubic-bezier(.22,.61,.36,1)) forwards;
  animation-delay: var(--pcf-delay, 0ms);
}
@keyframes pcf-pillar-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__pillar { opacity: 1; transform: none; animation: none; }
}
.hero__pillar-icn {
  display: inline-flex; color: var(--gold-400); margin-bottom: .15rem;
}
.hero__pillar-icn svg { inline-size: 18px; block-size: 18px; }
.hero__pillar-t { color: #fff; font-weight: 700; font-size: var(--fs-sm); }
.hero__pillar-d { color: var(--text-on-inverse-muted); font-size: var(--fs-xs); line-height: 1.6; }
@media (max-width: 620px) {
  .hero__pillars { grid-template-columns: 1fr; gap: var(--sp-3); max-width: none; }
  .hero__pillar { flex-direction: row; align-items: baseline; gap: .5rem; }
  .hero__pillar-icn { flex: 0 0 auto; }
  .hero__pillar-t { flex: 0 0 auto; }
  .hero__pillar-d { flex: 1; }
}

.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  /* Mobile: the card + its four trust chips come AFTER the copy — right where
     the old assurance list sat. Desktop keeps the two-column order. */
}

/* ---------- Floating glass card ---------- */
.hero__visual { position: relative; display: grid; place-items: center; min-block-size: 400px; padding-block: var(--sp-4); }
.card3d-stage { position: relative; inline-size: min(420px, 100%); aspect-ratio: 1.45 / 1; perspective: 1400px; }
@media (max-width: 560px) {
  /* below ~1.62 ratio the card gets too short for 3 meta columns — give it height */
  .card3d-stage { aspect-ratio: 1.42 / 1; }
}

/* fx.css loads after this file and `.pcf` (the FX hook on the same element)
   sets position:relative — which would knock the card out of the stage and
   collapse its height (the "shortened card" bug). Re-assert absolute at
   higher specificity so load order can never break it again. */
.card3d.pcf { position: absolute; }

.card3d {
  position: absolute; inset: 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.04) 42%, rgba(255,255,255,.10)),
    linear-gradient(160deg, rgba(11,31,58,.86), rgba(5,15,30,.92));
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--sh-card);
  padding: clamp(1.1rem, 3.4vw, 1.6rem);
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotateY(-13deg) rotateX(7deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  direction: ltr;
  animation: cardFloat 9s var(--ease-soft) infinite;
  will-change: transform;
}
.card3d::after {
  content: ''; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  background: linear-gradient(112deg, transparent 32%, rgba(255,255,255,.16) 47%, transparent 60%);
}
.card3d--ghost {
  transform: rotateY(-13deg) rotateX(7deg) rotateZ(-2deg) translate3d(26px, 30px, -60px);
  opacity: .38; animation-delay: -.9s; filter: blur(.4px);
}
@keyframes cardFloat {
  0%, 100% { transform: rotateY(-13deg) rotateX(7deg) rotateZ(-2deg) translateY(0); }
  50%      { transform: rotateY(-10deg) rotateX(5deg) rotateZ(-1deg) translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .card3d { animation: none; }
}

.card3d__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3); }
.card3d__brand { display: flex; align-items: center; gap: var(--sp-2); color: #fff; }
.card3d__brand svg { inline-size: 22px; block-size: 22px; color: var(--gold-400); }
.card3d__brand span { font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: .01em; }
.card3d__chip {
  inline-size: 42px; block-size: 30px; border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-500) 55%, var(--gold-600));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.32);
  position: relative;
}
.card3d__chip::before, .card3d__chip::after {
  content: ''; position: absolute; inset-inline: 6px; block-size: 1px;
  background: rgba(11,31,58,.28);
}
.card3d__chip::before { top: 11px; }
.card3d__chip::after  { top: 18px; }

.card3d__number {
  direction: ltr; font-family: var(--font-body); font-variant-numeric: tabular-nums;
  font-size: clamp(1rem, 3vw, 1.2rem); letter-spacing: .14em; color: #EAF1F8;
  display: flex; gap: .7em;
}
.card3d__meta { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-3); }
.card3d__label { font-size: .625rem; color: #93A9C1; letter-spacing: .08em; margin: 0 0 2px; }
.card3d__value { font-size: var(--fs-sm); color: #fff; font-weight: 600; margin: 0; direction: ltr; }

.card3d__verified {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .6875rem; font-weight: 700; color: #8FE3C0;
  background: rgba(30,127,90,.20); border: 1px solid rgba(30,127,90,.45);
  padding: 5px 9px; border-radius: var(--r-pill);
}
.card3d__verified svg { inline-size: 13px; block-size: 13px; }

/* trust chips around the card — four verifiable promises, two above and two
   below. Hand-placed look: per-chip rotation (--rot) that lives inside the
   keyframes so the float never flattens it, frosted-glass surface, deep
   shadow on the navy, gold ring on the guarantee chip. */
.hchips {
  list-style: none; margin: 0; padding: 0;
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.hchip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255,255,255,.55);
  color: var(--ink-700);
  border-radius: var(--r-pill);
  padding-block: 5px; padding-inline: 6px 13px;
  font-size: var(--fs-xs); font-weight: 700; line-height: 1.3;
  box-shadow: 0 12px 28px rgba(0,0,0,.38), 0 2px 8px rgba(0,0,0,.25);
  animation: hchipIn 520ms cubic-bezier(.34,1.56,.64,1) var(--hd, 0ms) both,
             chipFloat var(--fd, 7s) var(--ease-soft) calc(var(--hd, 0ms) + 520ms) infinite;
  will-change: transform;
}
/* icon in its own tinted tile — richer than a bare glyph */
.hchip svg {
  inline-size: 21px; block-size: 21px; padding: 4px; flex: none;
  background: var(--verified-wash); color: var(--green-700);
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(30,127,90,.22);
}
/* hand-placed: each chip leans its own way and floats on its own rhythm */
.hchip--a { --rot: 1.8deg;  --fd: 7s;   inset-block-start: -16px; inset-inline-start: -12px; --hd: 120ms; }
.hchip--b { --rot: -2deg;   --fd: 8.4s; inset-block-start: -42px; inset-inline-end: -12px;  --hd: 260ms; }
.hchip--c { --rot: -1.4deg; --fd: 7.6s; inset-block-end: -16px; inset-inline-start: -12px;  --hd: 400ms;
  border-color: rgba(201,162,39,.6);
  box-shadow: 0 14px 30px rgba(0,0,0,.42), 0 0 0 3px rgba(201,162,39,.12);
}
.hchip--c svg { background: var(--gold-050); color: var(--gold-700); box-shadow: inset 0 0 0 1px rgba(168,135,31,.3); }
.hchip--d { --rot: 1.5deg;  --fd: 8.8s; inset-block-end: -42px; inset-inline-end: -12px;    --hd: 540ms; }
@keyframes hchipIn {
  from { opacity: 0; transform: rotate(var(--rot, 0deg)) translateY(12px) scale(.85); }
  to   { opacity: 1; transform: rotate(var(--rot, 0deg)) translateY(0) scale(1); }
}
@keyframes chipFloat {
  0%,100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50%     { transform: rotate(var(--rot, 0deg)) translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .hchip { animation: none; transform: rotate(var(--rot, 0deg)); }
}
@media (max-width: 560px) {
  /* Mobile: single-line chips, staggered heights, slight x-jitter. Offsets
     are measured against the card's brand/meta rows — chips hug the card
     edge without covering its data. */
  .hero__visual { padding-block: 72px; }
  .hchip { font-size: .75rem; }
  .hchip--a { inset-block-start: -38px; inset-inline-start: 6px; }
  .hchip--b { inset-block-start: -62px; inset-inline-end: 0; }
  .hchip--c { inset-block-end: -38px; inset-inline-start: 2px; }
  .hchip--d { inset-block-end: -60px; inset-inline-end: 4px; }
  /* card data needs to breathe at narrow widths */
  .card3d { padding: var(--sp-4); }
  .card3d__label { font-size: .5625rem; }
  .card3d__value { font-size: .8125rem; }
  .card3d__meta { gap: var(--sp-2); }
  .card3d__brand span { font-size: .875rem; }
  .card3d__verified { font-size: .625rem; padding: 4px 7px; }
}

/* =========================== 3b. MINI-SHOP ===========================
   The full catalogue embedded in the landing: all categories, all items,
   live stock states, computed prices. No filters, no variant pickers —
   those belong to /shop/. The pulse band merged into the toolbar: one
   section, one job. */
.minishop {
  background: var(--bg-surface);
  border-block-end: 1px solid var(--border-subtle);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.minishop__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
.minishop__status {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin: 0; font-size: var(--fs-sm); color: var(--text-muted); font-weight: 600;
}
.minishop__count {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.5rem; color: var(--ink-700);
}
.minishop__dot {
  inline-size: 8px; block-size: 8px; border-radius: 50%; flex: none;
  background: var(--verified);
  box-shadow: 0 0 0 3px rgba(30,127,90,.22);
  animation: pulseDot 2.6s var(--ease-soft) infinite;
}
@media (prefers-reduced-motion: reduce) { .minishop__dot { animation: none; } }

.mgroup { margin-bottom: var(--sp-6); }
.mgroup__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); margin-bottom: var(--sp-2);
  padding-block-end: var(--sp-3);
  border-block-end: 2px solid var(--ink-700);
}
.mgroup__head h3 {
  display: flex; align-items: center; gap: var(--sp-2);
  margin: 0; font-size: 1.0625rem; color: var(--text-strong);
}
.mgroup__head h3 svg { inline-size: 18px; block-size: 18px; color: var(--gold-700); }
.mgroup__n {
  font-size: var(--fs-xs); font-weight: 700; color: var(--green-700);
  background: var(--verified-wash); border-radius: var(--r-pill);
  padding: 2px var(--sp-2);
}
.mgroup__all {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--fs-xs); font-weight: 700; color: var(--accent-strong);
  text-decoration: none; min-block-size: 44px; padding-inline: var(--sp-2);
}
.mgroup__all svg { inline-size: 14px; block-size: 14px; }
.mgroup__all:hover { text-decoration: underline; }

.mlist { border-block-start: 1px solid var(--border-subtle); }
.mrow {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: var(--sp-3); align-items: center;
  padding-block: var(--sp-3);
  border-block-end: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.mrow:hover { background: var(--bone-050); }
.mrow__tile {
  inline-size: 40px; block-size: 40px; border-radius: 6px; flex: none;
  display: grid; place-items: center;
  background: var(--tile, var(--ink-700)); color: #fff;
  font-family: var(--font-mono); font-size: .5rem; font-weight: 600;
  letter-spacing: .02em; text-align: center; line-height: 1.2;
  padding: 2px;
}
.mrow__body { display: grid; gap: 2px; min-inline-size: 0; }
.mrow__name {
  font-weight: 700; color: var(--text-strong); font-size: var(--fs-sm);
  text-decoration: none;
}
.mrow__name:hover { text-decoration: underline; }
.mrow__stock {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--fs-xs); font-weight: 700;
}
.mrow__stock svg { inline-size: 13px; block-size: 13px; flex: none; }
.mrow__stock--ok   { color: var(--green-700); }
.mrow__stock--off  { color: var(--slate-500); }
.mrow__stock--soon { color: var(--gold-700); }
.mrow__action {
  display: grid; justify-items: end; gap: 4px; text-align: end;
}
.mrow__from { font-size: var(--fs-xs); color: var(--text-muted); font-weight: 600; }
.mrow__price {
  font-family: var(--font-mono), var(--font-body), sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 1rem; font-weight: 600; color: var(--text-strong);
  letter-spacing: .015em; white-space: nowrap;
}
.mrow--out .mrow__name, .mrow--soon .mrow__name { color: var(--slate-600); }
.mrow--out .mrow__tile, .mrow--soon .mrow__tile { filter: saturate(.35); }
.mrow__go.btn--primary { min-block-size: 40px; font-size: var(--fs-xs); padding-inline: var(--sp-3); }

.minishop__foot {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  margin: var(--sp-4) 0 0; font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.7;
}
.minishop__foot svg { inline-size: 15px; block-size: 15px; flex: none; color: var(--verified); margin-block-start: 2px; }
.minishop__foot .tnum { font-weight: 700; }
@media (max-width: 560px) {
  .mrow { grid-template-columns: auto 1fr; grid-template-areas: "tile action" "tile body"; }
  .mrow__tile { grid-area: tile; align-self: start; }
  .mrow__body { grid-area: body; }
  .mrow__action { grid-area: action; align-items: end; }
  .minishop__top .btn { inline-size: 100%; justify-content: center; }
}

/* =========================== 3c. SERVICES BAND =========================== */
.svband { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.svband__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); margin-bottom: var(--sp-4);
}
.svband__head h2 { margin: 0; font-size: var(--fs-h3); }
.svband__list { border-block-start: 1px solid var(--border-subtle); }
.svrow {
  display: grid; grid-template-columns: auto 1fr auto auto;
  gap: var(--sp-4); align-items: center;
  padding-block: var(--sp-4);
  border-block-end: 1px solid var(--border-subtle);
}
.icon-tile--sq { margin-bottom: 0; inline-size: 44px; block-size: 44px; border-radius: 6px; }
.svrow__body { display: grid; gap: 2px; min-inline-size: 0; }
.svrow__name { font-weight: 700; color: var(--text-strong); text-decoration: none; }
.svrow__name:hover { text-decoration: underline; }
.svrow__desc { font-size: var(--fs-sm); color: var(--text-muted); }
.svrow__price { text-align: end; white-space: nowrap; }
.svrow__price .tnum { font-weight: 700; color: var(--text-strong); }
.svrow__unit { display: block; font-size: var(--fs-xs); color: var(--text-muted); }
@media (max-width: 640px) {
  .svrow { grid-template-columns: auto 1fr; grid-template-areas: "tile body" "tile price" "tile go"; row-gap: var(--sp-2); }
  .icon-tile--sq { grid-area: tile; align-self: start; }
  .svrow__body { grid-area: body; }
  .svrow__price { grid-area: price; text-align: start; }
  .svrow__price .svrow__unit { display: inline; margin-inline-start: var(--sp-1); }
  .svrow__go { grid-area: go; justify-self: start; }
}

/* =========================== 3. SHOP PULSE ===========================
   Live status band — replaces the vanity counter strip. Apple-style single
   message: one big tabular figure (status feedback), quiet category chips,
   one checkable price line. No four-up counter grid, no stars, no claims the
   site can't back. */
.pulse {
  background: var(--bg-surface);
  border-block-end: 1px solid var(--border-subtle);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}
.pulse__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); margin-bottom: var(--sp-4);
}
.pulse__label {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin: 0; font-size: var(--fs-xs); font-weight: 700;
  color: var(--text-muted); letter-spacing: .04em;
}
.pulse__dot {
  inline-size: 8px; block-size: 8px; border-radius: 50%; flex: none;
  background: var(--verified);
  box-shadow: 0 0 0 3px rgba(30,127,90,.22);
  animation: pulseDot 2.6s var(--ease-soft) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(30,127,90,.22); }
  50%      { box-shadow: 0 0 0 6px rgba(30,127,90,.08); }
}
@media (prefers-reduced-motion: reduce) { .pulse__dot { animation: none; } }

/* The one number that matters. Weight + size do the hierarchy; tracking stays
   neutral for Persian; tabular figures keep it steady during count-up. */
.pulse__count {
  display: flex; align-items: baseline; gap: var(--sp-3);
  margin: 0 0 var(--sp-4); flex-wrap: wrap;
}
.pulse__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 3.25rem); color: var(--ink-700);
  line-height: 1.05;
}
.pulse__word { font-size: var(--fs-lead); color: var(--text-muted); font-weight: 600; }

.pulse__cats {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin: 0 0 var(--sp-4);
}
.pulse__chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  min-block-size: 38px; padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--bone-050); border: 1px solid var(--border-subtle);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 700; color: var(--text-strong);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.pulse__chip:hover { background: var(--bone-200); border-color: var(--border-hairline); }
.pulse__chip svg { inline-size: 16px; block-size: 16px; color: var(--verified); flex: none; }
.pulse__n {
  font-size: var(--fs-xs); font-weight: 700; color: var(--green-700);
  background: var(--verified-wash); border-radius: var(--r-pill);
  padding: 2px var(--sp-2);
}

.pulse__foot {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  margin: 0; font-size: var(--fs-sm); color: var(--text-muted);
}
.pulse__foot a { color: var(--text-strong); font-weight: 700; }
.pulse__foot .tnum { font-weight: 700; color: var(--text-strong); }
.pulse__foot svg { inline-size: 16px; block-size: 16px; color: var(--verified); flex: none; }
.pulse__sep { color: var(--border-hairline); }
.stat__label { font-size: var(--fs-xs); color: var(--text-muted); margin: var(--sp-2) 0 0; }
/* =========================== 4. PRODUCTS =========================== */
.tier { display: flex; flex-direction: column; position: relative; }
.tier--featured {
  border-color: var(--gold-200);
  box-shadow: 0 18px 44px -18px rgba(201,162,39,.42), var(--sh-2);
  background: linear-gradient(180deg, var(--gold-050), var(--bg-surface) 22%);
}
.tier__flag {
  position: absolute; inset-block-start: calc(-1 * var(--sp-3));
  inset-inline-end: var(--sp-5);
}
.tier__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3); }
.tier__name { font-size: var(--fs-h3); margin: 0 0 var(--sp-1); }
.tier__desc { font-size: var(--fs-xs); color: var(--text-muted); margin: 0; min-block-size: 4.2em; }
.tier__price {
  display: flex; align-items: baseline; gap: var(--sp-2);
  margin-block: var(--sp-4) var(--sp-1);
  padding-block-start: var(--sp-4); border-block-start: 1px solid var(--border-subtle);
}
.tier__amount { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--ink-700); }
.tier__unit { font-size: var(--fs-xs); color: var(--text-muted); }
.tier__note { font-size: var(--fs-xs); color: var(--text-muted); margin: 0 0 var(--sp-5); }
.tier__features { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.tier__features li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-sm); }
.tier__features svg { inline-size: 18px; block-size: 18px; color: var(--verified); flex: none; margin-block-start: 3px; }
/* slate-400 (#8494A3) fails WCAG AA as body text on light (3.1:1). This is a
   real sentence on a white pricing card, so bump to slate-500 (5.47:1 ✓). */
.tier__features .muted { color: var(--slate-500); }
.tier__features .muted svg { color: var(--slate-500); }
.tier__cta { margin-block-start: auto; }
.tier__cta .cta-note { margin-block-start: var(--sp-3); justify-content: center; width: 100%; }

.compliance-note {
  margin-block-start: clamp(2rem, 4vw, 3rem);
  display: flex; align-items: flex-start; gap: var(--sp-4);
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-inline-start: 3px solid var(--verified);
  border-radius: var(--r-md); padding: var(--sp-5);
}
.compliance-note svg { inline-size: 22px; block-size: 22px; color: var(--verified); flex: none; margin-block-start: 2px; }
.compliance-note p { margin: 0; font-size: var(--fs-sm); }
.compliance-note p + p { margin-block-start: var(--sp-2); color: var(--text-muted); font-size: var(--fs-xs); }

/* =========================== 5. WHY / BENEFITS =========================== */
.benefit p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.benefit h3 { margin-bottom: var(--sp-2); }
/* the whole card lifts a hair and its icon tile warms on hover — a quiet
   invitation to read, not a bounce. */
.benefit { transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: var(--bone-300); }
.benefit .icon-tile { transition: transform var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out); }
.benefit:hover .icon-tile { transform: scale(1.06) rotate(-3deg); }
@media (prefers-reduced-motion: reduce) {
  .benefit:hover { transform: none; }
  .benefit:hover .icon-tile { transform: none; }
}

/* =========================== 6. HOW IT WORKS =========================== */
.steps { counter-reset: step; position: relative; }
.step { position: relative; padding-block-start: var(--sp-6); }
.step__num {
  position: absolute; inset-block-start: 0; inset-inline-start: 0;
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: var(--gold-400); opacity: .55; line-height: 1;
  /* keeps the bar from ever painting through the glyph on small viewports */
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  padding-inline: .2rem; border-radius: .25rem;
  z-index: 1; pointer-events: none;
}
.step__bar {
  block-size: 3px; border-radius: 3px; background: var(--border-on-inverse);
  margin-block: var(--sp-8) var(--sp-5); position: relative; overflow: hidden;
}
.step__bar::after {
  content: ''; position: absolute; inset-block: 0; inset-inline-start: 0;
  inline-size: 42%; background: linear-gradient(to var(--grad-dir, left), var(--gold-500), transparent);
  border-radius: 3px;
  /* the gold progress fill sweeps to its full width once the step reveals —
     reads as "this stage is in motion". */
  transform-origin: inline-start;
  transition: inline-size .8s var(--ease-out, cubic-bezier(.22,.61,.36,1)) .2s;
}
.step.reveal:not(.is-in) .step__bar::after { inline-size: 0; }
[dir="rtl"] .step__bar::after { --grad-dir: left; }
[dir="ltr"] .step__bar::after { --grad-dir: right; }
@media (prefers-reduced-motion: reduce) {
  .step.reveal:not(.is-in) .step__bar::after { inline-size: 42%; }
  .step__bar::after { transition: none; }
}
@media (max-width: 767px) {
  /* phone: the white hairline between step 02/03 ran right through the ۰۲
     numeral and the gold fill sat too close to the numeral above. Fix: give
     the numeral a window (same mix as step bg) and add clearance; the hairline
     now reads as two segments with a gap around the numeral and is visually
     distinct from the gold progress bar. */
  .steps .step + .step { border-block-start: 0; }
  .step__num {
    /* window color must match the step's surface — inherits from #how bg.
       The small padding/rounding creates a clean eclipsed gap so the bar
       never appears to cut through the glyph. */
    background: var(--ink-700);
    padding-inline: .35rem;
  }
  .step__bar {
    block-size: 2px;
    /* clear the numeral: the glyph is 2.6rem tall at top:0, so the hairline
       must start below it (≈2.6rem + gap) instead of cutting through its
       middle. Bottom margin stays small so the bar hugs the title below. */
    margin-block: 3.25rem .875rem;
    overflow: visible;
    /* hairline base — a full-width track under the numeral, followed by the
       gold progress fill. */
    background: var(--border-on-inverse);
    opacity: .45;
    border-radius: 99px;
  }
  .step__bar::after {
    /* gold progress fill — shorter, detached: visually distinct from the hairline */
    inline-size: 38%;
    opacity: 1;
    block-size: 2px;
    inset-block: 0;
    border-radius: 99px;
  }
}
.step h3 { margin-bottom: var(--sp-2); }
.step p { font-size: var(--fs-sm); margin: 0; }
.step__eta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-block-start: var(--sp-4); font-size: var(--fs-xs);
  color: var(--gold-400); font-weight: 700;
}
.step__eta svg { inline-size: 15px; block-size: 15px; }

/* =========================== 7. SECURITY =========================== */
.security { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 920px) { .security { grid-template-columns: 1fr; } }

/* ── security planetary visual — CSS-only Magic UI style.
   Same markup (3 rings + core + 3 orbits), but now an actual orbital system:
   slow revolving dashed ring, three bodies orbiting the core on different radii,
   shimmering core, subtle starfield and breathing halo. Pair with how-section's
   clearer step separators for a trustworthy, not toy, feel. Respects
   prefers-reduced-motion and costs no JS. */

.shield {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 1; inline-size: min(360px, 100%); margin-inline: auto;
  /* starfield — ultra-low opacity; sits under the rings so it never competes */
  background:
    radial-gradient(1px 1px at 18% 18%, rgba(201,162,39,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 82% 24%, rgba(11,31,58,.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 62% 82%, rgba(201,162,39,.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 76%, rgba(11,31,58,.25) 50%, transparent 51%),
    radial-gradient(1px 1px at 46% 12%, rgba(11,31,58,.18) 50%, transparent 51%);
  border-radius: 50%;
}
.shield__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--border-hairline);
  /* slow drift so the system feels alive even at rest */
  animation: shieldDrift 28s linear infinite;
  will-change: transform;
}
.shield__ring--2 {
  inset: 12%; border-color: var(--bone-200);
  border-style: dashed; border-width: 1px;
  border-spacing: 6px;
  animation-duration: 42s; animation-direction: reverse;
  opacity: .9;
}
.shield__ring--3 {
  inset: 24%; border-color: var(--bone-200);
  animation-duration: 36s;
  opacity: .85;
}
@keyframes shieldDrift {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.shield__core {
  position: relative; inline-size: 42%; aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 26px;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.22), transparent 42%),
    linear-gradient(150deg, var(--ink-600), var(--ink-800));
  color: var(--gold-400); box-shadow: var(--sh-3);
  animation: shieldCoreBreathe 5.8s var(--ease-soft) infinite;
  will-change: transform, box-shadow;
  isolation: isolate;
}
.shield__core::before {
  content: ''; position: absolute; inset: -12%;
  border-radius: inherit; z-index: -1;
  background: radial-gradient(60% 60% at 50% 50%, rgba(201,162,39,.22), transparent 70%);
  filter: blur(8px);
  animation: shieldHalo 5.8s var(--ease-soft) infinite;
}
.shield__core::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.16) 48%, transparent 62%);
  background-size: 220% 100%; background-position: 120% 0;
  animation: shieldShimmer 6.5s var(--ease-soft) infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
@keyframes shieldCoreBreathe {
  0%, 100% { transform: scale(1); box-shadow: var(--sh-3); }
  50%      { transform: scale(1.015); box-shadow: 0 16px 40px rgba(11,31,58,.16), 0 4px 12px rgba(11,31,58,.08); }
}
@keyframes shieldHalo {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}
@keyframes shieldShimmer {
  0%   { background-position: 120% 0; opacity: 0; }
  15%  { opacity: 1; }
  45%  { background-position: -20% 0; opacity: 0; }
  100% { background-position: -20% 0; opacity: 0; }
}
.shield__core svg { inline-size: 46%; block-size: 46%; position: relative; z-index: 1; }
.shield__orbit {
  position: absolute; display: grid; place-items: center;
  inline-size: 54px; block-size: 54px; border-radius: 50%;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  box-shadow: var(--sh-2); color: var(--ink-600);
  will-change: transform;
  animation: shieldOrbit 9s linear infinite;
  /* each orbit sits on a different azimuth; the animation rotates them around
     the shield center by animating an offset transform chain. Using absolute
     positioning for the orbit path keeps the badge readable while moving. */
}
.shield__orbit svg { inline-size: 22px; block-size: 22px; }
.shield__orbit--1 {
  inset-block-start: 2%; inset-inline-start: 50%; transform: translateX(-50%);
  animation-duration: 18s; animation-delay: -2s;
  /* top orbit gets the gold wink to echo the core */
  border-color: rgba(201,162,39,.35);
  box-shadow: var(--sh-2), 0 0 0 6px rgba(201,162,39,.08);
}
.shield__orbit--2 {
  inset-block-end: 14%; inset-inline-start: 4%;
  animation-duration: 22s; animation-delay: -7s;
}
.shield__orbit--3 {
  inset-block-end: 14%; inset-inline-end: 4%;
  animation-duration: 20s; animation-delay: -11s;
}
@keyframes shieldOrbit {
  0%   { transform: translateX(-50%) rotate(0deg) translateX(0) rotate(0deg); }
  /* the translateX(-50%) centering is baked into the start position's own
     transform, so define the orbit track via a wrapper-like keyframe that
     keeps the icon upright while revolving. Simplified to a subtle float so
     icons remain legible — true orbital translation would tilt the badge. */
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .shield, .shield__ring, .shield__ring--2, .shield__ring--3,
  .shield__core, .shield__core::before, .shield__core::after,
  .shield__orbit { animation: none; }
}

.assure-list { display: grid; gap: var(--sp-5); }
.assure { display: flex; gap: var(--sp-4); align-items: flex-start; }
.assure__icon {
  inline-size: 44px; block-size: 44px; border-radius: var(--r-md); flex: none;
  display: grid; place-items: center;
  background: var(--verified-wash); color: var(--green-700);
  border: 1px solid #C9E4D8;
}
.assure__icon svg { inline-size: 21px; block-size: 21px; }
.assure h3 { font-size: 1.0625rem; margin-bottom: var(--sp-1); }
.assure p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
/* the icon tile nudges toward the text on row hover — a small "active" cue. */
.assure__icon { transition: transform var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out); }
.assure:hover .assure__icon { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) { .assure:hover .assure__icon { transform: none; } }

.seals {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  margin-block-start: var(--sp-6); padding-block-start: var(--sp-5);
  border-block-start: 1px solid var(--border-subtle);
}
.seal {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm); padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs); font-weight: 600; color: var(--slate-600);
}
.seal svg { inline-size: 18px; block-size: 18px; color: var(--verified); flex: none; }

/* =========================== 8. TESTIMONIALS =========================== */
.review { display: flex; flex-direction: column; }
.review__stars { display: inline-flex; gap: 3px; color: var(--gold-600); margin-bottom: var(--sp-4); }
.review__stars svg { inline-size: 16px; block-size: 16px; }
.review__text { font-size: var(--fs-sm); margin-bottom: var(--sp-5); }
.review__person { display: flex; align-items: center; gap: var(--sp-3); margin-block-start: auto; }
.avatar {
  inline-size: 46px; block-size: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: var(--fs-sm);
  color: #fff; box-shadow: var(--sh-1); position: relative;
}
.avatar--1 { background: linear-gradient(145deg, #1B3A63, #0B1F3A); }
.avatar--2 { background: linear-gradient(145deg, #1E7F5A, #146646); }
.avatar--3 { background: linear-gradient(145deg, #A8871F, #C9A227); color: var(--ink-900); }
.avatar--4 { background: linear-gradient(145deg, #465563, #33404E); }
.avatar__check {
  position: absolute; inset-block-end: -2px; inset-inline-end: -2px;
  inline-size: 17px; block-size: 17px; border-radius: 50%;
  background: var(--verified); border: 2px solid var(--bg-surface);
  display: grid; place-items: center; color: #fff;
}
.avatar__check svg { inline-size: 9px; block-size: 9px; }
.review__name { font-weight: 700; font-size: var(--fs-sm); color: var(--text-strong); }
.review__role { font-size: var(--fs-xs); color: var(--text-muted); }
/* review cards lift on hover so the wall of testimonials feels tactile. */
.review { transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); }
.review:hover { transform: translateY(-3px); box-shadow: var(--sh-3); }
@media (prefers-reduced-motion: reduce) { .review:hover { transform: none; } }

/* =========================== 9. FAQ =========================== */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: var(--sp-3); }
.acc {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.acc.is-open { border-color: var(--bone-300); box-shadow: var(--sh-2); }
.acc__btn {
  width: 100%; min-block-size: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  background: transparent; border: 0; cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-body); font-size: var(--fs-body); font-weight: 700;
  color: var(--text-strong); text-align: start;
}
.acc__btn:hover { background: var(--bone-050); }
.acc__icon {
  inline-size: 28px; block-size: 28px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-600);
  background: var(--bone-100);
  transition: transform var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.acc__icon svg { inline-size: 15px; block-size: 15px; }
.acc__btn[aria-expanded="true"] .acc__icon { transform: rotate(180deg); background: var(--accent-wash); color: var(--gold-700); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-slow) var(--ease-out); }
.acc.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner > div { padding: 0 var(--sp-5) var(--sp-5); }
.acc__inner p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.acc__inner p + p { margin-block-start: var(--sp-3); }

/* =========================== 10. FINAL CTA + FOOTER =========================== */
.final { text-align: center; }
.final__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.final .btn { margin-block-start: var(--sp-3); }
.final__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
.final__note { margin-block-start: var(--sp-5); justify-content: center; }

.footer {
  background: var(--ink-900); color: var(--text-on-inverse-muted);
  padding-block: clamp(3rem, 6vw, 4.5rem) var(--sp-6);
  font-size: var(--fs-sm);
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .logo { color: #fff; }
.footer .logo__tag { color: var(--slate-400); }
.footer__about { margin-block-start: var(--sp-4); font-size: var(--fs-xs); line-height: 1.8; }
.footer h4, .footer__h {
  color: #fff; font-family: var(--font-head); font-size: var(--fs-sm);
  font-weight: 700; margin: 0 0 var(--sp-4);
}
.footer__links { display: grid; gap: var(--sp-1); }
.footer__links a {
  color: var(--text-on-inverse-muted); text-decoration: none;
  font-size: var(--fs-xs); display: inline-flex; align-items: center;
  min-block-size: 44px; min-inline-size: 44px;
  transition: color var(--dur-base) var(--ease-out);
}
.footer__links a:hover { color: var(--gold-400); }
.footer__contact { display: grid; gap: var(--sp-2); font-size: var(--fs-xs); }
.footer__contact a { color: var(--text-on-inverse-muted); text-decoration: none; display: inline-flex; align-items: center; gap: var(--sp-2); min-block-size: 44px; }
.footer__contact a:hover { color: var(--gold-400); }
.footer__contact svg { inline-size: 16px; block-size: 16px; color: var(--gold-400); flex: none; }
.socials { display: flex; gap: var(--sp-2); margin-block-start: var(--sp-4); }
.socials a {
  inline-size: 44px; block-size: 44px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--text-on-inverse-muted);
  background: rgba(255,255,255,.05); border: 1px solid var(--border-on-inverse);
  transition: color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.socials a:hover { color: var(--gold-400); background: rgba(255,255,255,.1); }
.socials svg { inline-size: 20px; block-size: 20px; }

.footer__seals { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-block-start: var(--sp-4); }
.footer__seal {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  border: 1px solid var(--border-on-inverse); border-radius: var(--r-sm);
  padding: var(--sp-2) var(--sp-3); font-size: .6875rem; color: #C6D4E3;
}
.footer__seal svg { inline-size: 16px; block-size: 16px; color: var(--verified); flex: none; }

.footer__bottom {
  margin-block-start: var(--sp-7); padding-block-start: var(--sp-5);
  border-block-start: 1px solid var(--border-on-inverse);
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs); color: var(--slate-400);
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }
.footer__legal a {
  color: var(--slate-400); text-decoration: none;
  display: inline-flex; align-items: center; min-block-size: 44px;
}
.footer__legal a:hover { color: var(--gold-400); }

/* ---------- payment-brand marquee (footer) ----------
   Real logos, low-key presentation: mono labels, dim ink, no cards. The
   marquee duplicates its row via fx.js for a seamless RTL-aware loop. */
.brandstrip {
  margin-block-start: var(--sp-7); padding-block: var(--sp-4);
  border-block-start: 1px solid var(--border-on-inverse);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════ ported v2 sections ═══
   RatesTicker + BrandMarquee + ServicesBento + PopularProducts + MobileBar,
   ported from the cancelled v2 site (same structure/order/sizes) and restyled
   strictly on the v2 token palette — never the v1 colors. */

/* ---------- rates ticker strip ---------- */
.ratesbar {
  background: var(--ink-900, #0B1622);
  border-block: 1px solid rgba(255,255,255,.06);
  color: #E7EDF4;
}
.ratesbar__inner { display: flex; align-items: stretch; max-inline-size: 1240px; margin-inline: auto; }
.ratesbar__label {
  display: none; align-items: center; gap: 10px; padding-inline: var(--sp-5);
  border-inline-end: 1px solid rgba(255,255,255,.08); white-space: nowrap;
  font-size: .8125rem; font-weight: 700; color: rgba(231,237,244,.72);
}
@media (min-width: 640px) { .ratesbar__label { display: flex; } }
.ratesbar__ping { position: relative; inline-size: 8px; block-size: 8px; }
.ratesbar__ping i,
.ratesbar__ping::before {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  background: var(--green-600);
}
.ratesbar__ping::before { animation: pcf-ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
@keyframes pcf-ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ratesbar__ping::before { animation: none; } }

.ratesbar__marquee { flex: 1; padding-block: var(--sp-3); min-inline-size: 0; }
.ratesbar__item {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
}
.ratesbar__name { font-size: .8125rem; color: rgba(231,237,244,.48); }
.ratesbar__val { font-size: .875rem; font-weight: 700; color: #F2F6FA; }
.ratesbar__trend svg { inline-size: 14px; block-size: 14px; }
.ratesbar__trend--up { color: var(--green-600); }
.ratesbar__trend--down { color: rgba(231,237,244,.38); }

/* ---------- brand coverage strip ---------- */
.brandcover {
  background: var(--bg-page); border-block-end: 1px solid var(--border-hairline);
  padding-block: var(--sp-6);
}
.brandcover__title {
  text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  color: var(--text-muted); margin-block-end: var(--sp-4);
}
.brandcover__marquee { max-inline-size: 1240px; margin-inline: auto; }
.brandchip {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: var(--bg-surface); border: 1px solid var(--border-hairline);
  border-radius: 12px; padding: 10px 18px; user-select: none;
  font-size: .875rem; font-weight: 700; color: var(--ink-700);
  text-decoration: none;
  transition: transform .25s var(--ease-soft, ease), border-color .25s, box-shadow .25s;
}
.brandchip img, .brandchip svg { inline-size: 20px; block-size: 20px; opacity: .82; }
.brandchip:hover {
  transform: translateY(-2px); border-color: var(--gold-500);
  box-shadow: 0 10px 24px -14px rgba(18,32,47,.35);
}
.brandchip:hover svg { opacity: 1; }

/* ---------- shared section intro ---------- */
.secintro {
  display: grid; gap: var(--sp-5); align-items: end;
  margin-block-end: var(--sp-8);
}
@media (min-width: 900px) {
  .secintro { grid-template-columns: 1.15fr .85fr; column-gap: var(--sp-10); }
}
.secintro__eyebrow {
  display: flex; align-items: center; gap: var(--sp-3); margin-block-end: var(--sp-3);
  font-size: .8125rem; font-weight: 700; color: var(--gold-700);
}
.secintro__dash { inline-size: 32px; block-size: 1px; background: var(--gold-500); }
.secintro__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem); line-height: 1.55; color: var(--ink-700);
}
.secintro__side { display: flex; flex-direction: column; align-items: start; gap: var(--sp-4); }
.secintro__desc { font-size: .95rem; line-height: 1.95; color: var(--text-body); }
.secintro__action {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .9rem; color: var(--ink-700); text-decoration: none;
  border-block-end: 2px solid var(--gold-500); padding-block-end: 4px;
  transition: gap .3s var(--ease-soft, ease);
}
.secintro__action:hover { gap: 14px; }

/* ---------- services bento ---------- */
.bento { padding-block: var(--sp-10); }
.bento__grid { display: grid; gap: var(--sp-5); }
@media (min-width: 768px) {
  .bento__grid { grid-template-columns: repeat(12, 1fr); }
  .bento__span7 { grid-column: span 7; }
  .bento__span5 { grid-column: span 5; }
}
.bento__card {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; border-radius: 24px; padding: var(--sp-7); min-block-size: 300px;
  text-decoration: none;
  transition: box-shadow .3s var(--ease-soft, ease), border-color .3s, transform .3s var(--ease-soft, ease);
}
.bento__card--dark {
  background-color: var(--ink-900, #0B1622);
  background-image: linear-gradient(155deg, var(--ink-800, #16283C), var(--ink-900, #0B1622));
  color: #EDF2F7; box-shadow: var(--sh-card, 0 24px 60px -30px rgba(11,22,34,.55));
}
.bento__card--dark:hover { box-shadow: 0 30px 70px -28px rgba(11,22,34,.65); transform: translateY(-4px); }
.bento__card--light { background: var(--bg-surface); border: 1px solid var(--border-hairline); min-block-size: 280px; }
.bento__card--light:hover { border-color: color-mix(in srgb, var(--gold-500) 45%, transparent); box-shadow: 0 26px 60px -26px rgba(18,32,47,.3); transform: translateY(-4px); }
.bento__card--paper { background: color-mix(in srgb, var(--bg-sunken) 82%, transparent); border: 1px solid var(--border-hairline); min-block-size: 240px; }
.bento__card--paper:hover { border-color: color-mix(in srgb, var(--gold-500) 45%, transparent); transform: translateY(-4px); }
@media (prefers-reduced-motion: reduce) {
  .bento__card--dark:hover, .bento__card--light:hover, .bento__card--paper:hover { transform: none; }
}
.bento__glow {
  position: absolute; inset-block-end: -64px; inset-inline-start: -64px;
  inline-size: 288px; block-size: 288px; border-radius: 999px; opacity: .25;
  background: radial-gradient(circle, rgba(138,109,26,.4) 0%, transparent 60%);
  transition: opacity .5s; pointer-events: none;
}
.bento__card--dark:hover .bento__glow { opacity: .65; }
.bento__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3); }
.bento__icon {
  display: inline-flex; align-items: center; justify-content: center;
  inline-size: 56px; block-size: 56px; border-radius: 16px;
  background: var(--gold-500); color: var(--ink-700);
}
.bento__icon svg { inline-size: 28px; block-size: 28px; }
.bento__icon--ink { background: var(--ink-700); color: var(--gold-400, #D4AF37); }
.bento__badge {
  font-size: .7rem; font-weight: 700; border-radius: 999px; padding: 5px 12px;
}
.bento__badge--gold { color: var(--gold-400, #D4AF37); background: rgba(212,175,55,.1); box-shadow: inset 0 0 0 1px rgba(212,175,55,.3); }
.bento__badge--teal { color: var(--green-600); background: var(--green-050); box-shadow: inset 0 0 0 1px rgba(14,102,87,.22); }
.bento__card--light .bento__badge--gold { color: var(--gold-700); background: rgba(138,109,26,.08); box-shadow: inset 0 0 0 1px rgba(138,109,26,.3); }
.bento__body { display: block; margin-block-start: var(--sp-6); }
.bento__h { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; }
.bento__card--light .bento__h, .bento__card--paper .bento__h { color: var(--ink-700); font-size: 1.2rem; }
.bento__p { display: block; margin-block-start: var(--sp-3); font-size: .9rem; line-height: 1.9; color: rgba(237,242,247,.6); max-inline-size: 34ch; }
.bento__card--light .bento__p, .bento__card--paper .bento__p { color: var(--text-body); }
.bento__go {
  display: inline-flex; align-items: center; gap: 8px; margin-block-start: var(--sp-5);
  font-weight: 700; font-size: .88rem;
}
.bento__card--dark .bento__go { color: var(--gold-400, #D4AF37); }
.bento__card--light .bento__go, .bento__card--paper .bento__go { color: var(--ink-700); }
.bento__card:hover .bento__go svg { transform: translateX(-6px); }
.bento__go svg {
  inline-size: 20px; block-size: 20px; flex: none;
  transition: transform .3s var(--ease-soft, ease);
}
.secintro__action svg { inline-size: 17px; block-size: 17px; flex: none; }
.bento__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-block-start: var(--sp-4); }
.bento__chips i {
  font-style: normal; font-size: .7rem; font-weight: 600;
  color: rgba(237,242,247,.65); background: rgba(244,246,247,.07);
  box-shadow: inset 0 0 0 1px rgba(244,246,247,.14);
  border-radius: 8px; padding: 4px 10px;
}
.bento__chips--stack { flex-direction: column; align-items: stretch; inline-size: 208px; flex-shrink: 0; }
.bento__chips--stack i {
  color: var(--ink-700); background: var(--bg-surface); font-size: .78rem;
  box-shadow: inset 0 0 0 1px var(--border-hairline); padding: 10px 14px; border-radius: 10px;
}
.bento__card--row { flex-direction: row; align-items: center; gap: var(--sp-6); }
.bento__card--row .bento__rowmain { display: block; flex: 1; }
.bento__card--row .bento__body { margin-block-start: 0; }
.bento__card--row .bento__icon { margin-block-end: var(--sp-5); }
@media (max-width: 640px) { .bento__chips--stack { display: none; } }

/* ---------- popular products ---------- */
.popular {
  padding-block: var(--sp-10);
  background: color-mix(in srgb, var(--bg-sunken) 55%, transparent);
  border-block: 1px solid var(--border-hairline);
}
.popular__grid { display: grid; gap: var(--sp-5); }
@media (min-width: 560px) { .popular__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .popular__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- mobile bottom bar ---------- */
.mobilebar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  display: flex; align-items: stretch; block-size: 64px;
  background: color-mix(in srgb, var(--bg-surface) 95%, transparent);
  backdrop-filter: blur(14px) saturate(150%);
  border-block-start: 1px solid var(--border-hairline);
  padding-block-end: env(safe-area-inset-bottom, 0);
}
@media (min-width: 1024px) { .mobilebar { display: none; } }
body { --mb-space: 64px; }
/* Matches the 1024px hide breakpoint above — otherwise 768–1023px gets
   the bar's spacing with no bar (dead whitespace at the bottom). */
@media (max-width: 1023px) { body { padding-block-end: calc(64px + env(safe-area-inset-bottom, 0px)); } }

.mobilebar__pill {
  /* Physically pinned to left:0 — js/mobilebar.js positions it with a
     translateX measured from the bar's left edge, in both directions. */
  position: absolute; left: 0; top: 6px; inline-size: 56px; block-size: 4px; border-radius: 999px;
  background: var(--gold-500); opacity: 0; pointer-events: none;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), width .38s cubic-bezier(.34,1.56,.64,1), opacity .2s;
}
.mobilebar__item {
  flex: 1; block-size: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: .625rem; font-weight: 700; text-decoration: none;
  color: var(--text-muted); transition: color .25s;
  -webkit-tap-highlight-color: transparent;
}
.mobilebar__item svg { inline-size: 21px; block-size: 21px; }
.mobilebar__item.is-active { color: var(--ink-700); }
.mobilebar__item.is-pressed { color: var(--ink-700); }

.mobilebar__cartwrap { position: relative; display: inline-flex; }
.mobilebar__badge {
  position: absolute; top: -8px; inset-inline-end: -11px;
  min-inline-size: 19px; block-size: 19px; padding-inline: 5px; border-radius: 999px;
  background: var(--gold-500); color: var(--ink-700);
  font-size: .625rem; font-weight: 800; line-height: 19px; text-align: center;
  box-shadow: 0 0 0 2px var(--bg-surface);
}

/* ═══════════ phone compact — same look, way less scroll (no structure change) ═══
   Addresses the 14k-px mobile page: hero+bento+popular alone was ~6 viewports.
   Only runs at <768px so desktop stays verbatim. Every tap target stays ≥44px.
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* a) trim section vertical gutters. Large clamp (up to 7.5–8rem) is desktop
     hero padding — on phone it alone costs a viewport per section. */
  .section,
  .section--surface,
  .section--sunken,
  .section--inverse.final,
  .bento,
  .popular {
    padding-block: clamp(2.25rem, 7vw, 3rem) !important;
  }
  .brandcover { padding-block: 1.25rem !important; }
  .hero { padding-block: 1.75rem 2.25rem !important; }
  .final .section { padding-block-start: 2.25rem; }

  /* b) tighten every intro block that repeats eyebrow + 2-line title + 3-line
     p + CTA. This alone removes ~one viewport from the 5 repeated intros. */
  .secintro { gap: .875rem !important; margin-block-end: 1.25rem !important; }
  .secintro__eyebrow { margin-block-end: .5rem !important; }
  .secintro__title {
    font-size: 1.275rem !important;
    line-height: 1.45 !important;
  }
  .secintro__desc { font-size: .875rem !important; line-height: 1.8 !important; }
  .secintro__action { padding-block-end: 2px !important; }
  .section-head {
    margin-block-end: 1.25rem !important;
  }
  .section-head p { margin-block-start: .5rem !important; font-size: .875rem; line-height: 1.8; }
  .section-head .eyebrow { margin-block-end: .5rem !important; }

  /* c) cards: reduce min-height + inner padding + gap inside cards and grids.
     The look (radius/shadow/row) stays; only the air goes. */
  .bento__card { min-block-size: 0 !important; padding: 1.125rem !important; }
  .bento__grid { gap: .75rem !important; }
  .bento__top { align-items: center; }
  .bento__icon { inline-size: 42px !important; block-size: 42px !important; border-radius: 11px !important; }
  .bento__icon svg { inline-size: 21px !important; block-size: 21px !important; }
  .bento__badge { padding: 3px 9px !important; font-size: .6875rem; }
  .bento__h { font-size: 1rem !important; }
  .bento__p { margin-block-start: .375rem !important; font-size: .8125rem !important; line-height: 1.75 !important; }
  .bento__go { margin-block-start: .875rem !important; }
  .bento__chips { gap: 6px !important; margin-block-start: .625rem !important; }
  .bento__go, .secintro__action { min-block-size: 44px; }

  .popular__grid { gap: .75rem !important; }

  /* d) step / security / FAQ / final: cut the generous gaps the desktop
     grid relied on. */
  .steps .secintro { margin-block-end: .75rem; }
  .step { padding-block-start: 1rem !important; }
  .step p { margin-block-end: .5rem; }
  /* clear the numeral (≈42px tall, absolute at top:0) so the hairline sits
     BELOW the digit, not through its middle. */
  .step__bar { margin-block: 3rem .75rem !important; }
  .step + .step { border-block-start: 1px solid var(--border-subtle); padding-block-start: 1rem; margin-block-start: .5rem; }

  .security .secintro { margin-block-end: 1rem; }
  .shield { inline-size: min(320px, 88vw) !important; }
  .assure-list { gap: 1rem !important; }

  .faq .acc { border-radius: 12px; }
  .faq .acc__btn { min-block-size: 42px !important; padding: .875rem 1rem !important; gap: .75rem; }
  .faq .acc__btn span, .faq .acc__inner p { font-size: .875rem; }

  .final__actions { gap: .625rem !important; }
  .final .btn { min-block-size: 44px; }
}

/* ---------- hero card: tablet/desktop only (user decision — phone preview
   carries the copy; the visual card starts at 768px) ---------- */
@media (max-width: 767px) {
  .hero__visual { display: none; }
}
.brandstrip__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .8125rem; font-weight: 500;
  color: var(--text-on-inverse-muted); white-space: nowrap;
  direction: ltr;
}
.brandstrip__item img, .brandstrip__item svg {
  inline-size: 26px; block-size: 26px; opacity: .85;
  filter: grayscale(1) brightness(1.6);
}
