/* ================================================================
   DOCKT — Shared Design System
   styles.css
================================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --orange:       #f5601e;
  --orange-lt:    #ff8147;
  --orange-dim:   rgba(245,96,30,0.10);
  --orange-glow:  rgba(245,96,30,0.22);
  --ink:          #0f0d0b;
  --ink-2:        #181410;
  --ink-3:        #211d17;
  --cream:        #f3ede4;
  --cream-2:      #ece5d8;
  --cream-3:      #e4dccf;
  --white:        #faf8f4;
  --text-light:   #ede8e1;
  --text-muted:   #9a8f85;
  --text-dk:      #1a1512;
  --text-muted-dk:#7a6f65;
  --surf:         #1c1812;
  --surf-2:       #252018;
  --surf-3:       #2e271d;
  --border:       rgba(255,255,255,0.07);
  --border-m:     rgba(255,255,255,0.12);
  --bdk:          rgba(0,0,0,0.08);
  --bdk2:         rgba(0,0,0,0.14);
  --r:    14px;
  --rs:   8px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-brand:   'Garet', 'DM Sans', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--ink);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Grain texture ───────────────────────────────────────────── */
body::before {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Typography scale ────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-brand); font-weight: 600; }
p { line-height: 1.7; }

.display-xl { font-size: clamp(3rem, 7vw, 5.5rem); font-family: var(--font-display); line-height: 1.05; }
.display-lg { font-size: clamp(2.4rem, 5vw, 4rem); font-family: var(--font-display); line-height: 1.1; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--orange-glow);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kicker-dk {
  background: rgba(245,96,30,0.08);
  color: var(--orange);
  border-color: rgba(245,96,30,0.18);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border-m);
  border-radius: 100px;
  padding: 14px 30px;
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 10px 20px;
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
  text-decoration: none;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--text-light); }

