/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #0a0b0f;
  --bg-elevated: #12141c;
  --bg-card: #161922;
  --bg-card-hover: #1c1f2b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5f7;
  --text-muted: #9aa3b5;
  --text-dim: #6b7385;
  --accent: #ff9900;
  --accent-soft: rgba(255, 153, 0, 0.14);
  --accent-glow: rgba(255, 153, 0, 0.35);
  --amazon-dark: #131921;
  --amazon-card: linear-gradient(135deg, #1a2332 0%, #0f1419 50%, #1c2836 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: 1120px;
  --header-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul, ol { list-style: none; }

/* ── Background ─────────────────────────────────────────── */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(255, 153, 0, 0.09), transparent),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(80, 120, 255, 0.06), transparent),
    radial-gradient(ellipse 40% 30% at 50% 90%, rgba(255, 153, 0, 0.05), transparent);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1, h2, h3 { line-height: 1.15; font-weight: 600; }
h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.03em;
}
h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.125rem; }

.section-head p:last-child {
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 52ch;
}
.section-head--center { text-align: center; }
.section-head--center p:last-child { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn--primary:hover { box-shadow: 0 12px 40px var(--accent-glow); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255,255,255,0.03); }
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
}
.btn--ghost:hover { color: var(--text); }
.btn--full { width: 100%; }
.btn--loading { pointer-events: none; opacity: 0.85; }
.btn__loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #111;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.header--scrolled {
  background: rgba(10, 11, 15, 0.82);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: 10px;
  color: var(--accent);
}
.logo__mark svg { width: 20px; height: 20px; }
.logo__text { font-weight: 700; font-size: 1.125rem; letter-spacing: -0.02em; }
.logo__text span { color: var(--accent); }
.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin: 1.25rem 0 2rem;
  max-width: 46ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 153, 0, 0.2);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stats strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__stats span {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* Gift card visual */
.hero__visual { display: flex; justify-content: center; }
.card-stack {
  position: relative;
  width: 320px;
  height: 220px;
}
.gift-card {
  position: absolute;
  width: 300px;
  height: 188px;
  border-radius: 18px;
  background: var(--amazon-card);
  border: 1px solid var(--border-strong);
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gift-card--back {
  top: 24px;
  left: 20px;
  transform: rotate(8deg);
  opacity: 0.55;
}
.gift-card--front {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}
.gift-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.12) 0%, transparent 45%, rgba(255,153,0,0.08) 100%);
  pointer-events: none;
}
.gift-card__chip {
  width: 36px;
  height: 26px;
  border-radius: 5px;
  background: linear-gradient(135deg, #d4a853, #b8922e);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.gift-card__brand {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--text);
  margin-bottom: auto;
}
.gift-card__amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 1rem;
}
.gift-card__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
}

/* ── Products ───────────────────────────────────────────── */
.products {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.products__error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-card--popular {
  border-color: rgba(255, 153, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.1);
}
.product-card--test {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.12);
}
.product-card__badge--test {
  background: #60a5fa;
  color: #0f172a;
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
}
.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.product-card__icon svg { width: 24px; height: 24px; }
.product-card__credits {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.product-card__credits span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.product-card__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0.5rem 0 1.25rem;
  flex: 1;
}
.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-card__price small {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-dim);
}
.product-card .btn { width: 100%; }

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .products__grid { grid-template-columns: 1fr; }
}

/* ── Custom volume slider ───────────────────────────────── */
.custom-volume {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.custom-volume__head h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.custom-volume__head p:last-child {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 36ch;
}
.custom-volume__panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.custom-volume__display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.custom-volume__credits {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.custom-volume__unit {
  color: var(--text-muted);
  font-weight: 500;
}
.custom-volume__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-soft), rgba(255,153,0,0.35));
  outline: none;
  cursor: pointer;
}
.custom-volume__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #111;
  box-shadow: 0 0 0 4px var(--accent-soft);
  cursor: pointer;
}
.custom-volume__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #111;
  box-shadow: 0 0 0 4px var(--accent-soft);
  cursor: pointer;
}
.custom-volume__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.custom-volume__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.custom-volume__price span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.custom-volume__price strong {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.custom-volume__footer .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .custom-volume { grid-template-columns: 1fr; }
}

/* ── Success page ───────────────────────────────────────── */
.success-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) 1rem 3rem;
}
.success-card {
  width: min(100%, 520px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.success-card h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0.35rem 0 0.75rem;
}
.success-card__loading {
  color: var(--text-muted);
  padding: 2rem 0;
}
.success-lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 700;
}
.success-icon--warn { background: rgba(255,80,80,0.12); color: #ff6b6b; }
.success-icon--pending { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.success-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.code-box {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.code-box code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: left;
  word-break: break-all;
}
.success-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  text-align: left;
}
.success-meta > div {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}
.success-meta span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.success-meta strong { font-size: 0.9rem; }
.success-meta .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
}
.success-hint {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  .success-meta { grid-template-columns: 1fr; }
  .code-box { flex-direction: column; align-items: stretch; }
}

/* ── Steps ──────────────────────────────────────────────── */
.steps {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(255,153,0,0.03), transparent);
}
.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.step__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .steps__list { grid-template-columns: 1fr; }
}

/* ── Trust ──────────────────────────────────────────────── */
.trust {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
}
.trust__item svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}
.trust__item strong { display: block; font-size: 0.9375rem; }
.trust__item span { font-size: 0.8125rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .trust__inner { grid-template-columns: 1fr; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  position: relative;
  z-index: 1;
  padding: 5rem 0 6rem;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-dim);
  transition: transform 0.2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__brand p {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-top: 0.35rem;
}
.footer__legal {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* ── Modal ──────────────────────────────────────────────── */
.modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.modal__inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 2rem, 440px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.modal__close svg { width: 18px; height: 18px; }
.modal__header { margin-bottom: 1.5rem; }
.modal__header h2 { font-size: 1.5rem; }
.modal__product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.modal__product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.modal__product-icon svg { width: 22px; height: 22px; }
.modal__product-info strong { display: block; }
.modal__product-info span { font-size: 0.875rem; color: var(--text-muted); }
.modal__product-price {
  margin-left: auto;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: right;
}
.modal__product-price small,
.custom-volume__price small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.checkout-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > span { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); }
.field input[type="email"] {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
}
.field.checkbox input { margin-top: 0.2rem; accent-color: var(--accent); }
.checkout-form__note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}
