/* Zenith Studios — Site theme */

:root{
  --bg:#07070a;
  --surface:#0c0d12;
  --surface2:#10121a;
  --text:#f6f7fb;
  --muted:rgba(246,247,251,.68);
  --border:rgba(246,247,251,.10);
  --shadow:0 24px 80px rgba(0,0,0,.55);
  --accent:#ef4444;
  --accent2:#fb7185;
  --radius:16px;
  --radius-lg:24px;
  --nav:72px;
  --safe-top: env(safe-area-inset-top, 0px);
  --font:'Plus Jakarta Sans',system-ui,sans-serif;
  --mono:'IBM Plex Mono',ui-monospace,monospace;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
section[id]{scroll-margin-top:calc(var(--nav) + var(--safe-top) + 18px)}

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% 8%, rgba(239,68,68,.16), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(251,113,133,.10), transparent 55%),
    radial-gradient(900px 520px at 55% 95%, rgba(239,68,68,.06), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}

/* Subtle grain + vignette for depth */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.045;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size:220px 220px;
}
body::after{
  content:"";
  position:fixed;
  inset:-20%;
  pointer-events:none;
  background:radial-gradient(closest-side at 50% 35%, transparent 55%, rgba(0,0,0,.55) 100%);
  opacity:.55;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

.container{max-width:1200px;margin:0 auto;padding:0 22px}

/* Ensure content never hides behind fixed navbar */
main{padding-top:calc(var(--nav) + var(--safe-top))}

/* Nav */
.navbar{
  position:fixed;inset:0 0 auto 0;z-index:50;
  height:calc(var(--nav) + var(--safe-top));
  padding-top:var(--safe-top);
  background:rgba(7,7,10,.62);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(246,247,251,.06);
  box-shadow:0 1px 0 rgba(246,247,251,.04), 0 4px 24px rgba(0,0,0,.12);
}
.nav-inner{
  height:100%;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  max-width:1200px;margin:0 auto;padding:0 22px;
}
.nav-brand{display:flex;align-items:center;gap:10px}
.navbar .logo-img{width:34px;height:34px;object-fit:contain;display:block;transition:opacity .2s ease}
.nav-brand:hover .logo-img{opacity:.9}
.brand-text{font-weight:800;letter-spacing:-.02em}
.nav-right{display:flex;align-items:center;gap:28px}
.nav-menu{list-style:none;display:flex;gap:28px;margin:0;padding:0}
.nav-menu a{
  color:rgba(246,247,251,.7);
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.01em;
  text-decoration:none;
  position:relative;
  padding:4px 0;
  transition:color .2s ease, background .2s ease, border-color .2s ease;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:1px;
  background:rgba(246,247,251,.5);
  transform:scaleX(0);
  transition:transform .2s ease;
}
.nav-menu a:hover{color:var(--text)}
.nav-menu a:hover::after{transform:scaleX(1)}
.nav-menu a.active{
  color:rgba(246,247,251,.95);
  background:rgba(239,68,68,.08);
  border:1px solid rgba(239,68,68,.22);
  border-radius:8px;
  padding:6px 12px;
  margin:-2px -12px;
}
.nav-menu a.active::after{display:none}
.nav-menu a.active:hover{
  background:rgba(239,68,68,.11);
  border-color:rgba(239,68,68,.3);
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:12px;
  border:1px solid rgba(239,68,68,.35);
  color:rgba(246,247,251,.92);
  font-weight:700;
  font-size:.875rem;
  letter-spacing:.01em;
  text-decoration:none;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.nav-cta:hover{
  background:rgba(239,68,68,.12);
  border-color:rgba(239,68,68,.5);
  color:var(--text);
}
.nav-toggle{
  display:none;flex-direction:column;gap:6px;justify-content:center;
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(246,247,251,.12);background:rgba(16,18,26,.55);cursor:pointer
}
.nav-toggle span{display:block;width:18px;height:2px;background:rgba(246,247,251,.85);margin:0 auto;border-radius:2px}

@media (max-width:820px){
  .nav-right{gap:16px}
  .nav-cta{display:none}
  .nav-toggle{display:flex}
  .nav-menu{
    position:fixed;top:calc(var(--nav) + var(--safe-top));left:0;right:0;
    flex-direction:column;gap:0;padding:16px 22px;
    background:rgba(12,13,18,.98);border-bottom:1px solid rgba(246,247,251,.10);
    transform:translateY(-12px);opacity:0;visibility:hidden;transition:.22s;
  }
  .nav-menu.active{transform:translateY(0);opacity:1;visibility:visible}
  .nav-menu li{border-bottom:1px solid rgba(246,247,251,.08)}
  .nav-menu a{display:block;padding:14px 0}
  .nav-menu a::after{display:none}
  .nav-menu a.active{margin:0;padding:14px 0;border-radius:0;border:none;border-left:3px solid rgba(239,68,68,.4);background:rgba(239,68,68,.06);padding-left:19px}
  .nav-menu a.active:hover{background:rgba(239,68,68,.08)}
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;padding:12px 18px;
  border:1px solid transparent;cursor:pointer;
  font-weight:800;letter-spacing:-.01em;
  transition:transform .15s, background .2s, border-color .2s, box-shadow .2s;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:scale(.98)}
.btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 6px rgba(239,68,68,.10), 0 0 0 1px rgba(239,68,68,.45) inset;
}
.btn-primary{background:var(--accent);color:#0b0b10;box-shadow:0 18px 46px rgba(239,68,68,.18)}
.btn-primary:hover{background:#dc2626;box-shadow:0 22px 60px rgba(239,68,68,.22)}
.btn-secondary{background:rgba(16,18,26,.55);border-color:rgba(246,247,251,.12);color:rgba(246,247,251,.92)}
.btn-secondary:hover{border-color:rgba(246,247,251,.20)}
.btn-ghost{background:rgba(16,18,26,.35);border-color:rgba(246,247,251,.12);color:rgba(246,247,251,.88)}
.btn-ghost:hover{border-color:rgba(239,68,68,.32);box-shadow:0 0 0 6px rgba(239,68,68,.07)}
.btn-buy{width:100%;background:rgba(246,247,251,.92);color:#0b0b10}
.btn-buy:hover{background:var(--accent)}

/* Sections */
.section{padding:88px 0}
.section-head{margin:0 0 10px;text-align:center;font-size:clamp(1.7rem,3vw,2.25rem);letter-spacing:-.04em}
.section-lead{margin:0 auto 40px;max-width:56ch;text-align:center;color:var(--muted)}

/* Section dividers (professional separators) */
.saber-divider{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
  height:30px;
  display:flex;
  align-items:center;
}
.saber-divider::before{
  content:"";
  display:block;
  width:100%;
  height:1px;
  border-radius:999px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(246,247,251,.10),
    rgba(239,68,68,.28),
    rgba(246,247,251,.10),
    transparent
  );
}
.saber-divider::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) rotate(45deg);
  width:10px;
  height:10px;
  border-radius:3px;
  background:rgba(16,18,26,.85);
  border:1px solid rgba(239,68,68,.28);
  box-shadow:0 0 0 4px rgba(239,68,68,.06);
}

/* Shared card + reveal */
.product-card,.why-card,.support-card{
  background:rgba(12,13,18,.78);
  border:1px solid rgba(246,247,251,.10);
  border-radius:var(--radius-lg);
  box-shadow:inset 0 1px 0 rgba(246,247,251,.06), var(--shadow);
  backdrop-filter:blur(10px);
}
.product-card,.why-card,.support-card{
  opacity:0;transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease, border-color .2s, box-shadow .2s;
}
.product-card.visible,.why-card.visible,.support-card.visible{opacity:1;transform:translateY(0)}

/* Hero */
.hero{padding-top:56px;padding-bottom:72px}
.hero--new{position:relative;isolation:isolate;overflow:hidden}
.hero-bg-glow{
  position:absolute;
  inset:-30% -20% -20% -20%;
  background:
    radial-gradient(ellipse 80% 50% at 15% 45%, rgba(239,68,68,.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 35%, rgba(239,68,68,.10), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(99,102,241,.08), transparent 55%);
  filter:blur(48px);
  opacity:.9;
  z-index:-2;
  pointer-events:none;
  animation:hero-glow 8s ease-in-out infinite alternate;
}
@keyframes hero-glow{
  0%{opacity:.75;transform:scale(1)}
  100%{opacity:1;transform:scale(1.02)}
}
.hero--new::before{
  content:"";
  position:absolute;
  inset:-220px -180px auto -180px;
  height:520px;
  background:
    radial-gradient(closest-side at 22% 55%, rgba(239,68,68,.26), transparent 68%),
    radial-gradient(closest-side at 65% 35%, rgba(239,68,68,.14), transparent 70%),
    radial-gradient(closest-side at 45% 85%, rgba(99,102,241,.12), transparent 70%);
  filter:blur(8px);
  opacity:.92;
  z-index:-2;
  pointer-events:none;
}
.hero--new::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(7,7,10,.6), rgba(7,7,10,.94)),
    radial-gradient(circle at 50% 25%, rgba(246,247,251,.07), transparent 50%),
    repeating-linear-gradient(90deg, rgba(246,247,251,.04) 0, rgba(246,247,251,.04) 1px, transparent 1px, transparent 44px),
    repeating-linear-gradient(0deg, rgba(246,247,251,.032) 0, rgba(246,247,251,.032) 1px, transparent 1px, transparent 44px);
  mask-image:radial-gradient(circle at 45% 45%, rgba(0,0,0,.92), transparent 72%);
  z-index:-3;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  border-radius:var(--radius-lg);
  padding:20px 24px 28px;
  background:linear-gradient(to bottom, rgba(12,13,18,.5), rgba(7,7,10,.92));
  border:1px solid rgba(246,247,251,.06);
  box-shadow:0 24px 64px rgba(0,0,0,.25), inset 0 1px 0 rgba(246,247,251,.03);
}
.hero-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
  width:100%;
}
.hero-line{
  flex:1;
  height:2px;
  max-width:200px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(239,68,68,.5), rgba(239,68,68,.35));
  box-shadow:0 0 12px rgba(239,68,68,.25);
}
.hero-line--right{background:linear-gradient(90deg, rgba(239,68,68,.35), rgba(239,68,68,.5), transparent);box-shadow:0 0 12px rgba(239,68,68,.25)}
.hero-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(16,18,26,.6);
  border:1px solid rgba(246,247,251,.1);
  color:rgba(246,247,251,.92);
  font-weight:800;
  font-size:.8rem;
  letter-spacing:.18em;
  flex-shrink:0;
  animation:hero-fade-up .6s ease-out both;
}
.hero-top .hero-line{animation:hero-fade-up .6s .05s ease-out both}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center}
.hero-copy{position:relative}
.hero-watermark{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  z-index:0;
}
.hero-watermark img{
  width:min(420px, 72%);
  height:auto;
  object-fit:contain;
  opacity:0.05;
}
.hero-copy > .pill,.hero-copy > .hero-title,.hero-copy > .hero-tagline,.hero-copy > .hero-actions,.hero-copy > .hero-trust-badge,.hero-copy > .hero-chips,.hero-copy > .hero-banner{position:relative;z-index:1}
.hero-visual{
  display:flex;
  flex-direction:column;
  align-items:center;
}
@keyframes hero-logo-float{
  0%, 100%{transform:translateY(0) scale(1) rotate(0deg)}
  33%{transform:translateY(-6px) scale(1.02) rotate(0.5deg)}
  66%{transform:translateY(-8px) scale(1.01) rotate(-0.3deg)}
}
@keyframes hero-logo-glow{
  0%{opacity:.6;transform:scale(1)}
  100%{opacity:1;transform:scale(1.15)}
}
@keyframes hero-logo-glow-img{
  0%{filter:drop-shadow(0 0 28px rgba(239,68,68,.28)) drop-shadow(0 0 56px rgba(239,68,68,.1))}
  100%{filter:drop-shadow(0 0 36px rgba(239,68,68,.4)) drop-shadow(0 0 72px rgba(239,68,68,.18))}
}
.hero-copy .pill{animation:hero-fade-up .6s ease-out both}
.hero-copy .hero-title{animation:hero-fade-up .6s .06s ease-out both}
.hero-copy .hero-tagline{animation:hero-fade-up .6s .12s ease-out both}
.hero-copy .hero-actions{animation:hero-fade-up .6s .18s ease-out both}
.hero-copy .hero-trust-badge{animation:hero-fade-up .6s .22s ease-out both}
.hero-copy .hero-chips{animation:hero-fade-up .6s .26s ease-out both}
.hero-copy .hero-banner{animation:hero-fade-up .6s .32s ease-out both}
@keyframes hero-fade-up{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}
@media (prefers-reduced-motion:reduce){
  .hero-bg-glow{animation:none}
  .hero-copy .pill,.hero-copy .hero-title,.hero-copy .hero-tagline,.hero-copy .hero-actions,.hero-copy .hero-trust-badge,.hero-copy .hero-chips,.hero-copy .hero-banner{animation:none}
}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 16px;border-radius:999px;
  background:linear-gradient(180deg, rgba(20,22,32,.7), rgba(16,18,26,.45));
  border:1px solid rgba(246,247,251,.14);
  box-shadow:0 12px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(239,68,68,.08);
  color:rgba(246,247,251,.9);font-weight:800;font-size:.9rem;
  letter-spacing:.02em;
}
.pill::before{content:"";width:8px;height:8px;border-radius:999px;background:var(--accent);box-shadow:0 0 12px rgba(239,68,68,.5), 0 0 0 6px rgba(239,68,68,.12)}
.pill--tagline{
  font-size:.8rem;
  letter-spacing:.12em;
  color:rgba(239,68,68,.95);
  text-transform:uppercase;
  padding:8px 0;
  background:transparent;
  border:none;
  box-shadow:none;
}
.pill--tagline::before{display:none}
.pill-dot{
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 10px rgba(239,68,68,.7), 0 0 0 4px rgba(239,68,68,.15);
  margin-right:10px;
  vertical-align:middle;
}
.hero-title{margin:10px 0 12px;font-size:clamp(2.2rem,5vw,3.25rem);line-height:1.08;letter-spacing:-.06em;font-weight:800}
.hero-title{max-width:16ch}
.hero-title .accent{
  background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,68,68,.96) 50%, rgba(239,68,68,.85));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 0 24px rgba(239,68,68,.2));
}
.accent{color:var(--accent)}
.hero-tagline{margin:0 0 20px;color:rgba(246,247,251,.78);max-width:62ch;font-weight:650;line-height:1.6;font-size:1rem}
.hero-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:10px}
.hero-actions .btn-primary{box-shadow:0 20px 52px rgba(239,68,68,.22), 0 0 0 1px rgba(239,68,68,.15)}
.hero-actions .btn-primary:hover{box-shadow:0 24px 64px rgba(239,68,68,.32), 0 0 0 1px rgba(239,68,68,.2)}
.hero-trust-badge{margin-top:2px;margin-bottom:22px}
.hero-trust-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--mono);
  font-size:.8rem;
  letter-spacing:.02em;
  text-decoration:none;
  transition:color .2s ease;
}
.hero-trust-count{font-weight:600;color:rgba(246,247,251,.78)}
.hero-trust-label{font-weight:500;color:rgba(246,247,251,.46)}
.hero-trust-link:hover .hero-trust-count{color:rgba(246,247,251,.88)}
.hero-trust-link:hover .hero-trust-label{color:rgba(246,247,251,.58)}
.hero-trust-icon{
  flex-shrink:0;
  color:var(--accent);
  opacity:.9;
}
.hero-chips{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin:0 0 14px}
.chips-label{
  font-family:var(--mono);
  font-size:.88rem;
  color:rgba(246,247,251,.62);
  font-weight:800;
  letter-spacing:.02em;
}
.chips{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background:linear-gradient(180deg, rgba(16,18,26,.55), rgba(16,18,26,.34));
  border:1px solid rgba(246,247,251,.10);
  color:rgba(246,247,251,.86);
  font-weight:850;
  box-shadow:0 12px 34px rgba(0,0,0,.18);
}
.chip::before{
  content:"";
  width:8px;height:8px;border-radius:999px;
  background:rgba(239,68,68,.80);
  box-shadow:0 0 0 6px rgba(239,68,68,.10);
}
.chip--muted{color:rgba(246,247,251,.74)}
.chip--muted::before{background:rgba(246,247,251,.22);box-shadow:none}
.hero-console-wrap{position:relative}
.hero-console-wrap::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:calc(var(--radius-lg) + 2px);
  background:linear-gradient(135deg, rgba(239,68,68,.25), transparent 40%, transparent 60%, rgba(239,68,68,.12));
  filter:blur(12px);
  opacity:.6;
  z-index:-1;
  pointer-events:none;
}
.hero-console:hover{transform:translateY(-2px);box-shadow:0 28px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(239,68,68,.12)}
.hero-banner{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  width:100%;
  gap:0;
  margin-top:24px;
  padding:0;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(16,18,26,.55), rgba(16,18,26,.24));
  border:1px solid rgba(246,247,251,.12);
  box-shadow:0 18px 54px rgba(0,0,0,.20), inset 0 1px 0 rgba(246,247,251,.06);
  backdrop-filter:blur(10px);
  color:rgba(246,247,251,.76);
  font-weight:850;
  font-size:.95rem;
  max-width:100%;
}
.hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    rgba(239,68,68,.16),
    transparent 26%,
    transparent 74%,
    rgba(239,68,68,.10)
  );
  opacity:.85;
}
.banner-item{
  white-space:nowrap;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  position:relative;
  padding:14px 10px;
  color:rgba(246,247,251,.78);
  flex:1 1 0;
  min-height:48px;
}
.banner-item::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(239,68,68,.72);
  box-shadow:0 0 0 6px rgba(239,68,68,.10);
  flex:0 0 8px;
}
.banner-item::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(239,68,68,.55), transparent);
  opacity:.45;
  pointer-events:none;
}
.banner-sep{
  display:none;
}

