/* ============================================================
   STRIX — Landing "Support & Téléchargement"
   Kinetic Anarchy Framework — web adaptation
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700;900&family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
  /* Surfaces */
  --black:        #070707;
  --bg:           #0c0c0c;
  --bg-2:         #111111;
  --panel:        #161616;
  --card:         #1d1d1d;
  --card-hi:      #262626;
  --input:        #1a1a1a;

  /* Brand */
  --lime:         #c6ff2e;   /* hero acid green (logo) */
  --lime-soft:    #bcff5f;
  --lime-dim:     #95e400;
  --cyan:         #25d3ff;   /* punchy support blue */
  --cyan-soft:    #8ff5ff;
  --cyan-deep:    #00d8ec;
  --magenta:      #ff44f4;
  --magenta-deep: #c800c8;

  /* Text */
  --fg:           #ffffff;
  --fg-dim:       #b4b1b1;
  --fg-faint:     #777474;

  --ink:          #000000;
  --line:         #767575;
  --line-ghost:   #383838;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { border-radius: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--magenta); color: #000; }

img { display: block; max-width: 100%; }

/* ----- Material Symbols ----- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal; line-height: 1;
  letter-spacing: normal; text-transform: none; display: inline-block;
  white-space: nowrap; word-wrap: normal; direction: ltr;
  -webkit-font-feature-settings: 'liga'; font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased; user-select: none;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ----- Halftone + shatter texture base ----- */
.halftone {
  background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
  background-size: 8px 8px;
}
.page-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(37,211,255,0.10), transparent 38%),
    radial-gradient(circle at 88% 4%, rgba(255,68,244,0.10), transparent 36%),
    radial-gradient(circle at 70% 92%, rgba(198,255,46,0.08), transparent 42%);
}
.page-bg::before {
  content: ""; position: absolute; inset: 0; color: #fff; opacity: 0.04;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
  background-size: 9px 9px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.skew  { transform: skewX(-9deg); display: inline-block; }
.skewb { transform: skewX(-9deg); }

.label {
  font-family: var(--font-display);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.72rem; color: var(--fg-dim);
}
.mono {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
}

/* Outlined comic title (white fill, ink stroke, lime drop) */
.comic-title {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic; text-transform: uppercase;
  color: #fff;
  -webkit-text-stroke: 3px #000;
  paint-order: stroke fill;
  text-shadow: 6px 7px 0 var(--lime), 6px 7px 0 #000;
  letter-spacing: -0.03em; line-height: 0.86;
}

.tx-lime { color: var(--lime); }
.tx-cyan { color: var(--cyan); }
.tx-mag  { color: var(--magenta); }
.tx-dim  { color: var(--fg-dim); }

.glitch {
  text-shadow: 2px 2px 0 var(--magenta), -2px -1px 0 rgba(37,211,255,0.6);
}

/* ============================================================
   DECOR — lightning bolts & sparks
   ============================================================ */
.bolt {
  position: absolute; pointer-events: none; z-index: 1;
  clip-path: polygon(48% 0, 18% 54%, 44% 54%, 22% 100%, 86% 38%, 56% 38%, 80% 0);
}
.spark {
  position: absolute; pointer-events: none; z-index: 1;
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
}
.shard {
  position: absolute; pointer-events: none; z-index: 1;
  clip-path: polygon(0 0, 100% 22%, 78% 100%, 16% 70%);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.6rem; cursor: pointer; border: 3px solid #000;
  transition: transform .08s, box-shadow .08s, background .08s, color .08s;
  text-decoration: none; white-space: nowrap;
}
.btn .material-symbols-outlined { font-size: 1.2em; }
.btn-acid {
  background: var(--lime); color: #0a1400;
  box-shadow: 6px 6px 0 #000;
}
.btn-acid:hover { background: var(--magenta); color: #000; transform: translate(-2px,-2px); box-shadow: 8px 8px 0 #000; }
.btn-acid:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 #000; }

.btn-cyan {
  background: transparent; color: var(--cyan-soft);
  border-color: var(--cyan); box-shadow: 5px 5px 0 var(--magenta);
}
.btn-cyan:hover { background: var(--cyan); color: #00343a; transform: translate(-2px,-2px); }
.btn-cyan:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--magenta); }

.btn-ghost {
  background: #0e0e0e; color: #fff; border-color: var(--line);
}
.btn-ghost:hover { background: var(--magenta); color: #000; border-color: #000; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

.section-head {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5ch; flex-wrap: wrap; text-align: center;
  font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 14px;
}
.section-sub {
  text-align: center; color: var(--fg-dim); max-width: 620px; margin: 0 auto;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(8,8,8,0.82); backdrop-filter: blur(14px);
  border-bottom: 4px solid var(--line);
  box-shadow: 0 4px 0 var(--magenta);
}
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; filter: drop-shadow(0 0 10px rgba(198,255,46,0.35)); }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem;
  color: var(--fg-dim); text-decoration: none; padding: 8px 12px;
  border-bottom: 3px solid transparent; transition: all .08s;
}
.nav-links a:hover, .nav-links a.active { color: #000; background: var(--lime); }
.nav-cta { display: flex; align-items: center; }
.burger { display: none; background: none; border: 3px solid var(--line); color: #fff;
  width: 48px; height: 48px; cursor: pointer; align-items: center; justify-content: center; }
.burger .material-symbols-outlined { font-size: 28px; }

.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 132px 0 70px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: center;
}
.hero-copy { position: relative; }
.hero-logo-title { margin: 0 0 14px; line-height: 1; }
.hero-logo-title img {
  width: min(460px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(6px 7px 0 #000) drop-shadow(0 0 22px rgba(198,255,46,0.35));
}
.hero-sub { font-size: clamp(1.9rem, 5.2vw, 3.4rem); line-height: 0.95; margin: 6px 0 26px; }
.hero p.lead { font-size: 1.12rem; color: var(--fg-dim); max-width: 480px; margin-bottom: 8px; }
.hero p.lead b { color: var(--fg); }
.hero .punch { color: var(--cyan); font-weight: 800; font-size: 1.18rem; display: block; margin-bottom: 26px; }

.store-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: stretch; }
.store-badge {
  display: flex; align-items: center; gap: 12px; background: #000; color: #fff;
  border: 3px solid #fff; padding: 12px 20px; min-width: 200px; position: relative;
  transition: transform .1s;
}
.store-badge:hover { transform: translateY(-3px); }
.store-badge .material-symbols-outlined { font-size: 38px; }
.store-badge .sb-top { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-dim); }
.store-badge .sb-main { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.25rem; text-transform: uppercase; line-height: 1; }
.soon-tag {
  position: absolute; top: -12px; right: -10px; background: var(--lime); color: #000;
  font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 0.62rem;
  letter-spacing: 0.1em; padding: 3px 9px; border: 2px solid #000; transform: rotate(6deg);
  text-transform: uppercase;
}

