:root {
  --bg: #0f1115;
  --bg-alt: #15181f;
  --surface: #1b1f28;
  --surface-hover: #20242f;
  --border: #2a2f3a;
  --text: #eef0f4;
  --text-muted: #9aa1b0;
  --accent: #d4a441;
  --accent-hover: #e6b955;
  --accent-soft: rgba(212, 164, 65, 0.12);
  --max-width: 1100px;
  --radius: 12px;
  --font-heading: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 10px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

p {
  color: var(--text-muted);
  margin: 0 0 16px;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 21, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(15, 17, 21, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  right: 0;
}

.nav-cta {
  margin-left: 24px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  margin-left: 12px;
  transition: border-color 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #1a1305;
  box-shadow: 0 0 0 rgba(212, 164, 65, 0);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 164, 65, 0.25);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite;
}

.hero-glow-a {
  width: 480px;
  height: 480px;
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, rgba(212, 164, 65, 0.35), transparent 70%);
}

.hero-glow-b {
  width: 420px;
  height: 420px;
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, rgba(90, 110, 160, 0.25), transparent 70%);
  animation-delay: -7s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-sub {
  font-size: 1.12rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
}

.hero-svg {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 0 auto;
  display: block;
}

.art-ticket {
  transform-origin: center;
  animation: float-ticket 5s ease-in-out infinite;
}

.art-pass {
  transform-origin: center;
  animation: float-pass 6s ease-in-out infinite;
}

@keyframes float-ticket {
  0%, 100% { transform: translate(120px, 120px) rotate(6deg); }
  50% { transform: translate(120px, 108px) rotate(4deg); }
}

@keyframes float-pass {
  0%, 100% { transform: translate(70px, 150px) rotate(-8deg); }
  50% { transform: translate(70px, 160px) rotate(-6deg); }
}

.art-float-1 { animation: pulse 2.4s ease-in-out infinite; }
.art-float-2 { animation: pulse 2.4s ease-in-out infinite 0.6s; }
.art-float-3 { animation: pulse 2.4s ease-in-out infinite 1.2s; }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* Trust bar */
.trust-bar {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 28px 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 164, 65, 0.35);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.about-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.about-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.about-facts strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;
}

.about-facts span {
  color: var(--text);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 164, 65, 0.4);
  background: var(--surface-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.services-note {
  margin-top: 32px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(212, 164, 65, 0.06);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}

/* How it works */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 164, 65, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1305;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  position: absolute;
  top: 30px;
  right: 24px;
  opacity: 0.6;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.why-item {
  padding: 24px 0;
  border-top: 2px solid var(--accent);
  transition: transform 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-item p {
  font-size: 0.92rem;
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(212, 164, 65, 0.35);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-list a {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-list span:not(.contact-label) {
  color: var(--text);
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-disclaimer {
  font-size: 0.85rem;
  max-width: 680px;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
  }

  .site-header.open .nav-cta {
    display: inline-block;
    position: absolute;
    top: 260px;
    left: 24px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .why-grid,
  .trust-inner {
    grid-template-columns: 1fr;
  }
}
