/* Strollin Interactive — shared design system
   Calm, restrained. Paper + deep teal. */

:root {
  --paper:    #F6F2EB;
  --surface:  #FFFFFF;
  --ink:      #14272B;
  --ink-soft: #5C6B6E;
  --teal:     #2B5F6E;
  --teal-dk:  #1A454F;
  --teal-lt:  #D8E6E3;
  --line:     rgba(20, 39, 43, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dk); }

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- HEADER ---------- */
header.site {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
header.site .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-lt);
}
nav.primary {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.primary a {
  font-size: 14.5px;
  color: var(--ink-soft);
}
nav.primary a:hover { color: var(--ink); }
nav.primary a.current { color: var(--ink); }
@media (max-width: 720px) {
  nav.primary { display: none; }
}

/* ---------- LABEL ---------- */
.label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 80px;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 18ch;
}
.hero p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
  line-height: 1.55;
}
.hero.compact {
  padding: 60px 0 50px;
}
.hero.compact h1 {
  font-size: clamp(34px, 4.5vw, 50px);
}

/* ---------- SECTION ---------- */
section.block {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
section.block .head {
  margin-bottom: 48px;
  max-width: 56ch;
}
section.block h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--ink);
}
section.block .head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- CARD GRID (apps, streams, etc.) ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
@media (max-width: 760px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.cell {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
a.cell:hover { background: #FBF8F2; }
.cell .role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.cell h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.cell p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.cell .more {
  margin-top: 8px;
  font-size: 14px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cell .status {
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cell .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- LONG-FORM ---------- */
.prose {
  max-width: 64ch;
}
.prose p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 18px;
}
.prose p strong { color: var(--ink); font-weight: 500; }
.prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 36px 0 12px;
}
.prose h3:first-child { margin-top: 0; }
.prose ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.prose ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--ink-soft);
  font-size: 16.5px;
  border-bottom: 1px solid var(--line);
}
.prose ul li:last-child { border-bottom: none; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-lt);
  box-shadow: inset 0 0 0 1px var(--teal);
}

/* ---------- TWO-COLUMN ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- PILLARS ---------- */
.pillars {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.pillar {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pillar:nth-child(2),
.pillar:nth-child(4) { color: var(--teal); }

/* ---------- BUTTONS / CTA ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: background .15s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--teal-dk); color: var(--paper); }
.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(20, 39, 43, 0.18);
}
.btn.outline:hover { border-color: var(--ink); background: transparent; color: var(--ink); }

/* ---------- STOREFRONT ---------- */
.store-cat {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.store-cat:first-of-type { border-top: none; padding-top: 0; }
.store-cat h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.store-cat .desc {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 56ch;
}
.store-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 600px) { .store-list { grid-template-columns: 1fr; } }
.store-list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 16px 18px;
  font-size: 15px;
}
.store-list li a {
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.store-list li a:hover { color: var(--teal-dk); }
.store-list li a span.arrow { color: var(--teal); flex-shrink: 0; }
.store-list li.placeholder {
  color: var(--ink-soft);
  font-style: italic;
  border-style: dashed;
}

.disclosure {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--teal-lt);
  border-radius: 10px;
  font-size: 14px;
  color: var(--teal-dk);
  line-height: 1.55;
}

/* ---------- CONTACT BLOCK ---------- */
.contact-block {
  text-align: center;
  padding: 80px 0 100px;
  border-top: 1px solid var(--line);
}
.contact-block h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
}
.contact-block p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- FOOTER ---------- */
footer.site {
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13.5px;
}
footer.site .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site nav { display: flex; gap: 20px; }
footer.site nav a { color: var(--ink-soft); }
footer.site nav a:hover { color: var(--ink); }

/* ---------- GEAR GUIDE / NFC PAGE ---------- */
.affiliate-note { margin-top: 28px; max-width: 66ch; background: rgba(216,230,227,.55); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; color: var(--ink-soft); font-size: 14px; }
.gear-controls-wrap { padding-top: 34px; }
.gear-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.gear-controls label { color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.gear-controls select { min-width: 220px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: #FBF8F2; color: var(--ink); font: inherit; }
.gear-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.gear-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px; min-height: 210px; display: flex; flex-direction: column; }
.gear-card[hidden] { display: none; }
.gear-card .role { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.gear-card h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 24px; line-height: 1.15; letter-spacing: -.015em; margin: 0 0 12px; }
.gear-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; margin: 0 0 20px; }
.gear-link { margin-top: auto; font-size: 14px; font-weight: 500; }
.gear-link.disabled { color: var(--ink-soft); opacity: .55; pointer-events: none; }
@media (max-width: 760px) { .gear-grid { grid-template-columns: 1fr; } .gear-controls { align-items: stretch; flex-direction: column; } .gear-controls select { width: 100%; min-width: 0; } }

