/* ═══════════════════════════════════════════════════
   AJSpinning — Design System
   Outdoor · Nature · Professional
   ═══════════════════════════════════════════════════ */

/* ─── Design tokens ──────────────────────────────── */
:root {
  /* Paleta */
  --c-bg:         #f0f4f8;
  --c-surface:    #ffffff;
  --c-surface-2:  #f8fafc;
  --c-border:     #dde3ea;
  --c-border-l:   #eef2f7;

  /* Marca */
  --c-primary:    #0693e3;   /* azul del logotipo */
  --c-primary-d:  #0578ba;   /* hover */
  --c-primary-l:  #e8f5ff;   /* fondo tint */
  --c-accent:     #0584cd;   /* cta azul marca */
  --c-accent-d:   #046da8;   /* hover */
  --c-accent-l:   #e9f6ff;

  /* Texto */
  --c-text:       #162131;
  --c-text-2:     #2f3d50;
  --c-muted:      #556579;
  --c-muted-l:    #7e8b99;

  /* Estado */
  --c-success:    #16a34a;
  --c-danger:     #dc2626;

  /* Hero */
  --c-hero-1:     #053763;
  --c-hero-2:     #066ca7;
  --c-hero-3:     #0693e3;

  /* Layout */
  --font-head:    'Saira Condensed', sans-serif;
  --font-body:    'Manrope', sans-serif;
  --font-reading: 'Literata', serif;
  --r:            8px;
  --r-lg:         12px;
  --shadow-s:     0 1px 4px rgba(15,30,50,.08), 0 2px 8px rgba(15,30,50,.06);
  --shadow-m:     0 4px 16px rgba(15,30,50,.10), 0 2px 6px rgba(15,30,50,.07);
  --shadow-l:     0 8px 32px rgba(15,30,50,.14), 0 2px 8px rgba(15,30,50,.08);
  --max-w:        1200px;
  --transition:   .18s ease;
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
canvas, svg, video, iframe { display: block; max-width: 100%; }

.hero-copy h1,
.planner-copy h2,
.planner-result-card h3,
.planner-result-empty h3,
.wait-game-copy h2,
.static-header h1,
.section-title,
.guide-card-title,
.path-card h3,
.resource-card h3,
.season-card h3,
.trust-card h3 {
  text-wrap: balance;
}
.planner-signal-card strong,
.wait-game-score-card strong {
  overflow-wrap: anywhere;
}

/* ─── Utilities ──────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.page-main { min-height: 60vh; }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--c-surface);
  border-bottom: 2px solid var(--c-primary-l);
  box-shadow: 0 2px 16px rgba(15,30,50,.07);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; gap: 24px;
  overflow: hidden;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  flex-shrink: 0; overflow: hidden;
  max-height: 64px;
}
.logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: 100px !important;
  display: block !important;
  object-fit: contain !important;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 900;
  color: var(--c-text); white-space: nowrap; letter-spacing: -.02em;
  line-height: 1;
}
.logo-text strong { color: var(--c-primary); font-weight: 900; }

.main-nav {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.main-nav a {
  padding: 7px 13px; border-radius: var(--r);
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--c-muted); transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--c-primary); background: var(--c-primary-l); }

.nav-products {
    background: rgba(6,147,227,.10) !important;
    color: var(--c-primary) !important;
    border: 1.5px solid rgba(6,147,227,.22) !important;
  }
.nav-products:hover {
    background: var(--c-primary) !important;
    color: #fff !important;
  }

.nav-guides {
    margin-left: auto !important;
    background: var(--c-accent-l) !important;
    color: var(--c-accent) !important;
    border: 1.5px solid rgba(6,147,227,.26) !important;
  }
.nav-guides:hover {
    background: var(--c-accent) !important;
    color: #fff !important;
  }
.nav-tool {
    background: rgba(6,147,227,.14) !important;
    color: #055f97 !important;
    border: 1.5px solid rgba(6,147,227,.30) !important;
  }
.nav-tool:hover {
    background: var(--c-primary-d) !important;
    color: #fff !important;
  }

.nav-toggle {
  display: none; font-size: 1.5rem;
  color: var(--c-text); margin-left: auto;
  padding: 8px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 28px; border-radius: var(--r);
  background: var(--c-accent); color: #fff;
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(6,147,227,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--c-accent-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,147,227,.42);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; border-radius: var(--r);
  border: 2px solid var(--c-primary); color: var(--c-primary);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover {
  background: var(--c-primary); color: #fff;
}

/* ═══════════════════════════════════════════════════
   HERO (home)
   ═══════════════════════════════════════════════════ */
.site-hero {
  min-height: 560px;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, var(--c-hero-1) 0%, var(--c-hero-2) 50%, var(--c-hero-3) 100%);
  position: relative; overflow: hidden;
}
.site-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(6,147,227,.32) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20'%3E%3Cpath d='M0 10 Q25 0 50 10 Q75 20 100 10' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: auto, 100px 20px;
}
.site-hero::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--c-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 80px 24px 100px;
  max-width: 860px; margin: 0 auto; width: 100%;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.78); margin-bottom: 22px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
  padding: 6px 16px; border-radius: 20px;
}
.hero-inner h1 {
  font-family: var(--font-head); font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: .92; letter-spacing: -.03em;
  text-transform: uppercase; margin-bottom: 22px;
  color: #fff;
}
.hero-inner h1 em {
  color: #7ed9f0; font-style: normal; display: block;
}
.hero-inner > p {
  font-size: 1.1rem; color: rgba(255,255,255,.84);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-ctas .btn-secondary {
  border-color: rgba(255,255,255,.35); color: #fff;
}
.hero-ctas .btn-secondary:hover {
  background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.6);
}
.hero-stats {
  display: flex; margin-top: 52px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
}
.hero-stat {
  flex: 1; padding: 20px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 900;
  color: #7ed9f0; line-height: 1;
}
.hero-stat span {
  display: block; font-size: .72rem; color: rgba(255,255,255,.7);
  margin-top: 5px; text-transform: uppercase; letter-spacing: .1em;
}

/* ─── Category hero (páginas categoría) ─────────── */
.cat-hero {
  background: linear-gradient(135deg, var(--c-hero-1) 0%, var(--c-hero-2) 60%, var(--c-hero-3) 100%);
  padding: 56px 24px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cat-hero::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0; height: 48px;
  background: var(--c-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.cat-hero .breadcrumb { color: rgba(255,255,255,.74); position: relative; z-index: 1; margin-bottom: 20px; justify-content: center; display: flex; gap: 6px; }
.cat-hero .breadcrumb a { color: rgba(255,255,255,.88); }
.cat-hero .breadcrumb a:hover { color: #fff; }
.cat-icon { font-size: 3rem; display: block; margin-bottom: 16px; position: relative; z-index: 1; }
.cat-hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 14px; color: #fff; position: relative; z-index: 1;
}
.cat-desc {
  color: rgba(255,255,255,.88); max-width: 580px; margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.product-count {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 20px;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: .85rem; font-weight: 600;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════════════
   CATEGORÍAS GRID (home)
   ═══════════════════════════════════════════════════ */
.cat-grid-section { padding: 76px 0 72px; }
.cat-grid-section .container { max-width: 1320px; }
.section-title {
  font-family: var(--font-head); font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: -.01em;
  color: var(--c-text); margin-bottom: 6px;
  position: relative; display: inline-block; padding-bottom: 12px;
}
.section-title::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px;
  background: var(--c-accent); border-radius: 2px;
}
.section-subtitle { color: var(--c-text-2); margin-bottom: 36px; font-size: .98rem; margin-top: 12px; }

/* ─── Callout boxes ──────────────────────────────── */
.tip-box {
  background: #f0fdf4; border-left: 4px solid #22c55e;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 18px; margin: 20px 0;
}
.tip-box-title {
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: #16a34a; margin-bottom: 5px;
}
.tip-box p { color: #166534; margin: 0; font-size: .9rem; line-height: 1.65; }
.pro-tip {
  background: var(--c-primary-l); border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 18px; margin: 20px 0;
}
.pro-tip-title {
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-primary); margin-bottom: 5px;
}
.pro-tip p { color: var(--c-text-2); margin: 0; font-size: .9rem; line-height: 1.65; }
.warning-box {
  background: #fffbeb; border-left: 4px solid #f59e0b;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 18px; margin: 20px 0;
}
.warning-box-title {
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: #b45309; margin-bottom: 5px;
}
.warning-box p { color: #78350f; margin: 0; font-size: .9rem; line-height: 1.65; }

/* ─── Fact grid ──────────────────────────────────── */
.fact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px; margin: 22px 0;
}
.fact-card {
  background: var(--c-primary-l);
  border: 1px solid rgba(26,107,138,.18);
  border-radius: var(--r); padding: 16px 12px; text-align: center;
}
.fact-card-num {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 900;
  color: var(--c-primary); line-height: 1;
}
.fact-card-label {
  font-size: .78rem; color: var(--c-muted); margin-top: 4px; line-height: 1.4;
}

/* ─── Section visual divider ─────────────────────── */
.content-divider {
  display: flex; align-items: center; gap: 12px; margin: 32px 0;
}
.content-divider::before, .content-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--c-border);
}
.content-divider span {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-muted-l); white-space: nowrap;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cat-card {
  display: flex; flex-direction: column;
  padding: 14px 14px 18px; border-radius: var(--r-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-s);
  border: 2px solid var(--c-border-l);
  text-align: left;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), #7ed9f0);
  opacity: 0; transition: opacity var(--transition);
}
.cat-card:hover {
  border-color: var(--c-primary-l);
  box-shadow: var(--shadow-l);
  transform: translateY(-6px);
}
.cat-card:hover::before { opacity: 1; }
.cat-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  border-radius: calc(var(--r-lg) - 6px);
  overflow: hidden;
  background: linear-gradient(180deg, #dbe9f3 0%, #98bcd0 100%);
  border: 1px solid rgba(26,107,138,.12);
}
.cat-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,26,43,.08) 0%, rgba(8,26,43,.26) 100%);
  pointer-events: none;
}
.cat-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform var(--transition);
}
.cat-card:hover .cat-card-media img { transform: scale(1.06); }
.cat-card-name {
  font-family: var(--font-head); font-size: 1.24rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; color: var(--c-text);
  margin-bottom: 5px;
}
.cat-card-sub {
  font-size: .9rem; color: var(--c-text-2);
  font-weight: 600; letter-spacing: .01em;
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════ */
.product-grid-section { padding: 44px 0 64px; }
.grid-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid var(--c-border);
}
.results-label { color: var(--c-muted); font-size: .875rem; font-weight: 500; }
.sort-select {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  color: var(--c-text); padding: 8px 14px; border-radius: var(--r);
  font: inherit; font-size: .875rem; cursor: pointer;
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--c-primary); outline: none; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ─── Product card ───────────────────────────────── */
.product-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
  border: 1.5px solid var(--c-border-l);
  border-top: 3px solid var(--c-primary-l);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), border-top-color var(--transition);
}
.product-card:hover {
  box-shadow: 0 12px 36px rgba(15,30,50,.14);
  transform: translateY(-5px);
  border-top-color: var(--c-accent);
  border-color: var(--c-border);
}
.card-link { flex: 1; display: flex; flex-direction: column; }
.card-img-wrap {
  position: relative; aspect-ratio: 1;
  background: var(--c-surface-2); overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.06); }
.badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--c-danger); color: #fff;
  padding: 4px 9px; border-radius: 6px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  letter-spacing: .03em;
}
.card-body { padding: 14px 16px 8px; flex: 1; }
.card-title {
  font-size: .875rem; font-weight: 500; line-height: 1.45;
  color: var(--c-text-2); margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-original { font-size: .8rem; color: var(--c-muted-l); text-decoration: line-through; }
.price-sale {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 900;
  color: var(--c-primary);
}
.price-note {
  font-size: .84rem;
  font-weight: 700;
  color: var(--c-muted);
}
.btn-buy {
  display: block; margin: 12px 16px 16px;
  padding: 11px 16px; text-align: center; border-radius: var(--r);
  background: var(--c-accent); color: #fff;
  font-family: var(--font-head); font-size: .9rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background var(--transition);
}
.btn-buy:hover { background: var(--c-accent-d); }

/* ─── Product card extras (home featured) ────────── */
.badge-hot {
  position: absolute; top: 10px; right: 10px;
  background: var(--c-primary); color: #fff;
  padding: 3px 8px; border-radius: 6px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
}
.card-meta {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 6px; font-size: .78rem; color: var(--c-muted);
}
.card-stars { color: #f59e0b; font-size: .82rem; letter-spacing: -.04em; }
.card-saving {
  font-size: .78rem; font-weight: 700;
  color: var(--c-danger); margin-top: 5px;
}
.featured-products-section {
  padding: 64px 0; border-top: 1px solid var(--c-border);
  background: var(--c-surface-2);
}
.featured-top-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px; flex-wrap: wrap; gap: 8px;
}
.featured-eyebrow {
  display: inline-block;
  background: var(--c-accent-l); color: var(--c-accent);
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid #f5c89a;
}

/* ═══════════════════════════════════════════════════
   SHOP / PRODUCTOS
   ═══════════════════════════════════════════════════ */
.shop-hero {
  padding: 38px 0 18px;
  background:
    radial-gradient(circle at top left, rgba(126,217,240,.18), transparent 34%),
    linear-gradient(180deg, #f9fcff 0%, #eef5fa 100%);
  border-bottom: 1px solid var(--c-border);
}
.shop-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 28px;
  align-items: center;
}
.shop-hero-copy {
  min-width: 0;
}
.shop-hero-copy .breadcrumb {
  margin: 0 0 18px;
}
.shop-hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 14px;
}
.shop-intro {
  max-width: 68ch;
  color: var(--c-text-2);
  line-height: 1.82;
  font-size: 1.02rem;
}
.shop-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 18px;
}
.shop-stat {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-s);
}
.shop-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: .95;
  color: var(--c-text);
  margin-bottom: 6px;
}
.shop-stat span {
  display: block;
  color: var(--c-muted);
  font-size: .78rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.shop-category-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-category-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26,107,138,.14);
  background: rgba(255,255,255,.94);
  color: var(--c-primary);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.shop-category-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(26,107,138,.28);
  box-shadow: var(--shadow-s);
}
.shop-hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-m);
  background: var(--c-surface-2);
  aspect-ratio: 4 / 5;
}
.shop-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(10,31,61,.84);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 34px rgba(10,31,61,.26);
  color: #f6fbff;
  backdrop-filter: blur(10px);
}
.shop-hero-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.shop-hero-badge span {
  color: rgba(255,255,255,.84);
  line-height: 1.65;
  font-size: .92rem;
}
.shop-page {
  padding: 34px 0 76px;
}
.shop-shell {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.shop-filter-card {
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
}
.shop-filter-card h2 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 16px;
}
.shop-filter-grid {
  display: grid;
  gap: 16px;
}
.shop-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-field span {
  color: var(--c-text);
  font-size: .82rem;
  font-weight: 700;
}
.shop-field input,
.shop-field select {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-text);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.shop-field input:focus,
.shop-field select:focus {
  outline: none;
  border-color: rgba(26,107,138,.4);
  box-shadow: 0 0 0 4px rgba(126,217,240,.18);
}
.shop-range-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-range-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  font-size: .84rem;
  font-weight: 700;
}
.shop-range-head strong {
  color: var(--c-primary);
  font-family: var(--font-head);
  font-size: 1rem;
}
.shop-range {
  width: 100%;
  accent-color: var(--c-primary);
}
.shop-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c-text-2);
  line-height: 1.65;
  font-size: .92rem;
}
.shop-check input {
  margin-top: 3px;
  accent-color: var(--c-primary);
}
.shop-reset-btn {
  width: 100%;
  justify-content: center;
}
.shop-results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
}
.shop-results-head .section-title {
  margin-bottom: 4px;
}
.shop-results-head .section-subtitle {
  max-width: 64ch;
  margin-bottom: 0;
}
.shop-results-meta {
  min-width: 168px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #ecf5f9 100%);
  border: 1px solid rgba(26,107,138,.14);
  box-shadow: var(--shadow-s);
}
.shop-results-meta strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-text);
  line-height: .9;
  margin-bottom: 4px;
}
.shop-results-meta span {
  display: block;
  color: var(--c-muted);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.shop-active-filter {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--c-primary-l);
  border: 1px solid rgba(26,107,138,.12);
  color: var(--c-primary-d);
  font-size: .82rem;
  font-weight: 700;
}
.shop-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product-card-catalog .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card-catalog .card-title {
  font-size: .92rem;
  line-height: 1.5;
  color: var(--c-text);
  -webkit-line-clamp: 3;
}
.card-meta-row,
.card-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-card-cat,
.card-signal {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-card-cat {
  background: var(--c-primary-l);
  color: var(--c-primary);
}
.card-signal {
  background: var(--c-surface-2);
  color: var(--c-text-2);
  border: 1px solid var(--c-border);
}
.shop-empty {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fa 100%);
  border: 1px dashed rgba(26,107,138,.24);
  box-shadow: var(--shadow-s);
}
.shop-empty h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 12px;
}
.shop-empty p:last-child {
  color: var(--c-text-2);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════════════ */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  color: var(--c-muted); font-size: .85rem; margin: 28px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-primary); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--c-primary-d); text-decoration: underline; }

