/* =========================
   Vitality OS – Styles
   ========================= */
:root{
  --bg:#ffffff;
  --bg-elev:rgba(255,255,255,0.72);
  --text:#0b1520;
  --muted:#4a6073;
  --border:rgba(12,33,55,0.12);
  --shadow:0 18px 50px rgba(2,30,60,0.10);
  --shadow-soft:0 10px 30px rgba(2,30,60,0.08);

  --primary:#1b8cff;
  --primary-2:#2dd4bf;
  --accent:#22c55e;

  --grad-1: radial-gradient(1200px 500px at 15% -10%, rgba(27,140,255,0.22), transparent 60%),
            radial-gradient(900px 420px at 90% 10%, rgba(45,212,191,0.20), transparent 60%),
            radial-gradient(1000px 600px at 40% 110%, rgba(34,197,94,0.16), transparent 60%);
  --grad-2: linear-gradient(135deg, rgba(27,140,255,0.18), rgba(45,212,191,0.16), rgba(34,197,94,0.14));

  --radius:18px;
  --radius-lg:26px;
  --container:1160px;

  --space-2:12px;
  --space-3:16px;
  --space-4:20px;
  --space-5:28px;
  --space-6:40px;
  --space-7:56px;
  --space-8:78px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --focus:0 0 0 3px rgba(27,140,255,0.35);
  --header-h:74px;
  --header-h-compact:58px;
  --progress-h:3px;

  color-scheme: light;
}

html[data-theme="dark"]{
  --bg:#061018;
  --bg-elev:rgba(12,18,26,0.62);
  --text:#e7f1fb;
  --muted:#a7c0d6;
  --border:rgba(231,241,251,0.12);
  --shadow:0 18px 60px rgba(0,0,0,0.45);
  --shadow-soft:0 12px 34px rgba(0,0,0,0.35);

  color-scheme: dark;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
button, input { font-family:inherit; }
:focus-visible{ outline:none; box-shadow:var(--focus); border-radius:12px; }

.container{
  width:min(var(--container), calc(100% - 2*var(--space-4)));
  margin:0 auto;
}
.section{ padding:var(--space-8) 0; position:relative; }
.kicker{
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--muted);
}
.title{
  font-size:clamp(26px, 3.8vw, 44px);
  line-height:1.08;
  letter-spacing:-0.02em;
  margin:14px 0 10px;
}
.subtitle{
  color:var(--muted);
  font-size:clamp(15px, 1.8vw, 18px);
  margin:0;
  max-width:64ch;
}
.note{ font-size:13px; color:var(--muted); font-weight:650; margin:0; }

.grid{ display:grid; gap:var(--space-5); }

.card{
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  position:relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(27,140,255,0.28);
}
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: var(--grad-2);
  opacity:0;
  transition: opacity 220ms ease;
  pointer-events:none;
}
.card:hover::before{ opacity:1; }
.card > *{ position:relative; }

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
html[data-theme="dark"] .badge{ background:rgba(10,14,18,0.35); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid transparent;
  border-radius:999px;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
  user-select:none;
  position:relative;
  isolation:isolate;
  text-align:center;
  min-height:44px;
}
.btn:active{ transform: translateY(1px) scale(0.99); }
.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:white;
  box-shadow: 0 14px 32px rgba(27,140,255,0.22);
}
.btn-primary:hover{ box-shadow: 0 18px 42px rgba(27,140,255,0.28); }
.btn-ghost{
  background:transparent;
  border-color:var(--border);
  color:var(--text);
}
.btn-ghost:hover{
  border-color:rgba(45,212,191,0.35);
  box-shadow:0 12px 28px rgba(45,212,191,0.10);
}
.btn-success{
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
  color:#061018;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 14px 32px rgba(34,197,94,0.20);
}
.btn .spinner{
  width:16px; height:16px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.55);
  border-top-color: rgba(255,255,255,0.0);
  animation: spin 0.85s linear infinite;
  display:none;
}
.btn[data-loading="true"]{ pointer-events:none; opacity:0.9; }
.btn[data-loading="true"] .spinner{ display:inline-block; }
@keyframes spin{ to{ transform: rotate(360deg); } }