@media (max-width:720px){
  .hero-banner{flex-direction:column;align-items:stretch}
  .banner-item{justify-content:flex-start;padding:12px 12px}
  .banner-item::after{left:12px;right:12px}
}

.hero-banner .banner-item + .banner-item{
  border-left:1px solid rgba(246,247,251,.10);
}

@media (max-width:720px){
  .hero-banner .banner-item + .banner-item{
    border-left:0;
    border-top:1px solid rgba(246,247,251,.10);
  }
}
.hero-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.metric{
  position:relative;
  border-radius:16px;padding:14px 14px;
  background:linear-gradient(180deg, rgba(16,18,26,.50), rgba(16,18,26,.32));
  border:1px solid rgba(246,247,251,.10);
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.metric::before{
  content:"";
  position:absolute;inset:0 0 auto 0;height:2px;
  background:linear-gradient(90deg, transparent, rgba(239,68,68,.55), transparent);
  opacity:.45;
}
.metric:hover{transform:translateY(-2px);border-color:rgba(239,68,68,.20);box-shadow:0 26px 66px rgba(0,0,0,.28)}
.metric-k{font-weight:900;letter-spacing:-.02em}
.metric-v{color:rgba(246,247,251,.62);font-weight:700}

/* Dashboard preview */
.hero-console{overflow:hidden;position:relative;transition:transform .25s ease, box-shadow .25s ease}
.hero-console::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:var(--radius-lg);
  box-shadow:inset 0 0 0 1px rgba(239,68,68,.14), inset 0 1px 0 rgba(246,247,251,.08);
  opacity:.95;
}
.console-top{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  padding:10px 12px;border-bottom:1px solid rgba(246,247,251,.10);
  background:rgba(16,18,26,.45)
}
.console-dots{display:inline-flex;gap:6px}
.console-dots span{width:9px;height:9px;border-radius:999px;background:rgba(246,247,251,.14)}
.console-dots span:nth-child(1){background:rgba(239,68,68,.55)}
.console-title{justify-self:center;font-weight:900;letter-spacing:-.02em}
.console-status{justify-self:end;color:rgba(246,247,251,.62);font-weight:800;font-size:.9rem}
.console-body{padding:12px}
.console-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.console-panes{display:block}
.console-pane[hidden]{display:none}
.tab{
  border-radius:999px;padding:8px 12px;border:1px solid rgba(246,247,251,.10);
  background:rgba(16,18,26,.35);color:rgba(246,247,251,.78);
  font-family:var(--font);font-weight:800;cursor:pointer
}
.tab.active{
  border-color:rgba(239,68,68,.34);
  background:linear-gradient(180deg, rgba(239,68,68,.14), rgba(16,18,26,.35));
  color:rgba(246,247,251,.94);
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}
.console-pane{
  font-family:var(--mono);
  background:rgba(10,11,16,.55);
  border:1px solid rgba(246,247,251,.10);
  border-radius:18px;
  padding:14px;
}
.console-line{font-size:.92rem;line-height:1.55}
.console-line + .console-line{margin-top:6px}
.prompt{color:rgba(239,68,68,.95);font-weight:700}
.subtle{color:rgba(246,247,251,.58)}