/* comic hero composition */
.hero-stage { position: relative; min-height: 560px; display: flex; justify-content: center; align-items: center; }
.comic-poster {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  min-height: 0;
  isolation: isolate;
  z-index: 5;
}
.comic-poster::before {
  content: "";
  position: absolute;
  inset: 62px 42px 36px 34px;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(37,211,255,0.20), transparent 36%),
    linear-gradient(315deg, rgba(255,68,244,0.18), transparent 40%),
    linear-gradient(180deg, rgba(198,255,46,0.10), rgba(10,10,10,0.96));
  border: 4px solid #000;
  box-shadow: 12px 12px 0 var(--lime), -8px -8px 0 rgba(37,211,255,0.65);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 88%);
}
.comic-poster::after {
  content: "";
  position: absolute;
  inset: 96px 58px 52px 58px;
  z-index: 1;
  color: #fff;
  opacity: 0.08;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
  background-size: 9px 9px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 88%);
  pointer-events: none;
}
.comic-owl {
  position: absolute;
  right: 5%;
  bottom: -4%;
  width: 76%;
  z-index: 9;
  filter:
    drop-shadow(8px 8px 0 #000)
    drop-shadow(0 22px 30px rgba(0,0,0,0.62))
    drop-shadow(0 0 26px rgba(198,255,46,0.28));
  animation: float 6s ease-in-out infinite;
}
.comic-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 188px;
  padding: 11px 13px;
  background: #090909;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 currentColor;
  color: var(--lime);
  transform: skewX(-8deg);
}
.comic-card > * { transform: skewX(8deg); }
.comic-card .material-symbols-outlined {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  font-size: 25px;
}
.comic-card b {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}
.comic-card small {
  display: block;
  margin-top: 4px;
  color: var(--fg-dim);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.card-training { left: 2%; top: 54%; }
.card-nutrition { right: 2%; top: 72%; color: var(--magenta); }
.card-chat { left: 4%; top: 79%; color: var(--cyan); }
.comic-burst {
  position: absolute;
  right: -5%;
  top: -2%;
  z-index: 11;
  max-width: 178px;
  padding: 18px 20px;
  background: #fff;
  color: #000;
  border: 4px solid #000;
  box-shadow: 7px 7px 0 var(--magenta);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  transform: rotate(3deg);
}
.comic-burst span { color: var(--magenta); }
.discipline-bubble {
  top: 22%;
  right: -10%;
  z-index: 12;
  max-width: 178px;
  transform: rotate(2deg);
  pointer-events: none;
}
.poster-shard,
.poster-speed {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.poster-shard {
  width: 110px;
  height: 180px;
  clip-path: polygon(50% 0, 18% 55%, 44% 55%, 20% 100%, 88% 38%, 58% 38%, 82% 0);
  filter: drop-shadow(5px 5px 0 #000);
}
.shard-cyan { background: var(--cyan); right: 18px; top: 168px; transform: rotate(11deg); }
.shard-mag { background: var(--magenta); left: 44px; top: 36px; transform: rotate(-14deg); width: 70px; height: 122px; }
.poster-speed {
  height: 16px;
  background: var(--lime);
  box-shadow: 5px 5px 0 #000;
  transform: skewX(-24deg);
}
.speed-a { left: 58px; top: 282px; width: 190px; }
.speed-b { right: 36px; bottom: 42px; width: 230px; background: var(--cyan); }

/* legacy in-phone UI kept for downstream feature sections */
.phone {
  position: relative; width: 300px; background: #000; border: 4px solid #000;
  border-radius: 44px; padding: 11px; box-shadow: 0 0 0 2px #2a2a2a, 18px 26px 60px rgba(0,0,0,0.7);
  z-index: 5;
}
.phone, .phone * { border-radius: inherit; }
.phone-screen { background: #0b0b0b; border-radius: 34px; overflow: hidden; position: relative; }
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #000; border-radius: 16px; z-index: 6;
}
.hero-owl {
  position: absolute; right: -38px; bottom: -54px; width: 360px; z-index: 6;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.6));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

/* speech bubbles */
.bubble {
  position: absolute; background: #fff; color: #000; border: 3px solid #000;
  padding: 12px 16px; font-family: var(--font-display); font-weight: 900; font-style: italic;
  text-transform: uppercase; line-height: 1; z-index: 8; font-size: 0.92rem;
}
.bubble::after {
  content: ""; position: absolute; width: 0; height: 0;
}
.bubble.b-tl { box-shadow: 5px 5px 0 var(--cyan); }
.bubble.b-cyan { box-shadow: 5px 5px 0 var(--magenta); }
.bubble small { display:block; color: var(--magenta); }
.discipline-bubble { z-index: 12; }

/* ============================================================
   UNIVERS STRIX
   ============================================================ */
.univers { padding: 18px 0 64px; }
.univers-panel {
  border: 4px solid #000; background: #0a0a0a;
  box-shadow: 10px 10px 0 var(--lime); position: relative; overflow: hidden;
}
.univers-tab {
  display: inline-block; background: var(--lime); color: #000; padding: 8px 26px 8px 20px;
  font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase;
  letter-spacing: 0.04em; clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); font-size: 1rem;
}
.univers-row {
  display: grid; grid-template-columns: repeat(9, 1fr); gap: 8px; padding: 26px 24px 30px;
}
.uni-item { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.uni-art {
  height: 88px; display: flex; align-items: center; justify-content: center; width: 100%;
}
.uni-art .logo-variant { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.8rem; letter-spacing: -0.04em; }
.uni-art img { height: 100%; width: auto; object-fit: contain; }
.uni-cap { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 0.6rem; letter-spacing: 0.08em; color: var(--fg-dim); }
.owl-mug {
  height: 84px; width: 84px; object-fit: cover; object-position: 50% 16%;
  border: 3px solid #000; background: #111;
}

/* ============================================================
   FEATURES (app captures)
   ============================================================ */
.features { padding: 70px 0; }
.feat-list { display: flex; flex-direction: column; gap: 76px; margin-top: 56px; }
.feat-row { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.feat-row.rev .feat-text { order: 2; }
.feat-phone-wrap { display: flex; justify-content: center; position: relative; }
.feat-phone {
  width: 290px; background: #000; border: 4px solid #000; padding: 10px;
  border-radius: 42px; box-shadow: 0 0 0 2px #2a2a2a, 14px 20px 46px rgba(0,0,0,0.6);
  position: relative; z-index: 3;
}
.feat-phone img { border-radius: 32px; width: 100%; }
.feat-kicker {
  display: inline-flex; align-items: center; gap: 8px; background: var(--card-hi);
  border: 2px solid #000; padding: 5px 12px; font-family: var(--font-display);
  font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 0.7rem;
  letter-spacing: 0.12em; margin-bottom: 16px;
}
.feat-kicker .material-symbols-outlined { font-size: 18px; }
.feat-text h3 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 14px; }
.feat-text p { color: var(--fg-dim); margin-bottom: 18px; max-width: 440px; }
.feat-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feat-points li { display: flex; align-items: flex-start; gap: 10px; color: var(--fg); font-weight: 500; }
.feat-points .material-symbols-outlined { font-size: 20px; margin-top: 1px; }

/* ============================================================
   HELP CARDS
   ============================================================ */
.help { padding: 70px 0; }
.help-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 34px 26px;
  margin-top: 54px;
}
.help-card {
  --bubble-accent: var(--lime);
  --bubble-paper: #fffdf4;
  --bubble-size: 360px;
  --bubble-tilt: -1.5deg;
  --tail-x: 58px;
  --tail-y: auto;
  --tail-side: auto;
  --tail-tilt: -18deg;
  background:
    radial-gradient(circle at 86% 14%, rgba(198,255,46,0.16), transparent 22%),
    radial-gradient(circle at 18% 90%, rgba(37,211,255,0.09), transparent 24%),
    var(--bubble-paper);
  color: #080808;
  border: 4px solid #000;
  border-radius: 42px 72px 50px 64px / 58px 44px 72px 46px;
  box-shadow: 7px 8px 0 var(--bubble-accent), 12px 13px 0 #000;
  flex: 0 1 var(--bubble-size);
  min-height: 0;
  padding: 24px 26px 28px 96px;
  position: relative;
  overflow: visible;
  clip-path: none;
  transform: rotate(var(--bubble-tilt));
  transition: transform .1s, box-shadow .1s;
}
.help-card::before {
  content: "";
  position: absolute;
  left: var(--tail-x);
  right: var(--tail-side);
  bottom: -27px;
  width: 58px;
  height: 42px;
  background: var(--bubble-paper);
  border: 4px solid #000;
  border-top: 0;
  border-left-width: 3px;
  border-radius: 0 0 80% 18%;
  clip-path: polygon(0 0, 100% 0, 24% 100%);
  transform: rotate(var(--tail-tilt));
  z-index: 2;
}
.help-card::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: inherit;
  color: #000;
  opacity: 0.045;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
  background-size: 7px 7px;
  pointer-events: none;
  z-index: 0;
}
.help-card:nth-child(1) { --bubble-size: 350px; --bubble-tilt: -2.2deg; --tail-x: 74px; border-radius: 50px 78px 42px 70px / 58px 46px 68px 50px; }
.help-card:nth-child(2) { --bubble-size: 392px; --bubble-tilt: 1.5deg; --tail-x: auto; --tail-side: 64px; --tail-tilt: 18deg; margin-top: 24px; border-radius: 68px 44px 74px 48px / 46px 62px 42px 72px; }
.help-card:nth-child(3) { --bubble-size: 330px; --bubble-tilt: 1.1deg; --tail-x: 54px; margin-top: -8px; border-radius: 76px 48px 62px 44px / 50px 78px 42px 68px; }
.help-card:nth-child(4) { --bubble-size: 370px; --bubble-tilt: -1.2deg; --tail-x: auto; --tail-side: 78px; --tail-tilt: 16deg; margin-top: 16px; border-radius: 44px 82px 58px 72px / 70px 46px 74px 42px; }
.help-card:nth-child(5) { --bubble-size: 405px; --bubble-tilt: -0.8deg; --tail-x: 92px; border-radius: 58px 46px 86px 52px / 48px 76px 46px 70px; }
.help-card:nth-child(6) { --bubble-size: 346px; --bubble-tilt: 2deg; --tail-x: auto; --tail-side: 54px; --tail-tilt: 20deg; margin-top: 28px; border-radius: 72px 52px 48px 82px / 42px 70px 58px 48px; }
.help-card:hover { transform: translate(-3px,-6px) rotate(0deg); box-shadow: 10px 12px 0 var(--magenta), 15px 17px 0 #000; }
.help-card.reveal { transform: rotate(var(--bubble-tilt)) !important; }
.help-card.reveal:hover { transform: translate(-3px,-6px) rotate(0deg) !important; }
.help-card.s-cyan { --bubble-accent: var(--cyan); }
.help-card.s-mag  { --bubble-accent: var(--magenta); }
.help-ico {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 56px; height: 56px; border: 4px solid #000; display: flex;
  align-items: center; justify-content: center;
  background: #070707;
  box-shadow: 4px 4px 0 var(--bubble-accent);
  border-radius: 50%;
  z-index: 1;
}
.help-ico .material-symbols-outlined { font-size: 32px; }
.help-card h4 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.12rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #080808;
  text-shadow: 2px 2px 0 rgba(198,255,46,0.45);
}
.help-card p {
  position: relative;
  z-index: 1;
  color: #333;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.42;
}
.c-lime { color: var(--lime); } .c-cyan { color: var(--cyan); } .c-mag { color: var(--magenta); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 70px 0; }
.faq-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; margin-top: 50px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 3px solid #000; background: var(--card); box-shadow: 4px 4px 0 #000; }
.faq-item.open { box-shadow: 6px 6px 0 var(--lime); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
}
.faq-q .plus { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; color: var(--lime); transition: transform .15s; line-height: 1; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--fg-dim); }
.faq-aside { position: relative; }
.faq-bubble {
  background: #fff; color: #000; border: 4px solid #000; box-shadow: 8px 8px 0 var(--magenta);
  padding: 26px; position: relative; z-index: 3;
}
.faq-bubble .big { font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 1.7rem; line-height: 0.95; }
.faq-bubble .accent { color: var(--magenta); }
.faq-owl { width: 230px; margin: -30px auto 0; display: block; position: relative; z-index: 2; filter: drop-shadow(0 14px 22px rgba(0,0,0,0.6)); animation: float 7s ease-in-out infinite; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 70px 0 90px; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; margin-top: 40px; align-items: start; }
.contact-info p { color: var(--fg-dim); margin-bottom: 26px; max-width: 320px; }
.contact-mail { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.contact-mail .ico { width: 46px; height: 46px; border: 3px solid var(--lime); color: var(--lime); display: flex; align-items: center; justify-content: center; }
.contact-mail a { color: #fff; font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 1.1rem; text-decoration: none; }
.contact-mail a:hover { color: var(--lime); }
.contact-note { color: var(--fg-faint); font-size: 0.85rem; }

.contact-form {
  border: 4px solid #000; background: #0a0a0a; box-shadow: 10px 10px 0 var(--cyan);
  padding: 30px; position: relative;
}
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--fg-dim); }
.field input, .field textarea {
  background: var(--input); border: 3px solid var(--line-ghost); color: #fff;
  padding: 13px 14px; font-family: var(--font-body); font-size: 0.98rem; transition: border-color .1s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); }
.field textarea { resize: vertical; min-height: 120px; }
.field.error input, .field.error textarea { border-color: var(--magenta); }
.field .err { color: var(--magenta); font-size: 0.74rem; font-weight: 700; display: none; }
.field.error .err { display: block; }
.form-foot { display: flex; justify-content: flex-end; margin-top: 6px; }
.form-success {
  display: none; align-items: center; gap: 10px; background: var(--lime); color: #000;
  border: 3px solid #000; padding: 14px 18px; font-family: var(--font-display); font-weight: 900;
  font-style: italic; text-transform: uppercase; margin-top: 16px;
}
.form-success.show { display: flex; }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta { margin-top: 30px; border-top: 5px solid var(--line); position: relative; overflow: hidden;
  background: linear-gradient(120deg, #06d4ea 0%, #18c6ff 50%, #0a0a0a 50%); }
.footer-band { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  max-width: 1240px; margin: 0 auto; padding: 30px 28px; min-height: 200px; }
.fc-left .skewed-plate { background: #fff; color: #000; display: inline-block; padding: 10px 22px; transform: skewX(-9deg); box-shadow: 6px 6px 0 #000; }
.fc-left h3 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.fc-left .accent { color: var(--magenta); }
.fc-right { text-align: right; }
.fc-right h3 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); color: #fff; }
.fc-right .accent { color: var(--lime); }
.fc-mid { position: relative; width: 200px; display: flex; justify-content: center; }
.fc-mid img { width: 200px; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.5)); }