.progress{
  position:fixed; top:0; left:0;
  width:100%; height:var(--progress-h);
  z-index:9999;
}
.progress__bar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--accent));
  box-shadow:0 0 22px rgba(27,140,255,0.35);
  transition: width 60ms linear;
}

/* Header */
.header{
  position:sticky; top:0; z-index:999;
  background: rgba(255,255,255,0.65);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: height 220ms ease, background 220ms ease;
  height:var(--header-h);
  display:flex; align-items:center;
}
html[data-theme="dark"] .header{ background: rgba(6,16,24,0.60); }
.header.is-compact{ height: var(--header-h-compact); }

.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:var(--space-4); width:100%;
}
.brand{ display:inline-flex; align-items:center; gap:12px; font-weight:900; letter-spacing:-0.02em; }
.logo{
  width:34px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
  box-shadow: 0 16px 30px rgba(27,140,255,0.20);
  position:relative; overflow:hidden;
}
.logo::after{
  content:"";
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 45%);
  transform: rotate(18deg);
}

.nav__links{ display:none; gap:var(--space-3); align-items:center; }
.nav__links a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: background 160ms ease, color 160ms ease;
}
.nav__links a:hover{ color:var(--text); background: rgba(27,140,255,0.10); }

.nav__actions{ display:flex; align-items:center; gap:10px; }
.toggle, .burger{
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid var(--border);
  background: var(--bg-elev);
  display:grid; place-items:center;
  cursor:pointer;
}
.burger span{
  width:18px; height:2px; background: var(--text);
  position:relative; border-radius:2px;
}
.burger span::before,.burger span::after{
  content:""; position:absolute; left:0;
  width:18px; height:2px; background: var(--text);
  border-radius:2px;
}
.burger span::before{ top:-6px; }
.burger span::after{ top:6px; }

.mobile-menu{ display:none; border-top:1px solid var(--border); padding:12px 0 16px; }
.mobile-menu a{
  display:block; padding:12px 8px;
  border-radius:14px;
  color:var(--muted);
  font-weight:800;
  transition: background 160ms ease, color 160ms ease;
}
.mobile-menu a:hover{ color:var(--text); background: rgba(27,140,255,0.10); }
.mobile-menu.is-open{ display:block; }

@media (min-width: 860px){
  .nav__links{ display:flex; }
  .burger{ display:none; }
  .mobile-menu{ display:none !important; }
}

/* Hero */
.hero{
  padding: calc(var(--space-8) + 10px) 0 var(--space-8);
  background: var(--grad-1);
  overflow:hidden;
}
.hero__wrap{ display:grid; gap:var(--space-6); align-items:center; }
@media (min-width: 980px){
  .hero__wrap{ grid-template-columns: 1.05fr 0.95fr; gap:var(--space-7); }
}
.hero__cta{ margin-top: var(--space-5); display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.pill-row{ margin-top: var(--space-5); display:flex; flex-wrap:wrap; gap:10px; color:var(--muted); font-weight:700; }
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 160ms ease, border-color 160ms ease;
}
html[data-theme="dark"] .pill{ background: rgba(10,14,18,0.35); }
.pill:hover{ transform: translateY(-1px); border-color: rgba(34,197,94,0.35); }

.hero__visual{ position:relative; min-height:360px; }
.hero__orb{
  position:absolute; width:280px; height:280px; border-radius:999px;
  right:-90px; top:-70px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 55%),
              radial-gradient(circle at 50% 50%, rgba(27,140,255,0.30), rgba(45,212,191,0.18), transparent 65%);
  animation: float 6.5s ease-in-out infinite;
  pointer-events:none;
}
.hero__orb--2{
  left:-120px; right:auto; top:auto; bottom:-90px; width:320px; height:320px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.45), transparent 55%),
              radial-gradient(circle at 55% 55%, rgba(34,197,94,0.28), rgba(45,212,191,0.18), transparent 65%);
  animation-delay: 0.8s;
}
@keyframes float{ 0%,100%{ transform: translate3d(0,0,0);} 50%{ transform: translate3d(0,10px,0);} }

