/* ===========================================================
   CapTool main stylesheet
   Design system per file 08. No sharp corners. Inter throughout.
   =========================================================== */

:root {
  /* Brand palette per file 08 */
  --ink:          #1D1D1F;
  --soft-white:   #F5F5F7;
  --mist-silver:  #D2D2D7;
  --slate-gray:   #8E8E93;
  --clear-blue:   #4DA3FF;
  --aqua-mint:    #53D6C6;

  /* Functional */
  --success: #34C759;
  --warning: #FF9500;
  --error:   #FF3B30;

  /* Surfaces */
  --bg:         #FFFFFF;
  --bg-alt:     var(--soft-white);
  --bg-dark:    #0F1115;
  --text:       var(--ink);
  --text-muted: var(--slate-gray);
  --border:     var(--mist-silver);

  /* Brand gradient */
  --grad-vert: linear-gradient(180deg, #4DA3FF 0%, #53D6C6 100%);
  --grad-diag: linear-gradient(135deg, #4DA3FF 0%, #53D6C6 100%);

  /* No-sharp-corners radius scale per file 08 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  /* Spacing on 8px grid */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Layout */
  --max-w: 1200px;
  --max-w-wide: 1440px;
  --max-w-text: 720px;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; 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;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, video, svg { max-width: 100%; height: auto; display: block; }
img { border-radius: var(--radius-lg); }

a { color: var(--clear-blue); text-decoration: none; transition: color 0.18s var(--ease); }
a:hover, a:focus-visible { text-decoration: underline; }

p { margin: 0 0 1em; }

h1, h2, h3, h4, h5 { margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; }

/* Type scale per file 08 (mobile first, scales up) */
.display { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
h1, .h1 { font-size: 32px; letter-spacing: -0.015em; }
h2, .h2 { font-size: 24px; }
h3, .h3 { font-size: 20px; font-weight: 500; line-height: 1.3; }
h4, .h4 { font-size: 17px; font-weight: 500; }
.small { font-size: 14px; line-height: 1.5; color: var(--text-muted); }
.eyebrow { font-size: 13px; font-weight: 500; color: var(--clear-blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--s-1); }

@media (min-width: 760px) {
  .display { font-size: 64px; }
  h1, .h1 { font-size: 48px; }
  h2, .h2 { font-size: 32px; }
  h3, .h3 { font-size: 24px; }
  body { font-size: 17px; }
}

.gradient-text {
  background: var(--grad-diag);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.55;
}
@media (min-width: 760px) { .lead { font-size: 19px; } }

/* Layout helpers */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-3);
}
@media (min-width: 760px) { .container { padding: 0 var(--s-5); } }

.section {
  padding: var(--s-6) 0;
}
@media (min-width: 760px) { .section { padding: var(--s-7) 0; } }

.section-soft { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #F5F5F7; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--s-5);
}

.text-center { text-align: center; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-2);
  padding: var(--s-1) var(--s-2);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-md);
  z-index: 100;
}
.skip-link:focus { top: var(--s-2); }

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

/* ============== BRAND MARK (CSS-rendered until WebP files load) ============== */
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-diag);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark-inner {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.brand-mark-drop {
  position: absolute;
  width: 8px; height: 11px;
  background: var(--grad-diag);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  clip-path: polygon(50% 0%, 100% 65%, 80% 100%, 20% 100%, 0% 65%);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.brand-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.02em; margin-top: 2px; }

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.announcement {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 6px var(--s-2);
}
.announcement p { margin: 0; font-size: 13px; font-weight: 500; }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 14px var(--s-3);
}
@media (min-width: 760px) { .nav-wrap { padding: 14px var(--s-5); } }

.primary-nav { display: none; }
.primary-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: var(--s-3); }
.primary-nav a {
  color: var(--ink); font-weight: 500; font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--clear-blue); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--clear-blue); }

@media (min-width: 1024px) {
  .primary-nav { display: block; }
}