.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
  padding: 0 0 64px; align-items: start;
}
.product-gallery { position: relative; }
.main-img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-m);
  background: var(--c-surface);
}
.product-title {
  font-family: var(--font-head); font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: var(--c-text);
}
.product-pricing {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
  padding: 20px; background: var(--c-surface-2);
  border-radius: var(--r); border: 1px solid var(--c-border);
}
.price-big {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 900;
  color: var(--c-primary);
}
.price-original-big { color: var(--c-muted); text-decoration: line-through; font-size: 1rem; }
.saving {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  background: #fef2f2; color: var(--c-danger);
  font-size: .85rem; font-weight: 700;
}
.product-meta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
}
.product-meta span {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px;
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  font-size: .82rem; color: var(--c-text-2); font-weight: 500;
}
.meta-ship { color: var(--c-success) !important; }
.btn-buy-big {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 28px; text-align: center; border-radius: var(--r);
  background: var(--c-accent); color: #fff;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 900;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(6,147,227,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-buy-big:hover {
  background: var(--c-accent-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6,147,227,.45);
}
.affiliate-notice {
  font-size: .8rem; color: var(--c-muted); line-height: 1.55;
  padding: 12px 14px;
  background: var(--c-surface-2); border-radius: var(--r);
  border-left: 3px solid var(--c-border);
}
.product-cat-tag { margin-bottom: 10px; }
.product-cat-tag a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 20px;
  background: var(--c-primary-l); color: var(--c-primary);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  transition: background var(--transition);
}
.product-cat-tag a:hover { background: var(--c-primary); color: #fff; }

.badge-big {
  display: inline-block; margin: 12px 0;
  background: #fef2f2; color: var(--c-danger);
  padding: 5px 14px; border-radius: 6px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 800;
  border: 1px solid #fecaca;
}

/* ─── Consejos de uso ────────────────────────────── */
.product-tips {
  margin-top: 24px; padding: 20px 20px 16px;
  background: var(--c-primary-l); border-radius: var(--r);
  border: 1.5px solid rgba(26,107,138,.15);
}
.product-tips h3 {
  font-family: var(--font-head); font-size: .85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 12px; color: var(--c-primary);
}
.product-tips ul { margin-left: 18px; }
.product-tips li {
  color: var(--c-text-2); font-size: .875rem;
  margin-bottom: 6px; line-height: 1.55;
}

.product-analysis {
  margin-top: 22px;
  padding: 20px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
}
.product-analysis h3,
.product-fit-card h3 {
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.product-analysis p {
  color: var(--c-text-2);
  line-height: 1.72;
  margin: 0 0 10px;
}
.product-analysis-meta {
  margin: 6px 0 0;
  font-size: .82rem;
  color: var(--c-muted);
}
.product-fit-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.product-fit-card {
  padding: 16px;
  background: #f8fcff;
  border: 1px solid rgba(26,107,138,.14);
  border-radius: var(--r);
}
.product-fit-card ul {
  margin: 0;
  padding-left: 17px;
}
.product-fit-card li {
  margin-bottom: 8px;
  color: var(--c-text-2);
  font-size: .88rem;
  line-height: 1.55;
}

/* ─── Related ────────────────────────────────────── */
.related-products, .related-guides {
  padding: 48px 0 64px;
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-border);
}
.related-products .container, .related-guides .container { }
.related-products h2, .related-guides h2 {
  font-family: var(--font-head); font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900; text-transform: uppercase; margin-bottom: 28px;
  color: var(--c-text);
}

/* ═══════════════════════════════════════════════════
   GUIDE CARDS
   ═══════════════════════════════════════════════════ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px; margin-top: 24px;
}
.guide-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.guide-card, .guide-card-full {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
  border: 1.5px solid var(--c-border-l);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  border-top: 3px solid var(--c-primary);
}
.guide-card:hover, .guide-card-full:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-4px);
  border-top-color: var(--c-accent);
}
.guide-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-surface-2);
  border-bottom: 1px solid var(--c-border);
}
.guide-card-media img,
.resource-card-media img,
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.guide-card:hover .guide-card-media img,
.guide-card-full:hover .guide-card-media img,
.resource-card:hover .resource-card-media img {
  transform: scale(1.04);
}
.guide-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
}
.guide-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  background: var(--c-accent-l); color: var(--c-accent);
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 12px;
}
.guide-card-title {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 900;
  line-height: 1.2; margin-bottom: 10px; color: var(--c-text);
}
.guide-card-desc {
  color: var(--c-muted); font-size: .875rem; line-height: 1.55; margin-bottom: 16px;
  flex: 1;
}
.guide-read-more {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--c-primary); font-size: .85rem; font-weight: 700;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════════════════════ */
.article-page { max-width: 780px; margin: 0 auto; padding: 40px 0 72px; }
.article-header { margin-bottom: 40px; }
.article-header h1 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.05; margin: 16px 0 14px; color: var(--c-text);
}
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  color: var(--c-muted); font-size: .85rem; margin-bottom: 20px;
}
.article-intro {
  font-size: 1.1rem; color: var(--c-text-2); line-height: 1.75;
  border-left: 4px solid var(--c-primary); padding-left: 20px;
  background: var(--c-primary-l); padding: 16px 20px; border-radius: 0 var(--r) var(--r) 0;
}
.article-cover {
  display: block;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-s);
  background: var(--c-surface-2);
}
.article-body {
  font-family: var(--font-reading);
  line-height: 1.95;
  font-size: 1.08rem;
  color: #243142;
}
.article-body h2 {
  font-family: var(--font-head); font-size: 1.55rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .01em;
  margin: 44px 0 16px; color: var(--c-text);
  border-bottom: 2px solid var(--c-primary-l); padding-bottom: 10px;
}
.article-body h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 800;
  margin: 28px 0 10px; color: var(--c-primary);
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 9px; }
.article-body strong { color: var(--c-text); font-weight: 700; }
.article-body a { color: var(--c-primary); text-decoration: underline; }
.article-body a:hover { color: var(--c-primary-d); }
.article-body table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem;
  box-shadow: var(--shadow-s); border-radius: var(--r); overflow: hidden;
}
.article-body th {
  background: var(--c-primary); color: #fff;
  padding: 12px 14px; text-align: left; font-family: var(--font-head); font-weight: 700;
}
.article-body td {
  padding: 10px 14px; border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: var(--c-surface-2); }

/* ═══════════════════════════════════════════════════
   CATEGORY GUIDE + FAQ
   ═══════════════════════════════════════════════════ */
.category-guide {
  padding: 64px 24px;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}
.category-guide h2 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: .01em;
  margin-bottom: 32px; color: var(--c-text);
  display: flex; align-items: center; gap: 12px;
}
.category-guide h2::before {
  content: "";
  display: inline-block; width: 4px; height: 1.2em;
  background: var(--c-primary); border-radius: 2px; flex-shrink: 0;
}
.guide-content { max-width: 820px; }
.guide-content h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 800;
  color: var(--c-primary); margin: 32px 0 12px;
  padding-left: 14px; border-left: 3px solid var(--c-accent);
}
.guide-content p {
  font-family: var(--font-reading);
  font-size: 1.05rem;
  color: #243142;
  line-height: 1.92;
  margin-bottom: 16px;
}
.guide-content ul, .guide-content ol {
  margin: 0 0 18px 0;
  color: #243142;
  line-height: 1.86;
  list-style: none;
  font-family: var(--font-reading);
  font-size: 1.03rem;
}
.guide-content li {
  margin-bottom: 7px; padding-left: 22px; position: relative; font-size: .95rem;
}
.guide-content li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--c-primary); font-weight: 700;
}
.guide-content strong { color: var(--c-text); font-weight: 700; }
.guide-content table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .88rem;
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-s);
}
.guide-content th {
  background: var(--c-primary); color: #fff;
  padding: 10px 14px; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
}
.guide-content td { padding: 9px 14px; border-bottom: 1px solid var(--c-border); background: var(--c-surface); }
.guide-content tr:last-child td { border-bottom: none; }
.guide-content tr:nth-child(even) td { background: var(--c-surface-2); }

.faq-section {
  padding: 64px 24px;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface-2);
}
.faq-section h2 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; text-transform: uppercase; margin-bottom: 32px; color: var(--c-text);
}
.faq-list { display: flex; flex-direction: column; gap: 6px; max-width: 800px; }
.faq-item {
  border: 1.5px solid var(--c-border); border-radius: var(--r);
  overflow: hidden; background: var(--c-surface);
  box-shadow: var(--shadow-s);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-m); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  background: var(--c-surface); color: var(--c-text);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background var(--transition);
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem; font-weight: 300;
  color: var(--c-primary); flex-shrink: 0; line-height: 1;
}
.faq-q[aria-expanded="true"] { background: var(--c-primary-l); color: var(--c-primary); }
.faq-q[aria-expanded="true"]::after { content: "−"; }
.faq-a {
  padding: 0 22px 20px;
  background: var(--c-primary-l);
  border-top: 1px solid rgba(26,107,138,.1);
}
.faq-a p { color: var(--c-text-2); line-height: 1.75; font-size: .9rem; padding-top: 16px; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background:
    radial-gradient(circle at top right, rgba(126,217,240,.14), transparent 28%),
    linear-gradient(180deg, #072949 0%, #08243f 100%);
  color: rgba(255,255,255,.85);
  padding: 0;
  margin-top: 0;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 34px; padding: 58px 24px 40px;
}
.footer-col { }
.footer-col:first-child { padding-right: 14px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-img { height: 38px !important; width: auto !important; max-width: 120px !important; display: block; filter: brightness(0) invert(1); }
.footer-tagline { color: rgba(255,255,255,.62); font-size: .85rem; line-height: 1.6; }
.footer-col strong {
  font-family: var(--font-head); font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.4); display: block; margin-bottom: 14px;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-col a {
  color: rgba(255,255,255,.6); font-size: .875rem;
  line-height: 1.55;
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 24px; text-align: center;
}
.footer-legal {
  color: rgba(255,255,255,.35); font-size: .75rem;
  line-height: 1.7; max-width: 680px; margin: 0 auto;
}

/* ─── Nav guías (footer) ─────────────────────────── */
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════
   STATIC PAGES
   ═══════════════════════════════════════════════════ */
.static-page { padding: 40px 24px 88px; max-width: 780px; }
.static-page h1 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; text-transform: uppercase; margin: 16px 0 32px; color: var(--c-text);
}
.static-content h2 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em;
  margin: 36px 0 12px; color: var(--c-text);
  border-bottom: 2px solid var(--c-primary-l); padding-bottom: 6px;
}
.static-content h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  margin: 20px 0 8px; color: var(--c-primary);
}
.static-content p {
  font-family: var(--font-reading);
  font-size: 1.04rem;
  color: #243142;
  line-height: 1.9;
  margin-bottom: 15px;
}
.static-content ul, .static-content ol {
  margin: 0 0 18px 24px;
  color: #243142;
  line-height: 1.86;
  font-family: var(--font-reading);
  font-size: 1.02rem;
}
.static-content li { margin-bottom: 6px; }
.static-content strong { color: var(--c-text); }
.static-content a { color: var(--c-primary); text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   EDITORIAL LAYER + HOME
   ═══════════════════════════════════════════════════ */
.section-heading { margin-bottom: 32px; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--c-primary); margin-bottom: 10px;
}
.section-actions { margin-top: 28px; text-align: center; }
.text-link {
  color: var(--c-primary); font-weight: 700; font-size: .92rem;
  transition: color var(--transition);
}
.text-link:hover { color: var(--c-primary-d); }
.stack-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.mini-checklist {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.mini-checklist li {
  position: relative; padding-left: 22px; color: var(--c-text-2);
  line-height: 1.7;
}
.mini-checklist li::before {
  content: "•";
  position: absolute; left: 0; top: 0;
  color: var(--c-accent); font-weight: 900; font-size: 1.1rem;
}
.info-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #eef6fb 100%);
  border: 1px solid rgba(26,107,138,.14);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-m);
}
.info-card-kicker {
  font-family: var(--font-head); font-size: .76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-primary); margin-bottom: 10px;
}
.info-card h2, .info-card h3 {
  font-family: var(--font-head); font-weight: 900;
  line-height: 1; color: var(--c-text); margin-bottom: 12px;
  text-transform: uppercase;
}
.info-card h2 { font-size: 1.8rem; }
.info-card h3 { font-size: 1.2rem; }
.info-card p { color: var(--c-text-2); line-height: 1.75; }