.hero__mock{
  width:100%; max-width:520px; margin:0 auto;
  border-radius:28px;
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.45));
  box-shadow: var(--shadow);
  overflow:hidden;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(6deg) rotateY(-10deg);
  transition: transform 180ms ease;
  position:relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
html[data-theme="dark"] .hero__mock{
  background: linear-gradient(180deg, rgba(12,18,26,0.72), rgba(12,18,26,0.45));
}
.hero__mock header{
  padding: 18px 18px 12px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  border-bottom:1px solid var(--border);
}
.mock-title{ font-size:13px; color:var(--muted); }
.hero__mock .dots{ display:flex; gap:7px; }
.hero__mock .dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(27,140,255,0.40);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero__mock .dot:nth-child(2){ background: rgba(45,212,191,0.40); }
.hero__mock .dot:nth-child(3){ background: rgba(34,197,94,0.40); }
.hero__mock main{ padding:18px; display:grid; gap:14px; }

.metric{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px; border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.45);
}
html[data-theme="dark"] .metric{ background: rgba(10,14,18,0.25); }
.metric strong{ font-size:14px; }
.metric span{ color:var(--muted); font-weight:800; }

.sep{ height:1px; background: var(--border); margin:14px 0; }

/* Products */
.products .grid{ grid-template-columns: 1fr; margin-top: var(--space-6); }
@media (min-width: 860px){
  .products .grid{ grid-template-columns: repeat(3, 1fr); }
}
.product{ padding:18px; display:flex; flex-direction:column; gap:14px; }
.product__top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(27,140,255,0.12);
  border:1px solid rgba(27,140,255,0.25);
  font-size: 18px;
}
.price{ font-weight:900; font-size:18px; letter-spacing:-0.02em; }
.product h3{ margin:2px 0 0; font-size:18px; letter-spacing:-0.01em; }
.product ul{
  margin:0; padding-left:18px;
  color:var(--muted); font-weight:600;
  display:grid; gap:8px;
}
.product__actions{ margin-top:4px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

/* Bundle */
.bundle{ padding: var(--space-7) 0; }
.bundle__box{
  border-radius: calc(var(--radius-lg) + 10px);
  border:1px solid rgba(45,212,191,0.35);
  background: linear-gradient(135deg, rgba(27,140,255,0.14), rgba(45,212,191,0.16), rgba(34,197,94,0.12));
  box-shadow: var(--shadow);
  padding: clamp(18px, 4vw, 28px);
  overflow:hidden;
  position:relative;
}
.bundle__grid{ display:grid; gap: var(--space-5); align-items:start; position:relative; }
@media (min-width: 980px){
  .bundle__grid{ grid-template-columns: 1.1fr 0.9fr; }
}
.bundle__prices{ display:flex; gap:14px; align-items:baseline; flex-wrap:wrap; margin:10px 0 0; }
.strike{ color:var(--muted); text-decoration: line-through; font-weight:800; }
.bundle__now{ font-size:28px; font-weight:950; letter-spacing:-0.02em; }
.save{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(255,255,255,0.55);
  border:1px solid rgba(255,255,255,0.35);
  padding:8px 12px; border-radius:999px; font-weight:900;
}
html[data-theme="dark"] .save{ background: rgba(10,14,18,0.25); border-color: rgba(255,255,255,0.10); }

.bundle__calc{
  border-radius:22px; border:1px solid var(--border);
  background: rgba(255,255,255,0.55);
  padding:16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:grid; gap:12px;
}
html[data-theme="dark"] .bundle__calc{ background: rgba(10,14,18,0.25); }
.range{ display:grid; gap:10px; }
.range label{
  font-weight:900; color:var(--muted); font-size:13px;
  display:flex; justify-content:space-between; gap:10px;
}
input[type="range"]{ width:100%; accent-color: var(--primary); }
.calc__result{
  display:grid; gap:8px; padding:12px;
  border-radius:18px; border:1px solid var(--border);
  background: rgba(255,255,255,0.45);
}
html[data-theme="dark"] .calc__result{ background: rgba(255,255,255,0.06); }
.calc__row{ display:flex; justify-content:space-between; gap:12px; font-weight:800; color: var(--muted); }
.calc__row strong{ color: var(--text); }

/* Stats */
.stats{ padding: 0 0 var(--space-8); }
.stats__grid{
  display:grid; grid-template-columns:1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 820px){ .stats__grid{ grid-template-columns: repeat(3, 1fr); } }
.stat{
  padding:18px; border-radius: var(--radius-lg);
  border:1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
}
.stat__value{ font-size:34px; letter-spacing:-0.03em; font-weight:950; margin:0; }
.stat__label{ margin:6px 0 0; color:var(--muted); font-weight:800; }

/* Table */
.table-wrap{
  border-radius: var(--radius-lg);
  border:1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  margin-top: var(--space-6);
}
table{ width:100%; border-collapse: collapse; font-size:14px; }
th, td{ padding:14px; border-bottom:1px solid var(--border); text-align:left; vertical-align:top; }
th{ background: rgba(27,140,255,0.08); font-weight:950; letter-spacing:-0.01em; }
html[data-theme="dark"] th{ background: rgba(27,140,255,0.12); }
tr:last-child td{ border-bottom:none; }
.tick{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:8px;
  background: rgba(34,197,94,0.14);
  border:1px solid rgba(34,197,94,0.25);
  font-weight:950;
}

/* Science */
.cred__grid{ display:grid; gap: var(--space-5); margin-top: var(--space-6); }
@media (min-width: 980px){ .cred__grid{ grid-template-columns: 1fr 1fr; align-items:start; } }
.logos{ display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; }
@media (min-width: 640px){ .logos{ grid-template-columns: repeat(3, 1fr);} }
.logo-tile{
  border-radius:18px;
  border:1px dashed var(--border);
  background: rgba(255,255,255,0.35);
  padding:14px; min-height:58px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900; color:var(--muted);
}
html[data-theme="dark"] .logo-tile{ background: rgba(255,255,255,0.06); }
.refs{ display:grid; gap:12px; }
.ref{
  padding:14px; border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.45);
}
html[data-theme="dark"] .ref{ background: rgba(255,255,255,0.06); }
.ref small{ display:block; color:var(--muted); font-weight:800; font-family: var(--mono); }