.nav-actions { display: flex; align-items: center; gap: var(--s-2); }
.nav-link-secondary {
  display: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.nav-link-secondary:hover { color: var(--ink); text-decoration: none; }
@media (min-width: 1024px) { .nav-link-secondary { display: inline; } }

.nav-toggle {
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 0;
}
.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 0.2s var(--ease), opacity 0.2s 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); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav {
  border-top: 0.5px solid var(--border);
  background: var(--bg);
  padding: var(--s-2);
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px var(--s-2);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-md);
}
.mobile-nav a:hover { background: var(--bg-alt); text-decoration: none; }
.mobile-nav .btn { margin-top: var(--s-2); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn:hover, .btn:focus-visible { text-decoration: none; }

.btn-primary { background: var(--clear-blue); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: #3a91ee; transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--clear-blue); border-color: var(--clear-blue); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: rgba(77, 163, 255, 0.08); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-alt); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2a2c; }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.35);
}

/* ============== HERO ============== */
.hero {
  padding: 64px var(--s-3) var(--s-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 760px) { .hero { padding: 96px var(--s-5) var(--s-7); } }

.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(83, 214, 198, 0.15);
  color: #0F6E56;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: var(--s-3);
}
.hero-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--aqua-mint); }

.hero h1 { max-width: 800px; margin: 0 auto var(--s-3); }
.hero .lead { max-width: 580px; margin: 0 auto var(--s-4); }

.hero-ctas {
  display: flex; flex-direction: column; gap: var(--s-1);
  justify-content: center;
  margin-bottom: var(--s-5);
}
@media (min-width: 600px) { .hero-ctas { flex-direction: row; gap: var(--s-2); } }

.hero-stage {
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-2xl);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border);
}

/* Animated demo bottle */
.stage-bottle { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -42%); width: 140px; height: 320px; }
.bottle-body { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 220px;
  background: linear-gradient(90deg, rgba(255,255,255,0.7), rgba(210,210,215,0.4) 50%, rgba(255,255,255,0.7));
  border: 1px solid var(--border); border-radius: 16px 16px 24px 24px; }
.bottle-label { position: absolute; left: 14px; right: 14px; top: 80px; height: 70px; background: #fff; border-radius: var(--radius-sm); border: 0.5px solid var(--border); }
.bottle-neck { position: absolute; bottom: 220px; left: 50%; transform: translateX(-50%); width: 46px; height: 32px;
  background: linear-gradient(90deg, rgba(220,220,225,0.8), rgba(245,245,247,0.9), rgba(220,220,225,0.8));
  border: 0.5px solid var(--border); border-bottom: none; border-radius: 8px 8px 0 0; }
.stage-cap { position: absolute; bottom: 244px; left: 50%; transform: translateX(-50%); width: 70px; height: 46px;
  background: var(--grad-diag); border-radius: 12px 12px 8px 8px; box-shadow: 0 4px 14px rgba(77,163,255,0.25); }
.stage-cap::after { content: ""; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 10px solid var(--aqua-mint); border-radius: 2px; }

.stage-droplets { position: absolute; left: 50%; top: 56%; transform: translateX(-50%); width: 200px; height: 100px; pointer-events: none; }
.stage-drop { position: absolute; width: 5px; height: 8px; background: var(--clear-blue);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; opacity: 0; animation: drop-fall 1.6s infinite ease-in; }
.stage-drop:nth-child(1) { left: 30%; animation-delay: 0s; }
.stage-drop:nth-child(2) { left: 46%; animation-delay: 0.4s; }
.stage-drop:nth-child(3) { left: 62%; animation-delay: 0.8s; }
.stage-drop:nth-child(4) { left: 38%; animation-delay: 1.2s; }
.stage-drop:nth-child(5) { left: 54%; animation-delay: 0.6s; }
@keyframes drop-fall {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(70px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .stage-drop { animation: none; }
}

.stage-tags {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-1);
}
.stage-tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

/* ============== TRUST STRIP ============== */
.trust-strip {
  padding: var(--s-3) 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.trust-strip ul {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: var(--s-2) var(--s-5);
  list-style: none; padding: 0; margin: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.trust-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(83, 214, 198, 0.18);
  color: #0F6E56;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* ============== PRODUCT CARDS ============== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-2); } }

.product-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 0.5px solid var(--border);
  overflow: hidden;
  display: block;
  color: var(--ink);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.product-card:hover, .product-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--clear-blue);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.06);
  text-decoration: none;
}
.product-card.featured { border: 2px solid var(--clear-blue); }

