/* ================================================
   ZLT Co. — style.css
   Global stylesheet — applies to all pages.
   Font: Inter (loaded via Google Fonts on each page)
   Add this to <head>:
     <link rel="preconnect" href="https://fonts.googleapis.com">
     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
     <link href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap" rel="stylesheet">
================================================ */

/* ========================
   CSS VARIABLES
======================== */
:root {
  --red:       #ff1e56;
  --red-dark:  #c8102e;
  --bg:        #080a0f;
  --bg-2:      #0d1018;
  --bg-card:   rgba(255,255,255,0.035);
  --border:    rgba(255,255,255,0.07);
  --text:      #f0f0f0;
  --muted:     #8a8f9e;
  --dim:       #4a4f5e;
  --radius:    20px;
  --font:      'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========================
   RESET
======================== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

/* ========================
   BODY
======================== */
body {
  font-family: var(--font);
  background: var(--bg);
  /* ── Site-wide red gradient ── */
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%,  rgba(255,30,86,0.18)  0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 100% 80%,  rgba(200,16,46,0.10)  0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 0%   60%,  rgba(255,60,100,0.07) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================
   ANIMATED BACKGROUND ORBS
   Add <div class="bg-orbs"><span></span><span></span><span></span></div>
   as first child of <body> on pages that want the effect.
======================== */
.bg-orbs {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.bg-orbs span {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.12;
  animation: orbFloat 22s ease-in-out infinite alternate;
}
.bg-orbs span:nth-child(1) {
  width:700px; height:700px;
  background: radial-gradient(circle, #ff1e56, transparent 70%);
  top: -200px; left: -150px; animation-duration: 24s;
}
.bg-orbs span:nth-child(2) {
  width:500px; height:500px;
  background: radial-gradient(circle, #c8102e, transparent 70%);
  bottom:10%; right:-100px; animation-duration:19s; animation-delay:-7s;
}
.bg-orbs span:nth-child(3) {
  width:350px; height:350px;
  background: radial-gradient(circle, #ff4070, transparent 70%);
  top:55%; left:48%; animation-duration:28s; animation-delay:-14s; opacity:0.07;
}
@keyframes orbFloat {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-60px) scale(1.05); }
  66%  { transform: translate(-30px,40px) scale(0.97); }
  100% { transform: translate(20px,-20px) scale(1.03); }
}

/* ========================
   UPDATE BANNER
   Add <div id="updateBanner"> to pages that need it.
======================== */
#updateBanner {
  position: fixed; top:0; left:0; width:100%;
  background: rgba(255,30,86,0.12);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,30,86,0.22);
  color: white; display: flex;
  justify-content: center; align-items: center; gap: 10px;
  padding: 10px 56px 10px 20px;
  font-family: var(--font); font-size: 13px; font-weight: 400;
  z-index: 99999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
}
#updateBanner.hidden {
  transform: translateY(-100%); opacity: 0; pointer-events: none;
}
.banner-close {
  position: absolute; right: 14px;
  background: transparent; border: none;
  color: rgba(255,255,255,0.55); font-size: 18px;
  cursor: pointer; padding: 4px; line-height: 1; transition: color 0.2s;
}
.banner-close:hover { color: white; }
.banner-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.8); }
}

/* ========================
   NAVBAR
======================== */
nav {
  font-family: var(--font);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  background: rgba(8,10,15,0.72);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(8,10,15,0.95);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.45);
}

