  :root {
    --bg: #0A0A0B; --panel: #15171D; --surface: #1A1D24; --surface2: #23272F;
    --line: rgba(255,255,255,0.08); --line2: rgba(255,255,255,0.14);
    --text: #F4F5F7; --textMute: #A0A4AE; --textDim: #6C7080;
    --sun: #FFE27A; --gold: #FFB020; --flame: #FF5A1F; --red: #C81616; --ink: #0A0A0B;
    --disp: 'Plus Jakarta Sans', system-ui, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
    --flameGrad: linear-gradient(180deg, #FFE27A 0%, #FFB020 40%, #FF5A1F 75%, #C81616 100%);
    --flameGradX: linear-gradient(120deg, #FFE27A 0%, #FFB020 35%, #FF5A1F 70%, #C81616 100%);
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body); -webkit-font-smoothing: antialiased; }
  a { color: inherit; text-decoration: none; }
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 5px; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

  /* === GRID BG === */
  .grid-bg {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  }

  /* === NAV === */
  /* Beta notice: scrolls away with the page, so the sticky nav still lands flush at the top.
     Remove this block together with .beta-bar in the markup once out of beta. */
  .beta-bar {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 9px 18px; text-align: center;
    background: rgba(255,176,32,0.09); box-shadow: inset 0 -1px 0 rgba(255,176,32,0.22);
    font-size: 13px; color: var(--textMute); line-height: 1.45;
  }
  .beta-bar .beta-tag {
    flex-shrink: 0; font-family: var(--mono); font-weight: 800; font-size: 10px; letter-spacing: 1px;
    padding: 3px 8px; border-radius: 6px; color: var(--gold);
    background: rgba(255,176,32,0.15); box-shadow: inset 0 0 0 1px rgba(255,176,32,0.35);
  }
  .beta-bar a { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

  nav.top {
    position: sticky; top: 0; z-index: 100; backdrop-filter: blur(20px);
    background: rgba(10,10,11,0.7); border-bottom: 1px solid var(--line);
  }
  nav.top .inner { display: flex; align-items: center; gap: 32px; height: 72px; }
  nav.top a.link { color: var(--textMute); font-size: 14px; font-weight: 600; transition: color .15s; }
  nav.top a.link:hover { color: var(--text); }
  nav.top .links-row { display: flex; gap: 26px; }
  nav.top .cta-row { margin-left: auto; display: flex; gap: 10px; align-items: center; }

  /* === LOGO ===
     ŠTYRI HODNOTY NA LADENIE PÍSMENA "S":
       1. font-size      — menšie číslo = menšie S
       2. top            — kladné = posun NADOL, záporné = posun NAHOR
       3. letter-spacing — medzera medzi S a "t"
       4. background     — gradient sa dá rozladiť tu
  */
  .logo {
    display: inline-block;
    font-family: var(--disp); font-weight: 900; letter-spacing: -1.5px; line-height: 1;
    white-space: nowrap;
  }
  .logo .s-flame {
    background: var(--flameGrad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    /* >>> LADIACE PARAMETRE PÍSMENA "S" — meň tu <<< */
    font-size: 1em;
    position: relative;
    top: 0.02em;
    letter-spacing: 0;
    /* >>> KONIEC LADIACICH PARAMETROV <<< */
  }
  .logo .rest { color: var(--text); }
  .logo.dark .rest { color: var(--ink); }

  /* === BUTTONS === */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px; border-radius: 12px; font-weight: 800; font-size: 14px;
    cursor: pointer; border: none; transition: transform .12s, box-shadow .12s;
    text-decoration: none; white-space: nowrap; font-family: var(--body);
  }
  .btn.primary { background: var(--flame); color: #fff; box-shadow: 0 3px 0 #a83a00, 0 10px 28px rgba(255,90,31,0.35); }
  .btn.primary:hover { transform: translateY(-1px); box-shadow: 0 4px 0 #a83a00, 0 14px 32px rgba(255,90,31,0.5); }
  .btn.ghost { background: var(--surface); color: var(--text); box-shadow: inset 0 0 0 1px var(--line2); }
  .btn.ghost:hover { background: var(--surface2); }
  .btn.gold { background: var(--gold); color: #fff; box-shadow: 0 3px 0 #a87208, 0 10px 28px rgba(255,176,32,0.35); transition: transform .12s, box-shadow .12s; }
  .btn.gold:hover { transform: translateY(-1px); box-shadow: 0 4px 0 #a87208, 0 14px 32px rgba(255,176,32,0.5); }
  .btn.gold:active { transform: translateY(1px); box-shadow: 0 1px 0 #a87208; }
  .btn.lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }

  /* === HERO === */
  .hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
  .hero .glow {
    position: absolute; inset: -100px 0 -100px 0; pointer-events: none;
    background:
      radial-gradient(60% 50% at 80% 30%, rgba(255,90,31,0.28), transparent 60%),
      radial-gradient(40% 35% at 20% 80%, rgba(200,22,22,0.22), transparent 65%);
  }
  .hero .inner { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; min-height: 620px; }
  .hero h1 {
    font-family: var(--disp); font-weight: 900; font-size: clamp(46px, 6vw, 84px);
    letter-spacing: -3px; line-height: 1; margin: 0 0 18px;
  }
  .hero h1 .grad { background: var(--flameGradX); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero h1 .underline { position: relative; display: inline-block; }
  .hero h1 .underline::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 4px; border-radius: 2px;
    background: var(--flameGradX);
  }
  .hero .eyebrow {
    font-family: var(--mono); font-size: 12px; font-weight: 800; letter-spacing: 2px;
    color: var(--flame); margin-bottom: 22px; display: inline-flex; align-items: center; gap: 8px;
  }
  .hero .eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 4px; background: var(--flame); box-shadow: 0 0 12px var(--flame); animation: pulse 1.4s ease-in-out infinite; }
  .hero .lead { font-size: 19px; color: var(--textMute); line-height: 1.55; max-width: 540px; margin-bottom: 30px; }
  .hero .stores { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
  .hero .mini-trust { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; color: var(--textDim); font-size: 13px; }
  .hero .mini-trust .star { color: var(--gold); }

  /* mascot — iskry sa spawnujú vnútri .marquee-mascot wrappera */
  .ember {
    position: absolute; left: 50%; bottom: 10%; width: 6px; height: 6px;
    border-radius: 3px; pointer-events: none;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
  /* ember-rise — iskričky stúpajúce zo spodu maskota (spawnované JS-om) */
  @keyframes ember-rise {
    0% { transform: translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(var(--dx, -10px), -180px) scale(0.3); opacity: 0; }
  }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* tagline mark = brand line repeated */
  .tagline-row { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; align-items: baseline; }
  .tagline-row .word { font-family: var(--disp); font-size: 22px; font-weight: 800; color: var(--text); }

  /* === MARQUEE ===
     Nekonečná animácia bez viditeľného resetu:
     - track = 2 identické sety
     - každý span má rovnaký margin-right (žiadny gap, žiadny padding na sete)
     - posun -50% presne presunie track o jednu kópiu → seamless loop
  */
  .marquee { position: relative; overflow: visible; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: var(--panel); }
  .marquee .track { position: relative; z-index: 1; }
  /* maskot stojí nohami na hornej hrane pásika, vpravo; siaha po úroveň "Streak up." textu */
  .marquee-mascot {
    position: absolute;
    bottom: 100%;            /* spodok wrappera (chodidlá) na hornú hranu pásika */
    right: 7%;
    width: 620px;
    height: 640px;
    margin-bottom: 5px;        /* spodok wrappera presne na hornú hranu pásika */
    pointer-events: none;    /* nie je klikateľný */
    z-index: 3;
  }
  .marquee-mascot video {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(255,90,31,0.35));
  }
  .marquee { overflow-x: clip; overflow-y: visible; }
  .marquee .track {
    display: flex; width: max-content;
    animation: ticker 40s linear infinite;
    font-family: var(--disp); font-weight: 800; font-size: 22px; color: var(--textMute);
    letter-spacing: -0.5px; align-items: center;
    will-change: transform;
  }
  .marquee .track .set { display: flex; flex-shrink: 0; }
  .marquee .track .set > span { margin-right: 60px; display: inline-flex; align-items: center; gap: 10px; }
  .marquee .track .pip { color: var(--flame); }
  .marquee .track strong { color: var(--text); }

  /* === SECTIONS === */
  section { padding: 100px 0; position: relative; }
  .section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
  .eyebrow {
    font-family: var(--mono); font-size: 12px; font-weight: 800; letter-spacing: 2px;
    color: var(--flame); display: inline-block; padding: 6px 12px; border-radius: 999px;
    background: rgba(255,90,31,0.12); box-shadow: inset 0 0 0 1px rgba(255,90,31,0.3);
    margin-bottom: 18px;
  }
  .section-head h2 {
    font-family: var(--disp); font-weight: 900; font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -2px; line-height: 1; margin: 0 0 16px;
  }
  .section-head h2 .grad { background: var(--flameGradX); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .section-head p { font-size: 17px; color: var(--textMute); line-height: 1.6; margin: 0; }

  /* === HOW IT WORKS === */
  .how { background: var(--bg); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step {
    padding: 28px 24px; border-radius: 20px; background: var(--surface);
    box-shadow: 0 0 0 1px var(--line), inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative; overflow: hidden;
  }
  .step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--c, var(--flame));
  }
  .step .num {
    font-family: var(--mono); font-weight: 900; font-size: 12px; letter-spacing: 1.4px;
    color: var(--c, var(--flame)); margin-bottom: 14px;
  }
  .step .icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, var(--c, var(--flame)), color-mix(in srgb, var(--c, var(--flame)) 70%, #000));
    display: flex; align-items: center; justify-content: center; font-size: 26px;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--c, var(--flame)) 30%, transparent);
    margin-bottom: 18px;
  }
  .step h3 { font-family: var(--disp); font-weight: 800; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.4px; }
  .step p { font-size: 14px; color: var(--textMute); line-height: 1.55; margin: 0; }

  /* === FEATURES === */
  .features { background: var(--panel); }
  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
  .feat {
    padding: 26px; border-radius: 18px; background: var(--surface);
    box-shadow: 0 0 0 1px var(--line);
    transition: transform .2s, box-shadow .2s;
  }
  .feat:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--line2), 0 30px 60px -20px rgba(255,90,31,0.2); }
  .feat .glyph { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,90,31,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
  .feat h4 { font-family: var(--disp); font-size: 17px; font-weight: 800; margin: 0 0 6px; }
  .feat p { font-size: 13.5px; color: var(--textMute); line-height: 1.55; margin: 0; }

  /* === BIG SHOWCASE === */
  .showcase { background: var(--bg); }
  .show-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
  .show-grid.flip { grid-template-columns: 1.05fr 1fr; direction: rtl; }
  .show-grid.flip > * { direction: ltr; }
  .show-grid h3 { font-family: var(--disp); font-size: clamp(34px, 4.5vw, 52px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.04; margin: 12px 0 18px; }
  .show-grid h3 .grad { background: var(--flameGradX); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .show-grid p { font-size: 17px; color: var(--textMute); line-height: 1.6; margin-bottom: 20px; }
  .show-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .show-grid li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.45; }
  .show-grid li::before { content: '✓'; width: 22px; height: 22px; border-radius: 11px; background: rgba(255,90,31,0.18); color: var(--flame); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

  /* phone mockup */
  .phone-mockup { position: relative; width: 340px; height: 700px; margin: 0 auto; border-radius: 40px; background: #1a1d24; padding: 8px; box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7), 0 0 0 1px var(--line2); }
  .phone-mockup .screen { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--bg); position: relative; }
  /* app-like screen: header, avatar fills the middle, stats pinned to the bottom */
  .phone-mockup .screen.app { display: flex; flex-direction: column; padding: 54px 20px 24px; }
  .screen.app .avatar-stage { flex: 1 1 auto; min-height: 0; height: auto; margin: 8px auto 14px; }
  .screen.app .avatar-img { height: 100%; max-height: 420px; }
  .screen.app .app-bottom { display: flex; flex-direction: column; gap: 12px; }
  .app-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .app-chip { padding: 10px 8px; border-radius: 12px; background: var(--surface); box-shadow: 0 0 0 1px var(--line); text-align: center; }
  .app-chip .n { font-family: var(--disp); font-weight: 900; font-size: 17px; letter-spacing: -0.4px; }
  .app-chip .n.flame { color: var(--flame); }
  .app-chip .l { font-family: var(--mono); font-size: 8.5px; font-weight: 800; letter-spacing: 0.6px; color: var(--textDim); margin-top: 2px; }
  .app-next { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 12px; background: rgba(255,90,31,0.08); box-shadow: inset 0 0 0 1px rgba(255,90,31,0.28); }
  .app-next .gift { font-size: 16px; }
  .app-next .txt { font-size: 12px; color: var(--text); line-height: 1.35; }
  .app-next .txt b { color: var(--flame); }
  .phone-mockup .notch { position: absolute; left: 50%; top: 16px; transform: translateX(-50%); width: 90px; height: 24px; background: #000; border-radius: 14px; z-index: 10; }

  /* === PARTNER SECTION === */
  .partner-section {
    background:
      radial-gradient(60% 60% at 80% 20%, rgba(255,90,31,0.18), transparent 65%),
      radial-gradient(40% 40% at 10% 80%, rgba(200,22,22,0.15), transparent 65%),
      var(--bg);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .partner-banner {
    padding: 56px; border-radius: 28px;
    background:
      radial-gradient(60% 60% at 85% 20%, rgba(255,90,31,0.30), transparent 65%),
      radial-gradient(40% 50% at 15% 90%, rgba(200,22,22,0.22), transparent 70%),
      linear-gradient(135deg, #1E120C 0%, #2A1810 60%, #321C0F 100%);
    color: #fff; position: relative; overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(255,90,31,0.35),
                inset 0 0 0 1px rgba(255,90,31,0.18);
  }
  .partner-banner::before {
    content: ''; position: absolute; top: -120px; right: -60px; width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,176,32,0.15), transparent 65%);
    filter: blur(4px);
  }
  .partner-banner::after {
    content: ''; position: absolute; bottom: -80px; left: 20%; width: 300px; height: 200px;
    background: radial-gradient(ellipse, rgba(255,90,31,0.18), transparent 65%);
    pointer-events: none;
  }
  .partner-banner .inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
  .partner-banner h3 { font-family: var(--disp); font-size: clamp(36px, 4.5vw, 56px); font-weight: 900; letter-spacing: -1.8px; line-height: 1.02; margin: 14px 0 12px; }
  .partner-banner p { font-size: 17px; line-height: 1.55; opacity: 0.95; margin-bottom: 24px; max-width: 540px; }
  .partner-banner .badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(255,90,31,0.18); color: var(--sun); box-shadow: inset 0 0 0 1px rgba(255,176,32,0.35); font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px; font-family: var(--mono); }
  .partner-banner .badge .ico { color: var(--sun); }
  .partner-banner .ctas { display: flex; gap: 10px; flex-wrap: wrap; }
  .partner-banner .btn.primary { background: var(--flame); color: #fff; box-shadow: 0 3px 0 #a83a00, 0 10px 28px rgba(255,90,31,0.4); }
  .partner-banner .btn.ghost { background: rgba(255,255,255,0.06); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18); }

  .partner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .partner-stat { padding: 18px; border-radius: 16px; background: rgba(255,90,31,0.06); backdrop-filter: blur(8px); box-shadow: inset 0 0 0 1px rgba(255,176,32,0.20); }
  .partner-stat .num { font-family: var(--disp); font-size: 36px; font-weight: 900; line-height: 1; letter-spacing: -1px; color: #fff; }
  .partner-stat .lbl { font-size: 12px; opacity: 0.85; font-family: var(--mono); font-weight: 700; margin-top: 4px; }

  /* benefits */
  .benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
  .benefit {
    padding: 22px; border-radius: 16px; background: var(--surface);
    box-shadow: 0 0 0 1px var(--line);
  }
  .benefit .glyph { font-size: 28px; margin-bottom: 12px; }
  .benefit h5 { font-family: var(--disp); font-weight: 800; font-size: 15px; margin: 0 0 6px; }
  .benefit p { font-size: 13px; color: var(--textMute); line-height: 1.5; margin: 0; }

  /* === ACCESS / WAYS TO USE === */
  .ways { background: var(--bg); }
  .ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .way {
    position: relative; padding: 36px; border-radius: 24px;
    background: var(--surface); box-shadow: 0 0 0 1px var(--line);
    overflow: hidden;
  }
  .way::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--c, var(--flame)); }
  .way h4 { font-family: var(--disp); font-size: 26px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.6px; }
  .way p { font-size: 15px; color: var(--textMute); line-height: 1.55; margin: 0 0 22px; }
  .way .store-row { display: flex; gap: 10px; flex-wrap: wrap; }

  /* store badges */
  .store {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: 12px; background: #000;
    color: #fff; text-decoration: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
    transition: transform .12s, box-shadow .12s; font-family: var(--body);
  }
  .store:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--line2), 0 10px 26px rgba(0,0,0,0.5); }
  .store .icon { width: 24px; height: 24px; flex-shrink: 0; }
  .store .text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
  .store .text .tiny { font-size: 9.5px; opacity: 0.7; letter-spacing: 0.5px; text-transform: uppercase; }
  .store .text .big { font-size: 15px; font-weight: 800; font-family: var(--disp); letter-spacing: -0.3px; }

  /* === FAQ === */
  .faq { background: var(--panel); }
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    padding: 22px 26px; border-radius: 16px; background: var(--surface);
    box-shadow: 0 0 0 1px var(--line); margin-bottom: 10px;
  }
  .faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 16px; font-family: var(--disp); font-weight: 800; font-size: 17px; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; margin-left: auto; font-size: 24px; color: var(--flame); font-weight: 400; transition: transform .2s; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { color: var(--textMute); line-height: 1.6; font-size: 15px; margin: 14px 0 0; }

  /* === CONTACT === */
  .contact { background: var(--bg); }
  .contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
  .contact-form { padding: 32px; border-radius: 22px; background: var(--surface); box-shadow: 0 0 0 1px var(--line); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .field label { display: block; font-family: var(--mono); font-size: 10.5px; font-weight: 800; color: var(--textMute); letter-spacing: 1px; margin-bottom: 6px; }
  .field input, .field select, .field textarea {
    width: 100%; height: 46px; padding: 0 14px; border-radius: 10px;
    background: var(--surface2); border: none; color: var(--text); font-family: var(--body);
    font-size: 14px; box-shadow: inset 0 0 0 1px var(--line2); transition: box-shadow .15s;
  }
  .field textarea { height: 120px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 2px var(--flame); }
  .contact-info { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; padding: 32px; border-radius: 22px; background: linear-gradient(160deg, rgba(255,90,31,0.12), rgba(200,22,22,0.04)); box-shadow: inset 0 0 0 1px var(--line); }
  .contact-info h4 { font-family: var(--disp); font-size: 24px; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.5px; }
  .contact-cta { padding-top: 22px; border-top: 1px solid var(--line); }
  .contact-cta-head { font-family: var(--disp); font-weight: 800; font-size: 16px; margin-bottom: 14px; }
  .contact-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
  .contact-cta-row .btn { flex: 1; justify-content: center; min-width: 140px; }
  .contact-info > p { color: var(--textMute); font-size: 14.5px; line-height: 1.55; }
  .contact-info ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
  .contact-info li { display: flex; align-items: flex-start; gap: 14px; }
  .contact-info li .ico-wrap { width: 40px; height: 40px; }
  .contact-info li .label { font-family: var(--mono); font-size: 11px; color: var(--textMute); font-weight: 800; letter-spacing: 0.8px; }
  .contact-info li .val { font-size: 14.5px; font-weight: 700; margin-top: 2px; }
  .contact-info li .val a { color: var(--flame); }

  /* === BIG CTA === */
  .big-cta {
    text-align: center; padding: 100px 0;
    background:
      radial-gradient(50% 70% at 50% 30%, rgba(255,90,31,0.18), transparent 60%),
      var(--bg);
  }
  .big-cta h2 { font-family: var(--disp); font-size: clamp(46px, 6vw, 84px); font-weight: 900; letter-spacing: -3px; line-height: 0.98; margin: 0 0 24px; }
  .big-cta h2 .grad { background: var(--flameGradX); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .big-cta p { font-size: 18px; color: var(--textMute); max-width: 540px; margin: 0 auto 32px; line-height: 1.55; }
  .big-cta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* === FOOTER === */
  footer.main {
    background: var(--panel); border-top: 1px solid var(--line);
    padding: 60px 0 28px; color: var(--textMute);
  }
  footer.main .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
  footer.main .col h6 { font-family: var(--mono); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; color: var(--text); margin: 0 0 16px; }
  footer.main .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  footer.main .col li a { font-size: 13.5px; color: var(--textMute); transition: color .15s; }
  footer.main .col li a:hover { color: var(--flame); }
  footer.main .brand-block p { font-size: 13.5px; line-height: 1.6; max-width: 280px; margin: 16px 0 18px; }
  footer.main .socials { display: flex; gap: 8px; }
  footer.main .socials a { width: 36px; height: 36px; border-radius: 10px; background: var(--surface); display: flex; align-items: center; justify-content: center; transition: background .15s, transform .15s; box-shadow: inset 0 0 0 1px var(--line); }
  footer.main .socials a:hover { background: var(--surface2); transform: translateY(-2px); }
  footer.main .bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: var(--textDim); flex-wrap: wrap; gap: 12px; }


  /* === CUSTOM SVG IKONY === */
  .ico { width: 22px; height: 22px; color: var(--flame); display: inline-block; vertical-align: middle; }
  .ico-sm { width: 14px; height: 14px; }
  .ico-md { width: 26px; height: 26px; color: #fff; }
  .ico-lg { width: 28px; height: 28px; color: #fff; }

  /* Contact sekcia — biele jemnejšie ikony */
  .ico-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ico-wrap .ico {
    width: 20px; height: 20px;
    color: rgba(255,255,255,0.88);
    stroke-width: 1.6;
  }

  /* feature glyph - rounded box s flame tint */
  .feat .glyph {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,90,31,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }

  /* benefit glyph - rovnaký štýl ale gold tint */
  .benefit .glyph {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,176,32,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    font-size: inherit;
  }
  .benefit .glyph .ico { color: var(--gold); }

  /* way glyphs - veľký 54x54 box */
  .way-glyph {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .way-glyph-flame {
    background: linear-gradient(135deg, #FF5A1F, #C81616);
    box-shadow: 0 8px 22px rgba(255,90,31,0.35);
  }
  .way-glyph-gold {
    background: linear-gradient(135deg, #FFB020, #FF5A1F);
    box-shadow: 0 8px 22px rgba(255,176,32,0.35);
  }

  /* step icon - biely SVG vnútri gradient boxu */
  .step .icon .ico { color: #fff; }


  /* Footer Legal stĺpec — text-align right pre symetriu s brand-block vľavo */
  footer.main .grid > .col:last-child { text-align: right; }
  footer.main .grid > .col:last-child ul { padding: 0; }

  /* Footer s menším počtom stĺpcov — väčší brand stĺpec, vyvážený layout */
  footer.main .grid {
    grid-template-columns: 2fr 1fr !important;
    gap: 60px;
  }
  @media (max-width: 800px) {
    footer.main .grid { grid-template-columns: 1fr !important; gap: 40px; }
  }

  /* === MOBILE NAV (hamburger + drawer) === */
  .nav-toggle {
    display: none; margin-left: auto; width: 42px; height: 42px;
    background: var(--surface); border: none; border-radius: 12px;
    box-shadow: inset 0 0 0 1px var(--line2); cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  }
  .nav-toggle span {
    display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--text);
    transition: transform .2s, opacity .2s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  /* hidden by default (respects the [hidden] attribute); JS toggles it open */
  .mobile-menu { display: none; }
  .mobile-menu:not([hidden]) {
    display: flex; flex-direction: column; gap: 6px; padding: 16px 20px 22px;
    background: rgba(10,10,11,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .m-link {
    padding: 14px 4px; font-size: 17px; font-weight: 700; color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .btn { justify-content: center; margin-top: 8px; }

  /* === PRICING === */
  /* === AVATAR (inline SVG in the phone mockup — crisp vector at any size) === */
  .avatar-stage {
    margin: 12px auto 20px; width: 100%; height: 300px;
    display: flex; align-items: flex-end; justify-content: center;
    /* no own glow — the single screen glow handles the ambient light so the two
       don't create a visible ring/seam */
    background: transparent;
  }
  .avatar-svg { height: 100%; width: auto; display: block; overflow: visible; }
  .avatar-img { height: 100%; width: auto; display: block; object-fit: contain; }

  .pricing { background: var(--bg); }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
  .pricing-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
  .price-card {
    display: flex; flex-direction: column; padding: 32px 26px; border-radius: 22px;
    background: var(--surface); box-shadow: 0 0 0 1px var(--line), inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
  }
  /* cards with a corner ribbon get extra headroom so it never overlaps the eyebrow */
  .price-card.featured, .price-card.gold-card { padding-top: 56px; }
  .price-card.featured {
    background: linear-gradient(180deg, rgba(255,90,31,0.10), var(--surface) 55%);
    box-shadow: 0 0 0 1px rgba(255,90,31,0.5), 0 20px 50px rgba(255,90,31,0.18);
  }
  .price-card.gold-card {
    background: linear-gradient(180deg, rgba(255,176,32,0.10), var(--surface) 55%);
    box-shadow: 0 0 0 1px rgba(255,176,32,0.45), 0 20px 50px rgba(255,176,32,0.14);
  }
  .price-card .eyebrow { display: inline-block; margin-bottom: 12px; }
  .price-card h4 { font-family: var(--disp); font-weight: 900; font-size: 26px; margin: 0 0 10px; letter-spacing: -0.6px; }
  .price-card .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
  .price-card .price .amount { font-family: var(--disp); font-weight: 900; font-size: 44px; letter-spacing: -1.5px; }
  .price-card .price .per { font-size: 15px; color: var(--textMute); font-weight: 700; }
  .price-card .price-sub { font-size: 14px; color: var(--textMute); line-height: 1.5; margin: 0 0 20px; }
  .price-card .price-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 11px; }
  .price-card .price-list li {
    font-size: 14.5px; color: var(--text); line-height: 1.45; padding-left: 26px; position: relative;
  }
  .price-card .price-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0; font-weight: 900; font-size: 13px; color: var(--flame);
  }
  .price-card.gold-card .price-list li::before { color: var(--gold); }
  .price-card .btn.full { width: 100%; justify-content: center; margin-top: auto; }
  .price-card .price-foot { font-size: 11.5px; color: var(--textDim); text-align: center; margin-top: 12px; line-height: 1.4; }
  .ribbon {
    position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-weight: 800;
    font-size: 10px; letter-spacing: 1px; padding: 5px 10px; border-radius: 8px;
    background: rgba(255,90,31,0.15); color: var(--flame); box-shadow: inset 0 0 0 1px rgba(255,90,31,0.4);
  }
  .ribbon.gold-ribbon { background: rgba(255,176,32,0.15); color: var(--gold); box-shadow: inset 0 0 0 1px rgba(255,176,32,0.4); }

  @media (max-width: 1000px) {
    .hero .inner { grid-template-columns: 1fr; }
    .marquee-mascot { width: 360px; height: 420px; right: 4%; }
    .show-grid, .show-grid.flip { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .feat-grid { grid-template-columns: 1fr 1fr; }
    .benefit-grid { grid-template-columns: 1fr 1fr; }
    .ways-grid { grid-template-columns: 1fr; }
    .partner-banner { padding: 36px 28px; }
    .partner-banner .inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    footer.main .grid { grid-template-columns: 1.5fr 1fr 1fr; }
    footer.main .col.brand-block { grid-column: 1 / -1; }
    nav.top .links-row { display: none; }
    /* .pricing-grid.two carries two classes, so it outranks a single-class rule here and the cards
       stayed side by side on phones. Match the specificity to stack both variants. */
    .pricing-grid,
    .pricing-grid.two { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  }

  /* ===== hamburger takes over ===== */
  @media (max-width: 860px) {
    nav.top .links-row,
    nav.top .cta-row { display: none; }
    .nav-toggle { display: flex; }
  }
  @media (min-width: 861px) {
    .mobile-menu { display: none !important; }
  }

  @media (max-width: 640px) {
    .steps, .feat-grid, .benefit-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer.main .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* ===== MOBILE (≤ 480px) ===== */
  @media (max-width: 480px) {
    /* container */
    .container { padding: 0 18px; }

    /* nav */
    nav.top .inner { height: 58px; gap: 16px; }
    nav.top .cta-row .btn.ghost { display: none; }

    /* hero */
    .hero { padding: 44px 0 56px; }
    .hero .inner { min-height: unset; gap: 28px; }
    .hero h1 {
      font-size: clamp(36px, 10vw, 52px);
      letter-spacing: -2px;
      white-space: normal;
    }
    .hero .lead { font-size: 16px; margin-bottom: 22px; }
    .hero .stores { gap: 10px; }
    .hero .mini-trust { gap: 12px; font-size: 12px; }
    .hero .mini-trust span { display: none; }
    .hero .mini-trust span:first-child,
    .hero .mini-trust span:nth-child(3),
    .hero .mini-trust span:nth-child(5) { display: inline; }
    .tagline-row { margin-top: 16px; }
    .tagline-row .word { font-size: 18px; }

    /* mascot on marquee — small & tucked to the right so it never covers hero text */
    .marquee-mascot { width: 120px; height: 140px; right: -2%; margin-bottom: 2px; }
    /* give the hero bottom room so the mascot sits below the copy, not over it */
    .hero { padding-bottom: 96px; }
    .tagline-row { display: none; }

    /* sections */
    section { padding: 56px 0; }
    .section-head { margin-bottom: 36px; }
    .section-head h2 { font-size: clamp(28px, 8vw, 38px); letter-spacing: -1.2px; }

    /* beta bar */
    .beta-bar { font-size: 11.5px; padding: 8px 14px; gap: 8px; }

    /* pricing */
    .price-card { padding: 26px 20px; }
    .price-card .price .amount { font-size: 40px; }

    /* how it works */
    .steps { grid-template-columns: 1fr; gap: 14px; }
    .step { padding: 22px 18px; }

    /* features */
    .feat-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }

    /* showcase */
    .phone-mockup { width: 260px; height: 536px; }

    /* partner banner */
    .partner-banner { padding: 28px 20px; border-radius: 20px; }
    .partner-banner h3 { font-size: clamp(26px, 7vw, 36px); letter-spacing: -1px; }
    .partner-banner p { font-size: 15px; margin-bottom: 18px; }
    .partner-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .partner-stat { padding: 14px 12px; }
    .partner-stat .num { font-size: 28px; }

    /* benefits */
    .benefit-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
    .benefit { padding: 18px; }

    /* ways */
    .ways-grid { grid-template-columns: 1fr; gap: 16px; }
    .way { padding: 26px 20px; }
    .way h4 { font-size: 21px; }

    /* store badges */
    .store { padding: 9px 13px; }
    .store .text .big { font-size: 13px; }

    /* faq */
    .faq-item { padding: 18px 16px; }
    .faq-item summary { font-size: 15px; }

    /* contact */
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-form { padding: 22px 18px; }
    .contact-info { padding: 22px 18px; }

    /* big cta */
    .big-cta { padding: 64px 0; }
    .big-cta h2 { font-size: clamp(36px, 10vw, 52px); letter-spacing: -2px; }
    .big-cta p { font-size: 16px; }

    /* footer */
    footer.main { padding: 44px 0 20px; }
    footer.main .grid { grid-template-columns: 1fr !important; gap: 28px; }
    footer.main .grid > .col:last-child { text-align: left; }
    footer.main .bottom { flex-direction: column; gap: 8px; }

    /* buttons */
    .btn.lg { padding: 14px 20px; font-size: 15px; }
  }

  /* ===== VERY SMALL (≤ 360px) ===== */
  @media (max-width: 360px) {
    .container { padding: 0 14px; }
    .hero h1 { font-size: clamp(30px, 9vw, 40px); }
    .marquee-mascot { width: 104px; height: 122px; }
    .partner-stat .num { font-size: 24px; }
    .phone-mockup { width: 220px; height: 452px; }
  }
