/* ----------------------------------------------------------------- fonts */
/* Self-hosted variable fonts (latin + latin-ext cover Spanish accents).    */
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("fonts/jakarta-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("fonts/jakarta-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------------------------------------------------------------- tokens */
:root {
  /* brand red ramp */
  --brand-50:  #fff2ef;
  --brand-100: #ffe3dd;
  --brand-200: #ffc8bd;
  --brand-300: #ffa292;
  --brand-400: #f7725f;
  --brand-500: #db4437;
  --brand-600: #c53929;
  --brand-700: #a52d20;
  --brand-800: #7f2219;
  --brand-900: #5c1812;

  /* warm amber accent */
  --amber-300: #ffd08a;
  --amber-400: #f4a13c;
  --amber-500: #e8862a;

  /* warm neutrals */
  --bg: #fdf8f7;
  --bg-2: #fbefec;
  --surface: #ffffff;
  --surface-2: #fff8f6;
  --border: #f1e1dd;
  --border-strong: #e6d0cb;
  --text: #2a201e;
  --text-2: #544945;
  --muted: #7c716e;
  --muted-2: #a29895;

  /* semantic */
  --green: #1e8e3e;
  --green-soft: #eaf7ee;
  --up: #c53929;
  --up-soft: #fdece9;
  --down: #1e8e3e;
  --info: #1a73e8;
  --gold: #b7791f;

  /* shape + depth */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-xs: 0 1px 2px rgba(92, 24, 18, 0.05);
  --shadow-sm: 0 1px 2px rgba(92, 24, 18, 0.05), 0 6px 16px -10px rgba(92, 24, 18, 0.20);
  --shadow-md: 0 2px 6px rgba(92, 24, 18, 0.05), 0 16px 34px -20px rgba(92, 24, 18, 0.28);
  --shadow-lg: 0 4px 12px rgba(92, 24, 18, 0.06), 0 30px 64px -34px rgba(92, 24, 18, 0.38);
  --shadow-brand: 0 18px 44px -20px rgba(197, 57, 41, 0.65);
  --ring: 0 0 0 3px rgba(219, 68, 55, 0.28);

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* type scale */
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.08rem;
  --fs-xl: clamp(1.35rem, 1.1rem + 1.1vw, 1.8rem);
  --fs-2xl: clamp(1.85rem, 1.4rem + 2vw, 2.7rem);
  --fs-3xl: clamp(2.3rem, 1.6rem + 3.2vw, 3.5rem);
}

* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  margin: 0; background: var(--bg); color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(1200px 520px at 12% -8%, rgba(219, 68, 55, 0.06), transparent 60%),
    radial-gradient(900px 460px at 96% 4%, rgba(244, 161, 60, 0.07), transparent 62%);
  background-attachment: fixed;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { color: var(--brand-700); text-decoration: none; transition: color 0.18s var(--ease); }
a:hover { color: var(--brand-500); text-decoration: underline; text-underline-offset: 2px; }
img { max-width: 100%; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------------------------------------------------------------- header */
.site-header {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: sticky; top: 0; z-index: 30;
}
.site-header::after {
  content: ""; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 161, 60, 0.65), rgba(255, 255, 255, 0.35), transparent);
}
.site-header .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 10px 18px; }
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-lockup img { width: 38px; height: 38px; display: block; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.30)); }
.site-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; color: #fff; letter-spacing: -0.015em; line-height: 1.15; }
.site-brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: rgba(255, 255, 255, 0.78); letter-spacing: 0.01em; margin-top: 1px; }
.site-brand:hover { text-decoration: none; color: #fff; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 3px; }
.site-nav a { position: relative; color: #fff; padding: 8px 13px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; }
.site-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  border-radius: 2px; background: #fff; transform: scaleX(0); transform-origin: left;
  transition: transform 0.24s var(--ease);
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.16); color: #fff; text-decoration: none; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.nav-cta {
  background: #fff;
  color: var(--brand-700); box-shadow: var(--shadow-brand); margin-left: 6px;
}
.site-nav a.nav-cta::after { display: none; }
.site-nav a.nav-cta:hover { background: #fff2ef; color: var(--brand-700); transform: translateY(-1px); }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; flex: none;
  border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 12px;
  background: rgba(255, 255, 255, 0.10); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s var(--ease);
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.22); }
.nav-toggle-box { position: relative; display: block; width: 20px; height: 14px; }
.nav-toggle-box span {
  position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: #fff; transition: transform 0.22s var(--ease), opacity 0.16s var(--ease);
}
.nav-toggle-box span:nth-child(1) { top: 0; }
.nav-toggle-box span:nth-child(2) { top: 6px; }
.nav-toggle-box span:nth-child(3) { top: 12px; }
.site-header.nav-open .nav-toggle-box span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .nav-toggle-box span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle-box span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------------- typography */
main.container { padding: 32px 20px 56px; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); }
h1 { font-size: var(--fs-2xl); margin: 0 0 8px; line-height: 1.12; letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: var(--fs-xl); margin: 0 0 14px; letter-spacing: -0.02em; font-weight: 700; }
h3 { font-size: var(--fs-lg); margin: 24px 0 8px; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1rem; margin: 22px 0 6px; font-weight: 700; }
p { margin: 0 0 12px; }
.subtitle { color: var(--muted); font-size: 0.94rem; margin: 0 0 20px; }
.lead { font-size: var(--fs-lg); color: var(--text-2); line-height: 1.6; }
.prose h3 { color: var(--brand-700); }
.prose h4 { color: var(--brand-800); }
.prose ul { margin: 0 0 14px; padding-left: 1.25em; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); font-weight: 700; }
small, .small { font-size: var(--fs-sm); color: var(--muted); }