/* Lua-ish syntax colors (preview only) */
.lua-cmt{color:rgba(246,247,251,.52)}
.lua-kw{color:rgba(251,113,133,.95);font-weight:800}
.lua-fn{color:rgba(246,247,251,.92);font-weight:800}
.lua-str{color:rgba(134,239,172,.95)}
.lua-op{color:rgba(246,247,251,.62)}
.lua-dots{color:rgba(246,247,251,.55)}
.console-box--code{background:rgba(16,18,26,.28)}
.console-box{
  margin-top:12px;
  border-radius:16px;
  background:rgba(16,18,26,.35);
  border:1px solid rgba(246,247,251,.08);
  padding:12px;
  display:grid;gap:10px
}
.box-row{display:flex;align-items:center;gap:10px;color:rgba(246,247,251,.78);font-size:.92rem}
.dot{width:10px;height:10px;border-radius:999px;background:rgba(246,247,251,.18)}
.dot.red{background:rgba(239,68,68,.75);box-shadow:0 0 0 6px rgba(239,68,68,.10)}
.console-cta{
  margin-top:10px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px;border-top:1px solid rgba(246,247,251,.10);
  background:rgba(16,18,26,.40)
}
.cta-title{font-weight:900;letter-spacing:-.02em}
.cta-sub{color:rgba(246,247,251,.62);font-weight:700;font-size:.95rem}