.btn-primary-dk {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary-dk:hover { background: var(--orange-lt); transform: translateY(-1px); }

.btn-outline-dk {
  background: transparent;
  color: var(--text-dk);
  border: 1.5px solid var(--bdk2);
  border-radius: 100px;
  padding: 14px 30px;
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-dk:hover { border-color: var(--orange); color: var(--orange); }

.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

.section-dark { background: var(--ink); color: var(--text-light); }
.section-dark-2 { background: var(--ink-2); color: var(--text-light); }
.section-dark-3 { background: var(--ink-3); color: var(--text-light); }
.section-light { background: var(--cream); color: var(--text-dk); }
.section-light-2 { background: var(--cream-2); color: var(--text-dk); }
.section-white { background: var(--white); color: var(--text-dk); }

/* ── Grid ────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ── Cards ───────────────────────────────────────────────────── */
.card-dark {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.card-dark:hover { border-color: var(--border-m); transform: translateY(-2px); }

.card-light {
  background: var(--white);
  border: 1px solid var(--bdk2);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.card-light:hover { border-color: rgba(0,0,0,0.22); transform: translateY(-2px); }

/* ── Product card ────────────────────────────────────────────── */
.product-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--border-m); transform: translateY(-3px); }
.product-card-img { aspect-ratio: 4/3; }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-name { font-family: var(--font-brand); font-weight: 700; font-size: 16px; color: var(--text-light); margin-bottom: 6px; }
.product-card-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; flex: 1; line-height: 1.5; }
.product-card-price { font-family: var(--font-brand); font-weight: 700; font-size: 18px; color: var(--orange); margin-bottom: 16px; }
.product-card-footer { display: flex; gap: 10px; }

/* ── Nav ─────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 900;
  will-change: height;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(15,13,11,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height .2s, background .2s;
}
#main-nav.scrolled {
  height: 56px;
  background: rgba(15,13,11,0.95);
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: var(--rs);
  transition: color .15s, background .15s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-light); background: var(--border); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  padding: 8px;
  border-radius: var(--rs);
  transition: color .15s;
  display: flex;
  align-items: center;
}
.cart-btn:hover { color: var(--text-light); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-brand);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-login {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--rs);
  border: 1px solid var(--border-m);
  transition: color .15s, background .15s, border-color .15s;
}
.nav-login:hover { color: var(--text-light); background: var(--border); }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.nav-overlay ul a {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
  padding: 10px 20px;
  display: block;
  transition: color .15s;
}
.nav-overlay ul a:hover { color: var(--orange); }
.nav-overlay ul .btn-primary { font-size: 16px; margin-top: 12px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  #main-nav { padding: 0 20px; }
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 64px;
}
.footer-brand {}
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-email a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s;
}
.footer-email a:hover { color: var(--orange); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--text-muted);
  font-size: 18px;
  transition: color .15s;
}
.footer-social a:hover { color: var(--orange); }
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .footer-links { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.form-group.light label { color: var(--text-dk); }
.form-control {
  background: var(--surf-2);
  border: 1px solid var(--border-m);
  border-radius: var(--rs);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-light);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control-light {
  background: var(--white);
  border: 1px solid var(--bdk2);
  border-radius: var(--rs);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dk);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-control-light:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-control-light::placeholder { color: var(--text-muted-dk); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239a8f85' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── Image placeholder ───────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--surf-2) 0%, var(--surf-3) 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.img-placeholder span {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding: 12px;
  letter-spacing: 0.04em;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--orange-glow) 0%, transparent 70%);
}
.img-placeholder-light {
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3) 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.img-placeholder-light span {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted-dk);
  text-align: center;
  padding: 12px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.img-placeholder-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(245,96,30,0.08) 0%, transparent 70%);
}

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--surf-2);
  border: 1px solid var(--border-m);
  color: var(--text-light);
  padding: 14px 20px;
  border-radius: var(--r);
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastIn .3s ease forwards;
}
.toast.success { border-color: var(--orange-glow); }
.toast.fade-out { animation: toastOut .3s ease forwards; }
@keyframes toastIn {
  from { opacity:0; transform: translateY(12px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes toastOut {
  from { opacity:1; transform: translateY(0); }
  to   { opacity:0; transform: translateY(12px); }
}

/* ── Cart Drawer ─────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  z-index: 950;
  background: var(--ink-2);
  border-left: 1px solid var(--border-m);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
}
.cart-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  padding: 6px;
  border-radius: var(--rs);
  transition: color .15s;
}
.cart-close:hover { color: var(--text-light); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 3px;
}
.cart-item-variant {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item-qty button {
  background: var(--surf-3);
  border: 1px solid var(--border);
  color: var(--text-light);
  width: 26px; height: 26px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cart-item-qty button:hover { background: var(--surf-2); }
.cart-item-qty span {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item-price {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
}
.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  padding: 4px;
  cursor: pointer;
  transition: color .15s;
}
.cart-item-remove:hover { color: #e55; }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.cart-empty i { font-size: 40px; margin-bottom: 16px; display: block; }
.cart-empty p { font-size: 15px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-label {
  font-family: var(--font-brand);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
}
.cart-total-amount {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-light);
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity:1; }
  50% { opacity:0.6; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .38s ease, transform .38s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity:1; transform:none; transition:none; }
  .fade-up.visible { opacity:1; transform:none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ── Marquee / social proof bar ──────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  background: var(--surf);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 24px;
}
.marquee-track span.dot {
  color: var(--orange);
  padding: 0;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item.light-faq { border-bottom: 1px solid var(--bdk2); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  transition: color .15s;
}
.faq-question.dark-q { color: var(--text-dk); }
.faq-question:hover { color: var(--orange); }
.faq-question i {
  font-size: 13px;
  transition: transform .25s;
  flex-shrink: 0;
  color: var(--text-muted);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer-inner.dark-a { color: var(--text-muted-dk); }

/* ── Filter tabs ─────────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  background: transparent;
  border: 1px solid var(--border-m);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
}
.filter-tab:hover { border-color: var(--border-m); color: var(--text-light); }
.filter-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.filter-tab-dk {
  background: transparent;
  border: 1px solid var(--bdk2);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted-dk);
  cursor: pointer;
  transition: all .15s;
}
.filter-tab-dk:hover { border-color: var(--orange); color: var(--orange); }
.filter-tab-dk.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ── Horizontal scroll cards ─────────────────────────────────── */
.scroll-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--surf-3) transparent;
}
.scroll-cards::-webkit-scrollbar { height: 4px; }
.scroll-cards::-webkit-scrollbar-track { background: transparent; }
.scroll-cards::-webkit-scrollbar-thumb { background: var(--surf-3); border-radius: 2px; }
.scroll-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surf);
  transition: border-color .2s, transform .2s;
}
.scroll-card:hover { border-color: var(--border-m); transform: translateY(-2px); }
.scroll-card-img { aspect-ratio: 4/3; }
.scroll-card-body { padding: 16px; }
.scroll-card-label {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.scroll-card-title {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}
.scroll-card-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Pricing card ────────────────────────────────────────────── */
.pricing-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--surf) 0%, var(--surf-3) 100%);
}
.pricing-card:hover { border-color: var(--border-m); transform: translateY(-3px); }
.pricing-card.featured:hover { border-color: var(--orange-lt); }
.pricing-badge {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.pricing-name {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 42px;
  font-family: var(--font-display);
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 22px; vertical-align: super; font-family: var(--font-brand); }
.pricing-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-feature i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.pricing-feature.included { color: var(--text-light); }

/* ── Step / numbered ─────────────────────────────────────────── */
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  color: var(--orange);
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* ── Icon chip ───────────────────────────────────────────────── */
.icon-chip {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* ── Comparison table ────────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.comparison-table td:first-child { color: var(--text-muted); }
.comparison-table .check { color: var(--orange); }
.comparison-table .cross { color: var(--text-muted); opacity: 0.4; }

/* ── Utility classes ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-muted-dk { color: var(--text-muted-dk); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.w-full { width: 100%; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ── Product page specific ───────────────────────────────────── */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.product-price-display {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--text-light);
  margin: 8px 0 24px;
}
.variant-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
}
.variant-table th, .variant-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.variant-table th {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.variant-table td { color: var(--text-light); }
.variant-table tr:last-child td { border-bottom: none; }

/* ── Scroll arrow ────────────────────────────────────────────── */
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s ease-in-out infinite;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-brand);
  text-decoration: none;
  transition: color .15s;
}
.scroll-arrow:hover { color: var(--orange); }
.scroll-arrow i { font-size: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Hero specific ───────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 64px;
}
.hero-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Section header ──────────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-header.light p { color: var(--text-muted-dk); }

