/* ============================================================
   VNESYS — styles-new.css
   Dark premium. Syne + DM Sans. CSS-only animations.
   Fully responsive mobile-first.
   ============================================================ */

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

:root {
  --red:     #e03030;
  --red-dim: rgba(224, 48, 48, 0.12);
  --white:   #f5f5f0;
  --black:   #080808;
  --gray:    #888880;
  --border:  rgba(255, 255, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  transition: background 0.4s, padding 0.4s;
}

@media (min-width: 768px) {
  .nav { padding: 24px 48px; }
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .nav.scrolled { padding: 16px 48px; }
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--white);
}

@media (min-width: 768px) {
  .nav-logo { font-size: 18px; }
}

.nav-links {
  display: none;
  gap: 40px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-link:hover { color: var(--white); }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) {
  .nav-burger { display: none; }
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 0 24px 56px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 0 48px 72px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.6) 0%, transparent 30%, transparent 55%, rgba(8,8,8,0.97) 100%),
    linear-gradient(to right, rgba(8,8,8,0.5) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  overflow: visible;
  padding-top: 140px;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}

@media (min-width: 768px) {
  .hero-tag { font-size: 11px; letter-spacing: 0.28em; margin-bottom: 24px; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 112px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  width: 100%;
}

.hero-line {
  display: block;
  overflow: visible;
  width: 100%;
  margin-bottom: 16px;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  animation: slideUp 1s var(--ease-out) forwards;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 10vw, 112px);
  white-space: nowrap;
  max-width: none;
}

.hero-line:nth-child(1) .hero-word { animation-delay: 0.3s; }
.hero-line:nth-child(2) .hero-word { animation-delay: 0.46s; color: var(--red); }
.hero-line:nth-child(3) .hero-word { animation-delay: 0.62s; }

.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.6);
  max-width: 320px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}

@media (min-width: 768px) {
  .hero-sub { margin-top: 32px; font-size: 15px; max-width: 340px; }
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--ease-out) forwards;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: background 0.25s, transform 0.25s;
}

.btn-primary:hover {
  background: #ff3535;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 24px;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 1.5s forwards;
}

@media (min-width: 768px) {
  .hero-scroll-hint { display: flex; right: 48px; bottom: 40px; }
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gray);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0c0c0c;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

@media (min-width: 768px) {
  .ticker-track { gap: 56px; }
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-track span {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gray);
  white-space: nowrap;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ticker-track span { font-size: 11px; letter-spacing: 0.22em; }
}

.ticker-track .dot {
  color: var(--red);
  margin-left: 8px;
}

/* ============================================================
   EDITORIAL SECTION
   ============================================================ */
.editorial-section {
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .editorial-section { padding: 96px 48px; }
}

@media (min-width: 1024px) {
  .editorial-section { padding: 120px 48px; }
}

.editorial-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .editorial-inner {
    grid-template-columns: 200px 1fr 1fr;
    gap: 64px;
  }
}

.editorial-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--red);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.editorial-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 60px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.editorial-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   EDITORIAL BODY PARAGRAPHES — ANIMÉS
   ============================================================ */
.editorial-body p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245, 245, 240, 0.55);
  position: relative;
  padding-left: 16px;
  transition: color 0.4s ease, padding-left 0.4s var(--ease-out);
  cursor: default;
}

@media (min-width: 768px) {
  .editorial-body p { font-size: 15px; padding-left: 20px; }
}

.editorial-body p::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 0%;
  background: linear-gradient(to top, var(--red), transparent);
  transition: height 0.55s var(--ease-out);
}

.editorial-body p:hover {
  color: rgba(245, 245, 240, 0.88);
  padding-left: 24px;
}

@media (min-width: 768px) {
  .editorial-body p:hover { padding-left: 28px; }
}

.editorial-body p:hover::before { height: 100%; }

.editorial-body strong {
  color: var(--white);
  font-weight: 500;
  background: linear-gradient(90deg, rgba(224, 48, 48, 0.15), transparent);
  padding: 1px 7px 1px 4px;
  border-radius: 2px;
  display: inline;
  transition: background 0.35s ease, color 0.35s ease;
}