.home-hero {
  min-height: 0;
  display: block;
}
.home-hero::before {
  background:
    linear-gradient(112deg, rgba(5,29,54,.92) 4%, rgba(4,77,122,.82) 48%, rgba(6,147,227,.52) 100%),
    radial-gradient(circle at 82% 18%, rgba(158,232,255,.18), transparent 28%),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 22%),
    radial-gradient(circle at 76% 68%, rgba(126,217,240,.12), transparent 18%),
    url("/assets/img/hero/hero-bg-main.webp");
  background-size: auto, auto, auto, auto, cover;
  background-position: center, center, center, center, center;
  filter: saturate(1.02);
}
.home-hero::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--c-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.home-hero .hero-split {
  max-width: 1400px;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
  gap: 40px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
  min-width: 0;
}
.home-hero .hero-copy {
  max-width: 780px;
  min-width: 0;
}
.home-hero .hero-lead { max-width: 680px; }
.hero-split {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center; gap: 36px;
  padding: 76px 24px 108px;
}
.hero-copy { max-width: 720px; }
.hero-copy h1 {
  font-family: var(--font-head); font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: 900; line-height: .92; letter-spacing: -.03em;
  text-transform: uppercase; margin-bottom: 20px; color: #fff;
}
.hero-copy h1 em {
  font-style: normal; color: #9ee8ff; display: block;
}
.hero-lead {
  font-size: 1.08rem; line-height: 1.8; max-width: 620px;
  color: rgba(255,255,255,.78); margin-bottom: 34px;
}
.hero-proof {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px; margin-top: 34px;
}
.hero-proof-card {
  padding: 18px 16px; border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  align-items: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.hero-proof-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.11);
}
.hero-proof-icon {
  width: 28px;
  height: 28px;
  color: #9ee8ff;
  opacity: .95;
}
.hero-proof-card strong {
  display: block; font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 900; color: #fff; margin-bottom: 6px;
}
.hero-proof-card span {
  color: rgba(255,255,255,.78); font-size: .82rem; line-height: 1.6;
}
.hero-card { background: rgba(255,255,255,.96); }

.quick-path, .resource-section, .season-section, .trust-section,
.featured-guides-section, .brand-section { padding: 70px 0; }

.editorial-band {
  padding: 32px 0 14px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 24px;
  align-items: stretch;
}
.editorial-main,
.editorial-side,
.library-intro-panel,
.page-network,
.learning-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #f6fbff 100%);
  border: 1px solid rgba(26,107,138,.12);
  border-radius: 18px;
  box-shadow: var(--shadow-m);
}
.editorial-main {
  padding: 30px;
}
.editorial-main p {
  color: var(--c-text-2);
  line-height: 1.82;
  max-width: 67ch;
}
.editorial-main > p + p {
  margin-top: 14px;
}
.editorial-side {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eyebrow-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.eyebrow-list div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(6,147,227,.08);
  border: 1px solid rgba(6,147,227,.14);
}
.eyebrow-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.eyebrow-list span {
  color: var(--c-text-2);
  font-size: .92rem;
  line-height: 1.65;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.signal-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(6,147,227,.14);
}
.signal-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.signal-card span {
  color: var(--c-text-2);
  font-size: .88rem;
  line-height: 1.6;
}
.learning-hub {
  padding: 28px 0 12px;
}
.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.learning-card {
  padding: 24px;
}
.learning-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.learning-card p {
  color: var(--c-text-2);
  line-height: 1.76;
  margin-bottom: 14px;
}
.learning-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.learning-card li {
  position: relative;
  padding-left: 18px;
  color: var(--c-text-2);
  font-size: .92rem;
}
.learning-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--c-accent);
}
.library-intro-shell {
  padding: 18px 0 10px;
}
.library-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 18px;
}
.library-intro-panel {
  padding: 28px;
}
.library-intro-panel p {
  color: var(--c-text-2);
  line-height: 1.8;
}
.library-intro-panel .section-subtitle {
  margin-bottom: 0;
}
.library-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.library-pillar {
  padding: 16px;
  border-radius: 14px;
  background: rgba(6,147,227,.07);
  border: 1px solid rgba(6,147,227,.12);
}
.library-pillar strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.library-pillar span {
  color: var(--c-text-2);
  font-size: .9rem;
  line-height: 1.65;
}
.library-route {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.library-route a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(6,147,227,.14);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.library-route a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-s);
  border-color: rgba(6,147,227,.24);
}
.library-route strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.library-route span {
  color: var(--c-text-2);
  font-size: .92rem;
  line-height: 1.65;
}
.page-network {
  padding: 24px;
}
.page-network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.page-network-card {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(6,147,227,.14);
  background: rgba(255,255,255,.82);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.page-network-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-s);
  border-color: rgba(6,147,227,.24);
}
.page-network-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.page-network-card span {
  color: var(--c-text-2);
  font-size: .9rem;
  line-height: 1.6;
}
.mini-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: text-bottom;
  color: currentColor;
  flex: 0 0 auto;
}
.icon-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-card-media,
.hub-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(6,147,227,.12);
  box-shadow: var(--shadow-s);
  background: var(--c-surface);
}
.info-card-media {
  margin-bottom: 16px;
}
.info-card-media img,
.hub-media img {
  width: 100%;
  height: auto;
  display: block;
}
.hub-media {
  margin: 18px 0 22px;
}
.hub-media figcaption {
  padding: 12px 14px;
  font-size: .85rem;
  color: var(--c-muted);
  background: rgba(255,255,255,.96);
}
.soft-float {
  animation: softFloat 9s ease-in-out infinite;
}
.card-lift {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.planner-home-section {
    padding: 64px 0;
    border-top: 1px solid var(--c-border);
    background:
      radial-gradient(circle at top right, rgba(126,217,240,.18), transparent 38%),
      linear-gradient(180deg, #f8fcff 0%, #eef6fb 100%);
  }
.planner-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 24px;
    align-items: start;
    margin-top: 24px;
  }
.planner-shell-page {
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
    gap: 28px;
  }
.planner-card,
.planner-result-card,
.planner-result-empty,
.planner-promo {
    background: var(--c-surface);
    border: 1px solid rgba(26,107,138,.14);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-m);
  }
.planner-card {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, #f7fbfe 100%);
  }
.planner-copy h2,
.planner-result-card h3,
.planner-result-empty h3,
.planner-promo h2 {
    font-family: var(--font-head);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--c-text);
  }
.planner-copy h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
  }
.planner-copy p,
.planner-result-card p,
.planner-result-empty p,
.planner-promo p {
    color: var(--c-text-2);
    line-height: 1.78;
  }
.planner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 20px;
  }
.planner-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
.planner-field span {
    color: var(--c-text);
    font-size: .82rem;
    font-weight: 700;
  }
.planner-field select {
    min-height: 48px;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
    color: var(--c-text);
    font-size: .95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
  }
.planner-field select:focus {
    outline: none;
    border-color: rgba(26,107,138,.45);
    box-shadow: 0 0 0 4px rgba(126,217,240,.18);
  }
.planner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
  }
.planner-reset { min-width: 156px; }
.planner-result-empty,
.planner-result-card {
    padding: 26px;
  }
.planner-result-kicker {
    font-family: var(--font-head);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-primary);
    margin-bottom: 10px;
  }
.planner-result-card h3,
.planner-result-empty h3 {
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    margin-bottom: 14px;
  }
.planner-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }
.planner-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--c-primary-l);
    color: #124b62;
    border: 1px solid rgba(26,107,138,.2);
    font-size: .8rem;
    font-weight: 700;
    text-transform: capitalize;
  }
.planner-advice {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
.planner-advice li {
    position: relative;
    padding-left: 18px;
    color: var(--c-text-2);
    line-height: 1.75;
  }
.planner-advice li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-accent);
    transform: translateY(-50%);
  }
.planner-result-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--c-border);
    color: var(--c-text-2);
  }
.planner-result-warning {
    margin-top: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    background: #edf6ff;
    border: 1px solid rgba(6,147,227,.24);
    color: #0b5b8d !important;
  }
.planner-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
  }
.planner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid var(--c-border);
    background: #fff;
    color: var(--c-primary) !important;
    -webkit-text-fill-color: var(--c-primary);
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.25;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
.planner-link:visited {
    color: var(--c-primary) !important;
    -webkit-text-fill-color: var(--c-primary);
  }
.planner-link:hover {
    transform: translateY(-2px);
    border-color: rgba(26,107,138,.28);
    box-shadow: var(--shadow-s);
  }
.planner-link-primary {
    background: var(--c-primary-d);
    border-color: var(--c-primary-d);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    box-shadow: 0 8px 18px rgba(6,147,227,.24);
  }
.planner-link-primary:visited,
.planner-link-primary:focus,
.planner-link-primary:active {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
  }
.planner-link-primary:hover {
    border-color: #045f95;
    background: #045f95;
  }
.planner-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr);
    gap: 24px;
    align-items: center;
    padding: 24px 26px;
    margin-bottom: 10px;
  }
.planner-promo h2 { font-size: clamp(1.3rem, 2.8vw, 1.8rem); margin-bottom: 10px; }
.planner-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.planner-shell-page .planner-signal-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.planner-signal-card {
  padding: 16px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eff7fb 100%);
  border: 1px solid rgba(26,107,138,.12);
}
.planner-signal-card span,
.planner-signal-card small {
  display: block;
}
.planner-signal-card span {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-2);
}
.planner-signal-card strong {
  display: block;
  margin: 8px 0 6px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-text);
}
.planner-signal-card small {
  color: var(--c-text-2);
  line-height: 1.5;
}
.planner-checklist {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(26,107,138,.05);
  border: 1px solid rgba(26,107,138,.12);
}
.planner-checklist-title {
  margin-bottom: 10px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-primary);
}
.resource-card-meta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #124b62;
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.wait-game-section {
  padding: 74px 0;
  border-top: 1px solid var(--c-border);
  background:
    radial-gradient(circle at top left, rgba(126,217,240,.16), transparent 32%),
    linear-gradient(180deg, #f6fbff 0%, #eef4f8 100%);
}
.wait-game-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 24px;
  align-items: start;
}
.wait-game-card,
.wait-game-scoreboard,
.wait-game-notes {
  background: var(--c-surface);
  border: 1px solid rgba(26,107,138,.14);
  border-radius: 22px;
  box-shadow: var(--shadow-m);
}
.wait-game-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #f6fbff 100%);
}
.wait-game-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: .98;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 12px;
}
.wait-game-copy p,
.wait-game-status,
.wait-game-notes p {
  color: var(--c-text-2);
  line-height: 1.78;
}
.wait-game-stage {
  margin: 22px 0 18px;
}
.wait-game-water {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(26,107,138,.16);
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.22), transparent 40%),
    linear-gradient(180deg, #a7def0 0%, #5db7d7 36%, #1c6581 100%);
}
.wait-game-water::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.28), transparent 24%),
    radial-gradient(circle at 82% 68%, rgba(255,255,255,.14), transparent 20%),
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,.08) 0,
      rgba(255,255,255,.08) 2px,
      transparent 2px,
      transparent 18px
    );
  pointer-events: none;
}
.wait-game-line {
  position: absolute;
  top: 0;
  left: 52%;
  width: 2px;
  height: 112px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.15));
}
.wait-game-float {
  position: absolute;
  top: 98px;
  left: calc(52% - 16px);
  width: 32px;
  height: 54px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, #ffb457 0 48%, #ffffff 48% 100%);
  box-shadow: 0 10px 24px rgba(10,31,61,.18);
  animation: bobberFloat 2.8s ease-in-out infinite;
}
.wait-game-float::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 8px;
  height: 16px;
  border-radius: 999px;
  background: #22384c;
  transform: translateX(-50%);
}
.wait-game-ripple {
  position: absolute;
  left: calc(52% - 36px);
  top: 138px;
  width: 72px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.78);
  opacity: 0;
  transform: scale(.7);
}
.wait-game-ripple.is-visible {
  animation: ripplePulse .85s ease-out infinite;
}
.wait-game-bitebar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(26,107,138,.12);
  margin-top: 14px;
}
.wait-game-bitebar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), #ffb457);
  transition: width .12s linear;
}
.wait-game-status {
  min-height: 56px;
  margin-top: 14px;
}
.wait-game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wait-game-actions .btn-secondary[disabled],
.wait-game-actions .btn-primary[disabled] {
  opacity: .55;
  cursor: not-allowed;
}
.wait-game-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.wait-game-scoreboard,
.wait-game-notes {
  padding: 24px;
}
.wait-game-score-kicker {
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-primary);
}
.wait-game-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.wait-game-score-card {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #edf6fa 100%);
  border: 1px solid rgba(26,107,138,.12);
}
.wait-game-score-card strong,
.wait-game-score-card span {
  display: block;
}
.wait-game-score-card strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-text);
}
.wait-game-score-card span {
  margin-top: 5px;
  color: var(--c-muted);
  font-size: .8rem;
  line-height: 1.5;
}
.wait-game-shell.is-waiting .wait-game-card {
  border-color: rgba(26,107,138,.22);
}
.wait-game-shell.is-biting .wait-game-card {
  border-color: rgba(6,147,227,.42);
  box-shadow: 0 10px 34px rgba(6,147,227,.18);
}
.wait-game-shell.is-biting .wait-game-float {
  animation: bobberBite .22s ease-in-out infinite alternate;
}
.wait-game-shell.is-caught .wait-game-card {
  border-color: rgba(22,163,74,.3);
}
.wait-game-shell.is-missed .wait-game-card {
  border-color: rgba(220,38,38,.26);
}