/* Pricing - specific selectors so they override any .product-card rules */
.products-section{border-top:1px solid rgba(246,247,251,.06);border-bottom:1px solid rgba(246,247,251,.06)}
.products-section .pricing{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:stretch;
  width:100%;
  max-width:100%;
}
.products-section .pricing .pricing-card{
  position:relative;
  width:100%;
  min-width:0;
  min-height:320px;
  padding:22px;
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:14px;
  background-image:
    repeating-linear-gradient(105deg, transparent 0, transparent 20px, rgba(239,68,68,.06) 20px, rgba(239,68,68,.06) 21px),
    repeating-linear-gradient(75deg, transparent 0, transparent 20px, rgba(239,68,68,.05) 20px, rgba(239,68,68,.05) 21px),
    repeating-linear-gradient(15deg, transparent 0, transparent 24px, rgba(239,68,68,.04) 24px, rgba(239,68,68,.04) 25px),
    linear-gradient(180deg, rgba(14,15,22,.92) 0%, rgba(10,11,16,.95) 100%) !important;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  border:1px solid rgba(246,247,251,.1) !important;
  border-radius:var(--radius-lg) !important;
  box-shadow:inset 0 1px 0 rgba(246,247,251,.08), 0 8px 32px rgba(0,0,0,.35), 0 2px 0 rgba(0,0,0,.2) !important;
  backdrop-filter:blur(14px);
  overflow:visible;
  transition:box-shadow .3s ease, border-color .25s ease;
}
.products-section .pricing .pricing-card::before{
  content:"";
  position:absolute;
  inset:-12px;
  z-index:-1;
  border-radius:var(--radius-lg);
  background:transparent;
  box-shadow:0 0 0 1px rgba(239,68,68,.06), 0 0 32px rgba(239,68,68,.1), 0 0 56px rgba(239,68,68,.06);
  pointer-events:none;
}
.products-section .pricing .pricing-card::after{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg, transparent, rgba(246,247,251,.12), transparent);
  pointer-events:none;
}
.products-section .pricing .pricing-card:hover{
  box-shadow:inset 0 1px 0 rgba(246,247,251,.1), 0 16px 48px rgba(0,0,0,.4), 0 2px 0 rgba(0,0,0,.15) !important;
}
.products-section .pricing .pricing-card.product-card-featured::before{
  box-shadow:0 0 0 1px rgba(239,68,68,.1), 0 0 36px rgba(239,68,68,.14), 0 0 64px rgba(239,68,68,.08);
}
.products-section .pricing .pricing-card.product-card-featured{
  border-color:rgba(239,68,68,.35) !important;
  box-shadow:inset 0 1px 0 rgba(246,247,251,.08), 0 0 0 1px rgba(239,68,68,.2), 0 8px 32px rgba(0,0,0,.35), 0 0 48px rgba(239,68,68,.12) !important;
  background-image:
    repeating-linear-gradient(105deg, transparent 0, transparent 20px, rgba(239,68,68,.09) 20px, rgba(239,68,68,.09) 21px),
    repeating-linear-gradient(75deg, transparent 0, transparent 20px, rgba(239,68,68,.07) 20px, rgba(239,68,68,.07) 21px),
    repeating-linear-gradient(15deg, transparent 0, transparent 24px, rgba(239,68,68,.06) 24px, rgba(239,68,68,.06) 25px),
    linear-gradient(180deg, rgba(14,15,22,.92) 0%, rgba(10,11,16,.95) 100%) !important;
}
.products-section .pricing .pricing-card.product-card-featured::after{
  background:linear-gradient(90deg, transparent, rgba(239,68,68,.4), transparent);
  height:4px;
}
.products-section .pricing .pricing-card.product-card-featured:hover{
  box-shadow:inset 0 1px 0 rgba(246,247,251,.09), 0 0 0 1px rgba(239,68,68,.35), 0 16px 48px rgba(0,0,0,.4), 0 0 56px rgba(239,68,68,.15) !important;
}