.editorial-body p:hover strong {
  background: linear-gradient(90deg, rgba(224, 48, 48, 0.38), rgba(224, 48, 48, 0.05));
  color: #fff;
}

.editorial-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3em;
  font-weight: 900;
  color: var(--red);
  float: left;
  line-height: 0.78;
  margin-right: 8px;
  margin-top: 5px;
  letter-spacing: -0.04em;
}

@media (min-width: 768px) {
  .editorial-body p:first-child::first-letter { font-size: 3.4em; margin-right: 10px; }
}

.editorial-body p + p {
  margin-top: 24px;
  padding-top: 24px;
}

@media (min-width: 768px) {
  .editorial-body p + p { margin-top: 28px; padding-top: 28px; }
}

.editorial-body p + p::after {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(224, 48, 48, 0.3), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

@media (min-width: 768px) {
  .editorial-body p + p::after { left: 20px; }
}

.editorial-body p + p:hover::after { transform: scaleX(1); }

/* ============================================================
   PANELS SECTION
   ============================================================ */
.panels-section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .panels-section { padding: 80px 0; }
}

@media (min-width: 1024px) {
  .panels-section { padding: 120px 0; }
}

.panels-container {
  display: flex;
  flex-direction: column;
}

.panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

@media (min-width: 900px) {
  .panel {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
}

.panel-reverse {
  direction: ltr;
}

@media (min-width: 900px) {
  .panel-reverse { direction: rtl; }
  .panel-reverse > * { direction: ltr; }
}

.panel-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.panel-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: blur(6px);
  transform: scale(1.05);
}

.panel-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
}

.panel-media video {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out);
}

@media (min-width: 900px) {
  .panel-media { align-self: center; }
  .panel-media video { aspect-ratio: 9/16; }
}

.panel:hover .panel-media video { transform: scale(1.02); }

.panel-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 24px 48px;
}

@media (min-width: 768px) {
  .panel-text { padding: 48px 40px; }
}

@media (min-width: 1024px) {
  .panel-text { padding: 80px 64px; }
}

.panel-num {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .panel-num { margin-bottom: 32px; }
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .panel-title { margin-bottom: 28px; }
}

.panel-title em {
  font-style: normal;
  color: var(--red);
}

/* ============================================================
   PANEL DESC PARAGRAPHES — ANIMÉS
   ============================================================ */
.panel-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.5);
  max-width: 100%;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s ease;
}

@media (min-width: 1024px) {
  .panel-desc { font-size: 15px; max-width: 340px; }
}

.panel-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  transition: width 0.6s var(--ease-out);
}

.panel-desc:hover { color: rgba(245, 245, 240, 0.8); }
.panel-desc:hover::after { width: 100%; }

.panel-desc + .panel-desc { margin-top: 16px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 48px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0c0c0c;
  gap: 0;
}

@media (min-width: 768px) {
  .stats-section { padding: 64px 32px; }
}

@media (min-width: 1024px) {
  .stats-section {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 72px 48px;
  }
}

.stat-item {
  text-align: center;
  padding: 24px 12px;
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .stat-item {
    border: none;
    padding: 16px;
  }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  transition: color 0.3s;
}

.stat-item:hover .stat-num { color: var(--red); }

.stat-plus { color: var(--red); }

.stat-label {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .stat-label { font-size: 11px; letter-spacing: 0.16em; margin-top: 10px; }
}

.stat-divider {
  display: none;
}

