:root {
  --bg: #070b14;
  --panel: #101828;
  --text: #f4f6ff;
  --muted: #a9b4d0;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #49d4ff;
  --accent2: #7a48ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 400px at 85% -10%, rgba(122, 72, 255, 0.24), transparent),
    radial-gradient(800px 350px at -20% 20%, rgba(73, 212, 255, 0.18), transparent),
    var(--bg);
  line-height: 1.6;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 11, 20, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-pill:hover {
  color: var(--accent);
  border-color: rgba(73, 212, 255, 0.5);
  background: rgba(73, 212, 255, 0.1);
}

.nav-cta {
  color: #08111f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight: 700;
}

.nav-cta:hover {
  color: #08111f;
  border-color: transparent;
  filter: brightness(1.05);
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 86px 20px 36px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  border: 1px solid rgba(73, 212, 255, 0.5);
  color: #8fe8ff;
  background: rgba(73, 212, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-family: 'Sora', sans-serif;
  background: linear-gradient(135deg, #d9f2ff, #b58fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 780px;
  color: var(--muted);
  margin: 16px 0 22px;
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #08111f;
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 26px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-family: 'Sora', sans-serif;
}

.section-sub {
  margin: 0 0 16px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.debate-scene {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}

.bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 72%;
}

.bubble-left {
  align-self: flex-start;
}

.bubble-right {
  align-self: flex-end;
  align-items: flex-end;
}

.bubble-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0 4px;
}

.bubble-text {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.97rem;
  line-height: 1.5;
}

.bubble-left .bubble-text {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--text);
}

.bubble-right .bubble-text {
  background: linear-gradient(135deg, rgba(73, 212, 255, 0.18), rgba(122, 72, 255, 0.18));
  border: 1px solid rgba(73, 212, 255, 0.3);
  border-bottom-right-radius: 4px;
  color: var(--text);
}

.verdict-drop {
  align-self: stretch;
  margin-top: 14px;
  border: 1px solid rgba(73, 212, 255, 0.38);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(73, 212, 255, 0.07), rgba(122, 72, 255, 0.07));
  padding: 18px;
  max-width: 100%;
}

.verdict-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8fe8ff;
  margin-bottom: 6px;
}

.verdict-drop h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  line-height: 1.4;
  font-family: 'Sora', sans-serif;
}

.verdict-drop img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #040915;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.gallery img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #040915;
}

.gallery figcaption {
  padding: 10px 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.steps {
  margin: 8px 0 18px;
  color: var(--muted);
  padding-left: 20px;
}

.steps li {
  margin-bottom: 6px;
}

.cta-box {
  border: 1px solid rgba(73, 212, 255, 0.4);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(73, 212, 255, 0.08), rgba(122, 72, 255, 0.08));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-box p {
  margin: 0;
  font-weight: 600;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
}

footer p {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .nav-links::-webkit-scrollbar {
    height: 6px;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
  }

  .grid,
  .gallery,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .section {
    padding-top: 22px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