.mini-games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 22px;
}
.mini-game-card {
  background: var(--c-surface);
  border: 1px solid rgba(6,147,227,.18);
  border-radius: 22px;
  box-shadow: var(--shadow-m);
  padding: 24px;
}
.mini-game-head h3 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin: 8px 0 10px;
  color: var(--c-text);
}
.mini-game-head p {
  color: var(--c-text-2);
  line-height: 1.7;
}
.mini-game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.mini-game-score-inline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.mini-game-score-inline-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mini-game-score-inline span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(6,147,227,.18);
  background: linear-gradient(180deg, #ffffff 0%, #eff7ff 100%);
  color: var(--c-muted);
  font-size: .78rem;
  line-height: 1.35;
}
.mini-game-score-inline strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--c-text);
}
.water-game-stage,
.cast-game-stage {
  margin-top: 14px;
}
.water-game-prompt {
  border-radius: 12px;
  border: 1px solid rgba(6,147,227,.2);
  background: linear-gradient(180deg, #f8fdff 0%, #edf6ff 100%);
  padding: 12px 14px;
  color: var(--c-text);
  font-weight: 600;
  line-height: 1.6;
}
.water-game-options {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.water-game-option {
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-text);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.4;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.water-game-option:hover {
  border-color: rgba(6,147,227,.36);
  background: #f4faff;
  transform: translateY(-1px);
}
.water-game-option[disabled] {
  opacity: .95;
}
.water-game-option.is-correct {
  border-color: rgba(22,163,74,.42);
  background: #edfff3;
  color: #186c3c;
}
.water-game-option.is-wrong {
  border-color: rgba(220,38,38,.36);
  background: #fff2f2;
  color: #9f1c1c;
}
.water-game-status,
.cast-game-status {
  min-height: 48px;
  margin-top: 10px;
  color: var(--c-text-2);
}
.cast-game-bar {
  position: relative;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(6,147,227,.22);
  background: linear-gradient(90deg, rgba(6,147,227,.2) 0%, rgba(6,147,227,.08) 100%);
  overflow: hidden;
}
.cast-game-target {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 40%;
  width: 18%;
  border-radius: 999px;
  border: 1px solid rgba(22,163,74,.5);
  background: linear-gradient(180deg, rgba(22,163,74,.34) 0%, rgba(22,163,74,.16) 100%);
}
.cast-game-marker {
  position: absolute;
  top: 4px;
  left: calc(50% - 5px);
  width: 10px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(5,120,186,.6);
  background: linear-gradient(180deg, #ffffff 0%, #dbefff 100%);
  box-shadow: 0 2px 8px rgba(6,147,227,.28);
}

@keyframes bobberFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes bobberBite {
  from { transform: translateY(0) rotate(-4deg); }
  to { transform: translateY(12px) rotate(4deg); }
}

@keyframes ripplePulse {
  0% {
    opacity: .9;
    transform: scale(.75);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

.path-grid, .resource-grid, .season-grid, .trust-grid {
  display: grid; gap: 20px;
}
.path-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.path-card, .resource-card, .season-card, .trust-card {
  display: block;
  padding: 26px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.path-card:hover, .resource-card:hover, .season-card:hover, .trust-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: rgba(26,107,138,.25);
}
.resource-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.resource-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-surface-2);
  border-bottom: 1px solid var(--c-border);
}
.resource-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.resource-card-copy p {
  flex: 1;
}
.path-step, .resource-label, .season-name {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 12px; border-radius: 999px;
  background: var(--c-primary-l); color: var(--c-primary);
  font-family: var(--font-head); font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
}
.path-card h3, .resource-card h3, .season-card h3, .trust-card h3 {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 900;
  text-transform: uppercase; line-height: 1.05; margin-bottom: 10px; color: var(--c-text);
}
.path-card p, .resource-card p, .season-card p, .trust-card p {
  color: var(--c-text-2); line-height: 1.75;
}
.resource-grid, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.season-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.category-intro {
  padding: 54px 24px 26px;
  display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(250px, .78fr);
  gap: 20px; align-items: start;
}
.category-intro-main {
  padding: 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
}
.category-intro-main h2 {
  font-family: var(--font-head); font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.02;
  margin-bottom: 12px; color: var(--c-text);
}
.category-intro-main p { color: var(--c-text-2); line-height: 1.8; }

.review-chip-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 6px;
}
.review-chip {
  display: inline-flex; align-items: center;
  padding: 7px 11px; border-radius: 999px;
  background: var(--c-accent-l); color: var(--c-accent-d);
  font-size: .8rem; font-weight: 700;
}

.article-page { max-width: none; padding: 40px 0 72px; }
.article-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.article-tag {
  display: inline-flex; align-items: center; padding: 7px 11px;
  border-radius: 999px; background: var(--c-surface-2);
  border: 1px solid var(--c-border); color: var(--c-text-2);
  font-size: .82rem; font-weight: 700;
}
.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 280px);
  gap: 28px; align-items: start;
}
.article-main {
  min-width: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
  padding: 26px 28px 34px;
}
.article-side {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 18px;
}
.toc-card, .author-card {
  padding: 22px; background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-s);
}
.toc-title, .author-kicker {
  font-family: var(--font-head); font-size: .76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-primary); margin-bottom: 12px;
}
.toc-links { display: flex; flex-direction: column; gap: 10px; }
.toc-links a {
  color: var(--c-text-2); font-size: .9rem; line-height: 1.5;
  transition: color var(--transition);
}
.toc-links a:hover { color: var(--c-primary); }
.author-card h3 {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 900;
  line-height: 1.02; text-transform: uppercase; margin-bottom: 12px;
}
.author-card p { color: var(--c-text-2); line-height: 1.75; }
.article-promo {
  margin-top: 32px; padding: 24px;
  background: linear-gradient(135deg, #f5fbfe 0%, #ffffff 100%);
  border: 1px solid rgba(26,107,138,.16);
  border-radius: var(--r-lg);
}
.article-promo-kicker {
  font-family: var(--font-head); font-size: .76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-primary); margin-bottom: 10px;
}
.article-promo h3 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 900;
  text-transform: uppercase; line-height: 1.02; margin-bottom: 10px;
}
.article-promo p { color: var(--c-text-2); line-height: 1.75; }
.article-promo-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px;
}
.guide-product-section {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f5fbfe 0%, #ffffff 100%);
  border: 1px solid rgba(26,107,138,.16);
  border-radius: var(--r-lg);
}
.guide-product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
.guide-product-copy {
  max-width: 760px;
}
.guide-product-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 10px;
}
.guide-product-copy p {
  color: var(--c-text-2);
  line-height: 1.75;
}
.guide-product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.guide-product-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-accent-d);
  font-size: .84rem;
  font-weight: 700;
}
.guide-product-chip:hover {
  border-color: rgba(26,107,138,.28);
  color: var(--c-primary);
}
.guide-product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.guide-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.guide-product-note {
  margin-top: 16px;
  color: var(--c-muted);
  font-size: .92rem;
  line-height: 1.7;
}
.guide-product-note a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.license-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 8px;
}
.license-community-card {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  border: 1px solid rgba(26,107,138,.16);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
}
.license-community-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
}
.license-community-card p {
  color: var(--c-text);
  line-height: 1.72;
}
.license-community-provinces {
  margin-bottom: 10px;
  color: var(--c-text-2);
}
.license-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.license-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(26,107,138,.24);
  background: linear-gradient(135deg, rgba(39,122,156,.96) 0%, rgba(24,90,121,.98) 100%);
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(18, 56, 76, .14);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  -webkit-text-fill-color: #ffffff;
}
.license-link-pill:hover,
.license-link-pill:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(31,109,141,.98) 0%, rgba(20,79,106,1) 100%);
  box-shadow: 0 18px 32px rgba(18, 56, 76, .18);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}
.license-link-pill:visited,
.license-link-pill:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.product-context {
  display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(250px, .82fr);
  gap: 20px; padding: 18px 24px 8px;
}
.product-context-main, .product-context-side .info-card {
  height: 100%;
}
.product-context-main {
  padding: 28px; background: var(--c-surface);
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-s);
}
.product-context-main h2 {
  font-family: var(--font-head); font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.02;
  margin-bottom: 10px;
}
.product-context-note { margin-top: 18px; color: var(--c-muted); font-size: .9rem; }

.guide-clusters-shell { padding: 24px 24px 0; }
.guide-cluster { margin-bottom: 34px; }
.guide-cluster-head { margin-bottom: 18px; }
.guide-cluster-head h2 {
  font-family: var(--font-head); font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.02;
}

.static-page { max-width: var(--max-w); padding: 40px 24px 88px; }
.static-header { max-width: 760px; margin-bottom: 28px; }
.static-intro { color: var(--c-text-2); line-height: 1.8; font-size: 1.02rem; }
.static-header {
  padding: 8px 0 6px;
}
.static-intro {
  max-width: 68ch;
}
.static-content > .editorial-callout:first-child {
  margin-top: 6px;
}
.editorial-callout {
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(6,147,227,.08) 0%, rgba(6,147,227,.03) 100%);
  border: 1px solid rgba(6,147,227,.16);
  margin: 10px 0 24px;
}
.editorial-callout p:last-child {
  margin-bottom: 0;
}
.static-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 28px;
}
.static-highlight-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--c-surface);
  border: 1px solid rgba(6,147,227,.12);
  box-shadow: var(--shadow-s);
}
.static-highlight-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.static-highlight-card p {
  font-family: var(--font-body);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.static-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 12px;
}
.static-link-card {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(6,147,227,.14);
  box-shadow: var(--shadow-s);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.static-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
  border-color: rgba(6,147,227,.24);
}
.static-link-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .94rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.static-link-card span {
  display: block;
  font-family: var(--font-body);
  color: var(--c-text-2);
  font-size: .92rem;
  line-height: 1.65;
}
.static-page-tool { max-width: 1380px; }
.static-page-tool .static-header {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.static-page-tool .static-content > p,
.static-page-tool .static-content > h2,
.static-page-tool .static-content > h3,
.static-page-tool .static-content > ul,
.static-page-tool .static-content > ol {
  max-width: min(100%, 84ch);
  margin-left: auto;
  margin-right: auto;
}
.static-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px; align-items: start;
}
.static-layout-tool {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
.static-layout-tool .static-content {
  min-width: 0;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.static-side {
  position: sticky; top: 88px;
}
.static-side-tool {
  position: static;
}
.static-side-tool .info-card {
  max-width: 540px;
}
.static-page-tool .planner-shell-page,
.static-page-tool .wait-game-shell {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.static-page-tool .planner-card {
  padding: 30px;
}
.static-page-tool .planner-result-card,
.static-page-tool .planner-result-empty {
  padding: 28px;
}
.static-page-tool .planner-copy h2 {
  font-size: clamp(1.65rem, 2.9vw, 2.2rem);
}
.static-page-tool .planner-result-card h3,
.static-page-tool .planner-result-empty h3 {
  font-size: clamp(1.45rem, 2.45vw, 2.1rem);
}

.brand-layout {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 24px; align-items: start;
}
.brand-copy p { color: var(--c-text-2); line-height: 1.85; margin-bottom: 14px; }
.home-faq { margin-top: 0; }

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  width: min(460px, calc(100vw - 24px));
}

.cookie-banner-inner {
  padding: 22px;
  border-radius: 16px;
  background: rgba(10, 31, 61, .96);
  border: 1px solid rgba(126, 217, 240, .18);
  box-shadow: 0 14px 40px rgba(10, 31, 61, .35);
  color: #f5fbff;
}

.cookie-banner-kicker {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7ed9f0;
  margin-bottom: 8px;
}

.cookie-banner-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.cookie-banner-text,
.cookie-banner-details p {
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  font-size: .95rem;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: var(--c-accent);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: var(--c-accent-d);
}

.cookie-btn-secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.cookie-btn-secondary:hover,
.cookie-btn-ghost:hover {
  background: rgba(255,255,255,.14);
}

.cookie-btn-ghost {
  background: transparent;
  color: #7ed9f0;
  border-color: rgba(126, 217, 240, .3);
}

.cookie-banner-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.cookie-banner a {
  color: #7ed9f0;
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: calc(var(--back-to-top-offset, 18px) + env(safe-area-inset-bottom, 0px));
  z-index: 420;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(126,217,240,.28);
  background:
    radial-gradient(circle at 32% 24%, rgba(126,217,240,.24) 0%, transparent 34%),
    linear-gradient(180deg, rgba(10,31,61,.96) 0%, rgba(16,61,91,.96) 100%);
  box-shadow: 0 12px 32px rgba(10,31,61,.24);
  color: #eef9ff;
  opacity: 0;
  transform: translateY(14px) scale(.9);
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: rgba(126,217,240,.45);
  box-shadow: 0 16px 36px rgba(10,31,61,.3);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(126,217,240,.32);
  outline-offset: 3px;
}

.back-to-top-icon {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-2px);
  text-shadow: 0 1px 0 rgba(10, 31, 61, .22);
}

.back-to-top-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
    padding: 0 20px;
  }
  .main-nav a {
    padding: 7px 10px;
    font-size: .82rem;
  }
  .path-grid,
  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-intro,
  .product-context,
  .article-layout,
  .static-layout,
  .brand-layout,
  .planner-shell-page,
  .wait-game-shell {
    grid-template-columns: 1fr;
  }
  .article-side,
  .static-side {
    position: static;
  }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
}