/* section header component */
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--brand-600);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 12px;
}
.section-head { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 6px; padding-bottom: 0; border: 0; }
.section-head .subtitle { margin-bottom: 0; max-width: 72ch; }

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); color: #fff;
  background:
    radial-gradient(120% 140% at 88% 8%, rgba(244, 161, 60, 0.55) 0%, transparent 46%),
    linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 46%, var(--brand-800) 100%);
  padding: clamp(28px, 4vw, 52px);
  margin-bottom: 26px;
  box-shadow: var(--shadow-brand);
  isolation: isolate;
}
.hero .hero-bg {
  position: absolute; inset: 0; background: url("hero-bg.png") center/cover no-repeat;
  opacity: 0.22; mix-blend-mode: soft-light; pointer-events: none; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(60% 90% at 10% 100%, rgba(92, 24, 18, 0.35), transparent 70%);
}
.hero .container { position: relative; z-index: 2; padding: 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: center; }
.hero-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.hero-head img { width: 76px; height: 76px; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.32)); }
.hero h1 { font-size: var(--fs-3xl); margin: 0; color: #fff; text-shadow: 0 2px 20px rgba(92,24,18,0.35); }
.hero .lead { color: #ffe4df; margin: 6px 0 20px; max-width: 46ch; }
.hero .btn + .btn { margin-left: 8px; }
.hero .stores { margin-top: 18px; }
.hero .stores img { height: 50px; }
.stores-hero { gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.22); }
.hero-stat { min-width: 96px; }
.hero-stat .n { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.hero-stat .l { font-size: 0.74rem; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 0.05em; }

/* hero phone art */
.hero-art { position: relative; display: flex; justify-content: center; min-height: 300px; }
.hero-phone {
  position: absolute; width: 172px; border-radius: 26px; overflow: hidden;
  border: 6px solid rgba(255,255,255,0.16); background: #1b1b1b;
  box-shadow: 0 30px 60px -24px rgba(40, 8, 4, 0.7);
  transition: transform 0.4s var(--ease-out);
}
.hero-phone img { display: block; width: 100%; height: auto; }
.hero-phone.p1 { transform: rotate(-7deg) translate(-52px, 8px); z-index: 2; }
.hero-phone.p2 { transform: rotate(6deg) translate(58px, -12px); z-index: 1; }
.hero:hover .hero-phone.p1 { transform: rotate(-9deg) translate(-58px, 2px); }
.hero:hover .hero-phone.p2 { transform: rotate(8deg) translate(64px, -18px); }

/* ------------------------------------------------------------------ cards */
.section {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 28px); box-shadow: var(--shadow-sm); margin-bottom: 18px;
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease), border-color 0.28s var(--ease);
}
.section:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.section > :last-child { margin-bottom: 0; }
.section h2 { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.section-head h2 { border: 0; padding-bottom: 0; }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600)); color: #fff;
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; border: 0; cursor: pointer;
  box-shadow: var(--shadow-brand); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { background: linear-gradient(135deg, var(--brand-400), var(--brand-600)); color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 22px 48px -20px rgba(197, 57, 41, 0.75); }
.btn:active { transform: translateY(0); }
.btn.secondary { background: rgba(255,255,255,0.14); box-shadow: none; border: 1px solid rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn.secondary:hover { background: rgba(255,255,255,0.26); transform: translateY(-2px); }

/* ------------------------------------------------------------------- chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-block; padding: 8px 15px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.86rem; color: var(--brand-800); font-weight: 600;
  transition: all 0.18s var(--ease);
}
.chip:hover { background: var(--brand-50); border-color: var(--brand-200); color: var(--brand-700); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-xs); }

/* -------------------------------------------------------------------- kpis */
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 14px; }
.kpi {
  position: relative; overflow: hidden; background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 16px 15px;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.kpi::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--brand-500), var(--amber-400));
}
.kpi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kpi .label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.055em; font-weight: 700; }
.kpi .value { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; margin-top: 4px; color: var(--brand-800); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; line-height: 1.1; }
.kpi .unit { font-family: var(--font-body); font-size: 0.76rem; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.kpi .value.up, .kpi .value.down { color: inherit; }

/* ------------------------------------------------------------- stat pill */
.delta-pill {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px 9px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.delta-pill.up { background: var(--up-soft); color: var(--up); }
.delta-pill.down { background: var(--green-soft); color: var(--down); }
.delta-pill.flat { background: #f1eeed; color: var(--muted); }

/* ------------------------------------------------------------------ tables */
.table-scroll { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: 0.88rem; }
th, td { padding: 11px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
th { background: var(--surface-2); color: var(--muted); font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
tbody tr { transition: background 0.16s var(--ease); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: var(--brand-50); }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
tr.best td { background: var(--green-soft); }
tr.muted td { color: var(--muted-2); }
.up { color: var(--up); }
.down { color: var(--down); }

.badge {
  display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 24px; padding: 0 7px;
  border-radius: 8px; font-family: var(--font-display); font-size: 0.74rem; font-weight: 800;
  text-align: center; background: #f3eeec; color: var(--muted);
}
.badge.b1 { background: linear-gradient(135deg, #ffe9a8, #f4b942); color: #7a4d00; box-shadow: 0 3px 8px -3px rgba(183,121,31,0.7); }
.badge.b2 { background: linear-gradient(135deg, #f1f2f4, #cdd2da); color: #5b6472; }
.badge.b3 { background: linear-gradient(135deg, #f6d9c2, #d99a63); color: #7a3f12; }

/* inline rank bars */
.bar { background: #f0ebe9; border-radius: 999px; height: 10px; overflow: hidden; }
.bar > .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--green), #3fb862); }
.bar > .bar-fill.blue { background: linear-gradient(90deg, #1a73e8, #5aa2ff); }
.bar > .bar-fill.warm { background: linear-gradient(90deg, var(--amber-500), var(--brand-400)); }

/* --------------------------------------------------------- connector types */
.connector-cell { display: inline-flex; align-items: center; gap: 9px; }
.connector-icon { width: 20px; height: 20px; flex: none; color: var(--brand-500); }

/* ------------------------------------------------------------------ charts */
.spark { width: 100%; height: auto; display: block; overflow: visible; }
.spark-lg { max-height: 300px; }
.spark[data-points] { cursor: crosshair; }
.chart-hit { pointer-events: all; }
.chart-crosshair { stroke: var(--brand-400); stroke-width: 1; stroke-dasharray: 3 3; opacity: 0; transition: opacity 0.12s linear; pointer-events: none; }
.chart-crossdot { fill: var(--brand-500); stroke: #fff; stroke-width: 2; opacity: 0; transition: opacity 0.12s linear; pointer-events: none; }
.chart-tip {
  position: fixed; z-index: 1200; pointer-events: none; min-width: 132px;
  padding: 9px 11px; border: 1px solid var(--border-strong); border-radius: 12px;
  background: var(--surface); box-shadow: var(--shadow-md); color: var(--text);
  font-family: var(--font-body); font-size: var(--fs-xs);
}
.chart-tip-date { font-family: var(--font-display); font-weight: 700; margin-bottom: 5px; }
.chart-tip-row { display: flex; justify-content: space-between; gap: 14px; line-height: 1.5; }
.chart-tip-row .k { color: var(--muted); }
.chart-tip-row .v { font-weight: 600; font-variant-numeric: tabular-nums; }

/* -------------------------------------------------------------------- maps */
.map { position: relative; display: block; width: 100%; height: 420px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-md); background: #e9e6e1; overflow: hidden; }
.map-caption { margin: 10px 0 0; font-size: var(--fs-xs); color: var(--muted); }
.map-fallback { display: flex; align-items: center; justify-content: center; height: 100%; padding: 16px; text-align: center; font-size: var(--fs-sm); color: var(--muted); }
.map .maplibregl-canvas { outline: none; }
.map .maplibregl-ctrl-attrib { font-size: 10px; }
@media (max-width: 640px) { .map { height: 300px; } }

/* ------------------------------------------------------------ feature icons */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 14px; }
.feature {
  position: relative; text-align: center; padding: 22px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--surface-2));
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.feature img { width: 38px; height: 38px; padding: 8px; border-radius: 12px; background: var(--brand-50); box-shadow: inset 0 0 0 1px var(--brand-100); }
.feature .t { font-family: var(--font-display); font-weight: 700; margin-top: 12px; font-size: 0.94rem; }
.feature .d { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* ------------------------------------------------------------ octopus promo */
.promo {
  display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 34px); align-items: center;
  background: radial-gradient(90% 140% at 8% 12%, rgba(45,25,190,0.10), transparent 55%),
              radial-gradient(90% 140% at 96% 90%, rgba(255,72,216,0.12), transparent 55%),
              linear-gradient(180deg, var(--surface), var(--surface-2));
}
.promo-art { flex: 0 0 auto; width: clamp(150px, 26%, 220px); margin: 0 auto; }
.promo-art img { display: block; width: 100%; height: auto; filter: drop-shadow(0 18px 32px -18px rgba(45,25,190,0.55)); }
.promo-copy { flex: 1 1 260px; min-width: 220px; }
.promo-copy .eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: #2d19be; }
.promo-copy h2 { border: 0; padding-bottom: 0; margin: 6px 0 8px; }
.promo-copy p { margin: 0 0 16px; color: var(--text-2); font-size: 0.96rem; }

/* --------------------------------------------------------------- screenshots */
.shots { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(176px, 1fr); gap: 18px; overflow-x: auto; padding: 6px 4px 16px; scroll-snap-type: x mandatory; }
.shots .shot {
  scroll-snap-align: start; position: relative; border-radius: 22px; overflow: hidden;
  border: 6px solid #211b1a; background: #1b1b1b; box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease-out);
}
.shots .shot:hover { transform: translateY(-6px) scale(1.015); }
.shots .shot::after { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 42px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.28); }
.shots .shot img { display: block; width: 100%; height: auto; }

/* ------------------------------------------------------------------ stores */
.stores { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.stores a { display: inline-block; transition: transform 0.2s var(--ease); }
.stores a:hover { transform: translateY(-2px); }
.stores img { height: 46px; width: auto; display: block; }
.store-badge { filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28)); }

/* --------------------------------------------------------------------- faq */
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-2); padding: 0 16px; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.faq details[open] { background: var(--surface); border-color: var(--brand-200); box-shadow: var(--shadow-xs); }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 700; padding: 15px 0 15px 28px; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; line-height: 18px; text-align: center; border-radius: 6px; background: var(--brand-50); color: var(--brand-600); font-weight: 800; }
.faq details[open] summary::before { content: "–"; }
.faq details > p { padding-bottom: 16px; margin: 0; color: var(--text-2); }

/* ------------------------------------------------------------------- press */
.press { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.press a {
  display: block; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface-2); font-weight: 600; transition: all 0.2s var(--ease);
}
.press a:hover { background: var(--brand-50); border-color: var(--brand-200); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-xs); }

/* --------------------------------------------------------------- cta banner */
.cta-banner {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  background: radial-gradient(120% 160% at 90% 10%, rgba(244,161,60,0.5), transparent 50%), linear-gradient(135deg, var(--brand-600), var(--brand-800));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 30px); border: 0; box-shadow: var(--shadow-lg);
}
.cta-banner .text { flex: 1 1 280px; }
.cta-banner .title { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.cta-banner .sub { font-size: 0.9rem; color: #ffdcd6; }
.cta-banner .btn { background: #fff; color: var(--brand-800); box-shadow: 0 14px 30px -16px rgba(0,0,0,0.5); }
.cta-banner .btn:hover { background: #fff2ef; }

/* ------------------------------------------------------------------ footer */
.site-footer { color: var(--muted); font-size: var(--fs-sm); border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--surface), var(--surface-2)); margin-top: 8px; }
.site-footer .container { padding: 26px 20px 36px; display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; }
.site-footer a { color: var(--brand-700); }
.site-footer .spacer { flex: 1; }

/* ---------------------------------------------------------------- ads */
.ad-slot {
  display: block; margin: 0 auto 18px; max-width: 970px; min-height: 60px;
  max-height: 100px; overflow: hidden; text-align: center;
}
.ad-slot ins { display: block; }

/* -------------------------------------------------------------- responsive */
@media (max-width: 960px) {
  .site-brand small { display: none; }
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  html.js .nav-toggle { display: inline-flex; }
  html.js .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 42px -22px rgba(92, 24, 18, 0.65);
    padding: 10px 14px 14px;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  html.js .site-header.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 12px 14px; border-radius: 12px; font-size: 0.98rem; }
  .site-nav a::after { display: none; }
  .site-nav a.nav-cta { margin: 8px 0 0; padding: 13px 14px; text-align: center; justify-content: center; }
}
@media (max-width: 640px) {
  h1 { font-size: 1.55rem; }
  main.container { padding: 20px 12px 44px; }
  .container { padding: 0 12px; }
  .hero { padding: 26px 20px; border-radius: var(--radius-lg); }
  .hero h1 { font-size: 2rem; }
  .hero-head img { width: 58px; height: 58px; }
  .hero .stores img { height: 44px; }
  .site-header .container { padding: 10px 12px; }
  .kpis { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
  .section { border-radius: var(--radius); padding: 16px; }
  .section-map { padding-left: 0; padding-right: 0; }
  .section-map > .section-head,
  .section-map > .map-caption { padding-left: 16px; padding-right: 16px; }
  .section-map > .map { height: 340px; }
  .promo-art { width: 160px; }
}

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