/* Brand / Logo */
nav h1 {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
nav h1 a {
  color: white;
  text-decoration: none;
  font-family: var(--font);
}

/* Nav links wrapper */
nav > div {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* All nav links */
nav > div > a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 9px;
  margin-left: 0;
  opacity: 1;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav > div > a:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

/* Login link — subtly highlighted */
nav > div > a.nav-login {
  color: var(--text);
}
nav > div > a.nav-login:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

/* Account CTA button — stands out as a real button */
nav > div > a.nav-account {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 9px;
  margin-left: 6px;
  box-shadow: 0 4px 14px rgba(255,30,86,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
nav > div > a.nav-account:hover {
  background: #e0183f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,30,86,0.45);
  color: white;
}
nav > div > a.nav-account::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: 0.3s;
}

@media (max-width: 780px) {
  nav { padding: 0 20px; }
  nav > div {
    display: none;
    position: fixed; top: 64px; left: 0; width: 100%;
    flex-direction: column; align-items: stretch;
    padding: 12px 16px; gap: 3px;
    background: rgba(8,10,15,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  nav > div.nav-open { display: flex; }
  nav > div > a {
    padding: 11px 14px !important;
    border-radius: 10px !important;
    margin-left: 0 !important;
    display: block;
  }
  nav > div > a.nav-account {
    margin-left: 0 !important;
    margin-top: 4px;
    justify-content: center;
  }
  .nav-hamburger { display: flex; }
}

/* ========================
   SCROLL REVEAL
   Add class "reveal" to elements, optionally d1–d4 for stagger.
======================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 13px;
  background: var(--red); color: white; text-decoration: none;
  font-family: var(--font); font-weight: 600; font-size: 14.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(255,30,86,0.32);
}
.btn-primary:hover {
  background: #e0183f;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,30,86,0.48);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 13px;
  background: rgba(255,255,255,0.055); border: 1px solid var(--border);
  color: var(--text); text-decoration: none;
  font-family: var(--font); font-weight: 500; font-size: 14.5px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
/* Legacy .btn support for older pages */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #e11d48);
  color: white; text-decoration: none;
  font-family: var(--font); font-weight: 600; font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(225,29,72,0.38);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(225,29,72,0.55);
}

/* ========================
   DIVIDER
======================== */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ========================
   SECTION BASE
======================== */
.section {
  padding: 110px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-full { padding: 110px 24px; }

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--font); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.04em;
  color: white; margin-bottom: 18px;
}
.section-body {
  font-size: 1.02rem; color: var(--muted);
  max-width: 580px; line-height: 1.8; font-weight: 300;
}

/* ========================
   HERO (index.html)
======================== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 130px 24px 90px; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--red);
  background: rgba(255,30,86,0.09); border: 1px solid rgba(255,30,86,0.22);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-14px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-logo {
  width: 90px; height: 90px; border-radius: 22px; margin: 0 auto 30px;
  animation: fadeDown 0.8s 0.1s ease both;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 60px rgba(0,0,0,0.5);
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-title {
  font-family: var(--font); font-weight: 800;
  font-size: clamp(3.2rem, 8.5vw, 6.8rem);
  line-height: 1.0; letter-spacing: -0.045em; color: white;
  max-width: 920px;
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-title .accent { color: var(--red); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem); color: var(--muted);
  max-width: 560px; line-height: 1.75; margin: 24px auto 44px; font-weight: 300;
  animation: fadeUp 0.9s 0.25s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-actions {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.35s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-stats {
  display: flex; margin-top: 72px;
  border: 1px solid var(--border); border-radius: 18px;
  background: var(--bg-card); backdrop-filter: blur(16px);
  overflow: hidden; max-width: 580px; width: 100%;
  animation: fadeUp 0.9s 0.5s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-stat {
  flex: 1; padding: 20px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-weight: 800; font-size: 1.75rem; color: white;
  line-height: 1; margin-bottom: 4px; letter-spacing: -0.03em;
}
.hero-stat-label { font-size: 11.5px; color: var(--muted); font-weight: 400; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  animation: fadeUp 1s 0.8s both;
}
.scroll-hint-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform:scaleY(0.6); }
  50%      { opacity:1; transform:scaleY(1); }
}

/* ========================
   TICKER / MARQUEE
======================== */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.014); padding: 13px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 44px; font-size: 12.5px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.01em;
}
.ticker-item .dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--red); flex-shrink:0; opacity:0.65;
}
.ticker-item strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* ========================
   BENTO GRID
======================== */
.bento-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; margin-top: 56px;
}
.bento-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%), rgba(255,30,86,0.07), transparent 40%);
  opacity: 0; transition: opacity 0.3s;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover { border-color: rgba(255,30,86,0.28); transform: translateY(-4px); }
.bento-card.span2 { grid-column: span 2; }
.bento-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.bento-card h3 {
  font-weight: 700; font-size: 1.1rem; color: white;
  margin-bottom: 10px; letter-spacing: -0.025em;
}
.bento-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; font-weight: 300; }
.bento-tag {
  display: inline-block; margin-top: 18px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--red);
  background: rgba(255,30,86,0.1); border: 1px solid rgba(255,30,86,0.2);
  padding: 3px 11px; border-radius: 100px;
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span2 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span2 { grid-column: span 1; }
}