@media (max-width: 980px) {
  html, body {
    width: 100%;
    max-width: 100%;
  }
  .site-header,
  .header-inner,
  .container,
  .page-main {
    max-width: 100%;
  }
  .section-title,
  .shop-hero-copy h1,
  .article-header h1,
  .static-header h1 {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .main-nav { display: none; }
  .header-inner {
    position: relative;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    height: 68px;
    overflow: visible;
  }
  .logo-text {
    font-size: 1.35rem;
  }
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(26,107,138,.18);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
    box-shadow: var(--shadow-s);
    font-size: 1.35rem;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 74px;
    left: max(14px, env(safe-area-inset-left, 0px));
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: auto;
    max-height: calc(100dvh - 92px);
    background: rgba(255,255,255,.98);
    padding: 12px;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    z-index: 240;
    overflow-y: auto;
    box-shadow: var(--shadow-l);
  }
  .main-nav.open a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--c-border);
    border-radius: 0; color: var(--c-text);
  }
  .main-nav.open .nav-products,
  .main-nav.open .nav-guides,
  .main-nav.open .nav-tool {
    margin-left: 0 !important;
    border-radius: var(--r) !important;
    margin-top: 8px;
    border-bottom: none !important;
  }
  .hero-split,
  .planner-shell,
  .planner-promo,
  .shop-hero-layout,
  .shop-shell {
    grid-template-columns: 1fr;
  }
  .mini-games-grid {
    grid-template-columns: 1fr;
  }
  .home-hero .hero-split {
    max-width: var(--max-w);
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 72px;
    padding-left: 0;
    padding-right: 0;
  }
  .home-hero .hero-copy,
  .home-hero .hero-lead,
  .home-hero .hero-card {
    max-width: 100%;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
  .shop-results-head {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-hero-visual {
    aspect-ratio: 16 / 9;
  }
  .guide-product-head {
    flex-direction: column;
    align-items: stretch;
  }
  .guide-product-actions {
    justify-content: flex-start;
  }
  .license-guide-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .home-hero {
    background: linear-gradient(180deg, var(--c-hero-1) 0%, var(--c-hero-2) 58%, var(--c-hero-3) 100%);
  }
  .home-hero::before {
    background:
      radial-gradient(circle at 84% 16%, rgba(126,217,240,.16) 0%, transparent 28%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20'%3E%3Cpath d='M0 10 Q25 0 50 10 Q75 20 100 10' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1.4'/%3E%3C/svg%3E");
    background-size: auto, 100px 20px;
  }
  .home-hero::after {
    display: block;
    height: 28px;
    background: var(--c-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .hero-stat:last-child, .hero-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .hero-split,
  .category-intro,
  .article-layout,
  .product-context,
  .static-layout,
  .brand-layout {
    grid-template-columns: 1fr;
  }
  .hero-proof { grid-template-columns: 1fr; }
  .home-hero .hero-split {
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 24px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-eyebrow {
    display: block;
    margin-bottom: 8px;
    max-width: 100%;
    padding: 0;
    border: 0;
    background: none;
    border-radius: 0;
    font-size: .62rem;
    letter-spacing: .11em;
    white-space: normal;
    overflow-wrap: anywhere;
    color: rgba(255,255,255,.72);
  }
  .home-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.1vw, 2.45rem);
    line-height: 1.02;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }
  .home-hero .hero-copy h1 em {
    display: block;
    color: #7ed9f0;
  }
  .home-hero .hero-lead {
    max-width: 100%;
    font-size: .94rem;
    line-height: 1.58;
    margin-bottom: 14px;
    color: rgba(255,255,255,.86);
  }
  .home-hero .hero-card {
    display: none;
  }
  .home-hero .hero-ctas {
    gap: 8px;
  }
  .home-hero .hero-ctas .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding: 12px 16px;
  }
  .home-hero .hero-ctas .btn-secondary {
    border: none;
    padding: 0;
    min-height: auto;
    color: #9ee8ff;
    justify-content: flex-start;
  }
  .home-hero .hero-proof {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .home-hero .hero-proof::-webkit-scrollbar {
    display: none;
  }
  .home-hero .hero-proof-card {
    flex: 0 0 auto;
    min-width: 122px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
  }
  .home-hero .hero-proof-card strong {
    font-size: .9rem;
    margin-bottom: 3px;
    white-space: nowrap;
  }
  .home-hero .hero-proof-card span {
    display: block;
    font-size: .68rem;
    line-height: 1.35;
    color: rgba(255,255,255,.72);
  }
  .path-grid,
  .resource-grid,
  .season-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .guide-product-grid { grid-template-columns: 1fr; }
  .license-guide-grid { grid-template-columns: 1fr; }
  .shop-hero-stats { grid-template-columns: 1fr; }
  .planner-signal-grid,
  .wait-game-score-grid { grid-template-columns: 1fr; }
  .planner-shell-page .planner-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-main { padding: 22px 20px 28px; }
  .article-side, .static-side { position: static; }
  .toc-card { order: -1; }
  .product-context { padding-top: 6px; }
  .category-intro { padding-top: 42px; }
  .info-card h2 { font-size: 1.5rem; }
  .article-body table,
  .guide-content table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .article-body th,
  .article-body td,
  .guide-content th,
  .guide-content td {
    min-width: 132px;
  }
  .shop-filter-card,
  .shop-results-meta {
    padding: 20px;
  }
  .shop-hero {
    padding-top: 28px;
  }
  .static-page-tool .planner-card,
  .static-page-tool .planner-result-card,
  .static-page-tool .planner-result-empty,
  .static-page-tool .planner-promo {
    padding: 22px;
  }
  .static-page-tool .planner-copy h2,
  .static-page-tool .planner-result-card h3,
  .static-page-tool .planner-result-empty h3,
  .static-page-tool .planner-promo h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }

  .planner-shell,
  .planner-promo,
  .wait-game-shell { grid-template-columns: 1fr; }
  .planner-actions { flex-direction: column; }
  .wait-game-actions { flex-direction: column; }
  .mini-game-actions { flex-direction: column; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
    .guide-product-actions { flex-direction: column; }
    .hero-inner { padding: 56px 20px 80px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; padding: 36px 20px 28px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card { padding: 12px; }
  .cat-card-media { aspect-ratio: 1 / 1; margin-bottom: 10px; }
  .license-community-card { padding: 18px; }
  .license-link-row { flex-direction: column; }
}

@media (max-width: 560px) {
  .home-hero {
    background: linear-gradient(180deg, var(--c-hero-1) 0%, var(--c-hero-2) 58%, var(--c-hero-3) 100%);
  }
  .home-hero::before {
    background:
      radial-gradient(circle at 84% 14%, rgba(126,217,240,.14) 0%, transparent 26%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20'%3E%3Cpath d='M0 10 Q25 0 50 10 Q75 20 100 10' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1.35'/%3E%3C/svg%3E");
    background-size: auto, 100px 20px;
  }
  .home-hero::after {
    display: block;
    height: 14px;
    background: var(--c-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100vh - 112px);
  }
  .back-to-top {
    right: 14px;
    width: 52px;
    height: 52px;
  }
  .cookie-banner-inner {
    position: relative;
    padding: 10px 10px 9px;
    border-radius: 12px;
    max-height: inherit;
    overflow-y: auto;
  }
  .cookie-banner-kicker { display: none; }
  .cookie-banner-title {
    display: none;
  }
  .cookie-banner-text,
  .cookie-banner-details p {
    font-size: .69rem;
    line-height: 1.24;
    padding-right: 34px;
  }
  .cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 6px;
  }
  .cookie-btn-ghost {
    position: static;
    padding: 0;
    border: 1px solid rgba(126,217,240,.16);
    background: rgba(255,255,255,.04);
    color: #9ee8ff;
    font-size: .68rem;
    letter-spacing: .02em;
    min-height: 32px;
    border-radius: 10px;
  }
  .cookie-btn {
    min-height: 32px;
    padding: 6px 8px;
    font-size: .7rem;
    letter-spacing: .03em;
  }
  .header-inner,
  .container,
  .static-page {
    padding-left: 22px;
    padding-right: 22px;
  }
  .header-inner {
    height: 60px;
    gap: 10px;
    padding-left: 18px;
    padding-right: 22px;
  }
  .logo-img {
    height: 32px !important;
  }
  .logo-text {
    font-size: 1.22rem;
  }
  .nav-toggle {
    right: 18px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1.12rem;
    font-weight: 800;
    margin-right: 0;
  }
  .main-nav.open {
    top: 66px;
    left: max(10px, env(safe-area-inset-left, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    max-height: calc(100dvh - 78px);
    padding: 10px;
  }
  .main-nav.open a {
    padding: 12px 14px;
    font-size: .98rem;
  }
  .planner-grid,
  .planner-signal-grid,
  .wait-game-score-grid {
    grid-template-columns: 1fr;
  }
  .mini-game-score-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .planner-shell-page .planner-signal-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .guide-grid { grid-template-columns: 1fr; }
  .hero-split { padding: 34px 0 56px; gap: 22px; }
  .home-hero .hero-split {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding: 18px 16px 20px;
  }
  .hero-eyebrow {
    display: block;
    margin-bottom: 7px;
    max-width: 100%;
    padding: 0;
    border: 0;
    background: none;
    font-size: .58rem;
    letter-spacing: .1em;
    white-space: normal;
    overflow-wrap: anywhere;
    color: rgba(255,255,255,.7);
  }
  .home-hero .hero-copy,
  .home-hero .hero-lead,
  .home-hero .hero-card {
    max-width: 100%;
  }
  .hero-copy h1 {
    font-size: clamp(1.95rem, 10.5vw, 2.45rem);
    line-height: 1.02;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .home-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.86rem, 9.4vw, 2.18rem);
    line-height: 1.02;
    letter-spacing: -.015em;
    text-wrap: pretty;
    overflow-wrap: anywhere;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
  }
  .home-hero .hero-copy h1 em {
    display: block;
    color: #7ed9f0;
  }
  .hero-lead {
    font-size: .88rem;
    line-height: 1.54;
    margin-bottom: 10px;
  }
  .home-hero .hero-lead {
    max-width: 100%;
    color: rgba(255,255,255,.86);
  }
  .home-hero .hero-ctas {
    gap: 7px;
    margin-top: 2px;
  }
  .home-hero .hero-ctas .btn-primary {
    min-height: 46px;
    padding: 12px 16px;
    font-size: .92rem;
  }
  .home-hero .hero-ctas .btn-secondary {
    padding: 0;
    font-size: .8rem;
    letter-spacing: .03em;
    color: #9ee8ff;
  }
  .home-hero .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
    overflow: visible;
    padding-bottom: 0;
  }
  .home-hero .hero-proof-card,
  .hero-proof-card {
    flex: none;
    min-width: 0;
    padding: 9px 11px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
  }
  .home-hero .hero-proof-card strong {
    font-size: .82rem;
    margin-bottom: 2px;
    white-space: normal;
  }
  .home-hero .hero-proof-card span {
    display: block;
    font-size: .64rem;
    line-height: 1.3;
    color: rgba(255,255,255,.7);
  }
  .info-card h2 {
    font-size: 1.3rem;
    line-height: .95;
  }
  .info-card h3 {
    font-size: 1.08rem;
  }
  .shop-hero-copy h1 {
    font-size: clamp(1.45rem, 6.8vw, 1.8rem);
    line-height: 1.05;
    max-width: none;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }
  .shop-intro {
    max-width: 100%;
    font-size: .9rem;
    line-height: 1.58;
  }
  .shop-hero-layout {
    gap: 18px;
  }
  .shop-hero-copy .breadcrumb {
    margin-bottom: 12px;
  }
  .shop-hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }
  .shop-stat {
    padding: 14px 12px;
  }
  .shop-stat strong {
    font-size: 1.25rem;
  }
  .article-page {
    padding: 24px 0 56px;
  }
  .article-header {
    margin-bottom: 28px;
  }
  .article-header h1 {
    font-size: clamp(1.42rem, 6.8vw, 1.8rem);
    line-height: 1.06;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }
  .article-meta {
    gap: 10px 14px;
    font-size: .8rem;
    margin-bottom: 16px;
  }
  .article-intro {
    font-size: .96rem;
    line-height: 1.58;
    padding: 14px 16px 14px 18px;
  }
  .article-body {
    font-size: 1rem;
    line-height: 1.82;
  }
  .article-body h2 {
    font-size: 1.28rem;
    margin: 34px 0 14px;
    padding-bottom: 8px;
  }
  .article-body h3 {
    font-size: 1.02rem;
  }
  .planner-card,
  .planner-result-card,
  .planner-result-empty,
  .planner-promo,
  .wait-game-card,
  .wait-game-scoreboard,
  .wait-game-notes {
    padding: 18px;
  }
  .static-page-tool .planner-card,
  .static-page-tool .planner-result-card,
  .static-page-tool .planner-result-empty,
  .static-page-tool .planner-promo {
    padding: 18px;
  }
  .planner-copy h2,
  .planner-result-card h3,
  .planner-result-empty h3,
  .planner-promo h2 {
    font-size: clamp(1.22rem, 7vw, 1.55rem);
    line-height: 1.08;
  }
  .static-page-tool .planner-copy h2,
  .static-page-tool .planner-result-card h3,
  .static-page-tool .planner-result-empty h3,
  .static-page-tool .planner-promo h2 {
    font-size: clamp(1.18rem, 6.8vw, 1.48rem);
  }
  .static-page h1 {
    font-size: clamp(1.42rem, 6.8vw, 1.8rem);
    line-height: 1.06;
    margin-bottom: 18px;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }
  .static-intro {
    font-size: .94rem;
    line-height: 1.58;
  }
  .section-title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    line-height: 1.04;
  }
  .section-subtitle,
  .planner-copy p,
  .planner-result-card p,
  .planner-result-empty p,
  .planner-promo p,
  .wait-game-copy p {
    font-size: .92rem;
    line-height: 1.62;
  }
  .breadcrumb {
    font-size: .78rem;
    gap: 4px;
    margin: 18px 0;
  }
  .planner-links,
  .planner-actions,
  .wait-game-actions,
  .mini-game-actions,
  .guide-product-actions {
    flex-direction: column;
  }
  .planner-link,
  .planner-actions .btn-primary,
  .planner-actions .btn-secondary,
  .wait-game-actions .btn-primary,
  .wait-game-actions .btn-secondary,
  .mini-game-actions .btn-primary,
  .mini-game-actions .btn-secondary,
  .guide-product-actions .btn-primary,
  .guide-product-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .shop-category-shortcuts {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    margin-right: 0;
    row-gap: 8px;
  }
  .shop-category-chip {
    flex: 0 0 auto;
  }
  .section-heading {
    margin-bottom: 24px;
  }
  .section-subtitle {
    margin-bottom: 24px;
    font-size: .94rem;
    line-height: 1.65;
  }
  .quick-path, .resource-section, .season-section, .trust-section, .featured-guides-section, .brand-section {
    padding: 54px 0;
  }
  .quick-path {
    padding-top: 32px;
  }
    .path-card, .resource-card, .season-card, .trust-card,
  .category-intro-main, .product-context-main, .info-card,
  .planner-card, .planner-result-card, .planner-result-empty, .planner-promo,
  .wait-game-card, .wait-game-scoreboard, .wait-game-notes {
      padding: 20px;
    }
    .wait-game-water { min-height: 200px; }
    .wait-game-status { min-height: 72px; }
    .article-promo-actions { flex-direction: column; }
  }

@media (max-width: 360px) {
  .mini-game-score-inline {
    grid-template-columns: 1fr;
  }
  .cookie-banner-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cookie-btn-ghost {
    grid-column: 1 / -1;
  }
  .product-grid,
  .guide-grid-full {
    grid-template-columns: 1fr;
  }
  .btn-primary,
  .btn-secondary,
  .btn-buy {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════
   MINIJUEGO 2 · AVENTURA PIXEL (Stardew/Game Boy)
   ═══════════════════════════════════════════════════ */
.pixel-fishing-card {
  position: relative;
  overflow: hidden;
  border: 3px solid #2f4c63;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 40%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #f8e4bf 0%, #f1d19b 58%, #e8c28b 100%);
  box-shadow: 0 6px 0 #365b73, 0 16px 26px rgba(20, 44, 65, .2);
}

.pixel-fishing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 2px solid rgba(255, 248, 232, .5);
  border-radius: 14px;
}

.pixel-fishing-card .mini-game-head h3 {
  font-family: "Pixelify Sans", var(--font-head);
  color: #243747;
  text-transform: none;
  letter-spacing: .01em;
}

.pixel-fishing-card .mini-game-head p {
  color: #33495c;
}

.pixel-fishing-stage {
  position: relative;
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 2px solid #6f97b3;
  background: linear-gradient(180deg, #f7fcff 0%, #e8f4fb 100%);
  touch-action: none;
}

.pixel-fishing-stage::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(18, 62, 93, .06) 0%, rgba(18, 62, 93, 0) 44%);
}

.pixel-fight-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 92px;
  padding: 8px;
  border: 2px solid #2f4c63;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(247, 252, 255, .96) 0%, rgba(231, 245, 255, .96) 100%);
  box-shadow: 0 4px 10px rgba(24, 49, 69, .24);
  z-index: 2;
}

.pixel-fight-panel[hidden] {
  display: none;
}

.pixel-fight-panel.is-visible {
  display: grid;
  gap: 8px;
}

.pixel-fight-title {
  margin: 0;
  font-family: "Pixelify Sans", var(--font-head);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #27445b;
}

.pixel-fight-meter {
  position: relative;
  width: 30px;
  height: 162px;
  margin-inline: auto;
  border: 2px solid #32566f;
  border-radius: 10px;
  background: linear-gradient(180deg, #d4ecff 0%, #b5dbfb 100%);
  overflow: hidden;
}

.pixel-fight-catchbar {
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 0%;
  height: 0%;
  border-radius: 8px;
  background: linear-gradient(180deg, #84e892 0%, #4ab861 100%);
  box-shadow: 0 0 0 1px rgba(34, 116, 58, .34) inset;
}

.pixel-fight-fish {
  position: absolute;
  left: 50%;
  bottom: 0%;
  width: 14px;
  height: 9px;
  transform: translate(-50%, 50%);
  background: #2d8cc9;
  border: 1px solid #155981;
  border-radius: 8px 6px 6px 8px;
}

.pixel-fight-fish::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 2px;
  width: 4px;
  height: 4px;
  background: #2d8cc9;
  border-top: 1px solid #155981;
  border-right: 1px solid #155981;
  transform: rotate(45deg);
}

.pixel-fight-progress {
  height: 9px;
  border-radius: 999px;
  border: 1px solid #8fb3ca;
  background: rgba(245, 252, 255, .95);
  overflow: hidden;
}

.pixel-fight-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #84e892 0%, #4ab861 100%);
  transition: width .12s linear;
}

.pixel-catch-reveal {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-width: 174px;
  max-width: 220px;
  padding: 10px 10px 12px;
  border: 2px solid #2f4c63;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 40, 58, .95) 0%, rgba(24, 63, 88, .95) 100%);
  color: #e9f7ff;
  box-shadow: 0 8px 18px rgba(9, 27, 41, .38);
  z-index: 3;
  transform: translateY(10px) scale(.96);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.pixel-catch-reveal.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pixel-catch-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, .14);
  color: #d8edf9;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.pixel-catch-sprite {
  display: block;
  width: min(96px, 100%);
  height: auto;
  margin: 2px auto 6px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.pixel-catch-name {
  margin: 0;
  font-family: "Pixelify Sans", var(--font-head);
  font-size: 1.04rem;
  letter-spacing: .02em;
}

.pixel-catch-stars {
  margin: 2px 0 0;
  color: #ffd272;
  font-family: "Pixelify Sans", var(--font-head);
  font-size: .86rem;
  letter-spacing: .08em;
}

.pixel-catch-meta {
  margin: 4px 0 0;
  font-size: .76rem;
  color: #9dd4f2;
  font-weight: 700;
}

.pixel-fishing-canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 192;
  border: 3px solid #2f4c63;
  border-radius: 10px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  background: #7fb0d2;
  box-shadow: 0 3px 0 rgba(47, 76, 99, .32);
  touch-action: none;
}

