﻿:root {
  --bg: #071611;
  --bg-soft: #0d1f19;
  --surface: #102a22;
  --surface-soft: #16392e;
  --text: #f4fff8;
  --muted: #b7d9ca;
  --primary: #32f7a8;
  --primary-strong: #10d287;
  --accent: #ffc857;
  --stroke: rgba(103, 255, 188, 0.24);
  --danger: #ff6c6c;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top left, #0f2b22 0%, var(--bg) 44%, #050c09 100%);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--primary);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}

.brand-row {
  margin-bottom: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.7rem;
  border: 1px solid var(--stroke);
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
}

.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.2;
  pointer-events: none;
}

.hero-glow-left {
  background: var(--primary);
  left: -120px;
  top: -100px;
}

.hero-glow-right {
  background: var(--accent);
  right: -120px;
  bottom: -140px;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 5.4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  color: var(--muted);
  margin: 1rem 0 1.25rem;
  max-width: 56ch;
}

.event-card,
.price-box,
.card,
.authority,
.cta-wrap {
  border: 1px solid var(--stroke);
  background: linear-gradient(165deg, rgba(24, 56, 45, 0.8), rgba(11, 25, 20, 0.9));
  border-radius: 1rem;
}

.event-card {
  padding: 0.9rem;
}

.event-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.event-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.event-card li span {
  color: var(--muted);
}

.price-box {
  margin-top: 1rem;
  padding: 0.9rem;
}

.price-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.price-old {
  margin: 0.15rem 0 0;
  color: #ffd2d2;
  text-decoration: line-through;
}

.price-now {
  margin: 0.15rem 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--accent);
  font-weight: 800;
}

.price-note {
  margin: 0;
  color: var(--muted);
}

.hero-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.86rem 1.2rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #032617;
  box-shadow: 0 8px 22px rgba(38, 223, 151, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--stroke);
}

.microcopy {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-short {
  margin-top: 0.5rem;
  color: #9ecdb9;
  font-size: 0.85rem;
}

.legal-short a {
  color: var(--accent);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.section {
  padding: 3rem 0;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.25rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-card li {
  margin-bottom: 0.45rem;
}

.section-dark {
  background: linear-gradient(180deg, rgba(4, 12, 9, 0.85), rgba(8, 19, 15, 0.96));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.card-dark {
  background: linear-gradient(165deg, rgba(14, 32, 26, 0.95), rgba(8, 18, 14, 1));
}

.authority {
  padding: 1.2rem;
}

.authority p {
  margin: 0.45rem 0;
  color: var(--muted);
}

.section-cta {
  background: radial-gradient(circle at center, rgba(29, 114, 83, 0.28), rgba(4, 13, 10, 0.9));
}

.cta-wrap {
  padding: 1.4rem;
}

.cta-wrap h2 {
  margin-bottom: 0.6rem;
}

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

.countdown {
  margin-top: 0.7rem !important;
  color: var(--accent) !important;
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--stroke);
  background: #040d0a;
  padding: 1rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  gap: 0.5rem;
}

.footer p {
  margin: 0;
  color: #95baaa;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 30;
}

.modal-content {
  width: min(520px, 100%);
  background: #0b1c16;
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 1.1rem;
}

.modal-content h3 {
  margin-bottom: 0.4rem;
}

.modal-content p {
  margin: 0.3rem 0;
  color: var(--muted);
}

.modal-content .btn {
  margin-top: 0.8rem;
  margin-right: 0.4rem;
}

@media (max-width: 1000px) {
  .hero-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .event-card li {
    flex-direction: column;
    gap: 0.2rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .section {
    padding: 2.3rem 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