blockquote{
  margin:0;
  padding:16px;
  border-left: 4px solid rgba(45,212,191,0.65);
  background: rgba(45,212,191,0.10);
  border-radius:16px;
  color: var(--text);
  font-weight:700;
}
blockquote cite{
  display:block; margin-top:10px;
  color:var(--muted);
  font-style:normal; font-weight:900; font-size:13px;
}

/* Carousel */
.carousel{ margin-top: var(--space-6); display:grid; gap:12px; }
.carousel__viewport{
  position:relative;
  border-radius: var(--radius-lg);
  border:1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  padding:18px;
  min-height:190px;
}
.testimonial{
  opacity:0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  position:absolute; inset:18px;
  display:grid; gap:10px;
}
.testimonial.is-active{
  opacity:1;
  transform: translateY(0);
  position:relative; inset:auto;
}
.testimonial p{ margin:0; font-weight:750; font-size:15px; max-width:70ch; }
.who{ display:flex; gap:12px; align-items:center; margin-top:6px; }
.avatar{
  width:40px; height:40px; border-radius:16px;
  background: linear-gradient(135deg, rgba(27,140,255,0.40), rgba(45,212,191,0.35), rgba(34,197,94,0.30));
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 16px 28px rgba(2,30,60,0.12);
}
.who strong{ font-weight:950; }
.who small{ display:block; color:var(--muted); font-weight:800; }

.carousel__controls{ display:flex; justify-content:space-between; gap:12px; align-items:center; }
.dots{ display:flex; gap:8px; align-items:center; }
.dotbtn{
  width:10px; height:10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.35);
  cursor:pointer;
}
html[data-theme="dark"] .dotbtn{ background: rgba(255,255,255,0.06); }
.dotbtn.is-active{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: rgba(27,140,255,0.35);
  transform: scale(1.15);
}