/* Pricing card - subtle glowing effect */
.products-section .pricing .pricing-card > *:not(.card-particles){position:relative;z-index:1}
.products-section .pricing .pricing-card .card-particles{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:55%;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
  mask-image:linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image:linear-gradient(to bottom, black 0%, transparent 100%);
}
.products-section .pricing .pricing-card .card-particles span{
  position:absolute;
  border-radius:50%;
  filter:blur(32px);
  animation:card-glow-pulse 6s ease-in-out infinite;
}
.products-section .pricing .pricing-card .card-particles span:nth-child(1){
  left:-15%;top:-20%;width:70%;height:90%;
  background:radial-gradient(circle, rgba(239,68,68,.18) 0%, rgba(239,68,68,.04) 50%, transparent 70%);
  animation-delay:0s;
}
.products-section .pricing .pricing-card .card-particles span:nth-child(2){
  right:-15%;top:-15%;left:auto;width:65%;height:85%;
  background:radial-gradient(circle, rgba(239,68,68,.14) 0%, rgba(239,68,68,.03) 50%, transparent 70%);
  animation-delay:0.8s;
}
.products-section .pricing .pricing-card .card-particles span:nth-child(3){
  left:50%;top:-10%;width:60%;height:60%;
  transform:translateX(-50%);
  background:radial-gradient(circle, rgba(239,68,68,.12) 0%, transparent 60%);
  animation-delay:0.4s;
}
.products-section .pricing .pricing-card .card-particles span:nth-child(4),
.products-section .pricing .pricing-card .card-particles span:nth-child(5),
.products-section .pricing .pricing-card .card-particles span:nth-child(6),
.products-section .pricing .pricing-card .card-particles span:nth-child(7),
.products-section .pricing .pricing-card .card-particles span:nth-child(8),
.products-section .pricing .pricing-card .card-particles span:nth-child(9),
.products-section .pricing .pricing-card .card-particles span:nth-child(10),
.products-section .pricing .pricing-card .card-particles span:nth-child(11),
.products-section .pricing .pricing-card .card-particles span:nth-child(12){display:none}
@keyframes card-glow-pulse{
  0%, 100%{opacity:.7;transform:translateX(-50%) scale(1)}
  50%{opacity:1;transform:translateX(-50%) scale(1.08)}
}
.products-section .pricing .pricing-card .card-particles span:nth-child(1),
.products-section .pricing .pricing-card .card-particles span:nth-child(2){
  animation-name:card-glow-pulse-side;
}
@keyframes card-glow-pulse-side{
  0%, 100%{opacity:.7;transform:none}
  50%{opacity:1;transform:scale(1.05)}
}
/* Featured card - stronger glow */
.products-section .pricing .pricing-card .card-particles--featured span:nth-child(1){
  background:radial-gradient(circle, rgba(239,68,68,.26) 0%, rgba(239,68,68,.06) 50%, transparent 70%);
}
.products-section .pricing .pricing-card .card-particles--featured span:nth-child(2){
  background:radial-gradient(circle, rgba(239,68,68,.2) 0%, rgba(239,68,68,.04) 50%, transparent 70%);
}
.products-section .pricing .pricing-card .card-particles--featured span:nth-child(3){
  background:radial-gradient(circle, rgba(239,68,68,.18) 0%, transparent 60%);
}
@media (prefers-reduced-motion:reduce){
  .products-section .pricing .pricing-card .card-particles span{animation:none;opacity:.8}
}

