/* ==========================================================================
   AeroValen — Console Gaming Editorial
   Palette: deep navy · graphite · electric cyan
   ========================================================================== */

:root {
  --navy-900: #060913;
  --navy-850: #0a0f1e;
  --navy-800: #0d1426;
  --navy-700: #131c33;
  --graphite: #1b2438;
  --graphite-soft: #232f49;
  --cyan: #34e0ff;
  --cyan-deep: #12b6da;
  --violet: #7b6cff;
  --ink: #e8edf7;
  --ink-soft: #a5b2c9;
  --ink-faint: #6c7a94;
  --line: rgba(148, 173, 214, 0.14);
  --glass: rgba(19, 28, 51, 0.55);
  --glass-strong: rgba(13, 20, 38, 0.82);
  --glow-cyan: 0 0 34px rgba(52, 224, 255, 0.35);
  --radius-s: 12px;
  --radius: 20px;
  --radius-l: 30px;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.75);
  --maxw: 1240px;
  --ff-display: "Clash Grotesk", "Space Grotesk", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--navy-900);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Animated aurora backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(52, 224, 255, 0.13), transparent 60%),
    radial-gradient(760px 620px at 92% 8%, rgba(123, 108, 255, 0.12), transparent 62%),
    radial-gradient(1000px 800px at 55% 110%, rgba(18, 182, 218, 0.10), transparent 60%);
  animation: drift 22s var(--ease) infinite alternate;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 173, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 173, 214, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}
@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.08); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

.wrap { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-display);
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 56ch; }

.gradient-text {
  background: linear-gradient(120deg, #fff 20%, var(--cyan) 60%, var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Buttons */
.btn {
  --pad: 0.9rem 1.6rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: var(--pad);
  font-family: var(--ff-display);
  font-weight: 500; font-size: 0.95rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  position: relative;
}
.btn-primary {
  background: linear-gradient(120deg, var(--cyan), var(--cyan-deep));
  color: #04121a; box-shadow: var(--glow-cyan);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 46px rgba(52,224,255,0.55); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--line); color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: #fff; transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

/* Glass card base */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

/* ============================ HEADER ============================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
  padding: 0.55rem 0;
}
.site-header.scrolled {
  background: var(--glass-strong);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--ff-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.02em; }
.brand .mark { width: 34px; height: 34px; filter: drop-shadow(0 0 10px rgba(52,224,255,0.5)); }
.brand b { color: var(--cyan); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  font-size: 0.92rem; color: var(--ink-soft);
  padding: 0.5rem 0.85rem; border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.05); }

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.burger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; border-radius: 12px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero { position: relative; padding: clamp(9rem, 16vh, 12rem) 0 clamp(4rem,8vw,7rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); font-weight: 600; }
.hero .lead { font-size: 1.18rem; margin: 1.4rem 0 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--ff-display); font-size: 2.1rem; color: #fff; line-height: 1; }
.hero-stats .lbl { font-size: 0.8rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 0.4rem; }

.hero-visual { position: relative; }
.hero-media {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-media::after { content:""; position:absolute; inset:0; background: linear-gradient(190deg, transparent 40%, rgba(6,9,19,0.85)); }
.hero-float {
  position: absolute; padding: 1rem 1.2rem; border-radius: var(--radius);
  background: var(--glass-strong); border: 1px solid var(--line);
  backdrop-filter: blur(14px); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-float .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 1.8s infinite; }
.hero-float.tl { top: 8%; left: -8%; animation: floaty 6s var(--ease) infinite; }
.hero-float.br { bottom: 9%; right: -7%; animation: floaty 7s var(--ease) infinite reverse; }
.hero-float small { color: var(--ink-faint); display: block; font-size: 0.72rem; }
.hero-float b { font-family: var(--ff-display); font-weight: 500; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ============================ SECTION HEAD ============================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.sec-head p { color: var(--ink-soft); max-width: 48ch; margin: 0; }

/* ============================ FEATURED RELEASES ============================ */
.featured-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 240px; gap: 1.4rem; }
.rel-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); display: flex; align-items: flex-end;
  isolation: isolate;
}
.rel-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 0.7s var(--ease); }
.rel-card:hover img { transform: scale(1.09); }
.rel-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, transparent 30%, rgba(6,9,19,0.92)); }
.rel-card .body { padding: 1.5rem; }
.rel-card .tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); font-family: var(--ff-display); }
.rel-card h3 { font-size: 1.35rem; margin: 0.4rem 0 0.2rem; }
.rel-card .meta { font-size: 0.85rem; color: var(--ink-soft); }
.rel-card.tall { grid-row: span 2; }
.rel-card.tall h3 { font-size: 1.9rem; }