/* ── Page hero ───────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

/* ── Resource card ───────────────────────────────────────────── */
.resource-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.resource-card:hover { border-color: var(--border-m); transform: translateY(-3px); }
.resource-card-img { aspect-ratio: 16/9; }
.resource-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.resource-cat {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.resource-title {
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.3;
}
.resource-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.resource-read-more {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s;
}
.resource-card:hover .resource-read-more { gap: 10px; }

/* ── Testimonial ─────────────────────────────────────────────── */
.testimonial-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
}
.testimonial-stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}
.testimonial-quote {
  font-size: 16px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surf-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Notice / alert ──────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--rs);
  font-size: 14px;
  font-family: var(--font-brand);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.alert-info {
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  color: var(--orange-lt);
}
.alert-success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
}
.alert-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: var(--font-brand);
}
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 10px; }

/* ── Tag / badge ─────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  background: var(--surf-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.tag-orange {
  background: var(--orange-dim);
  border-color: var(--orange-glow);
  color: var(--orange);
}

/* ── Spec list ───────────────────────────────────────────────── */
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.spec-row span { color: var(--text-muted); }
.spec-row strong { color: var(--text-light); }

/* ── Qty control ─────────────────────────────────────────────── */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-m);
  border-radius: var(--rs);
  overflow: hidden;
}
.qty-btn {
  background: var(--surf-2);
  border: none;
  color: var(--text-light);
  width: 40px;
  height: 40px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.qty-btn:hover { background: var(--surf-3); }
.qty-input {
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-m);
  border-right: 1px solid var(--border-m);
  color: var(--text-light);
  width: 56px;
  height: 40px;
  text-align: center;
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

/* ── Sticky add to cart ──────────────────────────────────────── */
.add-to-cart-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Legal page ──────────────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--text-light);
  margin: 48px 0 16px;
}
.legal-content h3 {
  font-size: 1.1rem;
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--text-light);
  margin: 32px 0 12px;
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-content a { color: var(--orange); }
.legal-content a:hover { text-decoration: underline; }

/* legal pages: content section padding */
.legal-section { padding: 80px 0 96px; }