.products-section .pricing .plan-row{display:grid;grid-template-columns:1fr auto;gap:14px;align-items:start}
.products-section .pricing .plan-main{min-width:0}
.products-section .pricing .plan-preview{
  width:min(160px, 36vw);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(16,18,26,.45) 0%, rgba(12,13,18,.4) 100%);
  border:1px solid rgba(246,247,251,.08);
  box-shadow:inset 0 2px 10px rgba(0,0,0,.25);
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.products-section .pricing .plan-preview img{display:block;width:100%;height:auto;object-fit:contain;opacity:1;filter:brightness(1.08) contrast(1.05) saturate(1.1)}
.products-section .pricing .pricing-card.product-card-featured .plan-preview img{opacity:1;filter:brightness(1.08) contrast(1.05) saturate(1.1)}
.pricing-head{margin-bottom:6px}
.product-title{margin:0;font-size:1.15rem;letter-spacing:-.03em}
.product-meta{margin:4px 0 0;color:rgba(246,247,251,.55);font-weight:600;font-size:.88rem}
.pricing-price{display:flex;align-items:baseline;gap:8px;margin:12px 0 20px}
.price{font-weight:900;font-size:2.35rem;letter-spacing:-.05em;color:rgba(246,247,251,.98)}
.per{font-size:.8rem;font-weight:600;color:rgba(246,247,251,.5)}
.plan-list{
  list-style:none;
  margin:0 0 22px;
  padding:0;
  display:grid;
  gap:14px;
  color:rgba(246,247,251,.7);
  font-weight:700;
  font-size:.94rem;
}
.plan-list li{display:flex;gap:10px;align-items:flex-start}
.plan-list li::before{
  content:"";
  width:8px;height:8px;border-radius:999px;
  margin-top:.5em;
  background:rgba(239,68,68,.78);
  box-shadow:0 0 0 6px rgba(239,68,68,.10);
  flex:0 0 8px;
}
.plan-media{
  margin: 12px 0 10px;
  background: rgba(16,18,26,.35);
  border: 1px solid rgba(246,247,251,.08);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  justify-content: center;
}
.plan-media img{max-height:140px;width:auto}
.plan-desc{margin:0 0 14px;color:rgba(246,247,251,.66);font-weight:700}
.pricing-card .btn-buy{
  width:100%;
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  font-size:.95rem;
  transition:background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pricing-card:not(.product-card-featured) .btn-buy{
  background:rgba(18,20,28,.7);
  color:rgba(246,247,251,.95);
  border:1px solid rgba(239,68,68,.28);
  box-shadow:none;
}
.pricing-card:not(.product-card-featured) .btn-buy:hover{
  background:rgba(22,24,34,.85);
  border-color:rgba(239,68,68,.4);
  box-shadow:0 0 24px rgba(239,68,68,.1);
}
.pricing-card.product-card-featured .btn-buy{
  background:var(--accent);
  color:#fff;
  border:none;
  box-shadow:0 6px 24px rgba(239,68,68,.22);
}
.pricing-card.product-card-featured .btn-buy:hover{
  background:#dc2626;
  box-shadow:0 8px 28px rgba(239,68,68,.3);
  transform:translateY(-2px);
}
.pricing-badge{
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:900;letter-spacing:.12em;text-transform:uppercase;font-size:.7rem;
  padding:6px 12px;border-radius:999px;margin-bottom:8px;
  color:rgba(246,247,251,.9);
  border:1px solid rgba(239,68,68,.28);
  background:linear-gradient(180deg, rgba(239,68,68,.12) 0%, rgba(239,68,68,.06) 100%);
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}
.pricing-badge--neutral{
  border:1px solid rgba(246,247,251,.12);
  background:linear-gradient(180deg, rgba(246,247,251,.08) 0%, rgba(246,247,251,.03) 100%);
  color:rgba(246,247,251,.78);
  box-shadow:0 2px 6px rgba(0,0,0,.1);
}

/* Features */
.why-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.why-card{padding:18px}
.why-row{display:grid;grid-template-columns:32px 1fr;gap:14px;align-items:start}
.why-text h3{margin:0 0 6px;font-size:1.05rem;letter-spacing:-.02em}
.why-text p{margin:0;color:rgba(246,247,251,.66);font-weight:700}
.icon{width:22px;height:22px;color:var(--accent)}

/* Updates – TV screen + carousel (1 at a time, max 3) */
.updates-section{border-bottom:1px solid rgba(246,247,251,.06)}
.updates-tv{
  max-width:720px;
  margin:0 auto;
  padding:20px;
  background:linear-gradient(180deg, rgba(18,20,28,.95) 0%, rgba(8,9,12,.98) 100%);
  border:3px solid rgba(30,32,42,.9);
  border-radius:16px;
  box-shadow:inset 0 0 0 1px rgba(246,247,251,.06), 0 12px 40px rgba(0,0,0,.5);
}
.updates-tv__screen{
  position:relative;
  background:linear-gradient(145deg, rgba(12,14,20,.98) 0%, rgba(6,7,10,.99) 100%);
  border-radius:10px;
  box-shadow:inset 0 2px 20px rgba(0,0,0,.4), inset 0 0 0 1px rgba(246,247,251,.04);
  overflow:hidden;
  min-height:200px;
}
.updates-feed{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:20px 16px;
}
.updates-feed .product-card{opacity:1;transform:none}
.update-card{padding:18px}
.update-card--collapsed .update-body{
  max-height:4.2em;
  overflow:hidden;
  transition:max-height .35s ease;
}
.update-card--expanded .update-body,
.update-card:not(.update-card--collapsed) .update-body{
  max-height:2000px;
  transition:max-height .4s ease;
}
.update-toggle{
  display:inline-block;
  margin-top:8px;
  padding:6px 12px;
  font-size:.85rem;
  font-weight:700;
  color:var(--accent);
  background:transparent;
  border:1px solid rgba(239,68,68,.35);
  border-radius:8px;
  cursor:pointer;
  transition:background .2s, border-color .2s, color .2s;
}
.update-toggle:hover{
  background:rgba(239,68,68,.12);
  border-color:var(--accent);
}
.update-top{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:10px}
.update-title{font-weight:900;letter-spacing:-.02em}
.update-time{font-family:var(--mono);font-size:.9rem;color:rgba(246,247,251,.62);white-space:nowrap}
.update-body{color:rgba(246,247,251,.72);font-weight:700;line-height:1.55}
.update-body .update-inline-code{
  font-family:var(--mono);
  font-size:.88em;
  padding:2px 6px;
  border-radius:6px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(246,247,251,.12);
}
.update-body .update-pre{
  margin:10px 0;
  padding:12px 14px;
  border-radius:8px;
  background:rgba(0,0,0,.4);
  border:1px solid rgba(246,247,251,.1);
  overflow-x:auto;
  font-family:var(--mono);
  font-size:.85rem;
  line-height:1.5;
  white-space:pre-wrap;
  word-break:break-word;
}
.update-body .update-pre code{background:none;padding:0;border:none}
.update-body .update-link{color:var(--accent);text-decoration:none;border-bottom:1px solid rgba(239,68,68,.4)}
.update-body .update-link:hover{color:#f87171;border-bottom-color:var(--accent)}
.update-body .update-blockquote{
  margin:8px 0;
  padding:8px 0 8px 14px;
  border-left:3px solid rgba(239,68,68,.5);
  color:rgba(246,247,251,.8);
  opacity:.95;
}
.update-content{font-family:var(--font), "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif}
.update-emoji{vertical-align:middle;display:inline-block}
.update-body .update-embed-img{max-width:100%;height:auto;border-radius:8px;margin:8px 0;display:block;border:1px solid rgba(246,247,251,.08)}
.update-meta{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px;color:rgba(246,247,251,.62);font-weight:800;font-size:.9rem}
.update-tag{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;background:rgba(16,18,26,.45);border:1px solid rgba(246,247,251,.10)}
.update-tag::before{content:"";width:8px;height:8px;border-radius:999px;background:rgba(239,68,68,.75);box-shadow:0 0 0 6px rgba(239,68,68,.10)}

/* Support */
.support-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;max-width:900px;margin:0 auto}
.support-card{padding:18px}
.support-card h3{margin:0 0 8px;letter-spacing:-.02em}
.support-card p{margin:0 0 14px;color:rgba(246,247,251,.66);font-weight:700}

/* FAQ */
.faq-list{max-width:820px;margin:0 auto}
.faq-item{border-bottom:1px solid rgba(246,247,251,.10)}
.faq-question{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:14px;
  padding:18px 0;background:none;border:none;cursor:pointer;
  color:rgba(246,247,251,.92);font-weight:800;font-size:1rem;text-align:left
}
.faq-question:hover{color:rgba(239,68,68,.95)}
.faq-icon{font-size:1.25rem;opacity:.85;transition:transform .2s}
.faq-item.active .faq-icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-answer p{margin:0;padding:0 0 18px;color:rgba(246,247,251,.66);font-weight:700}

/* Footer */
.footer{border-top:1px solid rgba(246,247,251,.08);padding:28px 0;color:rgba(246,247,251,.60);text-align:center}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 22px}

/* Responsive */
@media (max-width:980px){
  .hero-inner{padding:16px 18px 24px}
  .hero-top{margin-bottom:16px;gap:12px}
  .hero-line{max-width:80px}
  .hero{padding-bottom:56px}
  .hero-visual{order:-1}
  .hero-trust-link{font-size:.76rem}
  .hero-grid{grid-template-columns:1fr;gap:24px}
  .hero-console-wrap::before{opacity:.4}
}
@media (max-width:600px){
  .hero-top{flex-wrap:wrap;justify-content:center}
  .hero-line{max-width:60px}
  .hero-pill{letter-spacing:.12em}
}
@media (max-width:720px){
  .products-section .pricing{grid-template-columns:1fr}
  .products-section .pricing .pricing-card{min-height:280px}
  .products-section .pricing .plan-row{grid-template-columns:1fr}
  .products-section .pricing .plan-preview{max-width:260px;justify-self:start}
  .updates-tv{padding:14px;max-width:100%}
  .updates-feed{padding:14px 10px}
  .why-grid{grid-template-columns:1fr}
  .support-grid{grid-template-columns:1fr}
  .hero-metrics{grid-template-columns:1fr}
  .console-cta{flex-direction:column;align-items:stretch}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .product-card,.why-card,.support-card{opacity:1;transform:none;transition:none}
  .btn{transition:none}
}
/* Legacy CSS removed (was breaking PostCSS and overriding the theme). */

@media not all {
:root {
    --primary-red: #ff0000;
    --red-dark: #cc0000;
    --red-light: #ff3333;
    --red-glow: rgba(255, 0, 0, 0.4);
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(20, 20, 20, 0.8);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-red: rgba(255, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-red);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 15px var(--red-glow));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.hero-logo {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 0 30px var(--red-glow)) drop-shadow(0 0 60px var(--red-glow));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 80px var(--red-glow);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    padding: 12px 24px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 30px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-feature:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--red-glow);
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-black);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