/* ---------- GEAR GUIDE V2 ---------- */
.gear-hero .wrap { max-width: 1040px; }
.gear-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.gear-start { padding-top: 58px; }
.quick-pick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.quick-pick { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px; color: inherit; min-height: 230px; display: flex; flex-direction: column; transition: transform .15s ease, border-color .15s ease, background .15s ease; }
.quick-pick:hover { transform: translateY(-2px); border-color: rgba(43,95,110,.22); background: #FBF8F2; color: inherit; }
.quick-kicker { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.quick-pick h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 24px; line-height: 1.12; margin: 0 0 12px; letter-spacing: -.015em; }
.quick-pick p { color: var(--ink-soft); font-size: 15px; line-height: 1.52; margin: 0; }
.quick-more { margin-top: auto; padding-top: 18px; color: var(--teal); font-size: 14px; font-weight: 500; }
.gear-kit-section { padding-top: 60px; }
.kit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.kit-card { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.kit-card .role { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.kit-card h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 25px; line-height: 1.15; letter-spacing: -.015em; margin: 0 0 12px; }
.kit-card p { color: var(--ink-soft); margin: 0 0 18px; font-size: 15.5px; line-height: 1.55; }
.kit-card ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.kit-card li { color: var(--ink); font-size: 14.5px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.kit-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.kit-card li::before { content: "•"; color: var(--teal); margin-right: 8px; }
.gear-section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 22px; }
.gear-section-head h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: clamp(30px, 3.6vw, 42px); line-height: 1.12; letter-spacing: -.015em; margin: 0; }
.gear-section-head p { margin: 0; color: var(--ink-soft); max-width: 34ch; font-size: 15.5px; }
.gear-filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-pill { appearance: none; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); border-radius: 999px; padding: 12px 16px; font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; min-height: 46px; }
.filter-pill:hover { color: var(--ink); border-color: rgba(43,95,110,.25); }
.filter-pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gear-card { min-height: 360px; }
.gear-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.gear-card-top .role { margin-bottom: 0; }
.gear-badge { flex-shrink: 0; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--teal-dk); background: rgba(216,230,227,.7); border: 1px solid rgba(43,95,110,.12); padding: 6px 9px; border-radius: 999px; }
.gear-card .gear-best-for { color: var(--ink); font-weight: 500; margin-bottom: 10px; }
.gear-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 18px; }
.gear-tags span { border: 1px solid var(--line); background: #FBF8F2; color: var(--ink-soft); border-radius: 999px; padding: 6px 9px; font-size: 12px; line-height: 1; }
.gear-link { display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 46px; border-radius: 999px; background: var(--ink); color: var(--paper); margin-top: auto; }
.gear-link:hover { background: var(--teal-dk); color: var(--paper); }
.gear-link.disabled { background: transparent; border: 1px dashed rgba(20,39,43,.2); color: var(--ink-soft); opacity: .7; }
.gear-note { font-size: 12px !important; margin: 10px 0 0 !important; color: var(--ink-soft) !important; text-align: center; }
@media (max-width: 900px) { .quick-pick-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .kit-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .gear-hero-actions .btn { width: 100%; text-align: center; } .gear-section-head { display: block; } .gear-section-head p { margin-top: 10px; max-width: 100%; } .filter-pill { flex: 1 1 auto; } }
@media (max-width: 560px) { .quick-pick-grid { grid-template-columns: 1fr; } .quick-pick { min-height: 0; } .gear-card { min-height: 0; } .gear-card-top { align-items: flex-start; flex-direction: column; } }

/* ---------- GEAR GUIDE V3 CATEGORY-FIRST ---------- */
.category-first { padding-top: 56px; }
.category-tile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.category-tile { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; min-height: 210px; display: flex; flex-direction: column; color: inherit; transition: transform .15s ease, border-color .15s ease, background .15s ease; }
.category-tile:hover { transform: translateY(-2px); border-color: rgba(43,95,110,.22); background: #FBF8F2; color: inherit; }
.category-tile span { width: fit-content; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-dk); background: rgba(216,230,227,.7); border: 1px solid rgba(43,95,110,.12); padding: 6px 9px; border-radius: 999px; margin-bottom: 18px; }
.category-tile h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 25px; line-height: 1.12; letter-spacing: -.015em; margin: 0 0 12px; }
.category-tile p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; margin: 0; }
.category-tile b { margin-top: auto; padding-top: 18px; font-size: 14px; font-weight: 500; color: var(--teal); }
.gear-category-section { scroll-margin-top: 18px; }
.protection-grid .category-tile { min-height: 240px; }
@media (max-width: 900px) { .category-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .category-tile-grid { grid-template-columns: 1fr; } .category-tile { min-height: 0; } }