/* ========================
   APP SHOWCASE
======================== */
.app-showcase { padding: 110px 24px; overflow: hidden; }
.app-showcase-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.app-showcase-inner.reverse { direction: rtl; }
.app-showcase-inner.reverse > * { direction: ltr; }
.app-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.app-badge::before {
  content: ''; width: 18px; height: 2px;
  background: var(--red); display: inline-block;
}
.app-showcase-text h2 {
  font-weight: 800; font-size: clamp(1.9rem,3.5vw,2.8rem);
  line-height: 1.1; letter-spacing: -0.04em; color: white; margin-bottom: 18px;
}
.app-showcase-text p {
  color: var(--muted); font-size: 0.97rem; line-height: 1.8;
  font-weight: 300; margin-bottom: 14px;
}
.app-feat-list { list-style: none; margin: 20px 0 30px; }
.app-feat-list li {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 0; color: var(--muted); font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
}
.app-feat-list li:last-child { border-bottom: none; }
.app-feat-list li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--red); flex-shrink: 0;
}
.app-screenshot-wrap { position: relative; }
.app-screenshot {
  width: 100%; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s;
  display: block;
}
.app-screenshot:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 60px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,30,86,0.15);
}
.app-screenshot-wrap::before {
  content: ''; position: absolute; inset: 20px; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255,30,86,0.18), transparent 70%);
  filter: blur(30px);
}
@media (max-width: 900px) {
  .app-showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-showcase-inner.reverse { direction: ltr; }
}

/* ========================
   PLATFORM STRIP
======================== */
.platform-strip {
  padding: 80px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platform-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px;
}
.platform-card {
  padding: 44px 36px; display: flex; flex-direction: column; gap: 14px;
  border-right: 1px solid var(--border); transition: background 0.25s;
}
.platform-card:last-child { border-right: none; }
.platform-card:hover { background: rgba(255,255,255,0.02); }
.platform-card-icon { font-size: 2rem; }
.platform-card h3 { font-weight: 700; font-size: 1.05rem; color: white; letter-spacing: -0.025em; }
.platform-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
@media (max-width: 780px) {
  .platform-inner { grid-template-columns: 1fr; }
  .platform-card { border-right: none; border-bottom: 1px solid var(--border); }
  .platform-card:last-child { border-bottom: none; }
}

/* ========================
   TRUST SECTION
======================== */
.trust-section {
  background: linear-gradient(135deg, rgba(255,30,86,0.055) 0%, transparent 50%),
              linear-gradient(to bottom, var(--bg), var(--bg-2), var(--bg));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 110px 24px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.trust-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-pillar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; padding: 26px 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.trust-pillar:hover { border-color: rgba(255,30,86,0.28); transform: translateY(-3px); }
.trust-pillar-icon { font-size: 1.4rem; margin-bottom: 10px; }
.trust-pillar h4 { font-size: 0.88rem; font-weight: 600; color: white; margin-bottom: 5px; }
.trust-pillar p { font-size: 0.81rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
@media (max-width: 900px) { .trust-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ========================
   RESOURCES GRID
======================== */
.resources-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; margin-top: 56px;
}
.resource-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 26px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.resource-card:hover {
  border-color: rgba(255,30,86,0.32);
  background: rgba(255,30,86,0.035);
  transform: translateY(-5px);
}
.resource-card-icon { font-size: 1.8rem; margin-bottom: 18px; display: block; }
.resource-card h3 {
  font-weight: 700; font-size: 1.05rem; color: white;
  margin-bottom: 9px; letter-spacing: -0.02em;
}
.resource-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; font-weight: 300; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 18px;
  font-size: 12.5px; font-weight: 600; color: var(--red); transition: gap 0.2s;
}
.resource-card:hover .card-arrow { gap: 9px; }
@media (max-width: 900px) { .resources-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .resources-grid { grid-template-columns: 1fr; } }

/* ========================
   VALUES GRID
======================== */
.values-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; margin-top: 56px;
}
.value-item {
  padding: 30px 22px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; text-align: center; transition: border-color 0.3s, transform 0.3s;
}
.value-item:hover { border-color: rgba(255,30,86,0.28); transform: translateY(-4px); }
.value-num {
  font-weight: 800; font-size: 2.6rem; color: rgba(255,30,86,0.18);
  line-height: 1; margin-bottom: 14px; letter-spacing: -0.04em;
}
.value-item h4 { font-size: 0.92rem; font-weight: 600; color: white; margin-bottom: 7px; }
.value-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ========================
   FAQ