.pixel-fishing-meters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.pixel-meter {
  display: grid;
  gap: 4px;
}

.pixel-meter-label {
  font-family: "Pixelify Sans", var(--font-head);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #325873;
}

.pixel-meter-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid #8fb3ca;
  background: rgba(245, 252, 255, .95);
  overflow: hidden;
}

.pixel-meter-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7ac6f4 0%, #4f9ed8 100%);
  transition: width .12s linear, background .18s linear;
}

.pixel-fishing-help {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pixel-fishing-help span {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #95b8ce;
  background: #f5fbff;
  color: #3a5a71;
  font-size: .75rem;
  font-weight: 700;
}

.pixel-fishing-status {
  min-height: 46px;
  margin-top: 10px;
  color: #2f4559;
  font-weight: 600;
}

.pixel-fishing-last {
  margin-top: 10px;
  margin-bottom: 0;
  color: #325873;
  font-weight: 600;
}

.pixel-fishing-log {
  margin: 6px 0 0;
  color: #42657f;
  font-size: .86rem;
  font-weight: 600;
}

.pixel-touch-hud {
  display: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  gap: 8px;
  pointer-events: none;
}

.pixel-touch-btn {
  pointer-events: auto;
  min-width: 96px;
  min-height: 44px;
  border-radius: 10px;
  border: 2px solid #25577c;
  font-family: "Pixelify Sans", var(--font-head);
  font-size: .94rem;
  letter-spacing: .02em;
}

.pixel-touch-cast {
  background: linear-gradient(180deg, #fcce82 0%, #ed9f45 100%);
  border-color: #a76920;
  color: #fffef8;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .24);
}

.pixel-touch-hook {
  background: linear-gradient(180deg, #f8fdff 0%, #dceef9 100%);
  color: #1d5a82;
}

.pixel-touch-btn:disabled {
  opacity: .7;
}

.pixel-joystick {
  display: none;
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  border: 2px solid rgba(44, 90, 122, .72);
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,.26), rgba(45,98,136,.44) 70%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.2), 0 6px 18px rgba(21, 52, 76, .25);
  z-index: 4;
  touch-action: none;
}

.pixel-joystick-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(24, 61, 86, .8);
  background: linear-gradient(180deg, #fafdff 0%, #bfdef2 100%);
  box-shadow: 0 4px 10px rgba(20, 53, 75, .3);
  transform: translate(-50%, -50%);
  transition: transform .06s linear;
}

.pixel-fishing-card .mini-game-actions {
  align-items: stretch;
  gap: 10px;
}

.pixel-fishing-card .mini-game-actions .btn-secondary {
  border: 2px solid #4f7b99;
  border-radius: 11px;
  background: linear-gradient(180deg, #fefefe 0%, #e8f3fb 100%);
  color: #2d5b79;
  box-shadow: 0 3px 0 rgba(60, 101, 128, .22);
}

.pixel-fishing-card .mini-game-actions .btn-primary {
  border: 2px solid #a46620;
  border-radius: 11px;
  background: linear-gradient(180deg, #f6bc66 0%, #ec9a35 100%);
  color: #fffef9;
  box-shadow: 0 3px 0 #b27125;
  text-shadow: 0 1px 0 rgba(0,0,0,.24);
}

.pixel-fishing-card .mini-game-actions .btn-secondary:active,
.pixel-fishing-card .mini-game-actions .btn-primary:active,
.pixel-pad-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(31, 58, 78, .2);
}

.pixel-fishing-pad {
  display: none;
  grid-template-columns: repeat(3, 44px);
  grid-template-rows: repeat(3, 44px);
  gap: 8px;
  justify-content: start;
  margin-top: 12px;
  touch-action: none;
}

.pixel-pad-btn {
  border: 2px solid #3c6785;
  border-radius: 10px;
  background: linear-gradient(180deg, #fdfefe 0%, #e5f2fb 100%);
  color: #2e5f80;
  font-family: "Pixelify Sans", var(--font-head);
  font-size: 1.1rem;
  box-shadow: 0 3px 0 rgba(60, 103, 133, .26);
  touch-action: none;
  user-select: none;
}

.pixel-pad-up { grid-column: 2; grid-row: 1; }
.pixel-pad-left { grid-column: 1; grid-row: 2; }
.pixel-pad-right { grid-column: 3; grid-row: 2; }
.pixel-pad-down { grid-column: 2; grid-row: 3; }

.pixel-fishing-card .mini-game-score-inline span {
  border: 2px solid #a6c4d8;
  background: linear-gradient(180deg, #ffffff 0%, #edf6fc 100%);
}

.pixel-fishing-card .mini-game-score-inline strong {
  font-family: "Pixelify Sans", var(--font-head);
  color: #27455d;
}

@media (hover: none), (pointer: coarse) {
  .pixel-fishing-card .mini-game-actions {
    display: none;
  }

  .pixel-fishing-card .mini-game-actions .btn-secondary,
  .pixel-fishing-card .mini-game-actions .btn-primary {
    min-height: 54px;
    font-size: 1.03rem;
  }

  .pixel-touch-hud,
  .pixel-joystick {
    display: flex;
  }

  .pixel-joystick {
    display: block;
  }
}

@media (max-width: 768px) {
  .pixel-fishing-card {
    border-width: 2px;
    border-radius: 14px;
  }
  .pixel-fishing-stage {
    padding: 10px;
  }
  .pixel-fishing-help span {
    font-size: .7rem;
  }

  .pixel-fishing-meters {
    grid-template-columns: 1fr;
  }

  .pixel-fishing-last {
    font-size: .9rem;
  }

  .pixel-fishing-log {
    font-size: .82rem;
  }

  .pixel-fight-panel {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .pixel-fight-panel.is-visible {
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
  }

  .pixel-fight-title {
    grid-column: 1 / -1;
  }

  .pixel-fight-meter {
    height: 112px;
  }

  .pixel-catch-reveal {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .pixel-touch-hud {
    right: 8px;
    bottom: 8px;
    gap: 6px;
  }

  .pixel-touch-btn {
    min-width: 88px;
    min-height: 42px;
    font-size: .88rem;
  }

  .pixel-joystick {
    left: 8px;
    bottom: 8px;
    width: 96px;
    height: 96px;
  }

  .pixel-joystick-knob {
    width: 40px;
    height: 40px;
  }

  .product-fit-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .library-intro-grid,
  .learning-grid,
  .static-highlight-grid,
  .static-links-grid,
  .page-network-grid,
  .signal-grid,
  .library-pillars {
    grid-template-columns: 1fr;
  }

  .editorial-main,
  .editorial-side,
  .library-intro-panel,
  .learning-card,
  .page-network,
  .static-highlight-card,
  .static-link-card {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════
   Premium Editorial Visual Phase · 2026-06-09
   ═══════════════════════════════════════════════════ */
:root {
  --r-xl: 24px;
  --shadow-soft: 0 18px 50px rgba(10, 31, 61, .12);
  --shadow-premium: 0 30px 70px rgba(7, 24, 42, .20);
}

body {
  background:
    radial-gradient(circle at top left, rgba(126, 217, 240, .16), transparent 28%),
    linear-gradient(180deg, #edf3f8 0%, #f7fafc 18%, #edf3f8 100%);
  color: #132031;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.34), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(6,147,227,.08), transparent 22%);
  z-index: -1;
}

.site-header {
  background: rgba(250, 252, 255, .84);
  border-bottom: 1px solid rgba(6,147,227,.12);
  box-shadow: 0 8px 30px rgba(12, 25, 43, .07);
  backdrop-filter: blur(18px) saturate(145%);
}

.header-inner {
  min-height: 76px;
  gap: 28px;
}

.logo {
  gap: 12px;
}

.logo-img {
  filter: drop-shadow(0 10px 18px rgba(6,147,227,.16));
}

.logo-text {
  font-size: 1.62rem;
  letter-spacing: -.03em;
}

.main-nav {
  gap: 8px;
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .86rem;
  letter-spacing: .1em;
  color: #3f5166;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.main-nav a:hover {
  color: #0b3157;
  background: rgba(255,255,255,.8);
  box-shadow: inset 0 0 0 1px rgba(6,147,227,.12), 0 10px 18px rgba(11,49,87,.06);
  transform: translateY(-1px);
}

.main-nav a[aria-current="page"] {
  color: #07345d;
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(232,245,255,.92) 100%);
  box-shadow: inset 0 0 0 1px rgba(6,147,227,.18), 0 12px 22px rgba(6,147,227,.12);
}

.nav-guides,
.nav-tool,
.nav-products {
  backdrop-filter: blur(12px);
}

.btn-primary,
.btn-secondary {
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 24px;
  box-shadow: 0 12px 24px rgba(8, 54, 91, .12);
}

.btn-primary {
  background: linear-gradient(135deg, #0689d4 0%, #0a9ae9 54%, #39bdf4 100%);
  border: 1px solid rgba(255,255,255,.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(6,147,227,.28);
}

.btn-secondary {
  border-color: rgba(6,147,227,.26);
  background: rgba(255,255,255,.76);
}

.btn-secondary:hover {
  box-shadow: 0 18px 34px rgba(6,147,227,.16);
}

.site-hero.home-hero {
  min-height: 720px;
  background:
    linear-gradient(118deg, rgba(3,25,46,.88) 0%, rgba(5,58,96,.62) 34%, rgba(4,123,191,.48) 100%);
}

.home-hero::before {
  background:
    linear-gradient(102deg, rgba(4,14,29,.76) 0%, rgba(4,14,29,.34) 34%, rgba(5,83,130,.18) 100%),
    radial-gradient(circle at 78% 34%, rgba(126,217,240,.24), transparent 18%),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.12), transparent 16%),
    url("/assets/img/hero/hero-bg-main.webp");
  background-size: auto, auto, auto, cover;
  background-position: center;
  filter: saturate(.92) contrast(1.05);
}

.home-hero::after {
  height: 92px;
  background:
    linear-gradient(180deg, rgba(240,244,248,0) 0%, rgba(240,244,248,.88) 45%, var(--c-bg) 100%);
  clip-path: ellipse(58% 100% at 50% 100%);
}

.home-hero .hero-split {
  position: relative;
  padding: 104px 0 132px;
  gap: 42px;
  align-items: center;
}

.home-hero .hero-split::before {
  content: "";
  position: absolute;
  inset: 40px 0 56px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  pointer-events: none;
}

.home-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8, 32, 53, .32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-eyebrow.hero-eyebrow-light {
  background: rgba(255,255,255,.12);
}

.home-hero .hero-copy h1 {
  max-width: 8ch;
  font-size: clamp(4.2rem, 9vw, 7rem);
  letter-spacing: -.05em;
  line-height: .86;
  text-shadow: 0 16px 50px rgba(3, 12, 22, .38);
  margin-bottom: 26px;
}

.home-hero .hero-copy h1 em {
  background: linear-gradient(180deg, #bdf4ff 0%, #6ccff2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 58ch;
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(244,250,255,.88);
}

.hero-compass {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}

.hero-compass span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(245,250,255,.88);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-proof {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-proof-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.07) 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 34px rgba(3, 12, 22, .16);
  backdrop-filter: blur(16px);
}

.hero-proof-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.09) 100%);
}

.hero-proof-icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 18px;
  color: #dff8ff;
  background: linear-gradient(180deg, rgba(255,255,255,.17) 0%, rgba(255,255,255,.05) 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-proof-card > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-proof-card strong {
  font-size: 1.14rem;
  letter-spacing: -.02em;
}

.hero-proof-card span span,
.hero-proof-card > span > span {
  color: rgba(232,243,250,.74);
  font-size: .9rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(244,250,255,.94) 100%);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: var(--shadow-premium);
  padding: 34px 30px 30px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  background:
    radial-gradient(circle at 22% 20%, rgba(6,147,227,.20), transparent 26%),
    linear-gradient(180deg, rgba(6,147,227,.09), rgba(6,147,227,0));
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.info-card-kicker {
  letter-spacing: .16em;
}

.hero-card h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: .92;
  margin-bottom: 16px;
}

.mini-checklist {
  gap: 14px;
}

.mini-checklist li {
  gap: 12px;
  align-items: flex-start;
}

.mini-checklist li::before {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.9) 0 28%, transparent 29%),
    linear-gradient(135deg, #0a91dd 0%, #58c3ef 100%);
  box-shadow: 0 10px 20px rgba(6,147,227,.18);
  color: transparent;
  margin-top: 1px;
}

.stack-actions {
  gap: 12px;
}

.stack-actions .text-link {
  font-weight: 700;
  letter-spacing: -.01em;
}

.cat-hero.library-hero {
  background:
    linear-gradient(120deg, rgba(3,25,46,.92) 0%, rgba(5,53,88,.84) 38%, rgba(7,111,170,.76) 100%),
    radial-gradient(circle at 78% 28%, rgba(126,217,240,.18), transparent 18%);
  padding: 68px 24px 82px;
}

.cat-hero.library-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='32' viewBox='0 0 160 32'%3E%3Cpath d='M0 16C12 11 20 11 32 16C44 21 52 21 64 16C76 11 84 11 96 16C108 21 116 21 128 16C140 11 148 11 160 16' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.2'/%3E%3C/svg%3E");
  opacity: .9;
}

.hero-inner-library {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  padding: 0 24px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 34px;
  align-items: start;
  text-align: left;
}

.library-hero-copy .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.library-hero-copy h1 {
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
  line-height: .9;
  margin-bottom: 18px;
  color: #fff;
}

.library-hero-copy .cat-desc {
  margin: 0;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.85;
}

.library-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.library-hero-metrics span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(244,249,255,.88);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.library-hero-panel {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248,252,255,.96) 0%, rgba(238,247,252,.92) 100%);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: var(--shadow-premium);
}

.library-hero-panel h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.static-page-premium {
  padding-top: 28px;
}

.static-page-premium .breadcrumb {
  margin-bottom: 18px;
  color: rgba(20, 39, 60, .74);
}

.static-page-premium .breadcrumb a:hover {
  color: var(--c-primary-d);
}

.static-page-premium .static-header {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin-bottom: 34px;
  padding: 42px 38px 34px;
  border-radius: 32px;
  background:
    linear-gradient(128deg, rgba(4,28,50,.95) 0%, rgba(7,67,111,.90) 46%, rgba(10,147,214,.78) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-premium);
}

.static-page-premium .static-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    radial-gradient(circle at 86% 16%, rgba(126,217,240,.22), transparent 18%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='28' viewBox='0 0 180 28'%3E%3Cpath d='M0 14C15 8 30 8 45 14C60 20 75 20 90 14C105 8 120 8 135 14C150 20 165 20 180 14' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1.2'/%3E%3C/svg%3E");
  pointer-events: none;
}

.static-page-premium .static-header > * {
  position: relative;
  z-index: 1;
}

.static-page-premium .section-kicker,
.static-page-premium .static-intro,
.static-page-premium .article-meta,
.static-page-premium .static-header h1 {
  color: #f5fbff;
}

.static-page-premium .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.static-page-premium .static-header h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: .9;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.static-page-premium .static-intro {
  max-width: 66ch;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245,251,255,.84);
}

