/* ============================================================
   PabloSupps — premium dark
   Palette: obsidian + vial blue (#16a7ff) + cool steel
   Type:    Fraunces (display, serif w/ optical size)
            Inter (UI, sans), JetBrains Mono (specs/code)
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --bg-3: #14141a;
  --surface: #16161c;
  --surface-2: #1c1c24;
  --line: #25252e;
  --line-2: #2d2d38;
  --text: #ece9e1;
  --text-dim: #a8a298;
  --text-mute: #7a7468;
  --gold: #16a7ff;
  --gold-2: #0077d9;
  --gold-3: #8de2ff;
  --gold-glow: rgba(22, 167, 255, 0.22);
  --danger: #e26a5a;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 24px 60px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", "Inter", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: #111; padding: 10px 16px;
  border-radius: var(--radius-sm); z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ============= Header ============= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.88);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.brand-mark { color: var(--gold); }
.brand-logo {
  width: 38px; height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(22, 167, 255, 0.55);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 167, 255, 0.08), 0 10px 24px rgba(0,0,0,0.35);
}
.brand-logo-small { width: 32px; height: 32px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.005em;
}
.brand-accent { color: var(--gold); }

.site-nav ul {
  display: flex; list-style: none; padding: 0; margin: 0;
  gap: 30px;
}
.site-nav a {
  font-size: 14px; color: var(--text-dim);
  transition: color .2s var(--ease);
  position: relative;
}
.site-nav a:hover { color: var(--text); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left center; transition: transform .3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-mute); letter-spacing: 0.06em;
}
.lang-btn {
  background: none; border: 0; padding: 4px 6px;
  color: var(--text-mute); border-radius: 4px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active { color: var(--gold); background: rgba(22, 167, 255, 0.08); }

.tg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: 13px; color: var(--text);
  transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.tg-btn:hover { border-color: var(--gold); background: var(--surface-2); transform: translateY(-1px); }
.tg-btn svg { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--text);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.mobile-menu ul {
  list-style: none; margin: 0; padding: 16px var(--gutter);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu a {
  display: block; padding: 12px 4px;
  font-size: 16px; color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  text-align: center; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold) 58%, var(--gold-2) 100%);
  color: #03121f;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.48) inset, 0 10px 34px rgba(22, 167, 255, 0.22);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost {
  background: transparent; border-color: var(--line-2); color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

/* ============= Hero ============= */
.hero {
  position: relative;
  padding: clamp(60px, 12vw, 120px) 0 clamp(60px, 10vw, 110px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}
.glow-1 {
  width: 560px; height: 560px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(22, 167, 255, 0.18) 0%, rgba(22, 167, 255, 0) 70%);
}
.glow-2 {
  width: 460px; height: 460px;
  bottom: -160px; right: -100px;
  background: radial-gradient(circle, rgba(20, 118, 255, 0.18) 0%, rgba(0,0,0,0) 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 28px;
  padding: 8px 14px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.006em;
  margin: 0 0 28px;
  color: var(--text);
}
.title-accent {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}
.hero-lede {
  font-size: 18px; line-height: 1.65;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 64px;
}

.hero-stats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-left: 8px;
  text-transform: uppercase;
}
.stat-label {
  font-size: 13px; color: var(--text-dim);
}
.hero-product {
  margin: 0;
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
  min-height: 520px;
  display: grid;
  align-items: end;
  justify-items: center;
}
.hero-product::before {
  content: "";
  position: absolute;
  inset: 14% 1% 5%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, rgba(22, 167, 255, 0.26), transparent 42%),
    linear-gradient(180deg, rgba(22, 167, 255, 0.08), rgba(255,255,255,0.02));
  filter: blur(30px);
  opacity: 0.9;
  z-index: -1;
}
.hero-product img {
  width: min(100%, 340px);
  height: auto;
  display: block;
  border-radius: 28px;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 28px rgba(22, 167, 255, 0.14));
}
.hero-product figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ============= Strip ============= */
.strip {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 22px;
  padding-block: 18px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.strip-inner span:nth-child(even) { color: var(--gold); }

/* ============= Sections ============= */
.section {
  padding-block: clamp(80px, 11vw, 140px);
  position: relative;
}
.section-alt {
  background:
    radial-gradient(circle at 80% 0%, rgba(22, 167, 255, 0.04) 0%, transparent 50%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.section-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px;
}
.section-head { max-width: 720px; }
.section-head-center { margin-inline: auto; text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--text);
}
.section-title .muted { color: var(--text-mute); font-weight: 400; }
.section-sub {
  font-size: 17px; line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
}

/* ============= Subtle scroll reveals ============= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease),
    border-color .3s var(--ease),
    background .3s var(--ease),
    color .2s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card.reveal.is-visible:hover,
.fit-card.reveal.is-visible:hover,
.process-step.reveal.is-visible:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* ============= Product grid ============= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
}
.product-card-feature {
  background: linear-gradient(180deg, rgba(22, 167, 255, 0.06) 0%, var(--surface) 60%);
  border-color: rgba(22, 167, 255, 0.3);
}
.product-card-feature:hover { border-color: var(--gold); }

.product-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-bottom: 18px;
}
.tag-accent {
  color: var(--gold);
  border-color: rgba(22, 167, 255, 0.4);
  background: rgba(22, 167, 255, 0.06);
}

.product-visual {
  height: 220px;
  display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.product-photo-wrap {
  height: 260px;
  align-items: center;
  isolation: isolate;
}
.product-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 16% 16% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 167, 255, 0.18) 0%, rgba(22, 167, 255, 0) 70%);
  filter: blur(20px);
  z-index: -1;
}
.product-photo {
  width: auto;
  max-width: 100%;
  height: min(100%, 248px);
  object-fit: contain;
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
  transform: translateZ(0);
}
.photo-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(22, 167, 255, 0.32);
  background: rgba(5, 10, 16, 0.72);
  color: var(--gold-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* Vial illustration (pure CSS) */
.vial {
  width: 90px;
  position: relative;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}
.vial-cap {
  width: 56px; height: 18px;
  margin: 0 auto;
  background: linear-gradient(180deg, #39c5ff 0%, #0798ef 58%, #0069c8 100%);
  border-radius: 4px 4px 2px 2px;
  border-top: 1px solid rgba(170, 235, 255, 0.9);
  box-shadow: 0 6px 18px rgba(22, 167, 255, 0.22);
}
.vial-neck {
  width: 36px; height: 10px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(230, 245, 255, 0.38), rgba(120, 200, 255, 0.16));
  border-radius: 1px;
  border-left: 1px solid rgba(140, 226, 255, 0.2);
  border-right: 1px solid rgba(140, 226, 255, 0.2);
}
.vial-body {
  position: relative;
  width: 90px; height: 150px;
  background: linear-gradient(180deg, #1a1a22 0%, #0a0a0e 100%);
  border-radius: 4px 4px 10px 10px;
  border: 1px solid #2a2a35;
  overflow: hidden;
}
.vial-liquid {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 78%;
  background: linear-gradient(180deg,
    rgba(232, 248, 255, 0.2) 0%,
    rgba(78, 190, 255, 0.32) 46%,
    rgba(20, 112, 210, 0.42) 100%);
  border-top: 1px solid rgba(170, 235, 255, 0.45);
}
.vial-liquid-amber {
  background: linear-gradient(180deg,
    rgba(232, 248, 255, 0.22) 0%,
    rgba(66, 182, 255, 0.34) 52%,
    rgba(5, 102, 198, 0.48) 100%);
}
.vial-liquid-clear {
  background: linear-gradient(180deg,
    rgba(230, 235, 245, 0.18) 0%,
    rgba(200, 210, 230, 0.32) 50%,
    rgba(160, 175, 200, 0.45) 100%);
  border-top-color: rgba(255, 255, 255, 0.4);
}
.vial-liquid-empty {
  height: 20%;
  background: linear-gradient(180deg, rgba(230, 235, 245, 0.08), rgba(160, 175, 200, 0.14));
  border-top-color: rgba(255, 255, 255, 0.18);
}
.vial-shine {
  position: absolute; top: 6%; left: 8px; bottom: 8%;
  width: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  border-radius: 6px;
  filter: blur(0.6px);
}
.vial-label {
  position: absolute; left: 8px; right: 8px; top: 32%;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.95) 0%, rgba(120,230,255,0.65) 30%, rgba(232,255,160,0.65) 52%, rgba(255,145,230,0.55) 74%, rgba(255,255,255,0.92) 100%);
  color: #07121d;
  padding: 8px 6px;
  border-radius: 2px;
  text-align: center;
  font-family: var(--font-mono);
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
}
.vial-label-top { font-size: 7px; letter-spacing: 0.18em; color: #0a5f9a; }
.vial-label-mid {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  margin: 2px 0 0;
  color: #07121d;
}
.vial-label-sub { font-size: 7px; letter-spacing: 0.08em; margin-top: 1px; color: #064e83; }
.vial-label-bot { font-size: 6.5px; margin-top: 4px; padding-top: 3px; border-top: 0.5px solid rgba(0,0,0,0.2); color: #0a5f9a; letter-spacing: 0.05em; }

.vial-feature { width: 100px; }
.vial-feature .vial-body { width: 100px; height: 160px; }
.vial-feature .vial-cap { width: 62px; }

.product-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.product-strength { color: var(--gold); font-style: italic; }
.product-blurb {
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 18px;
}
.product-specs {
  list-style: none; padding: 0; margin: 0 0 22px;
  border-top: 1px solid var(--line);
}
.product-specs li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.product-specs li span {
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.product-specs li strong {
  color: var(--text); font-weight: 500; text-align: right;
  font-size: 13px;
}
.price-box {
  margin: auto 0 18px;
  padding: 14px;
  border: 1px solid rgba(22, 167, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(22, 167, 255, 0.045);
}
.price-box div {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-box div:last-child { border-bottom: 0; }
.price-box span {
  font-size: 13px;
  color: var(--text-dim);
}
.price-box strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 14px;
  white-space: nowrap;
}
.price-box small {
  color: var(--text-mute);
  font-size: 10px;
  font-family: var(--font-body);
}
.variant-hint {
  margin: -2px 0 10px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.split-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.split-actions .btn {
  width: 100%;
  min-width: 0;
  padding-inline: 14px;
  white-space: normal;
  line-height: 1.35;
}
.add-to-order.is-added { background: rgba(22, 167, 255, 0.12); color: var(--gold); border-color: var(--gold); }

.product-disclaimer {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  border: 1px dashed var(--line-2);
  padding: 16px 20px;
  border-radius: var(--radius);
}

/* ============= Process ============= */
.process-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.process-step:hover { border-color: var(--line-2); transform: translateY(-2px); }
.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.process-step p { font-size: 14px; line-height: 1.6; color: var(--text-dim); margin: 0; }

.quote-card {
  margin-top: 64px;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding: 48px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 167, 255, 0.07) 0%, transparent 70%),
    var(--surface);
}
.quote-mark { color: var(--gold); margin: 0 auto 18px; opacity: 0.6; }
.quote-card p {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.4;
  font-style: italic; font-weight: 400;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.quote-attr {
  font-size: 12px !important;
  font-style: normal !important;
  font-family: var(--font-mono) !important;
  color: var(--text-mute) !important;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ============= Fit ============= */
.fit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 36px;
}
.fit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.fit-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.fit-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(22, 167, 255, 0.08);
  color: var(--gold);
  margin-bottom: 16px;
}
.fit-card h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.fit-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; }
.fit-note {
  padding: 22px 28px;
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}
.fit-note strong { color: var(--text); }

/* ============= Order ============= */
.order-wrap {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.order-copy .section-head { max-width: none; }
.order-steps {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 22px;
}
.order-steps li {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 16px; align-items: start;
}
.step-circle {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(22, 167, 255, 0.08);
  color: var(--gold);
  font-family: var(--font-mono); font-size: 13px;
  border: 1px solid rgba(22, 167, 255, 0.25);
}
.order-steps h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  margin: 4px 0 6px;
}
.order-steps p { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; margin: 0; }
.order-steps a { color: var(--gold); border-bottom: 1px dashed rgba(22, 167, 255, 0.4); }
.order-steps a:hover { border-bottom-color: var(--gold); }

.order-builder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  position: sticky; top: 100px;
}
.builder-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.builder-subtitle {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 22px 0 10px;
}
.order-lines { display: flex; flex-direction: column; gap: 12px; }
.order-line {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.order-line.is-zero {
  background: rgba(15, 15, 18, 0.72);
}
.order-line.is-zero .ol-name {
  color: var(--text-dim);
}
.order-line .ol-name {
  font-family: var(--font-display);
  font-size: 16px; color: var(--text); font-weight: 500;
}
.order-line .ol-sku {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.08em;
}
.qty-control {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-2); border-radius: 999px;
  overflow: hidden;
}
.qty-control button {
  width: 30px; height: 30px;
  background: transparent; border: 0;
  color: var(--text-dim);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.qty-control button:hover { color: var(--gold); background: rgba(22, 167, 255, 0.06); }
.qty-control input {
  width: 36px; text-align: center;
  background: transparent; border: 0;
  color: var(--text); font-family: var(--font-mono); font-size: 13px;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ol-remove {
  background: transparent; border: 0; color: var(--text-mute);
  width: 28px; height: 28px; border-radius: 50%;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.ol-remove:hover { color: var(--danger); background: rgba(226, 106, 90, 0.08); }
.ol-remove:disabled {
  opacity: 0.32;
  pointer-events: none;
}

.order-empty {
  padding: 22px;
  background: var(--bg-2);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 14px;
}
.order-empty p { margin: 0 0 12px; }
.quick-add { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 8px 14px;
  font-size: 12.5px;
  border-radius: 999px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold); }

.form-row {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 16px;
}
.form-row-full { grid-column: 1 / -1; }
.form-row label,
.field-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-3);
}
.form-row textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.shipping-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.shipping-option {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--text-dim);
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.shipping-option:hover {
  border-color: rgba(22, 167, 255, 0.45);
  color: var(--text);
  transform: translateY(-1px);
}
.shipping-option.is-active {
  border-color: var(--gold);
  background: rgba(22, 167, 255, 0.12);
  color: var(--gold-3);
}

.form-consent { margin-top: 18px; }
.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--text-dim); line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-2); border-radius: 4px;
  background: var(--bg-2);
  flex-shrink: 0; margin-top: 2px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  position: relative;
}
.checkbox input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox input:checked::after {
  content: "";
  position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #03121f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.order-summary {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 120px;
  max-height: 340px;
  overflow: auto;
  margin: 0;
}
.order-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.order-privacy {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.order-privacy strong { color: var(--text-dim); }
.order-privacy a { color: var(--gold); border-bottom: 1px dashed rgba(22,167,255,0.4); }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--gold); color: #03121f;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 200;
}
.toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============= FAQ ============= */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px;
  position: relative; flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px; background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-body { padding: 0 8px 24px; }