======================== */
.faq-section {
  padding: 110px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 21px 0; cursor: pointer; font-size: 0.97rem; font-weight: 500;
  color: var(--text); transition: color 0.2s; gap: 16px;
  font-family: var(--font); background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: white; }
.faq-chevron {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 14px;
  transition: transform 0.3s, background 0.2s, border-color 0.2s; color: var(--muted);
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  background: var(--red); border-color: var(--red); color: white;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  color: var(--muted); font-size: 0.93rem; line-height: 1.8; font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 20px; }

/* ========================
   COMMUNITY SECTION
======================== */
.community-section { padding: 110px 24px; text-align: center; }
.community-inner { max-width: 860px; margin: 0 auto; }
.community-discord {
  margin-top: 44px; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.community-discord iframe { display: block; width: 100%; height: 400px; border: none; }

/* ========================
   CTA BAND
======================== */
.cta-band {
  padding: 96px 24px;
  background: linear-gradient(135deg, rgba(255,30,86,0.1) 0%, transparent 60%);
  border-top: 1px solid rgba(255,30,86,0.14);
  text-align: center;
}
.cta-band-inner { max-width: 660px; margin: 0 auto; }
.cta-band h2 {
  font-weight: 800; font-size: clamp(2rem,4vw,2.9rem);
  letter-spacing: -0.04em; color: white; margin-bottom: 14px; line-height: 1.1;
}
.cta-band h2 .accent { color: var(--red); }
.cta-band p { color: var(--muted); font-size: 0.98rem; margin-bottom: 34px; font-weight: 300; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ========================
   FOOTER
======================== */
.zlt-footer {
  font-family: var(--font);
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
  padding-top: 56px;
}
.footer-container {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 40px; padding: 0 48px 48px;
}
.footer-col h4 {
  margin-bottom: 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  margin-bottom: 10px; font-size: 14px; font-weight: 300; transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  text-align: center; padding: 20px;
  font-size: 13px; color: var(--dim);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
}

/* ========================
   CARDS (legacy pages)
======================== */
.cards {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 20px; margin-top: 40px;
}
.card {
  flex: 1 1 260px; max-width: 320px;
  background: var(--bg-card); padding: 28px;
  border-radius: 16px; border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,30,86,0.3); }
.card h3 { margin-bottom: 10px; font-weight: 700; font-size: 1rem; }
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

/* ========================
   GENERIC CONTENT PAGES
   (about, legal, terms, etc.)
======================== */
.main-content {
  padding: 100px 24px;
  max-width: 900px;
  margin: auto;
}
.main-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.main-content h2 {
  margin-top: 48px; margin-bottom: 16px;
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--red);
}
.main-content p {
  color: var(--muted); line-height: 1.8;
  margin-bottom: 20px; font-weight: 300; font-size: 0.97rem;
}
.main-content ul, .main-content ol {
  color: var(--muted); padding-left: 20px;
  margin-bottom: 20px; font-weight: 300; font-size: 0.97rem;
}
.main-content li { margin-bottom: 8px; line-height: 1.7; }

/* ========================
   404 ERROR PAGE
======================== */
.error-page {
  min-height: calc(100vh - 160px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
}
.error-content h2 {
  font-size: 6rem; font-weight: 800; color: var(--red); margin-bottom: 10px;
}
.error-content h3 { font-size: 2rem; margin-bottom: 15px; }
.error-content p { color: var(--muted); margin-bottom: 25px; }

/* ========================
   ACCOUNT PAGES (dashboard etc.)
   These keep their own inline styles but
   inherit body font and colours from here.
======================== */

/* ========================
   RESPONSIVE — GLOBAL
======================== */
@media (max-width: 900px) {
  .main-content { padding: 80px 20px; }
  .section { padding: 80px 20px; }
  .faq-section { padding: 80px 20px; }
  .community-section { padding: 80px 20px; }
  .app-showcase { padding: 80px 20px; }
  .trust-section { padding: 80px 20px; }
  .footer-container { padding: 0 24px 40px; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 20px 80px; }
  .hero-stats { flex-direction: column; max-width: 260px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }