/* ScoreBox marketing site — shares the companion app's dark/accent palette. */
:root {
  --bg: #07090d; --bg-2: #0b0e14; --card: #141925; --card-2: #1a2030;
  --line: #242c3b; --line-2: #2f3a4d;
  --text: #eaf0fb; --muted: #97a1b5; --faint: #5c6680;
  --accent: #f5c518; --accent-deep: #e0a800; --accent-ink: #1a1500;
  --warn: #ffd23f; --danger: #ef5a6b;
  --radius: 18px; --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --maxw: 1080px;
  --glow: 0 0 18px rgba(245,197,24,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background:
    radial-gradient(1100px 520px at 78% -160px, rgba(245,197,24,.13), transparent 62%),
    radial-gradient(900px 600px at 5% 10%, rgba(58,90,200,.10), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ----------------------------- buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; border: 0; cursor: pointer;
  font: inherit; font-weight: 750; font-size: 15px; text-decoration: none;
  color: var(--accent-ink);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 8px 22px rgba(245,197,24,.30); transition: transform .12s, box-shadow .12s, filter .12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(245,197,24,.42); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: default; transform: none; box-shadow: none; filter: grayscale(.3); }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-sm { padding: 8px 15px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2); box-shadow: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }

/* ------------------------------- nav ------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 18px;
  padding: 14px max(20px, calc((100% - var(--maxw)) / 2));
  background: rgba(7,9,13,.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text);
}
/* LED dot-matrix wordmark logo (built in app.js). */
.brand .led-logo { height: 28px; width: auto; display: block; filter: drop-shadow(0 0 2px rgba(245,197,24,.45)); }
.foot .brand .led-logo { height: 24px; }
@media (max-width: 560px) { .brand .led-logo { height: 23px; } }
.brand-dot {
  width: 26px; height: 26px; border-radius: 8px; padding: 5px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: var(--glow);
}
.brand-dot span { background: var(--accent-ink); border-radius: 2px; opacity: .85; }
.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-weight: 650; font-size: 14.5px;
  padding: 8px 13px; border-radius: 999px;
}
.nav-links a:hover { color: var(--text); background: var(--bg-2); }
.nav-links .nav-app { color: var(--accent); }
.nav .btn-sm { margin-left: 2px; }

/* ----------------------------- layout ------------------------------ */
section { padding: 0 max(20px, calc((100% - var(--maxw)) / 2)); }
.band { padding-top: 72px; padding-bottom: 72px; border-top: 1px solid var(--line); }
.band-alt { background: linear-gradient(180deg, rgba(255,255,255,.015), transparent); }
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 800; text-align: center; }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 14px auto 0; font-size: 17px; }

/* ------------------------------ hero ------------------------------- */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding-top: 64px; padding-bottom: 72px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent); background: rgba(245,197,24,.10);
  border: 1px solid rgba(245,197,24,.28); padding: 6px 13px; border-radius: 999px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); font-weight: 850; margin: 20px 0 0; }
.lede { color: var(--muted); font-size: 18px; max-width: 30em; margin: 20px 0 0; }
.lede b { color: var(--text); font-weight: 700; }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 0; margin: 26px 0 0; }
.hero-points li { color: var(--muted); font-size: 14px; position: relative; padding-left: 22px; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--accent) 38%, transparent 42%);
  box-shadow: 0 0 8px rgba(245,197,24,.6);
}
.hero-offer {
  display: inline-block; margin: 22px 0 0; padding: 11px 15px; border-radius: 12px;
  font-size: 14.5px; color: var(--text);
  background: rgba(255,210,63,.09); border: 1px solid rgba(255,210,63,.4);
}
.hero-offer b { color: var(--warn); }

/* Launch-offer note above the subscription grid. */
.offer-note {
  max-width: 760px; margin: 22px auto 0; text-align: center; padding: 14px 18px;
  border-radius: var(--radius-sm); color: var(--muted); font-size: 15px;
  background: rgba(255,210,63,.07); border: 1px solid rgba(255,210,63,.35);
}
.offer-note b { color: var(--warn); }

/* --------------------------- the device ---------------------------- */
.hero-device { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.device {
  width: 100%; max-width: 460px;
  background: linear-gradient(160deg, #2a3140, #11151e 60%);
  border: 1px solid var(--line-2); border-radius: 22px; padding: 18px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}
.device-screen {
  border-radius: 12px; padding: 12px; background: #02040a;
  border: 1px solid #000;
  box-shadow: inset 0 0 0 2px #0b0f17, inset 0 0 34px rgba(0,0,0,.9);
  overflow: hidden;
}
.panel { position: relative; aspect-ratio: 128 / 32; width: 100%; }
.panel svg { width: 100%; height: 100%; }
/* faint glass sheen + scanlines over the LEDs */
.device-screen::after {
  content: ""; position: absolute; inset: 12px; border-radius: 8px; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 22%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.18) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen; opacity: .5;
}
.device-screen { position: relative; }
.device-foot { display: flex; justify-content: center; margin-top: 14px; }
.device-foot span { width: 84px; height: 6px; border-radius: 0 0 7px 7px; background: #0c0f17; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.device-caption { color: var(--faint); font-size: 12.5px; letter-spacing: .02em; }

/* Real product photo in the hero (replaces the SVG mock when site/media/hero.* exists). */
.hero-photo {
  width: 100%; border-radius: 20px; border: 1px solid var(--line-2);
  box-shadow: var(--shadow); object-fit: cover;
}

/* ----------------------------- video ------------------------------- */
#video[hidden], #gallery[hidden] { display: none; }
.video-wrap {
  max-width: 900px; margin: 38px auto 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow); background: #000;
}
.video-wrap video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }

/* ---------------------------- gallery ------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.gallery-item {
  padding: 0; border: 1px solid var(--line); background: var(--card); cursor: pointer;
  border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* Photo-slot placeholders (shown until you drop a file into site/media/). */
.gallery-item.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; text-align: center; padding: 16px; cursor: default;
  border-style: dashed; border-color: var(--line-2);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 10px, transparent 10px 20px), var(--card);
}
.gallery-item.placeholder .ph-ic { font-size: 26px; opacity: .85; }
.gallery-item.placeholder .ph-label { font-size: 13.5px; font-weight: 650; color: var(--text); }
.ph-file { font-size: 11.5px; color: var(--faint); }
.ph-file code {
  font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 11px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; color: var(--muted);
}
/* Video placeholder (until site/media/demo.mp4 exists). */
.video-wrap.placeholder-wrap { background: var(--card); border-style: dashed; border-color: var(--line-2); }
.media-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; aspect-ratio: 16 / 9; color: var(--muted); text-align: center; padding: 20px;
}
.media-placeholder .ph-ic { font-size: 34px; opacity: .85; }
.media-placeholder .ph-label { font-size: 16px; font-weight: 650; color: var(--text); }
.addon-price.included { color: var(--accent); }

/* simple lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 50; background: rgba(2,3,6,.9);
  display: grid; place-items: center; padding: 4vmin; backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 94vw; max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-2); background: rgba(20,25,37,.8); color: var(--text);
  font-size: 24px; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { color: var(--accent); border-color: var(--accent); }

/* ---------------------------- features ----------------------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.feature h3 { font-size: 17px; margin-bottom: 7px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }
.feature-ic {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 14px;
  background: rgba(245,197,24,.10); border: 1px solid rgba(245,197,24,.25);
  position: relative;
}
.feature-ic::before, .feature-ic::after { content: ""; position: absolute; }
/* goal: ball */
.feature-ic[data-ic="goal"]::before { inset: 11px; border-radius: 50%; border: 2px solid var(--accent); box-shadow: 0 0 8px rgba(245,197,24,.5) inset; }
.feature-ic[data-ic="goal"]::after { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); left: 18px; top: 18px; }
/* card: red rectangle */
.feature-ic[data-ic="card"]::before { width: 13px; height: 18px; border-radius: 3px; background: var(--danger); left: 15px; top: 12px; transform: rotate(8deg); box-shadow: 0 0 10px rgba(239,90,107,.5); }
/* clock */
.feature-ic[data-ic="clock"]::before { inset: 11px; border-radius: 50%; border: 2px solid var(--accent); }
.feature-ic[data-ic="clock"]::after { width: 2px; height: 9px; background: var(--accent); left: 20px; top: 13px; transform-origin: bottom; transform: rotate(38deg); }
/* ticker: lines */
.feature-ic[data-ic="ticker"]::before { left: 11px; right: 11px; top: 16px; height: 2px; background: var(--accent); box-shadow: 0 6px 0 rgba(245,197,24,.5), 0 -6px 0 rgba(245,197,24,.5); }

/* ----------------------------- steps ------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.step-n {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  font-weight: 850; font-size: 18px; color: var(--accent-ink);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)); box-shadow: var(--glow); margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }
.how-note { text-align: center; color: var(--muted); margin-top: 30px; }
.how-note a, .lede a, .faqs a, .foot a { color: var(--accent); text-decoration: none; font-weight: 650; }
.how-note a:hover, .faqs a:hover { text-decoration: underline; }

/* ------------------------- buy (hardware) -------------------------- */
.buy {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: 36px; box-shadow: var(--shadow);
}
.buy-info { padding: 30px 30px 30px; }
.kicker { font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.buy-info h3 { font-size: 24px; margin: 10px 0 12px; }
.buy-info > p { color: var(--muted); margin: 0 0 18px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 26px; color: var(--text); font-size: 15px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%;
  background: rgba(245,197,24,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11L3.5 8l1-1 2 2 4.5-4.5 1 1z' fill='%23f5c518'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.buy-box { padding: 30px; background: linear-gradient(180deg, var(--card-2), var(--card)); border-left: 1px solid var(--line); }
.buy-price { display: flex; align-items: baseline; gap: 9px; }
.buy-price .big { font-size: 44px; font-weight: 860; letter-spacing: -.03em; }
.buy-per { color: var(--muted); font-size: 14px; }
.buy-box label { display: block; margin: 20px 0 7px; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.buy-box select {
  width: 100%; padding: 12px 13px; border-radius: var(--radius-sm); font: inherit; font-size: 15px;
  background: var(--bg-2); color: var(--text); border: 1px solid var(--line-2); outline: none;
}
.buy-box select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,197,24,.16); }
.buy-box .btn { margin-top: 18px; }
.secure { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 14px; color: var(--faint); font-size: 12.5px; }
.lock { width: 12px; height: 12px; border-radius: 2px; border: 1.6px solid var(--faint); position: relative; }
.lock::before { content: ""; position: absolute; left: 2.5px; right: 2.5px; top: -4px; height: 5px; border: 1.6px solid var(--faint); border-bottom: 0; border-radius: 4px 4px 0 0; }

/* --------------------------- subscriptions ------------------------- */
.subs-head { text-align: center; margin: 56px 0 6px; }
.subs-head h3 { font-size: 24px; }
.subs-head p { color: var(--muted); margin: 8px 0 0; }
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.loading { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 30px; }

.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; display: flex; flex-direction: column;
}
.plan.feat { border-color: rgba(245,197,24,.5); box-shadow: 0 0 0 1px rgba(245,197,24,.35), var(--shadow); }
.plan.has-offer { border-color: rgba(255,210,63,.6); box-shadow: 0 0 0 1px rgba(255,210,63,.45), var(--shadow); }
.tag-offer { background: var(--warn); color: #3a2c00; }
.plan .then { font-size: 12.5px; color: var(--warn); font-weight: 700; margin: 4px 0 0; }
.plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.plan-name { font-size: 19px; font-weight: 780; }
.tag { font-size: 11px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 4px 9px; border-radius: 999px; }
.plan-price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.plan-price .amt { font-size: 34px; font-weight: 850; letter-spacing: -.03em; }
.plan-price .per { color: var(--muted); font-size: 14px; }
.plan-desc { color: var(--muted); font-size: 14.5px; margin: 4px 0 16px; flex: 1; }
.plan .scope-note { font-size: 13px; color: var(--faint); margin: 0 0 16px; }
.plan .btn { margin-top: auto; }
.plan .btn-ghost { width: 100%; }

/* European bundle (full-width feature card) */
.bundle {
  margin-top: 16px; background:
    radial-gradient(600px 200px at 100% 0, rgba(245,197,24,.10), transparent 60%), var(--card);
  border: 1px solid rgba(245,197,24,.32); border-radius: var(--radius); padding: 26px 28px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: center;
}
.bundle h3 { font-size: 22px; }
.bundle .bundle-desc { color: var(--muted); margin: 8px 0 14px; }
.bundle .bundle-count { color: var(--accent); font-weight: 700; white-space: nowrap; }
.bundle .chips { margin: 0; }
.bundle-buy { text-align: right; }
.bundle-buy .amt { font-size: 30px; font-weight: 850; }
.bundle-buy .per { color: var(--muted); font-size: 13.5px; display: block; margin-bottom: 12px; }
.bundle-note { font-size: 12.5px; color: var(--faint); margin: 10px 0 0; }

/* add-ons */
.addons-wrap { margin-top: 52px; }
.addons-title { font-size: 21px; text-align: center; }
.addons-sub { text-align: center; color: var(--muted); margin: 8px 0 22px; }
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 720px; margin: 0 auto; }
.addon {
  display: flex; align-items: center; gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
}
.addon-ic { width: 40px; height: 40px; border-radius: 11px; flex: 0 0 auto; background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.25); position: relative; }
.addon-ic::before { content: ""; position: absolute; left: 10px; right: 10px; top: 15px; height: 2px; background: var(--accent); box-shadow: 0 5px 0 rgba(245,197,24,.55), 0 -5px 0 rgba(245,197,24,.55); }
.addon-body { flex: 1; }
.addon-name { font-weight: 740; font-size: 16px; }
.addon-desc { color: var(--muted); font-size: 13.5px; }
.addon-price { font-weight: 820; color: var(--accent); white-space: nowrap; }

/* league chips */
.leagues-wrap { margin-top: 52px; text-align: center; }
.leagues-title { font-size: 20px; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.chip {
  font-size: 13.5px; font-weight: 600; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 14px;
}
.chip.muted-chip { color: var(--muted); }

/* ------------------------------ FAQ -------------------------------- */
.faqs { max-width: 760px; margin: 36px auto 0; display: grid; gap: 12px; }
.faqs details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; }
.faqs summary { cursor: pointer; font-weight: 680; font-size: 16.5px; padding: 16px 34px 16px 0; list-style: none; position: relative; }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); color: var(--accent); font-weight: 800; font-size: 20px; line-height: 1; }
.faqs details[open] summary::after { content: "–"; }
.faqs details p { color: var(--muted); margin: 0 0 16px; }

/* ---------------------------- banner ------------------------------- */
#banner:empty { display: none; }
.banner {
  margin: 16px max(20px, calc((100% - var(--maxw)) / 2)) 0;
  border-radius: var(--radius-sm); padding: 16px 20px; display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line);
}
.banner.ok { border-color: rgba(245,197,24,.45); background: rgba(245,197,24,.08); }
.banner.warn { border-color: rgba(255,210,63,.4); background: rgba(255,210,63,.07); }
.banner b { font-weight: 760; }
.banner p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.banner .b-ic { width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; font-weight: 800; }
.banner.ok .b-ic { background: var(--accent); color: var(--accent-ink); }
.banner.warn .b-ic { background: var(--warn); color: #3a2c00; }
.banner .b-close { margin-left: auto; cursor: pointer; color: var(--faint); border: 0; background: none; font-size: 20px; }

/* messages */
.msg { margin-top: 12px; font-size: 14px; min-height: 18px; text-align: center; }
.msg.ok { color: var(--accent); }
.msg.bad { color: var(--danger); }
.msg.warn { color: var(--warn); }

/* ----------------------------- footer ------------------------------ */
.foot { border-top: 1px solid var(--line); padding: 40px max(20px, calc((100% - var(--maxw)) / 2)); margin-top: 30px; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 18px; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.foot-links a:hover { color: var(--accent); }
.foot-fine { color: var(--faint); font-size: 12.5px; margin: 20px 0 0; }

/* --------------------------- responsive ---------------------------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .hero-device { order: -1; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .buy { grid-template-columns: 1fr; }
  .buy-box { border-left: 0; border-top: 1px solid var(--line); }
  .bundle { grid-template-columns: 1fr; }
  .bundle-buy { text-align: left; }
  .addon-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .features { grid-template-columns: 1fr; }
  .band { padding-top: 54px; padding-bottom: 54px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