.product-image {
  aspect-ratio: 1;
  background: var(--bg-alt);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
}
.product-cap-mock {
  width: 72px; height: 48px;
  border-radius: 14px 14px 8px 8px;
  position: relative;
}
.product-cap-mock.rinse { background: var(--grad-diag); }
.product-cap-mock.drip  { background: linear-gradient(135deg, #53D6C6 0%, #9FE1CB 100%); }
.product-cap-mock.pour  { background: linear-gradient(135deg, #4DA3FF 0%, #85B7EB 100%); }
.product-cap-mock.kit   { background: linear-gradient(135deg, #1D1D1F 0%, #444 100%); }

.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--clear-blue); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.product-info { padding: var(--s-2) var(--s-3) var(--s-3); }
.product-tag { font-size: 11px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.product-name { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: var(--s-2); min-height: 38px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-1); }
.product-price { font-size: 16px; font-weight: 600; font-feature-settings: "tnum"; }
.product-price small { color: var(--text-muted); font-weight: 400; font-size: 13px; }

.product-status {
  font-size: 11px; padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(83, 214, 198, 0.15); color: #0F6E56; font-weight: 500;
}
.product-status.coming { background: var(--bg-alt); color: var(--text-muted); }

/* ============== STEPS ============== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); } }

.step { text-align: center; padding: 0 var(--s-2); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--clear-blue);
  color: var(--clear-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  margin: 0 auto var(--s-2);
}
.step h3 { margin-bottom: var(--s-1); }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ============== USE CASES ============== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}
@media (min-width: 600px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-tile {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  padding: var(--s-3);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease);
  text-decoration: none;
}
.case-tile:hover { transform: translateY(-3px); text-decoration: none; }

.case-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.case-tile.beach     { background: linear-gradient(135deg, #f4d29a 0%, #e8a87c 50%, #85B7EB 100%); }
.case-tile.pet       { background: linear-gradient(135deg, #9FE1CB 0%, #5DCAA5 100%); }
.case-tile.camp      { background: linear-gradient(135deg, #3B6D11 0%, #27500A 100%); }
.case-tile.garden    { background: linear-gradient(135deg, #97C459 0%, #639922 100%); }
.case-tile.sports    { background: linear-gradient(135deg, #FAC775 0%, #EF9F27 100%); }
.case-tile.emergency { background: linear-gradient(135deg, #444 0%, #1D1D1F 100%); }

.case-content { position: relative; z-index: 2; }
.case-tag { font-size: 11px; font-weight: 500; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.case-tile h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 6px; color: #fff; }
.case-tile p { font-size: 13px; opacity: 0.88; line-height: 1.45; margin: 0; }

/* ============== FAQ ============== */
.faq { max-width: var(--max-w-text); margin: 0 auto; }
.faq-item { border-bottom: 0.5px solid var(--border); }

.faq-item details { padding: 0; }
.faq-item summary {
  list-style: none;
  padding: var(--s-3) 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  gap: var(--s-2);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  margin-right: 4px;
}
.faq-item details[open] summary::after { transform: rotate(-135deg); margin-bottom: -4px; }
.faq-answer {
  padding: 0 0 var(--s-3);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
}
.faq-answer p { margin-bottom: 0.75em; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============== COMPATIBILITY ============== */
.compat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) { .compat-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }

.compat-list {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: var(--s-3);
  border: 0.5px solid var(--border);
}
.compat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 14px;
}
.compat-row:last-child { border-bottom: none; }
.compat-row .name { font-weight: 500; }
.compat-row .check {
  display: inline-flex; align-items: center; gap: 6px;
  color: #0F6E56; font-weight: 600; font-size: 13px;
}
.compat-row .check::before {
  content: ""; width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--aqua-mint);
}

/* ============== WHOLESALE BAND ============== */
.wholesale-band {
  background: linear-gradient(135deg, #1D1D1F 0%, #0F1115 100%);
  color: #fff;
  padding: var(--s-6) var(--s-3);
}
@media (min-width: 760px) { .wholesale-band { padding: var(--s-7) var(--s-5); } }

.wholesale-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: center;
}
@media (min-width: 900px) { .wholesale-grid { grid-template-columns: 1.2fr 1fr; gap: var(--s-5); } }

.wholesale-band h2 { color: #fff; font-size: 36px; }
.wholesale-band .lead { color: var(--mist-silver); }
.wholesale-band .eyebrow { color: var(--aqua-mint); }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-3);
}
@media (max-width: 600px) { .stat-cards { grid-template-columns: 1fr; } }

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--s-3);
}
.stat-num {
  font-size: 26px; font-weight: 600; letter-spacing: -0.01em;
  background: var(--grad-diag);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  font-feature-settings: "tnum";
}
.stat-label { font-size: 12px; color: var(--slate-gray); line-height: 1.4; }