/* ── Hero glow left ──────────────────────────────────────────── */
.hero-glow-left {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,96,30,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Dashboard mockup ────────────────────────────────────────── */
.hero-mockup-wrap {
  background: var(--surf);
  border: 1px solid var(--border-m);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 80px var(--orange-glow), 0 40px 100px rgba(0,0,0,0.6);
  text-align: left;
}
.hero-mockup-chrome {
  background: var(--ink-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hero-mockup-addr {
  font-family: var(--font-brand);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 10px;
  background: var(--surf-2);
  padding: 3px 14px;
  border-radius: 100px;
}
.hero-mockup-body {
  display: flex;
  min-height: 260px;
}
.hero-mockup-sidebar {
  width: 164px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 16px 10px;
  background: var(--ink-3);
}
.hero-mockup-main {
  flex: 1;
  padding: 16px;
  background: var(--surf);
  overflow: hidden;
}
.mockup-nav-item {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}
.mockup-nav-item.active {
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--orange-glow);
}
.mockup-stat-card {
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}
.mockup-stat-val {
  font-family: var(--font-brand);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2px;
}
.mockup-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-brand);
}
.mockup-stat-trend {
  font-size: 10px;
  font-family: var(--font-brand);
  font-weight: 700;
  color: #4ade80;
  margin-top: 3px;
}
.mockup-tile {
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  font-family: var(--font-brand);
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero-mockup-sidebar { display: none; }
  .hero-mockup-main { padding: 12px; }
  .hero-mockup-body { min-height: auto; }
}

/* ── Toolkit logos grid ──────────────────────────────────────── */
.toolkit-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.toolkit-logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--bdk2);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dk);
  transition: border-color .15s, transform .15s;
}
.toolkit-logo-pill:hover { border-color: var(--orange); transform: translateY(-1px); }
.toolkit-logo-pill img { height: 20px; width: auto; }
.toolkit-logo-pill i { font-size: 16px; color: var(--text-muted-dk); }

/* ── Nav link icons ──────────────────────────────────────────── */
.nav-links a i {
  font-size: 9px;
  opacity: 0.55;
  transition: opacity .15s;
  flex-shrink: 0;
}
.nav-links a:hover i, .nav-links a.active i { opacity: 0.85; }
.nav-overlay ul a i {
  font-size: 16px;
  width: 24px;
  text-align: center;
  opacity: 0.7;
}