.static-page-premium .article-meta {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(245,251,255,.78);
}

.hub-page-spinning .static-header::after,
.hub-page-shop .static-header::after,
.trust-page-about .static-header::after,
.trust-page-team .static-header::after,
.trust-page-method .static-header::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 24px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.16), rgba(255,255,255,0) 62%);
  border: 1px solid rgba(255,255,255,.08);
  opacity: .8;
}

.hub-page-spinning .static-header {
  background:
    linear-gradient(128deg, rgba(4,28,50,.95) 0%, rgba(4,68,104,.92) 44%, rgba(8,133,190,.76) 100%);
}

.hub-page-shop .static-header {
  background:
    linear-gradient(128deg, rgba(8,27,45,.96) 0%, rgba(16,59,82,.90) 45%, rgba(9,127,163,.74) 100%);
}

.trust-page-about .static-header,
.trust-page-team .static-header,
.trust-page-method .static-header {
  background:
    linear-gradient(128deg, rgba(11,29,49,.96) 0%, rgba(18,64,92,.92) 48%, rgba(18,114,153,.74) 100%);
}

.editorial-callout {
  padding: 24px 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(240,248,252,.96) 100%);
  border: 1px solid rgba(6,147,227,.12);
  box-shadow: var(--shadow-soft);
}

.static-highlight-card,
.static-link-card,
.path-card,
.resource-card,
.season-card,
.trust-card,
.signal-card,
.page-network-card,
.library-pillar,
.library-route a,
.page-network,
.library-intro-panel,
.planner-promo,
.category-intro-main,
.editorial-side,
.editorial-main,
.guide-card,
.guide-card-full,
.info-card {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.guide-card,
.guide-card-full {
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(250,252,255,.98) 100%);
  border: 1px solid rgba(6,147,227,.10);
}

.guide-card:hover,
.guide-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.guide-card-media {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.guide-card-media img,
.info-card-media img,
.shop-hero-visual img {
  transition: transform .35s ease, filter .35s ease;
}

.guide-card:hover .guide-card-media img,
.guide-card-full:hover .guide-card-media img,
.info-card:hover .info-card-media img {
  transform: scale(1.05);
  filter: saturate(1.03) contrast(1.03);
}

.guide-card-body {
  padding: 22px 22px 24px;
}

.guide-badge {
  letter-spacing: .1em;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

.guide-card-title,
.path-card h3,
.resource-card h3,
.trust-card h3,
.season-card h3 {
  letter-spacing: -.03em;
}

.path-card,
.resource-card,
.season-card,
.trust-card,
.static-highlight-card,
.static-link-card,
.signal-card,
.library-pillar,
.page-network-card,
.library-route a {
  background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(246,250,252,.98) 100%);
  border: 1px solid rgba(6,147,227,.10);
}

.path-card:hover,
.resource-card:hover,
.season-card:hover,
.trust-card:hover,
.static-link-card:hover,
.signal-card:hover,
.page-network-card:hover,
.library-route a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.section-title {
  letter-spacing: -.04em;
}

.section-subtitle,
.static-link-card span,
.static-highlight-card p,
.signal-card span,
.page-network-card span,
.library-pillar span,
.library-route a span {
  color: #4b5d72;
}

.page-network,
.library-intro-panel,
.editorial-main,
.editorial-side,
.category-intro-main,
.planner-promo {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(246,250,252,.98) 100%);
  border: 1px solid rgba(6,147,227,.10);
}

.info-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(243,249,253,.98) 100%);
  border: 1px solid rgba(6,147,227,.10);
}

.info-card h2,
.info-card h3 {
  letter-spacing: -.03em;
}

.static-content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: .98;
  letter-spacing: -.03em;
  margin-top: 38px;
}

.static-content p,
.static-content li {
  font-size: 1rem;
  line-height: 1.88;
}

.site-footer {
  background:
    linear-gradient(180deg, #0b2139 0%, #0a1c31 100%);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner-library {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
  }

  .home-hero .hero-split {
    padding: 88px 0 110px;
  }

  .home-hero .hero-copy h1 {
    max-width: none;
    font-size: clamp(3.5rem, 11vw, 5.4rem);
  }

  .static-page-premium .static-header {
    padding: 34px 28px 28px;
  }

  .static-page-premium .static-header h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }
}

@media (max-width: 768px) {
  .site-header {
    backdrop-filter: blur(14px) saturate(120%);
  }

  .header-inner {
    min-height: 68px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero .hero-split {
    padding: 76px 0 92px;
    gap: 24px;
  }

  .home-hero .hero-split::before {
    inset: 24px 0 36px;
    border-radius: 26px;
  }

  .hero-compass {
    margin-bottom: 20px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-proof-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 82px;
    padding: 14px 16px;
  }

  .hero-proof-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .hero-card,
  .library-hero-panel,
  .static-page-premium .static-header {
    border-radius: 24px;
  }

  .home-hero .hero-card {
    display: block;
    order: 3;
    padding: 24px 20px 22px;
    margin-top: 4px;
  }

  .home-hero .hero-card h2 {
    font-size: 1.9rem;
  }

  .home-hero .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .home-hero .hero-ctas .btn-primary,
  .home-hero .hero-ctas .btn-secondary {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    text-align: center;
    padding: 13px 18px;
  }

  .home-hero .hero-ctas .btn-secondary {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.16);
    color: #f5fbff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }

  .static-page-premium .static-header {
    padding: 28px 22px 24px;
  }

  .hub-page-spinning .static-header::after,
  .hub-page-shop .static-header::after,
  .trust-page-about .static-header::after,
  .trust-page-team .static-header::after,
  .trust-page-method .static-header::after {
    width: 108px;
    height: 108px;
    right: 16px;
    bottom: 16px;
  }
}

/* ═══════════════════════════════════════════════════
   Visual System Correction · 2026-06-09 · v5
   ═══════════════════════════════════════════════════ */
:root {
  --shadow-panel: 0 18px 42px rgba(11, 35, 58, .10);
  --shadow-card-clean: 0 14px 34px rgba(11, 35, 58, .08);
  --surface-radius: 22px;
}

body {
  background:
    linear-gradient(180deg, #eef4f8 0%, #f7fafc 20%, #eef4f8 100%);
}

.site-header {
  background: rgba(249, 252, 255, .94);
  box-shadow: 0 8px 24px rgba(11, 35, 58, .05);
}

.header-inner {
  min-height: 74px;
}

.main-nav a {
  font-size: .84rem;
  letter-spacing: .08em;
}

.section-kicker,
.info-card-kicker,
.hero-panel-kicker {
  font-size: .74rem;
  letter-spacing: .12em;
}

.section-title {
  text-transform: none;
  letter-spacing: -.03em;
}

.btn-primary,
.btn-secondary {
  min-height: 50px;
  padding: 13px 22px;
  box-shadow: none;
}

.btn-primary {
  background: #1496de;
}

.btn-primary:hover {
  background: #0d83c4;
}

.btn-secondary {
  background: #fff;
  border: 1px solid rgba(6,147,227,.22);
}

.btn-secondary:hover {
  box-shadow: none;
}

.home-hero .hero-ctas .btn-secondary {
  color: #0d83c4;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.54);
}

.home-hero .hero-ctas .btn-secondary:hover {
  color: #0b6ea6;
  background: #ffffff;
}

.site-hero.home-hero {
  min-height: 660px;
  background: linear-gradient(110deg, rgba(8, 28, 46, .86) 0%, rgba(9, 53, 84, .62) 38%, rgba(9, 101, 150, .42) 100%);
}

.home-hero::before {
  background:
    linear-gradient(100deg, rgba(4,14,29,.66) 0%, rgba(4,14,29,.28) 34%, rgba(5,83,130,.14) 100%),
    url("/assets/img/hero/hero-bg-main.webp");
  background-size: auto, cover;
  background-position: center;
  filter: saturate(.92) contrast(1.02);
}

.home-hero::after {
  height: 64px;
  background: linear-gradient(180deg, rgba(238,244,248,0) 0%, rgba(238,244,248,.92) 70%, var(--c-bg) 100%);
}

.home-hero .hero-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
  gap: 34px;
  padding: 90px 0 96px;
  align-items: end;
}

.home-hero .hero-split::before {
  display: none;
}

.home-hero .hero-copy h1 {
  max-width: 7ch;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: .88;
  margin-bottom: 20px;
  text-shadow: 0 12px 30px rgba(3, 12, 22, .26);
}

.hero-lead {
  max-width: 54ch;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-compass {
  margin: 14px 0 20px;
  gap: 8px;
}

.hero-compass span,
.library-hero-metrics span,
.hero-pills span {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  font-size: .75rem;
  letter-spacing: .08em;
}

.hero-proof {
  margin-top: 20px;
  gap: 12px;
}

.hero-proof-card {
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: none;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.hero-proof-card:hover {
  transform: translateY(-2px);
}

.hero-proof-icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 16px;
}

.hero-proof-card strong {
  font-size: 1.02rem;
}

.hero-proof-card span span,
.hero-proof-card > span > span {
  font-size: .88rem;
}

.hero-card {
  align-self: center;
  padding: 28px 26px 24px;
  border-radius: 24px;
  box-shadow: var(--shadow-panel);
  background: rgba(251, 253, 255, .94);
  border: 1px solid rgba(255,255,255,.52);
}

.hero-card::before {
  height: 74px;
  background: linear-gradient(180deg, rgba(6,147,227,.06), rgba(6,147,227,0));
}

.hero-card h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  line-height: .98;
}

.mini-checklist li::before {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 3px;
  box-shadow: none;
}

.cat-hero.library-hero {
  padding: 56px 24px 60px;
  background: linear-gradient(118deg, rgba(10, 39, 64, .96) 0%, rgba(16, 78, 116, .86) 52%, rgba(24, 127, 171, .74) 100%);
}

.hero-inner-library {
  gap: 28px;
  align-items: stretch;
}

.library-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: .92;
  margin-bottom: 16px;
}

.library-hero-copy .cat-desc {
  font-size: 1rem;
  line-height: 1.72;
}