/* Products Section */
.products-section {
    padding: 150px 0;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-red);
    border-radius: 30px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--red-light));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-20px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 80px rgba(255, 0, 0, 0.4), 0 0 60px var(--red-glow);
}

.product-card-featured {
    border-width: 2px;
    border-color: var(--primary-red);
    box-shadow: 0 25px 70px rgba(255, 0, 0, 0.3);
}

.product-card-featured::before {
    height: 8px;
}

.featured-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--red-dark));
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    font-family: 'Space Grotesk', sans-serif;
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: var(--bg-dark);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.product-content {
    padding: 40px;
    text-align: center;
}

.product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-duration {
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 30px;
    text-shadow: 0 0 30px var(--red-glow);
    letter-spacing: 2px;
}

.btn-buy {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.6);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 150px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-red);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
}

.why-choose-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 20px var(--red-glow));
    transition: transform 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.2) rotate(5deg);
}

.why-choose-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Support Section */
.support-section {
    padding: 150px 0;
    position: relative;
}

.support-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-text {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 60px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.support-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-red);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
}

.support-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
}

.support-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.support-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 150px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-red);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-question:hover {
    background: rgba(255, 0, 0, 0.1);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px 30px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    padding-top: 20px;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--border-red);
    text-align: center;
    padding: 40px 0;
    margin-top: 100px;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        border-top: 1px solid var(--border-red);
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-feature {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-image {
        height: 300px;
    }

    .product-content {
        padding: 30px 20px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 2.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}
}