/* ── Page hero split (text + visual) ─────────────────────────── */
.page-hero-split {
  padding: 120px 0 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero-split::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-centered {
  padding: 120px 0 96px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero-centered::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-centered .container { position: relative; z-index: 1; }
body.has-announcement .page-hero-centered { padding-top: calc(120px + 36px); }
.page-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-split .page-hero-inner { padding-top: 8px; }
.page-hero-visual {
  padding-top: 8px;
}
@media (max-width: 1024px) {
  .page-hero-split-grid { grid-template-columns: 1fr 320px; gap: 36px; }
}
@media (max-width: 860px) {
  .page-hero-split-grid { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

/* ── NFC tap animation (Product hero) ───────────────────────── */
.nfc-anim-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 0;
}
.nfc-phone {
  width: 110px;
  height: 185px;
  border-radius: 20px;
  background: var(--surf-2);
  border: 2px solid var(--border-m);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 8px 8px;
  position: relative;
  z-index: 2;
  animation: phoneFloat 3.2s ease-in-out infinite;
}
.nfc-phone-notch {
  width: 36px;
  height: 5px;
  background: var(--border-m);
  border-radius: 3px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.nfc-phone-screen {
  width: 88px;
  height: 140px;
  background: var(--surf-3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
  padding: 8px;
}
.nfc-phone-logo {
  font-family: var(--font-brand);
  font-size: 8px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 4px;
}
.nfc-phone-menu-item {
  width: 100%;
  height: 22px;
  background: var(--surf);
  border-radius: 5px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 6px;
}
.nfc-phone-menu-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.nfc-phone-menu-line {
  flex: 1;
  height: 3px;
  background: var(--border-m);
  border-radius: 2px;
}
.nfc-tap-badge {
  position: absolute;
  top: -10px;
  right: -14px;
  background: #4ade80;
  color: #0a1a0a;
  font-family: var(--font-brand);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  animation: tapBadge 3.2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(74,222,128,0.35);
}
@keyframes tapBadge {
  0%, 30% { opacity: 0; transform: translateY(4px) scale(0.9); }
  45%, 85% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-4px) scale(0.9); }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.nfc-waves {
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  position: relative;
  width: 160px;
}
.nfc-wave {
  position: absolute;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  width: 50px;
  height: 24px;
  bottom: 0;
  opacity: 0;
  animation: nfcWave 3.2s ease-out infinite;
}
.nfc-wave:nth-child(2) { width: 90px; height: 44px; animation-delay: 0.25s; }
.nfc-wave:nth-child(3) { width: 130px; height: 64px; animation-delay: 0.5s; }
@keyframes nfcWave {
  0% { opacity: 0; transform: scaleY(0.6); }
  15% { opacity: 0.7; transform: scaleY(1); }
  60%, 100% { opacity: 0; transform: scaleY(1.2); }
}

.nfc-plate {
  width: 150px;
  height: 150px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--surf-2) 0%, var(--surf-3) 100%);
  border: 1.5px solid var(--border-m);
  box-shadow: 0 0 48px var(--orange-glow), 0 20px 60px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.nfc-plate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(245,96,30,0.14) 0%, transparent 60%);
}
.nfc-plate-brand {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.nfc-plate-icon-wrap {
  position: relative;
  z-index: 1;
}
.nfc-plate-icon-wrap i {
  font-size: 36px;
  color: var(--orange);
  filter: drop-shadow(0 0 10px var(--orange-glow));
}
.nfc-plate-venue {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

/* ── Toolkit platform library ─────────────────────────────────── */
.toolkit-section-label {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dk);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bdk2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toolkit-section-label:first-child { margin-top: 0; }
.toolkit-section-label i { color: var(--orange); font-size: 13px; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
@media (max-width: 960px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .platform-grid { grid-template-columns: 1fr; } }
.platform-card {
  background: var(--white);
  border: 1px solid var(--bdk2);
  border-radius: 12px;
  padding: 16px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.platform-card:hover {
  border-color: rgba(245,96,30,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.platform-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.platform-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--cream-2);
  border: 1px solid var(--bdk2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted-dk);
  flex-shrink: 0;
}
.platform-card-icon.orange-icon {
  background: var(--orange-dim);
  border-color: rgba(245,96,30,0.2);
  color: var(--orange);
}
.platform-card-meta { flex: 1; min-width: 0; }
.platform-card-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dk);
  margin-bottom: 1px;
}
.platform-card-cat {
  font-size: 10px;
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.platform-card-desc {
  font-size: 12px;
  color: var(--text-muted-dk);
  line-height: 1.55;
  margin-bottom: 10px;
}
.platform-card-tip {
  font-size: 11px;
  font-family: var(--font-brand);
  font-weight: 600;
  color: var(--text-muted-dk);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.45;
}
.platform-card-tip i {
  color: var(--orange);
  font-size: 10px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── Toolkit feature hub visual ──────────────────────────────── */
.toolkit-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  position: relative;
}
.toolkit-hub-center {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 0 32px var(--orange-glow), 0 8px 32px rgba(245,96,30,0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.toolkit-hub-spokes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}
.toolkit-spoke {
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.toolkit-spoke i { font-size: 16px; color: var(--orange); }

/* ── Store hero journey ──────────────────────────────────────── */
.store-journey {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  flex-wrap: wrap;
}
.store-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
  min-width: 90px;
}
.store-journey-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--orange);
}
.store-journey-label {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.store-journey-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-brand);
}
.store-journey-arrow {
  color: var(--border-m);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: -20px;
  padding: 0 4px;
}
@media (max-width: 600px) {
  .store-journey-arrow { display: none; }
  .store-journey { gap: 12px; justify-content: center; }
}

/* ── Pricing hero visual ─────────────────────────────────────── */
.pricing-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.pricing-hero-card {
  background: var(--surf-2);
  border: 1px solid var(--border-m);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pricing-hero-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--surf-2) 0%, var(--surf-3) 100%);
  box-shadow: 0 0 24px var(--orange-glow);
}
.pricing-hero-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.pricing-hero-text { flex: 1; }
.pricing-hero-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.pricing-hero-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-brand);
}
.pricing-hero-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── How it works hero visual ────────────────────────────────── */
.hiw-hero-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  position: relative;
}
.hiw-hero-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--orange-glow), transparent 90%);
  pointer-events: none;
}
.hiw-hero-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 4px;
  position: relative;
}
.hiw-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
}
.hiw-step-text { flex: 1; }
.hiw-step-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 3px;
}
.hiw-step-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-brand);
  line-height: 1.4;
}
.hiw-step-icon {
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── Resources hero visual ───────────────────────────────────── */
.resources-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.resource-hero-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surf-2);
  border: 1px solid var(--border-m);
  border-radius: 12px;
  padding: 12px 16px;
}
.resource-hero-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--orange);
  flex-shrink: 0;
}
.resource-hero-text { flex: 1; min-width: 0; }
.resource-hero-cat {
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.resource-hero-title {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 12px;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.resource-hero-arrow { color: var(--text-muted); font-size: 11px; }

/* ── Support hero visual ─────────────────────────────────────── */
.support-hero-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.support-hero-channel {
  background: var(--surf-2);
  border: 1px solid var(--border-m);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.support-hero-channel i {
  font-size: 22px;
  color: var(--orange);
}
.support-hero-channel-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-light);
}
.support-hero-channel-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-brand);
}
.support-response-badge {
  grid-column: 1 / -1;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
}
.support-response-badge i { font-size: 14px; }