/* ============================ ECOSYSTEM (split) ============================ */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.eco-card {
  padding: 2rem 1.8rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--graphite), var(--navy-800));
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.eco-card:hover { transform: translateY(-8px); border-color: rgba(52,224,255,0.4); }
.eco-card .icn { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(52,224,255,0.1); margin-bottom: 1.2rem; }
.eco-card .icn svg { width: 26px; height: 26px; stroke: var(--cyan); }
.eco-card h3 { font-size: 1.3rem; }
.eco-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.eco-card::before { content:""; position:absolute; top:-40%; right:-30%; width: 160px; height: 160px; border-radius:50%; background: radial-gradient(circle, rgba(123,108,255,0.25), transparent 70%); }

/* ============================ COMPARISON TABLE ============================ */
.compare-shell { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); background: var(--glass); }
.compare-scroll { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; min-width: 720px; }
table.compare th, table.compare td { padding: 1.15rem 1.4rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
table.compare thead th { font-family: var(--ff-display); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); background: rgba(255,255,255,0.02); }
table.compare tbody th { color: #fff; font-family: var(--ff-display); font-weight: 500; }
table.compare td { color: var(--ink-soft); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: 0; }
table.compare .hi { color: var(--cyan); }

/* ============================ UPCOMING (timeline) ============================ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content:""; position:absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--cyan), transparent); }
.tl-item { position: relative; padding: 0 0 2.4rem 1.6rem; }
.tl-item::before { content:""; position:absolute; left: -1.6rem; top: 6px; width: 14px; height: 14px; border-radius:50%; background: var(--navy-900); border: 2px solid var(--cyan); box-shadow: 0 0 12px rgba(52,224,255,0.6); }
.tl-item .when { font-family: var(--ff-display); color: var(--cyan); font-size: 0.85rem; letter-spacing: 0.08em; }
.tl-item h3 { font-size: 1.35rem; margin: 0.3rem 0; }
.tl-item p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ============================ GENRE SPOTLIGHT ============================ */
.genre-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.genre-card {
  padding: 1.8rem 1.4rem; border-radius: var(--radius); text-align: left;
  background: var(--glass); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), background 0.4s;
}
.genre-card:hover { transform: translateY(-6px); background: rgba(52,224,255,0.06); }
.genre-card .k { font-family: var(--ff-display); font-size: 2.2rem; color: var(--cyan); }
.genre-card h4 { font-size: 1.1rem; margin: 0.6rem 0 0.4rem; }
.genre-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ============================ SPLIT FEATURE (image + text) ============================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.8s var(--ease); }
.split-media:hover img { transform: scale(1.06); }
.split ul.ticks { margin-top: 1.4rem; display: grid; gap: 0.8rem; }
.split ul.ticks li { display: flex; gap: 0.7rem; color: var(--ink-soft); }
.split ul.ticks svg { flex: 0 0 20px; width: 20px; height: 20px; stroke: var(--cyan); margin-top: 2px; }

/* ============================ ACCESSORIES ============================ */
.acc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.acc-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--glass); transition: transform 0.4s var(--ease); }
.acc-card:hover { transform: translateY(-6px); }
.acc-card .pic { aspect-ratio: 16/10; overflow: hidden; }
.acc-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.acc-card:hover .pic img { transform: scale(1.08); }
.acc-card .body { padding: 1.3rem 1.4rem; }
.acc-card h4 { font-size: 1.15rem; margin: 0 0 0.3rem; }
.acc-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 0.8rem; }
.acc-card .price { font-family: var(--ff-display); color: var(--cyan); }

/* ============================ COMMUNITY BANNER ============================ */
.community { position: relative; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); }
.community img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:-1; }
.community::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(100deg, rgba(6,9,19,0.94) 40%, rgba(6,9,19,0.55)); }
.community .inner { padding: clamp(2.5rem, 6vw, 5rem); max-width: 60ch; }

/* ============================ FAQ ============================ */
.faq-list { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--glass); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: #fff; font-family: var(--ff-display); font-size: 1.08rem; padding: 1.25rem 1.4rem; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-q .ico { flex: 0 0 auto; transition: transform 0.4s var(--ease); color: var(--cyan); font-size: 1.4rem; line-height: 1; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); margin: 0; }

/* ============================ NEWSLETTER / CTA ============================ */
.newsletter { border-radius: var(--radius-l); padding: clamp(2.5rem,6vw,4.5rem); text-align: center; position: relative; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(140deg, var(--graphite), var(--navy-850)); }
.newsletter::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 50% -10%, rgba(52,224,255,0.18), transparent 70%); }
.newsletter h2 { font-size: clamp(2rem,4vw,3rem); }
.nl-form { display: flex; gap: 0.7rem; max-width: 480px; margin: 1.8rem auto 0; flex-wrap: wrap; justify-content: center; }
.nl-form input { flex: 1 1 240px; padding: 0.95rem 1.3rem; border-radius: 100px; border: 1px solid var(--line); background: rgba(0,0,0,0.3); color: #fff; font-size: 0.95rem; }
.nl-form input:focus { outline: none; border-color: var(--cyan); }
.nl-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.9rem; }

.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 20ch; margin-inline: auto; }
.cta-band .btn { margin-top: 1.6rem; }

