/* ===================== Base ===================== */
:root {
  --accent1: #ff0033;
  --accent2: #ff2244;
  --accent3: #ff4455;
}

html { scroll-behavior: smooth; }

body {
  background-color: #000000;
  background-image:
    radial-gradient(at 20% 10%, rgba(255,0,51,0.14) 0px, transparent 50%),
    radial-gradient(at 80% 0%,  rgba(255,34,68,0.08) 0px, transparent 50%),
    radial-gradient(at 60% 90%, rgba(255,0,51,0.08) 0px, transparent 50%);
}

/* ===================== Promo strip ===================== */
.promo-strip {
  background: var(--accent1);
  color: #ffffff;
  text-align: center;
  font-size: .8rem;
  font-weight: 500;
  padding: .5rem 1rem;
  position: relative;
  z-index: 50;
}

/* ===================== Buttons ===================== */
.btn-red, .btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--accent1);
  color: #ffffff;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 4px 18px rgba(255,0,51,0.25);
}
.btn-red:hover, .btn-lime:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255,0,51,0.4);
}

/* ===================== Hero (centered, no media) ===================== */
.hero-eyebrow {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent2);
  display: block;
  margin-bottom: 1.5rem;
}
.hero-headline-center {
  font-family: 'Geist', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .95;
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero-accent {
  background: linear-gradient(90deg, #ff0033, #ff5577);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub-center {
  font-size: 1.05rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero-actions-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-link {
  font-size: .9rem;
  color: #aaa;
  font-weight: 500;
  transition: color .2s;
}
.hero-link:hover { color: #fff; }
.hero-platforms-center {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: .75rem;
  padding: .75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  color: #FFFFFF;
  background: rgba(255,255,255,0.03);
  transition: all .2s ease;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
}

/* ===================== Section headings ===================== */
.section-cat-title {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  text-transform: uppercase;
  color: var(--accent2);
  letter-spacing: .01em;
  line-height: 1;
}

/* ===================== Hero card ===================== */
.hero-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 380px;
}

.hero-left {
  flex: 0 0 45%;
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-eyebrow {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent2);
  display: block;
  margin-bottom: 1.1rem;
}

.hero-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.85rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: .9rem;
  color: #888888;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-link {
  font-size: .85rem;
  color: #777;
  font-weight: 500;
  transition: color .2s;
}
.hero-link:hover { color: #fff; }

.hero-platforms { margin-top: auto; }

.hero-right {
  flex: 1;
  position: relative;
  background: #0d0d0d;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(255,0,51,0.08), transparent 65%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-card { flex-direction: column; min-height: auto; }
  .hero-left { padding: 2rem 1.5rem; flex: unset; }
  .hero-right { min-height: 260px; border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
}

/* ----- Hero mockup ----- */
.hero-mockup {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}
.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-mockup-body { padding: 1rem; }
.hero-mockup-preview {
  aspect-ratio: 16/9;
  border-radius: .65rem;
  background: linear-gradient(135deg, #120b20, #1a0f2e);
  position: relative;
  overflow: hidden;
  margin-bottom: .9rem;
}
.hero-mockup-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,0,51,0.25), transparent 55%);
}
.caption-bar {
  font-size: .65rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-align: center;
}
.hero-mockup-timeline { font-size: 0; }
.tl-label {
  font-size: .62rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
  display: block;
}
.tl-track {
  height: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: .1rem;
}
.tl-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff0033, #ff2244);
}

/* ----- Hero floating badges ----- */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  padding: .4rem .85rem;
  border-radius: 9999px;
  background: rgba(30,30,30,0.95);
  border: 1px solid rgba(255,0,51,0.25);
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.hero-badge-top { top: 1.25rem; right: 1.5rem; }
.hero-badge-bot { bottom: 1.25rem; left: 1.5rem; }

/* ===================== Stats strip ===================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  background: #0a0a0a;
  overflow: hidden;
}
@media (max-width: 639px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}
.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 639px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
}
.stat-val {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-lbl {
  font-size: .65rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ===================== How it works steps ===================== */
.step-block {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.step-block:hover {
  border-color: rgba(255,0,51,0.2);
  transform: translateY(-2px);
}
.step-block-num {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255,0,51,0.10);
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.step-block-icon {
  width: 38px; height: 38px;
  border-radius: .6rem;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent2);
  margin-bottom: .9rem;
}
.step-block-title {
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  margin-bottom: .35rem;
}
.step-block-desc {
  font-size: .82rem;
  color: #777;
  line-height: 1.55;
}

/* ===================== Feature spotlight ===================== */
.feat-spotlight {
  display: flex;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .2s;
}
.feat-spotlight:hover { border-color: rgba(255,0,51,0.2); }

.feat-spotlight-body {
  flex: 0 0 45%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.feat-spotlight-title {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: .75rem;
}

.feat-spotlight-desc {
  font-size: .85rem;
  color: #777;
  line-height: 1.6;
  max-width: 320px;
}

.feat-spotlight-visual {
  flex: 1;
  background: #0d0d0d;
  border-left: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-editor-chrome {
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
}

.feat-track-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .6rem;
}
.feat-track-lbl {
  font-size: .6rem;
  font-weight: 800;
  color: #444;
  text-transform: uppercase;
  width: 20px;
  flex-shrink: 0;
}
.feat-track-bg {
  flex: 1;
  height: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}
.feat-track-fill {
  height: 100%;
  border-radius: 4px;
}

@media (max-width: 639px) {
  .feat-spotlight { flex-direction: column; }
  .feat-spotlight-body { flex: unset; }
  .feat-spotlight-visual { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); min-height: 120px; }
}

/* ===================== Tool cards ===================== */
.tool-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem 1.25rem;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.tool-card:hover {
  border-color: rgba(255,0,51,0.22);
  transform: translateY(-2px);
}
.tool-cat-label {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #555;
}
.tool-cat-badge {
  display: inline-block;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 9999px;
  background: rgba(255,0,51,0.10);
  color: var(--accent2);
  border: 1px solid rgba(255,0,51,0.2);
  margin-bottom: .75rem;
}
.tool-new-badge {
  position: absolute;
  top: .9rem; right: .9rem;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 9999px;
  background: var(--accent2);
  color: #ffffff;
}
.tool-icon-wrap {
  width: 36px; height: 36px;
  border-radius: .55rem;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent2);
  margin-bottom: .75rem;
}
.tool-card-title {
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  margin-bottom: .28rem;
}
.tool-card-desc {
  font-size: .78rem;
  color: #888888;
  line-height: 1.5;
}

