/* ================================================
   LASE BYPASS — Redesigned Landing Page
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #050505;
  --bg2:       #0c0c0c;
  --bg3:       #111;
  --bg4:       #161616;
  --border:    rgba(255,255,255,0.06);
  --border-hl: rgba(255,255,255,0.14);
  --white:     #ffffff;
  --off-white: #e5e5e5;
  --gray:      #888;
  --muted:     #4a4a4a;
  --muted2:    #2a2a2a;
  --green:     #00e676;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

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

/* ── NOISE ── */
.noise {
  position: fixed; inset: 0; z-index: 998; pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

/* ── PARTICLES ── */
#particleCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.4;
}

/* ── TICKER ── */
.ticker-wrap { background: var(--bg2); border-bottom: 1px solid var(--border); overflow: hidden; padding: 8px 0; position: relative; z-index: 10; margin-top: 64px; }
.ticker-track { display: inline-flex; gap: 56px; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-track span { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; color: var(--gray); text-transform: uppercase; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 52px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.logo { display: flex; align-items: center; gap: 11px; font-size: 0.95rem; font-weight: 900; letter-spacing: 0.06em; color: var(--white); text-transform: uppercase; text-decoration: none; }
.logo-img { width: 34px; height: 34px; object-fit: contain; filter: brightness(0) invert(1); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--muted); text-decoration: none; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important; color: #000 !important;
  padding: 9px 20px !important; border-radius: 999px;
  font-size: 0.7rem !important; font-weight: 800 !important;
  transition: opacity 0.2s, transform 0.15s !important;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px) !important; color: #000 !important; }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 999px; margin-bottom: 32px;
}
.hero-tag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(0,230,118,0.8);
  animation: tagPulse 2s ease infinite;
}
@keyframes tagPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 900; line-height: 0.88;
  letter-spacing: -0.05em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0;
}
.hero-title-line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  -webkit-background-clip: text;
}
.hero-sub {
  font-size: 1rem; color: var(--gray);
  max-width: 460px; margin: 28px auto 40px; line-height: 1.8;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* ── BUTTONS ── */
.btn-primary, .btn-ghost {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: 14px 32px; border-radius: 999px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--white); color: #000; border: none;
  box-shadow: 0 0 0 rgba(255,255,255,0);
  animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow {
  0%,100% { box-shadow: 0 0 20px rgba(255,255,255,0.1); }
  50%      { box-shadow: 0 0 40px rgba(255,255,255,0.25); }
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,0.2); animation: none; color: #000; }
.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ── STREAK BOX ── */
.streak-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 32px 44px;
  text-align: center; max-width: 580px; width: 100%;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.streak-label { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.streak-timer { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.streak-unit { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.streak-unit span:first-child { font-size: 2.6rem; font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.su-l { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.streak-colon { font-size: 2rem; font-weight: 900; color: var(--muted2); line-height: 1; padding-bottom: 16px; }
.streak-sub { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

/* ── SECTIONS ── */
.section { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; padding: 100px 24px; }
.section-label { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; line-height: 1; }
.section-title .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.25); }
.section-sub { color: var(--gray); font-size: 0.88rem; max-width: 480px; margin-bottom: 40px; line-height: 1.75; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px; background: var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
}
.feat-card {
  background: var(--bg2); padding: 28px 24px;
  transition: background 0.2s, transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover { background: var(--bg3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.feat-card:hover::before { opacity: 1; }

.feat-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.feat-icon-yellow { background: rgba(255,190,50,0.12); color: #ffbe32; border: 1px solid rgba(255,190,50,0.2); }
.feat-icon-blue   { background: rgba(80,150,255,0.12); color: #5096ff; border: 1px solid rgba(80,150,255,0.2); }
.feat-icon-red    { background: rgba(255,70,90,0.12);  color: #ff465a; border: 1px solid rgba(255,70,90,0.2); }
.feat-icon-purple { background: rgba(140,90,255,0.12); color: #8c5aff; border: 1px solid rgba(140,90,255,0.2); }
.feat-icon-green  { background: rgba(0,210,120,0.12);  color: #00d278; border: 1px solid rgba(0,210,120,0.2); }
.feat-icon-orange { background: rgba(255,140,50,0.12); color: #ff8c32; border: 1px solid rgba(255,140,50,0.2); }
.feat-icon-cyan   { background: rgba(50,210,255,0.12); color: #32d2ff; border: 1px solid rgba(50,210,255,0.2); }
.feat-icon-white  { background: rgba(255,255,255,0.06); color: #fff;   border: 1px solid rgba(255,255,255,0.12); }

.feat-num {
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.16em;
  color: var(--muted2); margin-bottom: 6px; font-variant-numeric: tabular-nums;
}
.feat-name { font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.feat-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }

/* ── UI SCREENSHOT ── */
.ui-img-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(0,0,0,0.7), 0 0 1px rgba(255,255,255,0.04);
  cursor: zoom-in; position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ui-img-wrap:hover { border-color: var(--border-hl); transform: translateY(-4px); box-shadow: 0 24px 80px rgba(0,0,0,0.8); }
.ui-img-wrap:hover .ui-screenshot { opacity: 0.9; }
.ui-screenshot { width: 100%; height: auto; display: block; transition: opacity 0.3s; position: relative; z-index: 2; }
.ui-wave-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; mix-blend-mode: screen; opacity: 0.6; }
.ui-img-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 18px 20px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; z-index: 4; }
.ui-img-wrap:hover .ui-img-overlay { opacity: 1; }
.ui-img-overlay span { font-size: 0.7rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; }

/* ── AC STATUS ── */
.ac-header {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 24px; margin-bottom: 20px;
}
.ac-live { display: flex; align-items: center; gap: 8px; }
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 10px rgba(0,230,118,0.7); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.live-text { font-size: 0.68rem; font-weight: 800; color: var(--green); letter-spacing: 0.12em; }
.ac-count-big { font-size: 1.8rem; font-weight: 900; color: var(--white); margin-right: 6px; letter-spacing: -0.03em; }
.ac-count-label { font-size: 0.65rem; font-weight: 800; color: var(--green); letter-spacing: 0.1em; }
.ac-meta { display: flex; gap: 20px; margin-left: auto; }
.ac-meta span { font-size: 0.62rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; }
.ac-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; margin-bottom: 20px; }
.ac-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 13px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--off-white);
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.ac-item:hover { border-color: rgba(0,230,118,0.2); background: rgba(0,230,118,0.03); }
.ac-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px rgba(0,230,118,0.6); }
.ac-badge { margin-left: auto; font-size: 0.56rem; font-weight: 800; letter-spacing: 0.1em; color: var(--green); }
.terminal-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  font-family: 'Courier New', monospace; font-size: 0.8rem;
  margin-bottom: 40px;
}
.term-prompt { color: var(--green); }
.term-text { color: var(--gray); }
.term-cursor { color: var(--gray); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── PROOF GALLERY ── */
.proof-label { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); margin-top: 0; margin-bottom: 8px; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.proof-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); cursor: pointer;
  aspect-ratio: 16/10; background: var(--bg2);
  transition: border-color 0.25s, transform 0.25s;
}
.proof-item:hover { border-color: var(--border-hl); transform: translateY(-4px); }
.proof-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.25s, transform 0.4s; }
.proof-item:hover img { opacity: 0.65; transform: scale(1.04); }
.proof-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 12px 14px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); opacity: 0; transition: opacity 0.25s; }
.proof-item:hover .proof-overlay { opacity: 1; }
.proof-overlay span { font-size: 0.7rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-lg); border: 1px solid var(--border-hl); box-shadow: 0 0 100px rgba(0,0,0,0.9); object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 1.2rem; color: var(--gray); cursor: pointer; transition: color 0.2s; z-index: 10000; width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.lightbox-close:hover { color: var(--white); background: rgba(255,255,255,0.12); }

/* ── COMPARE TABLE ── */
.compare-table { border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; max-width: 700px; }
.compare-header, .compare-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.compare-header { background: var(--bg3); border-bottom: 1px solid var(--border); }
.compare-row { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.015); }
.col-feature, .col-us, .col-other { padding: 15px 20px; font-size: 0.82rem; display: flex; align-items: center; }
.col-feature { color: var(--gray); font-weight: 500; }
.compare-header .col-feature { font-size: 0.58rem; letter-spacing: 0.1em; color: var(--muted); }
.compare-header .col-us { font-size: 0.75rem; font-weight: 900; color: var(--white); }
.compare-header .col-other { font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.highlight-col { background: rgba(255,255,255,0.025); border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-weight: 700; color: var(--white); }
.green-text { color: var(--green); font-weight: 800; }
.muted-text { color: var(--muted); }

/* ── PRICING ── */
.pricing-section { max-width: 960px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.price-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.price-card:hover { border-color: var(--border-hl); box-shadow: 0 0 60px rgba(255,255,255,0.04); transform: translateY(-4px); }
.price-card.featured {
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, var(--bg2) 100%);
  box-shadow: 0 0 80px rgba(255,255,255,0.06);
}
.price-featured-label {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: #000; font-size: 0.58rem; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 16px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}
.price-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.price-plan { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); }
.price-status { display: flex; align-items: center; gap: 5px; font-size: 0.6rem; font-weight: 800; color: var(--green); letter-spacing: 0.1em; }
.pdot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; box-shadow: 0 0 6px rgba(0,230,118,0.6); }
.price-amount { font-size: 2.6rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; margin-bottom: 4px; line-height: 1; }
.price-per { font-size: 0.72rem; font-weight: 600; color: var(--muted); }
.price-old { text-decoration: line-through; color: var(--muted2); }
.price-desc { font-size: 0.75rem; color: var(--gray); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.price-features li { font-size: 0.8rem; color: var(--gray); padding-left: 20px; position: relative; line-height: 1.5; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; font-size: 0.75rem; }
.price-btn {
  display: block; text-align: center; text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px; border-radius: var(--radius-lg); margin-bottom: 14px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  background: var(--white); color: #000;
  box-shadow: 0 4px 24px rgba(255,255,255,0.1);
  animation: btnGlow2 3s ease-in-out infinite;
}
@keyframes btnGlow2 { 0%,100%{box-shadow:0 4px 24px rgba(255,255,255,0.08)} 50%{box-shadow:0 4px 40px rgba(255,255,255,0.2)} }
.price-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,255,255,0.25); animation: none; opacity: 0.92; }
.price-note { font-size: 0.68rem; color: var(--muted); text-align: center; line-height: 1.5; }

/* ── FAQ ── */
.faq-section { max-width: 680px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--border-hl); }
.faq-q {
  width: 100%; background: var(--bg2); border: none; cursor: pointer;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 700;
  color: var(--off-white); text-align: left; transition: background 0.2s;
}
.faq-q:hover { background: var(--bg3); }
.faq-arr { font-size: 1rem; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { background: var(--bg2); padding: 0 22px; font-size: 0.82rem; color: var(--gray); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ── CTA SECTION ── */
.cta-section {
  position: relative; z-index: 1; text-align: center;
  padding: 120px 24px; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.05em; color: var(--white); margin-bottom: 16px; position: relative; }
.cta-sub { font-size: 1rem; color: var(--gray); margin-bottom: 40px; font-weight: 400; position: relative; }
.cta-section .btn-primary { position: relative; }

/* ── FOOTER ── */
.footer {
  position: relative; z-index: 1; text-align: center;
  padding: 48px 24px; border-top: 1px solid var(--border);
}
.footer-logo { display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 900; letter-spacing: 0.08em; color: var(--white); text-transform: uppercase; margin-bottom: 14px; }
.footer-logo-img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-text { font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; }
.footer-copy { font-size: 0.68rem; color: var(--muted2); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header { padding: 14px 20px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero-title { font-size: clamp(3.5rem, 15vw, 6rem); }
  .section { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .streak-box { padding: 24px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.75rem; }
}

/* ── WAVE BG (subtle) ── */
.wave-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.wave-bg svg { position: absolute; bottom: 0; left: 0; width: 200%; opacity: 0.02; }
.wave-bg .wave1 { bottom: -10%; animation: waveMove 22s linear infinite; }
.wave-bg .wave2 { bottom: -20%; opacity: 0.015; animation: waveMove 32s linear infinite reverse; }
.wave-bg .wave3 { bottom: -5%; opacity: 0.01; animation: waveMove 42s linear infinite; }
@keyframes waveMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SMOOTH GLOBAL FEEL ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth all interactive elements */
*, *::before, *::after {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── HERO ENTRANCE ANIMATIONS ── */
.hero-tag     { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 0.1s; }
.hero-title   { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both 0.25s; }
.hero-sub     { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both 0.4s; }
.hero-btns    { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both 0.5s; }
.streak-box   { animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.6s; }

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

/* ── SCROLL REVEAL — smoother spring ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }

/* ── HEADER ── smoother blur transition ── */
.header {
  transition: padding 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}
.header.scrolled {
  padding: 10px 52px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ── FEAT CARDS — staggered hover lift ── */
.feat-card {
  transition: background 0.35s cubic-bezier(0.16,1,0.3,1),
              transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ── PROOF ITEMS — smoother image scale ── */
.proof-item img {
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.proof-item {
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ── AC ITEMS ── */
.ac-item {
  transition: border-color 0.3s ease,
              background 0.3s ease,
              transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.ac-item:hover { transform: translateX(3px); }

/* ── COMPARE ROWS ── */
.compare-row {
  transition: background 0.25s ease;
}

/* ── PRICING CARDS ── */
.price-card {
  transition: border-color 0.4s ease,
              box-shadow 0.4s ease,
              transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ── FAQ ── */
.faq-a {
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1),
              padding 0.45s cubic-bezier(0.16,1,0.3,1);
}
.faq-arr {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-q { transition: background 0.25s ease; }

/* ── BUTTONS — smoother press feel ── */
.btn-primary, .btn-ghost, .price-btn, .nav-cta {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.25s ease,
              opacity 0.2s ease,
              background 0.25s ease,
              border-color 0.25s ease !important;
}
.btn-primary:active, .price-btn:active { transform: scale(0.97) translateY(0) !important; }

/* ── STREAK NUMBERS — smooth tick ── */
.streak-unit span:first-child {
  transition: opacity 0.1s ease;
}

/* ── UI IMAGE WRAP ── */
.ui-img-wrap {
  transition: border-color 0.4s ease,
              transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s ease;
}

/* Lightbox handled above */

/* ── NAV LINKS ── */
.nav a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* ── LAMP BUTTON ── */
.lamp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9997;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.3s ease, background 0.3s ease,
              color 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease;
  overflow: visible;
}
.lamp-btn:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}
.lamp-icon { width: 20px; height: 20px; position: absolute; transition: opacity 0.25s ease, transform 0.3s ease; }
.lamp-off  { opacity: 1; transform: scale(1); }
.lamp-on   { opacity: 0; transform: scale(0.7); }
.lamp-glow {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Light mode active */
.lamp-btn.lit {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.7);
  box-shadow: 0 4px 20px rgba(255,200,50,0.25);
}
.lamp-btn.lit .lamp-off { opacity: 0; transform: scale(0.7); }
.lamp-btn.lit .lamp-on  { opacity: 1; transform: scale(1); }
.lamp-btn.lit .lamp-glow { opacity: 1; background: radial-gradient(circle, rgba(255,200,50,0.3) 0%, transparent 70%); }

/* ── LIGHT MODE ── */
body.light-mode {
  --bg:        #f2f2f2;
  --bg2:       #e8e8e8;
  --bg3:       #dedede;
  --bg4:       #d4d4d4;
  --border:    rgba(0,0,0,0.08);
  --border-hl: rgba(0,0,0,0.18);
  --white:     #0a0a0a;
  --off-white: #1a1a1a;
  --gray:      #555;
  --muted:     #999;
  --muted2:    #bbb;
  background: #f2f2f2;
  color: #1a1a1a;
  transition: background 0.5s ease, color 0.5s ease;
}

body.light-mode #particleCanvas { opacity: 0.15; filter: invert(1); }
body.light-mode .noise { opacity: 0.015; filter: invert(1); }
body.light-mode .wave-bg svg path { fill: #000; }

body.light-mode .ticker-wrap { background: #111; }
body.light-mode .ticker-track span { color: #fff; }

body.light-mode .header { background: rgba(242,242,242,0.92); border-bottom-color: rgba(0,0,0,0.08); }
body.light-mode .logo { color: #0a0a0a; }
body.light-mode .logo-img { filter: none; }

body.light-mode .nav-cta {
  background: #0a0a0a !important; color: #fff !important;
}
body.light-mode .nav-cta:hover { opacity: 0.8; }

body.light-mode .hero-tag { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.12); color: rgba(0,0,0,0.5); }
body.light-mode .hero-title { color: #0a0a0a; }
body.light-mode .hero-title-line2 { -webkit-text-stroke-color: rgba(0,0,0,0.2); }
body.light-mode .streak-box { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); box-shadow: 0 0 40px rgba(0,0,0,0.08); }
body.light-mode .streak-unit span:first-child { color: #0a0a0a; }
body.light-mode .streak-colon { color: #bbb; }

body.light-mode .btn-primary { background: #0a0a0a; color: #fff; }
body.light-mode .btn-primary:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
body.light-mode .btn-ghost { background: rgba(0,0,0,0.05); color: #0a0a0a; border-color: rgba(0,0,0,0.15); }
body.light-mode .btn-ghost:hover { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.3); }

body.light-mode .feat-card { background: #e8e8e8; }
body.light-mode .feat-card:hover { background: #dedede; }
body.light-mode .feat-name { color: #0a0a0a; }

body.light-mode .ac-header,
body.light-mode .ac-item,
body.light-mode .terminal-box { background: #e8e8e8; border-color: rgba(0,0,0,0.08); }
body.light-mode .term-text { color: #555; }

body.light-mode .proof-item { background: #e0e0e0; }

body.light-mode .compare-header { background: #dedede; }
body.light-mode .compare-row:hover { background: rgba(0,0,0,0.02); }
body.light-mode .highlight-col { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
body.light-mode .col-feature { color: #555; }

body.light-mode .price-card { background: #e8e8e8; border-color: rgba(0,0,0,0.08); }
body.light-mode .price-card.featured { background: #e0e0e0; border-color: rgba(0,0,0,0.2); }
body.light-mode .price-amount { color: #0a0a0a; }
body.light-mode .price-btn { background: #0a0a0a; color: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
body.light-mode .price-btn:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.25); }
body.light-mode .price-featured-label { background: #0a0a0a; color: #fff; }

body.light-mode .faq-item { border-color: rgba(0,0,0,0.08); }
body.light-mode .faq-q { background: #e8e8e8; color: #1a1a1a; }
body.light-mode .faq-q:hover { background: #dedede; }
body.light-mode .faq-a { background: #e8e8e8; color: #555; }

body.light-mode .cta-section::before { background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,0,0,0.05) 0%, transparent 70%); }
body.light-mode .cta-title { color: #0a0a0a; }

body.light-mode .footer { border-top-color: rgba(0,0,0,0.08); }
body.light-mode .footer-logo { color: #0a0a0a; }
body.light-mode .footer-logo-img { filter: none; }

body.light-mode .lightbox { background: rgba(255,255,255,0.96); }
body.light-mode .lightbox-close { color: #555; background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); }

/* Smooth mode transition on everything */
body, body * {
  transition: background-color 0.4s ease, color 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease,
              filter 0.4s ease !important;
}

/* ── CUSTOM CURSOR ── */

/* ── FLOATING NAV ── */
.float-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.fn-item {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.fn-item:hover { color: rgba(255,255,255,0.8); }

.fn-item.fn-active { color: #fff; }

.fn-cta {
  background: #fff;
  color: #000 !important;
  font-weight: 800;
  padding: 8px 20px;
}
.fn-cta:hover { opacity: 0.88; }

/* Lamp indicator */
.fn-lamp {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
  z-index: 0;
  transition: left 0.35s cubic-bezier(0.16,1,0.3,1),
              width 0.35s cubic-bezier(0.16,1,0.3,1),
              top 0.35s cubic-bezier(0.16,1,0.3,1),
              height 0.35s cubic-bezier(0.16,1,0.3,1),
              opacity 0.2s ease;
  opacity: 0;
}

/* Lamp top glow bar */
.fn-lamp::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  box-shadow: 0 0 8px 2px rgba(255,255,255,0.4), 0 0 20px 4px rgba(255,255,255,0.15);
}

/* Light mode adjustments */
body.light-mode .float-nav {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
body.light-mode .fn-item { color: rgba(0,0,0,0.45); }
body.light-mode .fn-item:hover { color: rgba(0,0,0,0.8); }
body.light-mode .fn-item.fn-active { color: #000; }
body.light-mode .fn-cta { background: #000; color: #fff !important; }
body.light-mode .fn-lamp { background: rgba(0,0,0,0.06); }
body.light-mode .fn-lamp::before { background: rgba(0,0,0,0.5); box-shadow: 0 0 8px 2px rgba(0,0,0,0.2); }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.team-card:hover { border-color: var(--border-hl); background: var(--bg3); transform: translateY(-3px); }
.team-card:hover::before { opacity: 1; }

.team-avatar-wrap { position: relative; flex-shrink: 0; }
.team-avatar-img {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-hl); display: block;
}
.team-rank {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  font-size: 0.44rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 2px 6px;
  border-radius: 999px; white-space: nowrap; border: 1px solid;
}
.team-rank-owner { background: rgba(255,255,255,0.08); color: var(--off-white); border-color: var(--border-hl); }
.team-rank-dev   { background: rgba(88,101,242,0.12); color: #7289da; border-color: rgba(88,101,242,0.3); }

.team-info { flex: 1; min-width: 0; }
.team-name { font-size: 0.95rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; margin-bottom: 3px; }
.team-role { font-size: 0.68rem; color: var(--muted); margin-bottom: 8px; line-height: 1.4; }
.team-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.team-tag {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  padding: 2px 7px; border-radius: 999px;
}

.team-discord {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.25);
  display: flex; align-items: center; justify-content: center; color: #7289da;
  transition: background 0.2s, border-color 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.team-discord:hover { background: rgba(88,101,242,0.28); border-color: rgba(88,101,242,0.6); transform: scale(1.15); }

/* ── HERO REDESIGN ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 52px 0;
  overflow: hidden;
  gap: 0;
}

/* Animated scan line */
.hero-scan {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  pointer-events: none; z-index: 0;
  animation: scanMove 6s ease-in-out infinite;
  top: 0;
}
@keyframes scanMove {
  0%   { top: 10%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

.hero-inner {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; margin: 0 auto;
}

/* Left */
.hero-left { flex: 1; display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
  animation: heroFadeUp 0.6s ease both 0.1s;
}
.hero-eyebrow-line {
  flex: 1; height: 1px; max-width: 60px;
  background: rgba(255,255,255,0.15);
}

.hero-title {
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  font-weight: 900; line-height: 0.88;
  letter-spacing: -0.05em; text-transform: uppercase;
  margin: 0 0 32px;
  display: flex; flex-direction: column; align-items: flex-start;
}

.hero-word-wrap { overflow: hidden; display: block; }
.hero-word {
  display: block; color: #fff;
  animation: heroClip 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hw1 { animation-delay: 0.2s; }
.hw2 { animation-delay: 0.35s; }
.hero-word-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
}
.hw-accent { color: #fff; -webkit-text-stroke: 0; }

@keyframes heroClip {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-desc-row {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 36px;
  animation: heroFadeUp 0.7s ease both 0.55s;
}
.hero-vline { width: 2px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; margin-top: 4px; }
.hero-sub {
  font-size: 0.92rem; color: var(--gray);
  line-height: 1.8; font-weight: 400; max-width: 420px;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 0;
  animation: heroFadeUp 0.7s ease both 0.7s;
}

/* Right — vertical stats */
.hero-right {
  flex-shrink: 0; padding-top: 20px;
  animation: heroFadeUp 0.8s ease both 0.5s;
}
.hero-stats-vert {
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  overflow: hidden; min-width: 140px;
}
.hsv-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 28px; gap: 5px;
}
.hsv-val {
  font-size: 2rem; font-weight: 900; color: #fff;
  letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hsv-label {
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.hsv-sep { height: 1px; background: rgba(255,255,255,0.06); }

/* Bottom streak bar */
.hero-streak-bar {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0 32px;
  width: 100%; max-width: 1100px; margin-left: auto; margin-right: auto;
  animation: heroFadeUp 0.8s ease both 0.9s;
}
.hsb-label {
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); flex-shrink: 0;
}
.hero-streak-bar .streak-timer {
  display: flex; align-items: center; gap: 6px;
}
.hero-streak-bar .streak-unit span:first-child {
  font-size: 2rem; font-weight: 900; color: #fff;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.hero-streak-bar .su-l { font-size: 0.6rem; color: var(--muted); font-weight: 600; letter-spacing: 0.1em; margin-left: 2px; }
.hero-streak-bar .streak-colon { font-size: 1.4rem; color: var(--muted2); font-weight: 900; }
.hsb-sub { font-size: 0.65rem; color: var(--muted); margin-left: auto; }

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

@media (max-width: 768px) {
  .hero { padding: 100px 24px 0; }
  .hero-inner { flex-direction: column; }
  .hero-right { align-self: stretch; }
  .hero-stats-vert { flex-direction: row; }
  .hsv-sep { width: 1px; height: auto; }
  .hero-streak-bar { gap: 16px; }
  .hsb-sub { margin-left: 0; }
}
