/* ============================================================
   A Box For Your Business — "Ready-to-Ship"
   Vanilla CSS. Fonts via Bunny. No external images.
   ============================================================ */

:root {
  /* Palette: confident, high contrast */
  --ink:        #0b0b12;   /* near-black */
  --ink-soft:   #1a1a26;
  --paper:      #ffffff;
  --cream:      #f6f4ef;
  --grey:       #6a6a78;
  --line:       #e7e4dc;

  /* Brand: electric tangerine + deep violet + signal lime */
  --brand:      #ff5a1f;   /* tangerine */
  --brand-deep: #e6480f;
  --violet:     #4b2bd6;
  --violet-2:   #6a4bff;
  --lime:       #d6ff3f;   /* signal accent */

  /* Cardboard for the box shot */
  --card-1:     #d8a76b;
  --card-2:     #c08e51;
  --card-3:     #a9783f;
  --card-top:   #e3b87e;

  --radius:     16px;
  --radius-lg:  26px;
  --maxw:       1200px;

  --shadow-sm:  0 2px 10px rgba(11,11,18,.08);
  --shadow-md:  0 14px 40px rgba(11,11,18,.16);
  --shadow-lg:  0 30px 80px rgba(11,11,18,.28);

  --font-display: "Bricolage Grotesque", "Inter Tight", system-ui, sans-serif;
  --font-text:    "Inter Tight", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: clamp(16px, 1vw + 14px, 18px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- focus ---------- */
:focus-visible {
  outline: 3px solid var(--violet-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  line-height: 1;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), color .18s var(--ease);
  will-change: transform;
}
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 0 0 var(--brand-deep), var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 0 0 var(--brand-deep), var(--shadow-md); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 4px 0 0 var(--brand-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-xl { padding: 20px 34px; font-size: 1.15rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: .92rem; line-height: 1.05;
  letter-spacing: -.01em; text-transform: uppercase;
}
.brand-name strong { color: var(--brand); }

/* little box logo mark */
.brand-mark {
  position: relative; width: 30px; height: 30px; flex: none;
  display: inline-block;
}
.brand-mark-body {
  position: absolute; inset: 6px 0 0 0;
  background: linear-gradient(160deg, var(--card-1), var(--card-3));
  border-radius: 5px;
}
.brand-mark-lid {
  position: absolute; left: -1px; right: -1px; top: 2px; height: 9px;
  background: var(--card-top); border-radius: 4px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.12);
}
.brand-mark-body::after {
  content: ""; position: absolute; left: 50%; top: 5px; width: 2px; bottom: 4px;
  background: rgba(0,0,0,.12); transform: translateX(-50%);
}

.header-nav { display: flex; gap: 26px; }
.header-nav a {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--brand); transition: right .25s var(--ease);
}
.header-nav a:hover::after { right: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background:
    radial-gradient(120% 90% at 80% -10%, rgba(106,75,255,.10), transparent 55%),
    radial-gradient(90% 80% at 0% 0%, rgba(255,90,31,.08), transparent 50%),
    var(--cream);
  padding: clamp(36px, 6vw, 76px) 0 clamp(48px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--violet);
  background: #fff; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,90,31,.18);
}

h1#hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: .98; letter-spacing: -.03em;
  margin: 18px 0 0;
}
.hl {
  background: linear-gradient(105deg, var(--brand), var(--violet-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede {
  margin: 20px 0 0; max-width: 50ch; color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ---------- SIGNATURE: selector ---------- */
.selector {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.selector-label {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--grey);
  margin-bottom: 12px;
}
.sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.size {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 16px 8px 12px;
  transition: border-color .18s var(--ease), transform .18s var(--ease),
              background .18s var(--ease), box-shadow .18s var(--ease);
}
.size:hover { transform: translateY(-2px); border-color: var(--ink); }
.size-letter {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  line-height: 1; color: var(--ink);
}
.size-name { font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.size[aria-checked="true"] {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,90,31,.14);
}
.size[aria-checked="true"] .size-letter { color: var(--brand); }
.size[aria-checked="true"]::after {
  content: "✓ Selected"; position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-family: var(--font-text); font-weight: 700; font-size: .66rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}

.price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 20px;
}
.price-block { display: flex; flex-direction: column; }
.price-label {
  font-weight: 600; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--grey);
}
.price {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 2.9rem); line-height: 1; letter-spacing: -.02em;
  color: var(--ink);
}
.price-sub { font-size: .86rem; color: var(--grey); margin-top: 4px; max-width: 26ch; }
.hero-buy { flex: none; }

.reassure {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: .82rem; color: var(--grey); font-weight: 500;
}

/* ---------- CSS PRODUCT SHOT ---------- */
.hero-shot {
  position: relative;
  display: grid; place-items: center;
  min-height: 360px;
  perspective: 1100px;
}
.shot-floor {
  position: absolute; inset: auto 0 8% 0; height: 60%;
  background: radial-gradient(60% 60% at 50% 100%, rgba(75,43,214,.10), transparent 70%);
  filter: blur(2px);
}
.box-scene {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-26deg);
  animation: floaty 6s ease-in-out infinite;
  transition: transform .6s var(--ease);
}
@keyframes floaty {
  0%, 100% { transform: rotateX(8deg) rotateY(-26deg) translateY(0); }
  50%      { transform: rotateX(8deg) rotateY(-26deg) translateY(-12px); }
}

.box {
  position: relative;
  width: 220px; height: 220px;
  transform-style: preserve-3d;
  transition: width .5s var(--ease), height .5s var(--ease);
}
/* sizes scale the box per tier */
.box-scene[data-tier="starter"] .box { width: 200px; height: 188px; }
.box-scene[data-tier="growth"]  .box { width: 232px; height: 216px; }
.box-scene[data-tier="pro"]     .box { width: 268px; height: 248px; }

.box-face { position: absolute; inset: 0; backface-visibility: hidden; }

.box-front {
  background: linear-gradient(160deg, var(--card-1) 0%, var(--card-2) 60%, var(--card-3) 100%);
  transform: translateZ(60px);
  border-radius: 4px;
  box-shadow: inset 0 0 60px rgba(0,0,0,.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px; gap: 12px;
  border: 1px solid rgba(0,0,0,.08);
}
.box-side {
  background: linear-gradient(160deg, var(--card-3), #8c6231);
  width: 120px; height: 100%; left: auto; right: 0;
  transform: rotateY(90deg) translateZ(60px);
  transform-origin: right center;
  border-radius: 4px;
}
.box-top {
  background: linear-gradient(160deg, var(--card-top), var(--card-2));
  height: 120px; bottom: auto;
  transform: rotateX(90deg) translateZ(60px);
  transform-origin: top center;
  border-radius: 4px;
  overflow: hidden;
}
.box-flap {
  position: absolute; top: 0; width: 50%; height: 100%;
  background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(0,0,0,.10));
}
.box-flap-l { left: 0; border-right: 1px solid rgba(0,0,0,.18); }
.box-flap-r { right: 0; }
.box-tape {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 26px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(45deg, #f3e8c8, #f3e8c8 8px, #e7d6a6 8px, #e7d6a6 16px);
  box-shadow: 0 0 8px rgba(0,0,0,.18);
}

.box-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  letter-spacing: .06em; color: #4a2f12;
}
.box-logo-mark {
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--brand); box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
}
.box-stamp {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem); letter-spacing: .04em;
  color: #fff; background: var(--ink);
  padding: 6px 16px; border-radius: 6px;
  transform: rotate(-4deg);
  box-shadow: 0 6px 0 rgba(0,0,0,.18);
  border: 2px solid rgba(255,255,255,.5);
  transition: background .4s var(--ease);
}
.box-scene[data-tier="growth"] .box-stamp { background: var(--violet); }
.box-scene[data-tier="pro"]    .box-stamp { background: var(--brand-deep); }
.box-barcode {
  width: 84px; height: 26px;
  background: repeating-linear-gradient(90deg,
    #2a1c0c 0, #2a1c0c 2px, transparent 2px, transparent 4px,
    #2a1c0c 4px, #2a1c0c 7px, transparent 7px, transparent 9px);
  border-radius: 2px; opacity: .8;
}

.box-shadow {
  position: absolute; left: 50%; bottom: -42px; width: 240px; height: 40px;
  transform: translateX(-50%) rotateX(80deg);
  background: radial-gradient(closest-side, rgba(11,11,18,.4), transparent 78%);
  filter: blur(6px);
  animation: shadowpulse 6s ease-in-out infinite;
}
@keyframes shadowpulse {
  0%, 100% { transform: translateX(-50%) rotateX(80deg) scale(1);   opacity: .55; }
  50%      { transform: translateX(-50%) rotateX(80deg) scale(.86); opacity: .35; }
}

.shot-caption {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  font-size: .78rem; color: var(--grey); font-style: italic;
  white-space: nowrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--ink); color: #fff; }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; padding: 30px 22px;
}
.trust-stat { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1; letter-spacing: -.02em;
  color: var(--lime);
}
.trust-of { font-size: .55em; color: rgba(255,255,255,.6); }
.trust-cap { font-size: .85rem; color: rgba(255,255,255,.72); font-weight: 500; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section-head { max-width: 60ch; margin-bottom: 34px; }
.kicker {
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--brand);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.02; letter-spacing: -.025em;
}
.section-sub { margin-top: 12px; color: var(--ink-soft); }

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.inside { padding: clamp(54px, 8vw, 96px) 0; }
.inside-tier { color: var(--violet); }
.inside-list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.inside-list li {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  font-weight: 500;
  animation: itemIn .4s var(--ease) both;
}
@keyframes itemIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.inside-check {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: .8rem;
  margin-top: 1px;
}
.inside-item-note { display: block; font-size: .82rem; color: var(--grey); font-weight: 400; margin-top: 2px; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare { padding: clamp(54px, 8vw, 96px) 0; background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare-table thead th { vertical-align: bottom; background: var(--paper); border-bottom: 2px solid var(--line); }
.feat-col { width: 32%; }
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table tbody td { color: var(--ink-soft); font-weight: 500; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }

.col-pick {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
  background: transparent; border: 2px solid transparent; border-radius: 12px;
  padding: 10px 12px; width: 100%; transition: all .18s var(--ease); position: relative;
}
.col-pick:hover { background: var(--cream); }
.col-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.col-price { font-weight: 700; color: var(--grey); font-size: .95rem; }
.col-tagflag {
  align-self: flex-start;
  background: var(--violet); color: #fff; font-weight: 700; font-size: .64rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 8px; border-radius: 999px; margin-bottom: 2px;
}
.col-pick[aria-pressed="true"] {
  border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(255,90,31,.12);
}
.col-pick[aria-pressed="true"] .col-name { color: var(--brand); }
.col-pick[aria-pressed="true"] .col-price { color: var(--ink); }

/* highlight selected column cells */
.compare-table td.is-active, .compare-table thead th.is-active {
  background: linear-gradient(0deg, rgba(255,90,31,.07), rgba(255,90,31,.07));
}
.yes { color: var(--brand-deep); font-weight: 800; }
.no { color: var(--grey); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(54px, 8vw, 96px) 0; }
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream); overflow: hidden;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--ink); box-shadow: var(--shadow-sm); background: #fff; }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem;
  padding: 18px 54px 18px 20px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 1.2rem;
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq-item[open] summary::after { content: "–"; background: var(--brand); transform: translateY(-50%) rotate(180deg); }
.faq-body { padding: 0 20px 20px; color: var(--ink-soft); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: clamp(60px, 9vw, 110px) 0;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(106,75,255,.5), transparent 50%),
    radial-gradient(70% 100% at 0% 100%, rgba(255,90,31,.55), transparent 55%),
    var(--ink);
  color: #fff; text-align: center;
}
.final-inner { max-width: 760px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.03em;
}
.final-sub { margin: 18px auto 30px; max-width: 56ch; color: rgba(255,255,255,.84); font-size: 1.1rem; }
.final-sub strong { color: var(--lime); }
.buy-form { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.form-note { min-height: 1.4em; font-weight: 600; color: var(--lime); }
.final-reassure { margin-top: 26px; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-soft); color: rgba(255,255,255,.8); padding: 48px 0 90px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; max-width: 46ch; }
.footer-brand p { font-size: .92rem; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-weight: 600; }
.footer-nav a:hover { color: var(--lime); }
.footer-legal { grid-column: 1 / -1; padding-top: 24px; margin-top: 6px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; color: rgba(255,255,255,.5); }

/* ============================================================
   STICKY BUY BAR
   ============================================================ */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(11,11,18,.94);
  backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(120%);
  transition: transform .35s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.buybar.is-visible { transform: translateY(0); }
.buybar-inner { display: flex; align-items: center; gap: 16px; padding: 12px 22px; }
.buybar-info { display: flex; flex-direction: column; margin-right: auto; line-height: 1.15; }
.buybar-box { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 500; }
.buybar-price { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--lime); }
.buybar-sizes { display: flex; gap: 6px; }
.bsize {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 2px solid transparent;
  color: #fff; font-family: var(--font-display); font-weight: 800;
  transition: all .15s var(--ease);
}
.bsize:hover { background: rgba(255,255,255,.16); }
.bsize[aria-checked="true"] { background: var(--brand); border-color: #fff; }
.buybar-cta { padding: 12px 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-shot { order: -1; min-height: 300px; margin-bottom: 8px; }
  .header-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .inside-list { grid-template-columns: 1fr; }
  .price-row { flex-direction: column; align-items: stretch; }
  .hero-buy { justify-content: center; }
  .shot-caption { white-space: normal; text-align: center; width: 90%; }
  .buybar-info .buybar-box { display: none; }
  .buybar-cta .btn-arrow { display: none; }
  .buybar-inner { gap: 10px; padding: 10px 16px; }
  .bsize { width: 36px; height: 36px; }
}

/* ============================================================
   REDUCED MOTION — accessible static fallback
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .box-scene { animation: none; transform: rotateX(8deg) rotateY(-26deg); }
  .box-shadow { animation: none; }
  .inside-list li { animation: none; }
  .buybar { transition: none; }
}