.library-hero-panel {
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow-panel);
}

.library-hero-panel h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
  text-transform: none;
}

.hero-block {
  margin-bottom: 34px;
}

.hero-block-hub {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .74fr);
  gap: 26px;
  align-items: start;
  max-width: none;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(10, 39, 64, .96) 0%, rgba(17, 79, 118, .86) 54%, rgba(25, 128, 172, .72) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-panel);
}

.static-page-premium .static-header.hero-block-editorial {
  max-width: none;
  padding: 30px 32px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%);
  border: 1px solid rgba(6,147,227,.12);
  box-shadow: var(--shadow-card-clean);
}

.hero-block-main {
  min-width: 0;
}

.hero-block-main .section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
}

.hero-block-hub .section-kicker {
  color: #f5fbff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
}

.static-page-premium .static-header.hero-block-editorial .section-kicker {
  color: var(--c-primary-d);
  background: rgba(6,147,227,.08);
  border: 1px solid rgba(6,147,227,.12);
}

.hero-block-main h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.hero-block-hub h1,
.hero-block-hub .static-intro,
.hero-block-hub .article-meta {
  color: #f5fbff;
}

.hero-block-hub .static-intro {
  max-width: 60ch;
  color: rgba(245,251,255,.84);
}

.static-page-premium .static-header.hero-block-editorial h1 {
  color: #15283b;
}

.static-page-premium .static-header.hero-block-editorial .static-intro,
.static-page-premium .static-header.hero-block-editorial .article-meta {
  color: #506174;
}

.hero-block .article-meta {
  display: inline-flex;
  margin-top: 14px;
  margin-bottom: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .84rem;
}

.hero-block-hub .article-meta {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.static-page-premium .static-header.hero-block-editorial .article-meta {
  background: rgba(6,147,227,.06);
  border: 1px solid rgba(6,147,227,.10);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.09);
  color: rgba(245,251,255,.9);
}

.hero-block-side {
  padding: 22px;
  border-radius: 22px;
  background: rgba(248, 252, 255, .94);
  border: 1px solid rgba(255,255,255,.48);
  box-shadow: 0 12px 30px rgba(9, 32, 54, .10);
}

.hero-block-side h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: none;
  color: #173047;
  margin-bottom: 10px;
}

.hero-block-side p {
  color: #56687b;
  line-height: 1.72;
}

.static-page-premium {
  padding-top: 22px;
}

.static-page-premium .breadcrumb {
  margin-bottom: 14px;
}

.static-page-premium .static-header {
  box-shadow: none;
}

.hub-page-spinning .static-header::after,
.hub-page-shop .static-header::after,
.hub-page-start .static-header::after,
.trust-page-about .static-header::after,
.trust-page-team .static-header::after,
.trust-page-method .static-header::after,
.trust-page-contact .static-header::after,
.trust-page-affiliation .static-header::after {
  display: none;
}

.static-layout {
  gap: 28px;
}

.static-content > .editorial-callout:first-child {
  margin-top: 2px;
}

.editorial-callout,
.static-highlight-card,
.static-link-card,
.page-network,
.page-network-card,
.library-intro-panel,
.library-hero-panel,
.editorial-main,
.editorial-side,
.category-intro-main,
.planner-promo,
.info-card,
.guide-card,
.guide-card-full,
.path-card,
.signal-card,
.library-pillar,
.library-route a {
  border-radius: 20px;
  box-shadow: var(--shadow-card-clean);
}

.editorial-callout,
.static-highlight-card,
.static-link-card,
.page-network,
.page-network-card,
.library-intro-panel,
.editorial-main,
.editorial-side,
.category-intro-main,
.planner-promo,
.info-card,
.guide-card,
.guide-card-full,
.path-card,
.signal-card,
.library-pillar,
.library-route a {
  border-color: rgba(6,147,227,.10);
}

.editorial-band,
.quick-path,
.featured-guides,
.trust-band {
  position: relative;
  z-index: 1;
}

.static-highlight-card strong,
.static-link-card strong,
.page-network-card strong,
.signal-card strong,
.library-pillar strong {
  text-transform: none;
  letter-spacing: -.01em;
}

.info-card h2,
.info-card h3,
.static-content h2 {
  text-transform: none;
  letter-spacing: -.02em;
}

.static-content h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  line-height: 1.08;
  margin-top: 34px;
}

.static-content p,
.static-content li,
.editorial-main p,
.editorial-side p,
.page-network p,
.library-intro-panel p {
  line-height: 1.78;
}

.guide-card-body {
  padding: 20px;
}

.guide-card-desc {
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .home-hero .hero-split,
  .hero-block-hub {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-block-side {
    max-width: 720px;
  }

  .static-layout {
    grid-template-columns: 1fr;
  }

  .static-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .home-hero .hero-split {
    padding: 72px 0 80px;
    gap: 18px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
    max-width: none;
  }

  .hero-compass {
    margin: 12px 0 16px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-proof-card {
    min-height: 76px;
    padding: 12px 14px;
  }

  .home-hero .hero-card {
    padding: 20px 18px;
  }

  .hero-block-hub,
  .hero-block-editorial,
  .cat-hero.library-hero {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .hero-block-main h1,
  .library-hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
    line-height: .96;
  }

  .hero-block-side h2,
  .library-hero-panel h2 {
    font-size: 1.48rem;
  }

  .hero-block-side,
  .library-hero-panel {
    padding: 18px;
  }

  .hero-pills,
  .library-hero-metrics {
    gap: 8px;
  }

  .hero-proof-card strong,
  .hero-proof-card span span,
  .hero-proof-card > span > span {
    overflow-wrap: anywhere;
  }
}

/* ═══════════════════════════════════════════════════
   Responsive Correction · 2026-06-09 · v6
   ═══════════════════════════════════════════════════ */
html,
body {
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

.page-main,
.container,
.hero-split,
.hero-inner-library,
.hero-block-hub,
.library-intro-grid,
.static-layout,
.editorial-grid,
.footer-cols,
.guide-grid,
.guide-grid-full,
.path-grid,
.trust-grid,
.static-highlight-grid,
.static-links-grid {
  min-width: 0;
}

.hero-split > *,
.hero-inner-library > *,
.hero-block-hub > *,
.library-intro-grid > *,
.static-layout > *,
.editorial-grid > *,
.footer-cols > *,
.guide-grid > *,
.guide-grid-full > *,
.path-grid > *,
.trust-grid > *,
.static-highlight-grid > *,
.static-links-grid > * {
  min-width: 0;
}

.main-nav a,
.btn-primary,
.btn-secondary,
.hero-compass span,
.library-hero-metrics span,
.hero-pills span {
  overflow-wrap: anywhere;
}

.mini-checklist li {
  padding-left: 30px;
}

.mini-checklist li::before {
  top: .16em;
  margin-top: 0;
}

.static-content h2 {
  font-size: clamp(1.62rem, 2vw, 2rem);
  line-height: 1.14;
}

.static-content p,
.static-content li {
  line-height: 1.8;
}

.static-links-grid,
.static-highlight-grid {
  gap: 18px;
  margin-top: 24px;
}

.cookie-banner {
  width: min(420px, calc(100vw - 28px));
  right: 14px;
  bottom: 14px;
}

.cookie-banner-inner {
  padding: 14px 14px 12px;
}

.cookie-banner-text,
.cookie-banner-details p {
  font-size: .82rem;
  line-height: 1.42;
}

.cookie-banner-actions {
  gap: 8px;
}

.cookie-btn {
  min-height: 40px;
  font-size: .74rem;
  letter-spacing: .04em;
}

.cookie-btn-ghost {
  min-width: 96px;
}

@media (max-width: 980px) {
  .nav-toggle {
    gap: 8px;
    padding-inline: 12px 14px;
  }

  .nav-toggle::after {
    content: "Menú";
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .main-nav.open {
    top: 78px;
    left: 12px;
    right: 12px;
    padding: 10px;
    border-radius: 18px;
  }

  .main-nav.open a {
    padding: 12px 14px;
    font-size: .98rem;
    line-height: 1.25;
  }

  .site-hero.home-hero {
    min-height: auto;
  }

  .home-hero .hero-split {
    padding: 58px 0 54px;
    gap: 18px;
    align-items: start;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(2.8rem, 9vw, 4.2rem);
    line-height: .92;
    letter-spacing: -.04em;
    max-width: 8ch;
  }

  .hero-lead {
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero-card {
    padding: 22px 20px 20px;
  }

  .hero-card h2 {
    font-size: 1.68rem;
    line-height: 1.04;
  }

  .hero-compass span,
  .library-hero-metrics span,
  .hero-pills span {
    font-size: .72rem;
    letter-spacing: .05em;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-card {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 74px;
    padding: 12px;
  }

  .hero-proof-icon {
    width: 44px;
    height: 44px;
    padding: 9px;
  }

  .hero-proof-card strong {
    font-size: .95rem;
  }

  .hero-proof-card span span,
  .hero-proof-card > span > span {
    font-size: .81rem;
    line-height: 1.35;
  }

  .cat-hero.library-hero,
  .hero-block-hub {
    padding: 24px 20px 26px;
  }

  .hero-inner-library,
  .hero-block-hub {
    gap: 18px;
  }

  .library-hero-copy h1,
  .hero-block-main h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: .98;
    letter-spacing: -.03em;
    text-wrap: pretty;
  }

  .library-hero-copy .cat-desc,
  .hero-block-hub .static-intro {
    font-size: .98rem;
    line-height: 1.66;
    max-width: none;
  }

  .library-hero-panel,
  .hero-block-side {
    padding: 18px;
  }

  .library-hero-panel h2,
  .hero-block-side h2 {
    font-size: 1.42rem;
    line-height: 1.08;
  }

  .static-page-premium .static-header.hero-block-editorial {
    padding: 24px 22px;
  }

  .static-page-premium .static-header.hero-block-editorial h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1;
  }

  .static-page-premium .static-header.hero-block-editorial .static-intro {
    font-size: .98rem;
    line-height: 1.66;
    max-width: 58ch;
  }
}

@media (max-width: 560px) {
  html,
  body {
    overflow-x: clip;
  }

  .header-inner,
  .container,
  .static-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    min-height: 60px;
    height: auto;
  }

  .logo-text {
    font-size: 1.18rem;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 40px;
    padding-inline: 10px 12px;
    border-radius: 12px;
  }

  .nav-toggle::after {
    font-size: .78rem;
    letter-spacing: .05em;
  }

  .main-nav.open {
    top: 68px;
    left: 10px;
    right: 10px;
    max-height: calc(100dvh - 84px);
    padding: 8px;
    border-radius: 16px;
  }

  .main-nav.open a {
    padding: 11px 12px;
    font-size: .94rem;
  }

  .site-hero.home-hero {
    min-height: auto;
  }

  .home-hero::after {
    height: 34px;
  }

  .home-hero .hero-split {
    width: 100%;
    padding: 18px 0 26px;
    gap: 14px;
  }

  .home-hero .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 2.85rem);
    line-height: .98;
    letter-spacing: -.03em;
    margin-bottom: 12px;
  }

  .home-hero .hero-lead {
    font-size: .94rem;
    line-height: 1.58;
    margin-bottom: 12px;
  }

  .hero-compass {
    gap: 7px;
    margin: 10px 0 14px;
  }

  .hero-compass span,
  .library-hero-metrics span,
  .hero-pills span {
    padding: 7px 10px;
    font-size: .68rem;
    letter-spacing: .04em;
  }

  .home-hero .hero-ctas {
    gap: 8px;
  }

  .home-hero .hero-ctas .btn-primary,
  .home-hero .hero-ctas .btn-secondary {
    min-height: 46px;
    padding: 11px 14px;
    font-size: .92rem;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .hero-proof-card {
    min-width: 0;
    min-height: 70px;
    padding: 10px;
    border-radius: 16px;
  }

  .hero-proof-icon {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 14px;
  }

  .hero-proof-card strong {
    font-size: .88rem;
  }

  .hero-proof-card span span,
  .hero-proof-card > span > span {
    font-size: .74rem;
  }

  .hero-card,
  .library-hero-panel,
  .hero-block-side {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-card h2,
  .library-hero-panel h2,
  .hero-block-side h2 {
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .mini-checklist {
    gap: 10px;
  }

  .mini-checklist li {
    padding-left: 28px;
    font-size: .95rem;
    line-height: 1.52;
  }

  .mini-checklist li::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
    top: .2em;
  }

  .cat-hero.library-hero,
  .hero-block-hub,
  .static-page-premium .static-header.hero-block-editorial {
    padding: 20px 16px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .hero-inner-library,
  .hero-block-hub {
    gap: 14px;
  }

  .library-hero-copy .breadcrumb {
    margin-bottom: 10px;
  }

  .library-hero-copy h1,
  .hero-block-main h1,
  .static-page-premium .static-header.hero-block-editorial h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -.025em;
    margin-bottom: 10px;
  }

  .library-hero-copy .cat-desc,
  .hero-block-hub .static-intro,
  .static-page-premium .static-header.hero-block-editorial .static-intro {
    font-size: .93rem;
    line-height: 1.58;
  }

  .hero-block .article-meta {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: .76rem;
  }

  .hero-pills,
  .library-hero-metrics {
    margin-top: 12px;
    gap: 6px;
  }

  .section-title,
  .static-content h2 {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    line-height: 1.12;
  }

  .section-subtitle,
  .static-content p,
  .static-content li,
  .editorial-main p,
  .editorial-side p,
  .page-network p,
  .library-intro-panel p {
    font-size: .95rem;
    line-height: 1.66;
  }

  .guide-card-body,
  .editorial-main,
  .editorial-side,
  .page-network,
  .library-intro-panel,
  .static-highlight-card,
  .static-link-card,
  .info-card,
  .path-card,
  .signal-card {
    padding: 16px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
  }

  .cookie-banner-inner {
    padding: 10px 10px 9px;
    border-radius: 12px;
  }

  .cookie-banner-kicker {
    display: none;
  }

  .cookie-banner-title {
    display: none;
  }

  .cookie-banner-text,
  .cookie-banner-details p {
    padding-right: 0;
    font-size: .68rem;
    line-height: 1.26;
  }

  .cookie-banner-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .cookie-btn {
    min-height: 34px;
    padding: 6px 8px;
    font-size: .68rem;
  }

  .cookie-btn-ghost {
    grid-column: 1 / -1;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-copy h1,
  .library-hero-copy h1,
  .hero-block-main h1,
  .static-page-premium .static-header.hero-block-editorial h1 {
    text-wrap: pretty;
  }
}