footer.foot { background: #050505; border-top: 4px solid var(--line); }
.foot-inner { max-width: 1240px; margin: 0 auto; padding: 34px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-inner img { height: 44px; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: var(--fg-dim); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.08em; }
.foot-links a:hover { color: var(--lime); }
.foot-copy { color: var(--fg-faint); font-size: 0.78rem; width: 100%; text-align: center; padding-top: 8px; }

/* ============================================================
   REVEAL ANIMATION  (visible by default; hidden only when JS
   adds .anim to <html>, so embeds/print/no-JS never go blank)
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.anim .reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
html.anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.anim .reveal { opacity: 1; transform: none; transition: none; }
  .hero-owl, .faq-owl { animation: none; }
}
@media print {
  html.anim .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   IN-PHONE APP UI (hero dashboard recreation)
   ============================================================ */
.app { background: #0b0b0b; color: #fff; font-family: var(--font-body); padding-bottom: 14px; }
.app-status { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px 4px; font-size: 12px; font-weight: 700; }
.app-status .right { display: flex; gap: 5px; align-items: center; }
.app-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 16px 12px; }
.app-head .logo { display:flex; align-items:center; gap:6px; }
.app-head .logo img { height: 26px; }
.app-head .hp-right { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 900; font-style: italic; }
.app-head .fire { color: var(--lime); display:flex; align-items:center; gap:3px; font-size: 13px; }
.app-head .material-symbols-outlined { font-size: 20px; color: var(--fg-dim); }
.app-greet { display: flex; gap: 10px; align-items: center; padding: 4px 16px 14px; }
.app-greet img { width: 42px; height: 42px; object-fit: cover; object-position: 50% 14%; border: 2px solid var(--lime); }
.app-greet .sp { background: #fff; color: #000; border: 2px solid #000; padding: 7px 10px; font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 9px; line-height: 1.1; }
.app-label { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.14em; font-size: 9px; color: var(--fg-dim); padding: 4px 16px 8px; }
.app-rows { display: flex; flex-direction: column; gap: 8px; padding: 0 14px; }
.app-row { display: flex; align-items: center; gap: 10px; background: #171717; border: 2px solid #000; padding: 9px 11px; }
.app-row .ri { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: 2px solid currentColor; flex: 0 0 auto; }
.app-row .ri .material-symbols-outlined { font-size: 17px; }
.app-row .rt { flex: 1; min-width: 0; }
.app-row .rt .t1 { font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 11px; }
.app-row .rt .t2 { font-size: 10px; color: var(--fg-dim); }
.app-row .rc { width: 24px; height: 24px; border: 2px solid #333; display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.app-row .rc.done { background: var(--cyan); border-color: var(--cyan); color: #003; }
.app-row .rc .material-symbols-outlined { font-size: 16px; }
.app-prog { margin: 14px 14px 0; border: 2px solid #000; background: #131313; padding: 12px; }
.app-prog .ph { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.12em; font-size: 9px; color: var(--fg-dim); margin-bottom: 10px; }
.app-stats { display: flex; gap: 8px; margin-bottom: 12px; }
.app-stat { flex: 1; text-align: center; }
.app-stat .sv { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 22px; line-height: 1; }
.app-stat .sl { font-size: 8px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }
.app-chart { height: 46px; width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-stage { min-height: 500px; margin-top: -18px; }
  .comic-poster { width: min(560px, 100%); transform: translateY(-54px); }
  .feat-row, .feat-row.rev { grid-template-columns: 1fr; gap: 28px; }
  .feat-row.rev .feat-text { order: 0; }
  .feat-text { text-align: center; }
  .feat-text p, .feat-points { margin-left: auto; margin-right: auto; }
  .feat-points { max-width: 380px; }
  .help-grid { gap: 32px 22px; }
  .help-card:nth-child(1) { --bubble-size: 315px; }
  .help-card:nth-child(2) { --bubble-size: 292px; margin-top: 18px; }
  .help-card:nth-child(3) { --bubble-size: 296px; }
  .help-card:nth-child(4) { --bubble-size: 318px; margin-top: 14px; }
  .help-card:nth-child(5) { --bubble-size: 326px; }
  .help-card:nth-child(6) { --bubble-size: 286px; margin-top: 18px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .univers-row { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    align-items: center;
  }
  .hero-logo-title img { width: min(390px, 100%); }
  .hero-sub { font-size: clamp(1.8rem, 4.5vw, 2.7rem); }
  .hero p.lead { font-size: 1rem; max-width: 390px; }
  .store-row { gap: 12px; }
  .store-badge { min-width: 176px; padding: 10px 14px; }
  .store-badge .material-symbols-outlined { font-size: 32px; }
  .store-badge .sb-main { font-size: 1.05rem; }
  .hero-stage {
    min-height: 560px;
    margin-top: 0;
  }
  .comic-poster {
    width: min(500px, 100%);
    min-height: 0;
    transform: none;
  }
  .comic-poster::before { inset: 64px 24px 34px 18px; }
  .comic-poster::after { inset: 100px 36px 50px; }
  .poster-shard { width: 82px; height: 142px; }
  .shard-cyan { right: 14px; top: 160px; }
  .speed-a { left: 46px; top: 302px; width: 140px; }
  .speed-b { right: 18px; bottom: 34px; width: 178px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu {
    display: block; position: fixed; top: 80px; left: 0; width: 100%; z-index: 99;
    background: rgba(8,8,8,0.97); backdrop-filter: blur(14px); border-bottom: 4px solid var(--line);
    transform: translateY(-130%); transition: transform .25s ease;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: 16px 26px; color: #fff; text-decoration: none;
    font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase;
    border-bottom: 1px solid var(--line-ghost); }
  .mobile-menu a:hover { background: var(--lime); color: #000; }
  .comic-poster { transform: translateY(-34px); }
}
@media (max-width: 680px) {
  .wrap { padding: 0 18px; }
  .hero-stage { min-height: 430px; }
  .comic-poster { width: min(440px, 100%); min-height: 0; transform: translateY(-24px); }
  .comic-poster::before { inset: 52px 24px 26px 18px; }
  .comic-poster::after { inset: 82px 32px 42px; }
  .comic-burst { max-width: 158px; padding: 13px 14px; font-size: 0.82rem; }
  .discipline-bubble { max-width: 150px; padding: 11px 12px; font-size: 0.76rem; }
  .comic-card { min-width: 150px; grid-template-columns: 34px minmax(0, 1fr); padding: 8px 10px; gap: 8px; }
  .comic-card .material-symbols-outlined { width: 34px; height: 34px; font-size: 20px; }
  .comic-card b { font-size: 0.82rem; }
  .comic-card small { font-size: 0.52rem; }
  .poster-shard { width: 74px; height: 128px; }
  .shard-cyan { right: 16px; top: 136px; }
  .shard-mag { left: 20px; top: 22px; width: 50px; height: 92px; }
  .speed-a { left: 26px; top: 252px; width: 126px; }
  .speed-b { right: 20px; bottom: 22px; width: 150px; }
  .hero-owl { width: 270px; right: -20px; bottom: -30px; }
  .help-grid { gap: 30px; }
  .help-card {
    flex-basis: var(--mobile-bubble-size, 82%);
    padding: 24px 22px 28px 88px;
  }
  .help-card:nth-child(n) { margin-top: 0; }
  .help-card:nth-child(1) { --mobile-bubble-size: 82%; align-self: flex-start; }
  .help-card:nth-child(2) { --mobile-bubble-size: 91%; margin-left: auto; }
  .help-card:nth-child(3) { --mobile-bubble-size: 76%; align-self: flex-start; }
  .help-card:nth-child(4) { --mobile-bubble-size: 84%; margin-left: auto; }
  .help-card:nth-child(5) { --mobile-bubble-size: 93%; align-self: flex-start; }
  .help-card:nth-child(6) { --mobile-bubble-size: 79%; margin-left: auto; }
  .help-ico { left: 22px; width: 52px; height: 52px; }
  .fgrid { grid-template-columns: 1fr; }
  .footer-cta { background: #0a0a0a; }
  .footer-band { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .fc-right { text-align: center; }
  .univers-row { grid-template-columns: repeat(3, 1fr); }
  .store-badge { min-width: 0; flex: 1; }
}
@media (max-width: 420px) {
  .univers-row { grid-template-columns: repeat(2, 1fr); }
}