@media (min-width: 1024px) {
  .stat-divider {
    display: block;
    width: 1px;
    height: 64px;
    background: var(--border);
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 72px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
}

@media (min-width: 768px) {
  .faq-section { padding: 96px 48px; }
}

@media (min-width: 1024px) {
  .faq-section { padding: 120px 48px; }
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .faq-inner {
    grid-template-columns: 280px 1fr;
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .faq-inner {
    grid-template-columns: 340px 1fr;
    gap: 80px;
  }
}

.faq-header { position: static; }

@media (min-width: 900px) {
  .faq-header { position: sticky; top: 100px; }
}

.faq-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 54px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.faq-title em {
  font-style: normal;
  color: var(--red);
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  cursor: pointer;
  user-select: none;
  transition: color 0.22s;
}

@media (min-width: 768px) {
  .faq-question { font-size: 16px; padding: 28px 0; gap: 24px; }
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}

@media (min-width: 768px) {
  .faq-question::after { font-size: 22px; }
}

.faq-item[open] .faq-question { color: var(--red); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer { padding-bottom: 20px; }

@media (min-width: 768px) {
  .faq-answer { padding-bottom: 28px; }
}

/* ============================================================
   FAQ ANSWER PARAGRAPHES — ANIMÉS
   ============================================================ */
.faq-answer p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(245, 245, 240, 0.45);
  max-width: 560px;
  position: relative;
  padding-left: 12px;
  border-left: 1px solid rgba(224, 48, 48, 0.2);
  transition: color 0.4s ease, border-color 0.4s ease;
}

@media (min-width: 768px) {
  .faq-answer p { font-size: 14px; padding-left: 14px; }
}

.faq-answer p:hover {
  color: rgba(245, 245, 240, 0.78);
  border-color: var(--red);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 96px 48px; }
}

@media (min-width: 1024px) {
  .cta-section {
    grid-template-columns: 1fr 1fr;
    padding: 120px 48px;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(224, 48, 48, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  padding-right: 0;
}

@media (min-width: 1024px) {
  .cta-content { padding-right: 64px; }
}

.cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .cta-eyebrow { margin-bottom: 24px; }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .cta-title { margin-bottom: 28px; }
}

.cta-title em {
  font-style: normal;
  color: var(--red);
}

/* ============================================================
   CTA SUB — ANIMÉ
   ============================================================ */
.cta-sub {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.55);
  max-width: 380px;
  margin-bottom: 36px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(224, 48, 48, 0.28);
  transition: color 0.4s ease, border-color 0.45s var(--ease-out);
}

@media (min-width: 768px) {
  .cta-sub { font-size: 15px; padding-left: 20px; margin-bottom: 48px; }
}

.cta-sub:hover {
  color: rgba(245, 245, 240, 0.82);
  border-color: var(--red);
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .cta-btns { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.25s;
}

@media (min-width: 768px) {
  .store-btn { padding: 16px 24px; justify-content: flex-start; }
}

.store-btn:hover {
  border-color: var(--red);
  background: var(--red-dim);
  transform: translateY(-2px);
}

.store-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .store-btn svg { width: 22px; height: 22px; }
}

.store-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
}

.store-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .store-name { font-size: 14px; }
}

.cta-mockup {
  display: none;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .cta-mockup { display: flex; }
}

.cta-mockup img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 40px 80px rgba(224, 48, 48, 0.1));
  transition: transform 0.6s var(--ease-out);
}

.cta-mockup img:hover {
  transform: scale(1.02) translateY(-8px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: #050505;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 24px 32px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 64px 48px 48px;
    gap: 48px;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .footer-logo { font-size: 20px; margin-bottom: 12px; }
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-nav { flex-direction: row; gap: 64px; }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.5);
  transition: color 0.22s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: rgba(245, 245, 240, 0.25);
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 24px 48px;
    font-size: 11px;
    gap: 0;
  }
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom-links { gap: 28px; }
}

.footer-bottom-links a {
  color: rgba(245, 245, 240, 0.25);
  transition: color 0.22s;
}

.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.18s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  48%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes wordFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
  .scroll-line   { animation: none; }
  .editorial-body p::before { transition: none; }
  .panel-desc::after { transition: none; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .hero-title,
  .hero-word {
    font-size: clamp(24px, 8vw, 42px) !important;
    line-height: 1;
  }

  .cta-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    margin-top: 80px;
  }
}