/* ── Announcement bar ────────────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: 36px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  line-height: 1;
  overflow: hidden;
}
.announcement-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar a:hover { opacity: 0.85; }
.announcement-bar.style-green { background: #1a9e5c; }
.announcement-bar.style-dark  { background: var(--surf-2); color: var(--text-light); border-bottom: 1px solid var(--border-m); }
.announcement-bar.style-dark a { color: var(--orange); }
.ann-close {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
  cursor: pointer;
  padding: 4px;
}
.ann-close:hover { opacity: 1; }
/* Push nav and content down when bar is visible */
body.has-announcement #main-nav { top: 35px; }
body.has-announcement .hero,
body.has-announcement .page-hero,
body.has-announcement .page-hero-split { padding-top: calc(120px + 36px); }
body.has-announcement .page-hero-split { padding-top: 156px; }

/* ── Product config (Traditional / Smart) ────────────────────── */
.product-config {
  margin-bottom: 28px;
}
.product-config-label {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.config-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) { .config-options { grid-template-columns: 1fr; } }
.config-option {
  border: 1.5px solid var(--border-m);
  border-radius: var(--r);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
}
.config-option:hover { border-color: var(--orange-glow); }
.config-option.selected {
  border-color: var(--orange);
  background: var(--orange-dim);
}
.config-option input[type="radio"] { position: absolute; opacity: 0; }
.config-option-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.config-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--surf-3);
  color: var(--text-muted);
  border: 1px solid var(--border-m);
}
.config-badge.orange { background: var(--orange); color: #fff; border-color: transparent; }
.config-option-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: var(--font-brand);
}
.config-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-brand);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.config-note i { color: var(--orange); margin-top: 1px; flex-shrink: 0; }

/* NFC tooltip / education badge */
.nfc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: 100px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  padding: 3px 10px;
  cursor: help;
  position: relative;
}
.nfc-badge-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surf-3);
  border: 1px solid var(--border-m);
  border-radius: 10px;
  padding: 12px 14px;
  width: 240px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  text-align: left;
  pointer-events: none;
}
.nfc-badge-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--border-m);
}
.nfc-badge:hover .nfc-badge-tooltip,
.nfc-badge:focus .nfc-badge-tooltip { display: block; }

/* ── Pricing: Traditional plan ───────────────────────────────── */
.plan-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 640px) { .plan-pair { grid-template-columns: 1fr; } }
.pricing-card-trad {
  background: var(--surf-2);
  border: 1px solid var(--border-m);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card-trad .pricing-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card-trad .pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.pricing-card-trad .pricing-period {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-brand);
  margin-bottom: 24px;
}
.pricing-card-trad .pricing-feature {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-card-trad .pricing-feature.included {
  color: var(--text-muted);
}
.pricing-card-trad .pricing-feature.missing {
  color: var(--border-m);
  text-decoration: line-through;
  opacity: 0.5;
}
.plan-hardware-note {
  max-width: 760px;
  margin: 24px auto 0;
  background: var(--surf-2);
  border: 1px solid var(--orange-glow);
  border-radius: var(--rs);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.plan-hardware-note i { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ── Contact form + grid ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
select.form-control-light { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8f85' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ── Talk-to-us banner ───────────────────────────────────────── */
.talk-to-us {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--surf-2);
  border: 1px solid var(--border-m);
  border-radius: var(--r);
  margin-top: 56px;
}
.talk-to-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--orange);
}
.talk-to-us-body { flex: 1; }
.talk-to-us-body h4 {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.talk-to-us-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .talk-to-us { flex-direction: column; text-align: center; }
  .talk-to-us-icon { margin: 0 auto; }
}