/* ============================ FOOTER ============================ */
.site-footer { border-top: 1px solid var(--line); padding: 4.5rem 0 2rem; margin-top: 2rem; background: linear-gradient(180deg, transparent, rgba(10,15,30,0.6)); }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.foot-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 34ch; margin: 1rem 0; }
.foot-col h5 { font-family: var(--ff-display); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 1.1rem; }
.foot-col a { display: block; color: var(--ink-soft); font-size: 0.92rem; padding: 0.32rem 0; transition: color 0.25s, transform 0.25s; }
.foot-col a:hover { color: var(--cyan); transform: translateX(4px); }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 0.85rem; }
.socials { display: flex; gap: 0.6rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: 0.3s; }
.socials a:hover { border-color: var(--cyan); background: rgba(52,224,255,0.1); }
.socials svg { width: 17px; height: 17px; }

/* ============================ PAGE HERO (inner pages) ============================ */
.page-hero { padding: clamp(9rem, 15vh, 12rem) 0 clamp(3rem,6vw,5rem); text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.page-hero .lead { margin: 1.2rem auto 0; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 1.4rem; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--cyan); }

/* Generic card grid for inner pages */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.game-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--glass); transition: transform 0.45s var(--ease), border-color 0.4s; display: flex; flex-direction: column; }
.game-card:hover { transform: translateY(-7px); border-color: rgba(52,224,255,0.4); }
.game-card .pic { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.game-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.game-card:hover .pic img { transform: scale(1.08); }
.game-card .pic .badge { position: absolute; top: 0.9rem; left: 0.9rem; background: var(--glass-strong); border: 1px solid var(--line); padding: 0.3rem 0.7rem; border-radius: 100px; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); font-family: var(--ff-display); }
.game-card .body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.game-card h3 { font-size: 1.25rem; margin: 0 0 0.4rem; }
.game-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 1rem; }
.game-card .foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--ink-faint); }
.game-card .score { font-family: var(--ff-display); color: var(--cyan); font-size: 1.05rem; }

/* Prose (legal pages) */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin-top: 2.6rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: 0.5rem; margin: 1rem 0; }
.prose a { color: var(--cyan); }
.prose .updated { color: var(--ink-faint); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.5rem; font-family: var(--ff-display); }
.field input, .field textarea, .field select { width: 100%; padding: 0.9rem 1.1rem; border-radius: var(--radius-s); border: 1px solid var(--line); background: rgba(0,0,0,0.28); color: #fff; font-family: inherit; font-size: 0.95rem; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-info li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-info .icn { width: 44px; height: 44px; border-radius: 12px; background: rgba(52,224,255,0.1); display: grid; place-items: center; flex: 0 0 auto; }
.contact-info .icn svg { width: 20px; height: 20px; stroke: var(--cyan); }
.contact-info h4 { margin: 0 0 0.2rem; font-size: 1rem; }
.contact-info p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.stat-strip .cell { text-align: center; padding: 1.8rem 1rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); }
.stat-strip .num { font-family: var(--ff-display); font-size: clamp(2rem,4vw,2.8rem); color: #fff; }
.stat-strip .num .u { color: var(--cyan); }
.stat-strip .lbl { color: var(--ink-soft); font-size: 0.85rem; }

/* Reveal animations */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }

/* Back to top */
#toTop { position: fixed; right: 1.6rem; bottom: 1.6rem; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: var(--glass-strong); backdrop-filter: blur(10px); color: var(--cyan); cursor: pointer; display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(20px); transition: 0.4s var(--ease); z-index: 90; }
#toTop.show { opacity: 1; pointer-events: auto; transform: none; }
#toTop svg { width: 20px; height: 20px; }

/* Scroll progress bar */
#progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--cyan), var(--violet)); z-index: 200; transition: width 0.1s linear; }

/* Cookie banner */
#cookieBar { position: fixed; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; z-index: 150; max-width: 560px; margin-inline: auto; padding: 1.3rem 1.5rem; border-radius: var(--radius); background: var(--glass-strong); border: 1px solid var(--line); backdrop-filter: blur(16px); box-shadow: var(--shadow); display: none; }
#cookieBar.show { display: block; animation: slideUp 0.5s var(--ease); }
#cookieBar p { margin: 0 0 1rem; font-size: 0.9rem; color: var(--ink-soft); }
#cookieBar .row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } }

/* Mobile menu panel */
.mobile-panel { position: fixed; inset: 0 0 0 auto; width: min(80%, 340px); background: var(--glass-strong); backdrop-filter: blur(22px); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.45s var(--ease); z-index: 99; padding: 6rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-panel.open { transform: none; }
.mobile-panel a { font-family: var(--ff-display); font-size: 1.2rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.mobile-panel a:hover { color: var(--cyan); }
.scrim { position: fixed; inset: 0; background: rgba(3,6,14,0.6); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 0.4s; z-index: 98; }
.scrim.show { opacity: 1; pointer-events: auto; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1080px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .genre-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .hero-float.tl { left: 0; } .hero-float.br { right: 0; }
  .eco-grid { grid-template-columns: 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .acc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .featured-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .rel-card.tall { grid-row: span 1; }
  .genre-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