.faq-body p {
  font-size: 15px; color: var(--text-dim); line-height: 1.7;
  margin: 0; max-width: 70ch;
}

/* ============= Disclaimer ============= */
.disclaimer {
  padding-block: 72px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.disclaimer-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  color: var(--text-dim);
}
.disclaimer p {
  font-size: 14px; color: var(--text-mute);
  line-height: 1.7;
  max-width: 78ch;
  margin: 0 0 14px;
}
.disclaimer-final { color: var(--text-dim) !important; }

/* ============= Footer ============= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 56px 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
.footer-brand { max-width: 320px; }
.footer-tag {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.6;
}
.footer-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.footer-nav h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: 14px; color: var(--text-dim);
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-muted { color: var(--text-mute); font-size: 13px; }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 12.5px; color: var(--text-mute);
}
.footer-bottom p { margin: 0; max-width: 70ch; }

/* ============= Responsive ============= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 900px;
  }
  .hero-product {
    width: min(100%, 320px);
    min-height: auto;
  }
  .hero-product img {
    width: min(100%, 300px);
  }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .order-wrap { grid-template-columns: 1fr; }
  .order-builder { position: static; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { gap: 8px; }
  .tg-btn span { display: none; }
  .tg-btn { padding: 8px 10px; }

  .product-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }

  .hero { padding-block: 60px 50px; }
  .hero-inner { gap: 38px; }
  .hero-product {
    order: -1;
    width: min(100%, 250px);
  }
  .hero-product img {
    width: min(100%, 235px);
    border-radius: 22px;
  }
  .hero-product figcaption { font-size: 10px; }
  .product-photo-wrap { height: 230px; }
  .product-photo { height: min(100%, 220px); }
  .shipping-options { grid-template-columns: 1fr; }
  .order-builder { padding: 24px 20px 22px; }
  .order-line { grid-template-columns: 1fr; gap: 10px; }
  .quote-card { padding: 32px 24px; }
  .quote-card p { font-size: 18px; }
  .faq-item summary { font-size: 17px; padding: 18px 4px; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