/* FAQ */
.faq{ margin-top: var(--space-6); display:grid; gap:12px; }
details{
  border-radius: var(--radius-lg);
  border:1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
  padding:14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
details:hover{
  transform: translateY(-2px);
  border-color: rgba(45,212,191,0.35);
  box-shadow: var(--shadow);
}
summary{
  cursor:pointer;
  list-style:none;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  font-weight:950;
  letter-spacing:-0.01em;
  padding:2px 2px;
}
summary::-webkit-details-marker{ display:none; }
.chev{
  width:28px; height:28px; border-radius:12px;
  border:1px solid var(--border);
  display:grid; place-items:center;
  transition: transform 200ms ease;
  flex: 0 0 auto;
}
details[open] .chev{ transform: rotate(180deg); }
.faq__answer{
  margin-top:10px;
  color:var(--muted);
  font-weight:650;
  line-height:1.6;
}

/* Newsletter */
.form{
  margin-top: var(--space-6);
  border-radius: calc(var(--radius-lg) + 8px);
  border:1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
  padding:18px;
  display:grid;
  gap:12px;
}
.fields{ display:grid; gap:12px; }
@media (min-width: 820px){
  .fields{ grid-template-columns: 1fr 1fr auto; align-items:end; }
}
.field label{
  display:block; font-weight:900; font-size:13px;
  color:var(--muted); margin-bottom:8px;
}
.field input{
  width:100%;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.55);
  color: var(--text);
  outline:none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  min-height:44px;
}
html[data-theme="dark"] .field input{ background: rgba(255,255,255,0.06); }
.field input:focus{
  border-color: rgba(27,140,255,0.45);
  box-shadow: var(--focus);
}
.check{
  display:flex; gap:10px; align-items:flex-start;
  color:var(--muted); font-weight:700; font-size:13px;
}
.check input{ margin-top:3px; width:18px; height:18px; accent-color: var(--primary); }
.form__hint{ color:var(--muted); font-size:13px; font-weight:650; margin:0; }

.calendly{
  margin-top: var(--space-6);
  border-radius: var(--radius-lg);
  border:1px dashed rgba(27,140,255,0.35);
  background: linear-gradient(135deg, rgba(27,140,255,0.10), rgba(45,212,191,0.08));
  padding:18px;
  display:grid; gap:10px;
}
.calendly code{
  font-family: var(--mono);
  font-weight:800;
  color: var(--muted);
  font-size:12px;
  word-break: break-word;
}

/* Footer */
footer{ border-top:1px solid var(--border); padding: var(--space-6) 0; }
.footer__grid{
  display:grid; gap: var(--space-4);
  grid-template-columns: 1fr; align-items:start;
}
@media (min-width: 900px){
  .footer__grid{ grid-template-columns: 1.2fr 0.8fr 1fr; }
}
.footer__muted{ color:var(--muted); font-weight:650; margin:0; }
.social{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:10px; }
.social a{
  width:44px; height:44px; border-radius:16px;
  border:1px solid var(--border);
  background: var(--bg-elev);
  display:grid; place-items:center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.social a:hover{
  transform: translateY(-2px);
  border-color: rgba(45,212,191,0.35);
  box-shadow: var(--shadow-soft);
}
.smallprint{
  margin-top: var(--space-5);
  display:flex; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  color:var(--muted); font-weight:700; font-size:13px;
}
.smallprint a{
  text-decoration: underline;
  text-decoration-color: rgba(27,140,255,0.35);
  text-underline-offset: 4px;
}

/* Floating cart */
.cart-fab{
  position:fixed; right:18px; bottom:18px;
  z-index:9999;
  border-radius:999px;
  padding:12px 14px;
  box-shadow: 0 18px 40px rgba(2,30,60,0.18);
}
.cart-fab .count{
  display:inline-grid; place-items:center;
  width:22px; height:22px; border-radius:999px;
  background: rgba(255,255,255,0.25);
  border:1px solid rgba(255,255,255,0.35);
  font-weight:950; font-size:12px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .card, .btn, .header, .progress__bar, .hero__orb, .hero__mock { transition:none !important; animation:none !important; }
}
