
:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --text: #f7f7f2;
  --muted: #c9c9c2;
  --line: rgba(255,255,255,0.13);
  --yellow: #ffd21f;
  --yellow-2: #ffe66d;
  --green: #00d12f;
  --green-soft: rgba(0,209,47,0.13);
  --max: 1160px;
  --radius: 20px;
  --shadow: 0 26px 90px rgba(0,0,0,0.46);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% -10%, rgba(255,210,31,0.20), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(0,209,47,0.16), transparent 28rem),
    var(--bg);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(5,5,5,0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img { width: 172px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-weight: 700; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid var(--line);
  transition: transform .18s ease, background .18s ease, border .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: #080808; border-color: var(--yellow); }
.btn-secondary { background: rgba(255,255,255,0.07); color: var(--text); }
.hero { padding: 76px 0 52px; }
.hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 46px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-2);
  background: rgba(255,210,31,0.09);
  border: 1px solid rgba(255,210,31,0.25);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.9rem;
}
h1, h2, h3 { line-height: 1.04; letter-spacing: -0.035em; margin: 0; }
h1 { margin-top: 20px; font-size: clamp(3.1rem, 6vw, 5.75rem); }
h2 { font-size: clamp(2.15rem, 4.4vw, 4rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.32rem); max-width: 760px; margin: 24px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pill {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.92rem;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 620px;
}
.hero-metrics div {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 14px;
}
.hero-metrics strong {
  display: block;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.1;
}
.hero-metrics span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 90deg, transparent, rgba(255,210,31,0.22), transparent 36%, rgba(0,209,47,0.12), transparent 70%);
  animation: spin 15s linear infinite;
  opacity: 0.8;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-visual img {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  background: #111;
  width: 100%;
}
.visual-caption {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.caption-card {
  background: rgba(0,0,0,0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  color: var(--text);
  backdrop-filter: blur(12px);
}
.caption-card b { display: block; color: var(--yellow); }
.caption-card span { color: var(--muted); font-size: .9rem; }
section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 30px; }
.section-head p { margin: 0; color: var(--muted); max-width: 580px; }
.story-section { padding-top: 34px; }
.story-panel {
  min-height: 470px;
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.50)),
    radial-gradient(circle at 86% 46%, rgba(255,210,31,0.16), transparent 20rem),
    radial-gradient(circle at 72% 38%, rgba(0,209,47,0.16), transparent 18rem);
}
.story-panel h2 {
  max-width: 900px;
  margin-top: 18px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: rgba(255,255,255,0.058);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card p { margin: 12px 0 0; color: var(--muted); }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(255,210,31,0.14);
  color: var(--yellow);
  margin-bottom: 22px;
  font-weight: 1000;
}
.feature-band {
  border: 1px solid rgba(255,210,31,0.26);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255,210,31,0.18), rgba(0,209,47,0.10)),
    rgba(255,255,255,0.045);
}
.feature-band .grid-2 { align-items: center; }
.product-img {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}
.cta {
  background: linear-gradient(135deg, rgba(255,210,31,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,210,31,0.28);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}
.cta p { color: var(--muted); margin: 16px 0 0; max-width: 720px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.feature-list,
.host-value-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.feature-list span,
.host-value-list div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,0.20);
  padding: 14px 16px;
  color: var(--muted);
}
.host-value-list strong {
  display: block;
  color: var(--yellow);
  line-height: 1.2;
}
.host-value-list span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}
.slider-section { padding-top: 82px; }
.slider { position: relative; }
.slider-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 22px 80px rgba(0,0,0,0.28);
}
.slider-track {
  display: flex;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.venue-slide {
  min-height: 500px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at 82% 22%, rgba(255,210,31,0.16), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}
.venue-slide h3 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 620px;
}
.venue-slide p,
.host-slide p {
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 570px;
}
.venue-slide img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 24px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
}
.slide-kicker {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  display: block;
  margin-bottom: 16px;
}
.host-slider .slider-viewport {
  background:
    linear-gradient(135deg, rgba(255,210,31,0.12), rgba(0,209,47,0.06)),
    rgba(255,255,255,0.045);
}
.host-slide {
  min-height: 330px;
  padding: clamp(26px, 5vw, 52px);
  display: grid;
  align-content: center;
}
.host-slide h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 780px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.06);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, border .18s ease, background .18s ease;
}
.slider-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,210,31,0.45);
  background: rgba(255,210,31,0.10);
}
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.slider-dot.is-active {
  width: 30px;
  background: var(--yellow);
}
.footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: var(--muted);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
.footer-logo { width: 210px; max-width: 100%; margin-bottom: 14px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.page-hero { padding: 76px 0 36px; }
.page-hero h1 { font-size: clamp(2.6rem, 5.7vw, 5rem); }
.content {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 46px);
}
.content h2 { font-size: 2rem; margin-top: 34px; }
.content h2:first-child { margin-top: 0; }
.content p, .content li { color: var(--muted); }
.content a { color: var(--yellow); }
.notice {
  border-left: 4px solid var(--yellow);
  background: rgba(255,210,31,0.08);
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
}
@media (max-width: 920px) {
  .hero-grid, .grid-3, .grid-2, .cta, .footer-grid { grid-template-columns: 1fr; }
  .nav-inner { min-height: 74px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(10,10,10,0.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { padding: 12px 8px; }
  .hero { padding-top: 54px; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .logo-img { width: 148px; }
  .visual-caption { position: static; margin-top: 12px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .story-panel { min-height: 420px; }
  .venue-slide { grid-template-columns: 1fr; min-height: 620px; }
  .host-slide { min-height: 380px; }
  .slider-btn { width: 42px; height: 42px; }
  .cta-actions { justify-content: stretch; }
}
@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .btn { width: 100%; }
  .hero-actions { align-items: stretch; }
  .venue-slide { padding: 22px; min-height: 640px; }
  .host-slide { padding: 26px; }
  .caption-card { flex: 1 1 120px; }
}