/* ---------- STROLLIN TOP PICKS ---------- */
.top-picks-hero {
  background: linear-gradient(135deg, rgba(216,230,227,.55), rgba(255,255,255,.2));
}
.top-picks-grid {
  align-items: stretch;
}
.top-pick-tile b {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--teal-dk);
}
.gear-link.disabled {
  opacity: .55;
  pointer-events: none;
}
@media (max-width: 720px) {
  .top-picks-grid { grid-template-columns: 1fr; }
}


/* Dynamic Top Picks from Strollin Link Maker */
.dynamic-status { margin: 18px 0; color: var(--muted); }
.dynamic-empty { opacity: .9; }
.gear-card.dynamic-pick { border-color: rgba(47,111,94,.26); }
.gear-link.secondary { background: transparent; border: 1px solid rgba(47,111,94,.35); color: var(--ink); }


/* v4.4 Store master cleanup */
.store-entry-note { color: var(--ink-soft); max-width: 64ch; line-height: 1.55; }
@media (max-width: 720px) { header.site .row, footer.site .row { align-items: flex-start; } .primary { gap: 12px; } }

/* v4.6 Storefront navigation polish */
.store-master-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.store-master-card { min-height: 300px; }
.store-sub-links { display:flex; flex-wrap:wrap; gap:8px; margin: 16px 0 6px; }
.store-sub-links a { text-decoration:none; color: var(--teal-dk); background: rgba(216,230,227,.75); border: 1px solid rgba(43,95,110,.14); border-radius: 999px; padding: 8px 10px; font-size: 13px; font-weight: 600; }
.store-sub-links a:hover { background: #fff; }
@media (max-width: 720px) { .store-master-grid { grid-template-columns: 1fr; } .store-master-card { min-height: 0; } }

/* Store navigation pass */
.store-master-card { display: flex; flex-direction: column; gap: 16px; }
.store-master-link { color: inherit; text-decoration: none; display: block; }
.store-master-link b { display: inline-block; margin-top: 14px; color: var(--teal, #2f6f6a); font-weight: 600; }
.store-master-card .store-sub-links { margin-top: auto; }


/* ---------- v4.8 Trust + action layer ---------- */
.section-title { font-family:'Fraunces',Georgia,serif; font-weight:400; font-size:clamp(28px,3.4vw,38px); line-height:1.2; letter-spacing:-0.015em; margin:0; max-width:16ch; }
.inline-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.trust-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:14px; }
.trust-grid article { background: var(--surface); border:1px solid var(--line); border-radius:18px; padding:24px; }
.trust-grid h3 { font-family:'Fraunces',Georgia,serif; font-weight:400; font-size:24px; line-height:1.15; letter-spacing:-.015em; margin:0 0 10px; color:var(--ink); }
.trust-grid p { margin:0; color:var(--ink-soft); font-size:15.5px; line-height:1.55; }
.footer-stack { display:flex; flex-direction:column; gap:14px; }
.footer-main { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer-legal { display:flex; flex-wrap:wrap; gap:14px 20px; padding-top:14px; border-top:1px solid var(--line); }
.footer-legal a { color:var(--ink-soft); }
.footer-legal a:hover { color:var(--ink); }
@media (max-width:760px) { .trust-grid { grid-template-columns:1fr; } .inline-actions .btn { width:100%; text-align:center; } .footer-main { align-items:flex-start; } }

/* ---------- v4.9 Theme Foundation: Soft Spatial Modern ---------- */
:root {
  --navy: #0A1220;
  --navy-2: #101C31;
  --cyan: #4DA3FF;
  --sky: #8CCBFF;
  --mist: #EAF2FF;
  --ink-gray: #6B7C93;
  --paper: #F5F9FF;
  --surface: rgba(255,255,255,.82);
  --surface-solid: #FFFFFF;
  --ink: #0A1220;
  --ink-soft: #5D7088;
  --teal: #4DA3FF;
  --teal-dk: #236FC4;
  --teal-lt: #EAF2FF;
  --line: rgba(77,163,255,.18);
  --glow: 0 24px 80px rgba(77,163,255,.22);
  --soft-shadow: 0 18px 55px rgba(10,18,32,.10);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 16% 4%, rgba(77,163,255,.22), transparent 26rem),
    radial-gradient(circle at 88% 20%, rgba(140,203,255,.18), transparent 22rem),
    linear-gradient(180deg, #F8FBFF 0%, #EEF6FF 48%, #F7FAFF 100%);
  color: var(--ink);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(77,163,255,.07) 28.25%, transparent 29.5% 100%),
    linear-gradient(140deg, transparent 0 62%, rgba(140,203,255,.08) 62.2%, transparent 64% 100%);
}

body::after {
  content: "";
  position: fixed;
  width: 7px;
  height: 7px;
  right: 7vw;
  top: 22vh;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow:
    -56vw 16vh 0 1px rgba(77,163,255,.55),
    -38vw 58vh 0 0 rgba(140,203,255,.68),
    4vw 48vh 0 2px rgba(77,163,255,.34),
    0 0 26px 8px rgba(77,163,255,.24);
  pointer-events: none;
  z-index: -1;
}

a { color: var(--teal-dk); }
a:hover { color: var(--navy); }

.wrap { max-width: 1060px; }

header.site {
  padding: 18px 0;
  border-bottom: 1px solid rgba(77,163,255,.16);
  background: rgba(248,251,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-weight: 650;
  color: var(--navy);
}

.brand-mark {
  border-radius: 10px;
  background:
    radial-gradient(circle at 68% 36%, var(--sky), transparent 18%),
    linear-gradient(135deg, var(--navy) 0%, #123A68 44%, var(--cyan) 100%);
  box-shadow: 0 10px 30px rgba(77,163,255,.28);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 16px;
  width: 44px;
  height: 18px;
  border-top: 1.5px solid rgba(234,242,255,.72);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.brand-mark::after {
  width: 7px;
  height: 7px;
  background: var(--mist);
  box-shadow: 0 0 14px rgba(234,242,255,.85);
  z-index: 1;
}

nav.primary a {
  color: var(--ink-soft);
  font-weight: 550;
  position: relative;
}

nav.primary a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

nav.primary a:hover::after,
nav.primary a.current::after { transform: scaleX(1); }

.label {
  color: var(--teal-dk);
  font-weight: 700;
}

.hero {
  padding: 94px 0 92px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  right: -160px;
  top: -220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(77,163,255,.20), transparent 52%),
    conic-gradient(from 210deg, transparent 0 38%, rgba(77,163,255,.28), rgba(140,203,255,.08), transparent 68% 100%);
  opacity: .9;
  filter: blur(.2px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 12vw;
  top: 116px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(77,163,255,.12), 0 0 42px rgba(77,163,255,.65);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero h1 {
  color: var(--navy);
  max-width: 14ch;
  text-wrap: balance;
}

.hero p {
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
}

.hero.compact {
  padding: 72px 0 58px;
}

section.block {
  border-top: 1px solid rgba(77,163,255,.16);
  position: relative;
}

section.block h2,
.contact-block h2,
.gear-section-head h2,
.cell h3,
.gear-card h3,
.kit-card h3,
.category-tile h3,
.store-cat h3,
.prose h3 {
  color: var(--navy);
}

.grid-2,
.grid-3 {
  gap: 14px;
  background: transparent;
  border: 0;
  overflow: visible;
}

.cell,
.gear-card,
.kit-card,
.category-tile,
.store-list li,
.quick-pick,
.gear-controls {
  background: var(--surface);
  border: 1px solid rgba(77,163,255,.18);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cell,
.gear-card,
.kit-card,
.category-tile,
.quick-pick {
  border-radius: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

a.cell:hover,
.gear-card:hover,
.category-tile:hover,
.quick-pick:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.94);
  border-color: rgba(77,163,255,.36);
  box-shadow: 0 24px 70px rgba(10,18,32,.14), 0 0 38px rgba(77,163,255,.10);
}

.cell .role,
.gear-card .role,
.kit-card .role,
.quick-kicker,
.category-tile span {
  color: var(--teal-dk);
}

.cell .more,
.quick-more,
.category-tile b,
.gear-link:not(.disabled) {
  color: var(--teal-dk);
}

.cell .status::before,
.prose ul li::before {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(77,163,255,.45);
}

.btn {
  background: linear-gradient(135deg, var(--navy), #123A68 52%, var(--teal-dk));
  color: #fff;
  box-shadow: 0 14px 36px rgba(10,18,32,.20), 0 0 30px rgba(77,163,255,.14);
}

.btn:hover {
  background: linear-gradient(135deg, #07101F, #0F3765 52%, #1E73CE);
  color: #fff;
  transform: translateY(-1px);
}

.btn.outline {
  color: var(--navy);
  border: 1px solid rgba(77,163,255,.36);
  background: rgba(255,255,255,.58);
  box-shadow: none;
}

.btn.outline:hover {
  border-color: rgba(77,163,255,.65);
  background: rgba(234,242,255,.88);
}

.pillars {
  border-top-color: rgba(77,163,255,.16);
}

.pillar:nth-child(2),
.pillar:nth-child(4) { color: var(--teal-dk); }

.disclosure,
.affiliate-note {
  background: rgba(234,242,255,.84);
  border: 1px solid rgba(77,163,255,.18);
  color: #31506F;
}

.store-sub-links a,
.gear-badge,
.category-tile span,
.gear-tags span {
  background: rgba(234,242,255,.82);
  border-color: rgba(77,163,255,.18);
  color: var(--teal-dk);
}

.gear-link {
  background: linear-gradient(135deg, var(--navy), var(--teal-dk));
  color: #fff;
}

.gear-link:hover { background: linear-gradient(135deg, #07101F, #1E73CE); color: #fff; }

.filter-pill {
  background: rgba(255,255,255,.72);
  border-color: rgba(77,163,255,.18);
}

.filter-pill.active {
  background: linear-gradient(135deg, var(--navy), var(--teal-dk));
  color: #fff;
  border-color: transparent;
}

.contact-block {
  position: relative;
  border-top: 1px solid rgba(77,163,255,.16);
  overflow: hidden;
}

.contact-block::before {
  content: "";
  position: absolute;
  inset: 24px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(77,163,255,.18), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.60), rgba(234,242,255,.42));
  border: 1px solid rgba(77,163,255,.16);
  box-shadow: var(--soft-shadow);
  z-index: -1;
}

footer.site {
  background: linear-gradient(180deg, rgba(10,18,32,.94), #070D18);
  color: rgba(234,242,255,.72);
  border-top: 1px solid rgba(140,203,255,.18);
  margin-top: 24px;
}

footer.site nav a,
.footer-legal a { color: rgba(234,242,255,.70); }
footer.site nav a:hover,
.footer-legal a:hover { color: #fff; }

.footer-main,
.footer-legal {
  border-color: rgba(140,203,255,.16) !important;
}

@media (prefers-reduced-motion: no-preference) {
  .brand-mark,
  .hero::after {
    animation: strollinGlowPulse 5.5s ease-in-out infinite;
  }
  @keyframes strollinGlowPulse {
    0%, 100% { filter: saturate(1); }
    50% { filter: saturate(1.18) brightness(1.03); }
  }
}

@media (max-width: 720px) {
  header.site { position: static; }
  .hero { padding-top: 72px; }
  .hero::before { right: -280px; top: -260px; }
  .contact-block::before { inset: 14px; border-radius: 24px; }
}


/* v5.0 Store Lockdown */
.store-section-title { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: clamp(28px,3.4vw,38px); line-height: 1.2; letter-spacing: -0.015em; margin: 0; max-width: 15ch; }
.store-trust-block .fine-print, .fine-print { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.store-master-card { min-height: 250px; }
.store-master-grid .store-master-card h3 { max-width: 12ch; }
.category-tile-grid.protection-grid { align-items: stretch; }
@media (max-width: 560px) { .store-master-grid .store-master-card h3 { max-width: none; } }


/* v5.1 Store Subcategory Cleanup */
.store-subcategory-stack { display: grid; gap: 34px; }
.subcategory-group { padding: 24px; border: 1px solid rgba(77,163,255,.14); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.70), rgba(234,242,255,.46)); box-shadow: 0 18px 55px rgba(10,18,32,.07); }
.subcategory-group-head { max-width: 720px; margin-bottom: 20px; }
.subcategory-group-head span { display: inline-flex; width: fit-content; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--teal-dk); background: rgba(140,203,255,.18); border: 1px solid rgba(77,163,255,.18); padding: 6px 10px; border-radius: 999px; margin-bottom: 14px; }
.subcategory-group-head h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: clamp(26px,3vw,36px); line-height: 1.12; letter-spacing: -.015em; margin: 0 0 10px; color: var(--ink); }
.subcategory-group-head p { margin: 0; color: var(--ink-soft); max-width: 66ch; }
.category-tile-grid.subcategory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.subcategory-tile { min-height: 225px; }
.subcategory-tile h3 { max-width: 16ch; }
@media (max-width: 720px) { .subcategory-group { padding: 18px; border-radius: 22px; } .category-tile-grid.subcategory-grid { grid-template-columns: 1fr; } .subcategory-tile { min-height: 0; } .subcategory-tile h3 { max-width: none; } }