.wholesale-form {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--s-3);
}
.wholesale-form h3 { color: #fff; font-size: 18px; margin-bottom: var(--s-2); }

/* ============== FORMS ============== */
.field { margin-bottom: 12px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.input, .textarea, .select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--clear-blue);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.18);
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.textarea { min-height: 120px; resize: vertical; }

.wholesale-form .input,
.wholesale-form .textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.wholesale-form .input::placeholder,
.wholesale-form .textarea::placeholder { color: var(--slate-gray); }
.wholesale-form label { color: #fff; }

/* ============== EMAIL BAND ============== */
.email-band {
  padding: var(--s-6) var(--s-3);
  text-align: center;
  background: var(--bg-alt);
}
.email-band h2 { font-size: 28px; margin-bottom: 8px; }
.email-band p { font-size: 15px; color: var(--text-muted); margin-bottom: var(--s-3); }
.email-form {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 440px; margin: 0 auto;
}
@media (min-width: 600px) { .email-form { flex-direction: row; } }
.email-form .input { background: #fff; }
.email-form .btn { white-space: nowrap; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  padding: var(--s-5) 0 var(--s-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: var(--s-3); } }

.footer-brand { grid-column: 1 / -1; }
@media (min-width: 760px) { .footer-brand { grid-column: auto; } }

.footer-blurb { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-top: var(--s-2); max-width: 240px; }

.footer-col h3 { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-muted); font-size: 13px; }
.footer-col a:hover { color: var(--ink); text-decoration: none; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  justify-content: space-between; align-items: center;
  padding-top: var(--s-3);
  border-top: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal, .footer-social { list-style: none; padding: 0; margin: 0; display: flex; gap: var(--s-2); }
.footer-legal a, .footer-social a { color: var(--text-muted); }
.footer-legal a:hover, .footer-social a:hover { color: var(--ink); text-decoration: none; }

/* ============== BLOG ============== */
.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 760px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-list { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 0.5px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--ink);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease);
}
.post-card:hover { transform: translateY(-3px); border-color: var(--clear-blue); text-decoration: none; }
.post-thumb { aspect-ratio: 16 / 10; background: var(--bg-alt); }
.post-body { padding: var(--s-3); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-meta { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.post-card h3 { font-size: 18px; line-height: 1.3; margin: 0; }
.post-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0; flex: 1; }
.post-readmore { color: var(--clear-blue); font-size: 13px; font-weight: 500; margin-top: var(--s-1); }

.post-article {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: var(--s-5) var(--s-3) var(--s-6);
}
.post-header { margin-bottom: var(--s-4); }
.post-article h1 { font-size: 36px; margin-bottom: var(--s-2); }
@media (min-width: 760px) { .post-article h1 { font-size: 44px; } }
.post-hero { aspect-ratio: 16 / 9; background: var(--bg-alt); border-radius: var(--radius-xl); margin: var(--s-3) 0; }
.post-content h2 { margin-top: var(--s-4); }
.post-content h3 { margin-top: var(--s-3); }
.post-content p { font-size: 17px; line-height: 1.7; margin-bottom: var(--s-2); }
.post-content ul, .post-content ol { padding-left: 1.5em; margin-bottom: var(--s-2); }
.post-content li { margin-bottom: 6px; line-height: 1.65; }
.post-content blockquote {
  border-left: 3px solid var(--clear-blue);
  padding-left: var(--s-2);
  margin: var(--s-3) 0;
  color: var(--text-muted);
  font-style: italic;
  border-radius: 0;
}

/* ============== UTILITY ============== */
.bg-soft { background: var(--bg-alt); }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: var(--s-1); } .mt-2 { margin-top: var(--s-2); } .mt-3 { margin-top: var(--s-3); }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: var(--s-1); } .mb-2 { margin-bottom: var(--s-2); } .mb-3 { margin-bottom: var(--s-3); }

/* ============== REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============== PRINT ============== */
@media print {
  .site-header, .site-footer, .email-band, .nav-toggle, .hero-ctas { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