/* ===================== Marquee / carousel ===================== */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  padding: 0 1rem;
}
.marquee-reverse .marquee-track { animation-direction: reverse; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.format-card {
  flex-shrink: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: transform .2s ease, border-color .2s ease;
}
.format-card:hover { transform: translateY(-4px); border-color: rgba(255,0,51,0.25); }
.format-card.portrait { width: 170px; height: 300px; }
.format-card.landscape { width: 300px; height: 188px; align-self: center; }
.format-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.format-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.format-tag {
  position: relative;
  z-index: 2;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(6px);
}

.gradient-1 { background: linear-gradient(135deg, #000000, #0a0a0a); }
.gradient-2 { background: linear-gradient(135deg, #0a0517, #111111); }
.gradient-3 { background: linear-gradient(135deg, #0c0820, #111111); }

/* ===================== Testimonials ===================== */
.testimonial-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: #0a0a0a;
  padding: 1.25rem;
}
.t-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; }
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
  font-size: .9rem;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .9rem; color: #fff; }
.t-stars { font-size: .65rem; color: var(--accent2); letter-spacing: .1em; }
.t-quote { color: #999; font-size: .85rem; line-height: 1.6; }

/* ===================== Before / After ===================== */
.compare-card {
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.compare-before { background: #0a0a0a; }
.compare-after {
  background: linear-gradient(160deg, rgba(255,0,51,0.12), rgba(255,34,68,0.06));
  border-color: rgba(255,0,51,0.2);
}
.compare-title {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.compare-list { display: flex; flex-direction: column; gap: .85rem; font-size: .88rem; color: #ccc; }
.compare-list li { display: flex; align-items: center; gap: .65rem; }
.compare-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
}
.icon-x { background: rgba(239,68,68,0.12); color: #f87171; }
.icon-check { background: rgba(255,0,51,0.12); color: var(--accent2); }

/* ===================== Pricing ===================== */
.pricing-toggle {
  display: inline-flex;
  padding: .3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
  gap: .2rem;
}
.toggle-btn {
  font-size: .82rem;
  font-weight: 700;
  padding: .55rem 1.25rem;
  border-radius: 9999px;
  color: #777;
  display: flex; align-items: center; gap: .35rem;
  transition: all .2s ease;
}
.toggle-btn.active { color: #ffffff; background: var(--accent2); }
.save-badge {
  font-size: .6rem; font-weight: 800;
  padding: .12rem .4rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.12);
}
.toggle-btn.active .save-badge { background: rgba(0,0,0,0.18); }

.price-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: #0a0a0a;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.price-card-featured {
  border-color: rgba(255,0,51,0.3);
  background: linear-gradient(160deg, rgba(255,0,51,0.12), rgba(255,34,68,0.05));
}
@media (min-width: 1024px) {
  .price-card-featured { transform: scale(1.02); }
  .price-card-featured:hover { transform: scale(1.02) translateY(-3px); }
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 9999px;
  background: var(--accent2);
  color: #ffffff;
  white-space: nowrap;
}
.price-plan { font-family: 'Geist', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.25rem; letter-spacing: .02em; margin-bottom: .65rem; color: #fff; }
.price-amount { display: flex; align-items: baseline; gap: .3rem; color: #fff; }
.price-num { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 2.5rem; }
.price-period { color: #888888; font-weight: 600; }
.price-sub { color: #555; font-size: .78rem; margin-top: .2rem; }
.price-features {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: .65rem;
  font-size: .85rem; color: #aaa;
}
.price-features li { display: flex; align-items: flex-start; gap: .55rem; }
.price-features li::before { content: '✓'; color: var(--accent2); font-weight: 800; flex-shrink: 0; }

/* ===================== FAQ ===================== */
.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: .85rem;
  background: #0a0a0a;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .9rem;
  color: #fff;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent2); }
.faq-chevron { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s ease; color: #555; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 1.25rem 1rem; color: #777; font-size: .85rem; line-height: 1.65; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-answer { max-height: 240px; }

/* ===================== Closing CTA ===================== */
.cta-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(255,0,51,0.08), transparent 65%);
  pointer-events: none;
}
.cta-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: #fff;
}
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta-stats {
  display: flex;
  gap: 1.5rem;
}
.cta-stat { text-align: center; }
.cta-stat-num {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent2);
  line-height: 1;
}
.cta-stat-lbl { font-size: .62rem; color: #555; text-transform: uppercase; letter-spacing: .07em; margin-top: .2rem; }

@media (max-width: 639px) {
  .cta-card { flex-direction: column; align-items: flex-start; }
  .cta-right { align-items: flex-start; }
}

/* ===================== Footer ===================== */
.footer-heading {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; font-size: .84rem; color: #888888; }
.footer-links a:hover { color: var(--accent2); }
.discord-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 700;
  padding: .6rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: #fff;
  transition: all .2s ease;
}
.discord-link:hover { border-color: rgba(255,0,51,0.3); background: rgba(255,0,51,0.06); }

/* ===================== Hero video ===================== */
.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: #111111;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ===================== Creator Showcase ===================== */
.showcase-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.showcase-feature-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 260px;
}
.showcase-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 18px;
}
.showcase-channel-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 6px 14px 6px 8px;
}
.showcase-subs {
  font-size: .78rem;
  font-weight: 800;
  color: var(--accent2);
  background: rgba(255,0,51,0.12);
  border: 1px solid rgba(255,0,51,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: .03em;
}
.showcase-wide-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
}
.showcase-wide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-portrait-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.showcase-portrait {
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 3/4;
  transition: transform .2s ease, border-color .2s ease;
}
.showcase-portrait:hover { transform: translateY(-4px); border-color: rgba(255,0,51,0.3); }
.showcase-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-video-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.showcase-video-item {
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 9/16;
  transition: transform .2s ease, border-color .2s ease;
}
.showcase-video-item:hover { transform: translateY(-4px); border-color: rgba(255,0,51,0.3); }
.showcase-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .showcase-top-row { grid-template-columns: 1fr; }
  .showcase-portrait-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-video-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .showcase-portrait-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-video-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== Brand name font ===================== */
.brand {
  font-family: 'Press Start 2P', monospace;
  font-size: .65em;
  letter-spacing: .03em;
  vertical-align: baseline;
  line-height: 1;
  margin: 0 4px;
}

/* ===================== Reveal animations ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
