:root {
  color-scheme: dark;
  --bg: #08080f;
  --bg-soft: rgba(255, 255, 255, 0.06);
  --bg-soft-strong: rgba(255, 255, 255, 0.12);
  --text: #f1f3f6;
  --text-subtle: #a6acbe;
  --accent: #ff6090;
  --accent-soft: rgba(255, 96, 144, 0.45);
  --max-width: 980px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(255, 96, 144, 0.14), transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

header {
  padding: 4rem 1.5rem 3rem;
}

.inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin: 1.5rem 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.tagline {
  max-width: 40ch;
  font-size: 1.15rem;
  color: var(--text-subtle);
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-group a {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-group a.primary {
  background: linear-gradient(135deg, var(--accent), rgba(255, 122, 122, 0.85));
  color: #0a0a11;
  box-shadow: 0 18px 50px -24px var(--accent);
}

.cta-group a.secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--bg-soft-strong);
}

.cta-group a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -24px var(--accent-soft);
}

section {
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--bg-soft-strong);
}

section:first-of-type {
  border-top: none;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
}

.facts-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fact-card {
  background: var(--bg-soft);
  border: 1px solid var(--bg-soft-strong);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 18px 38px -32px rgba(0, 0, 0, 0.75);
}

.fact-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.fact-card p {
  margin: 0;
  color: var(--text-subtle);
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bg-soft-strong);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 1rem;
}

.timeline-item strong {
  font-size: 1.15rem;
  color: var(--accent);
}

.timeline-item span {
  color: var(--text-subtle);
}

iframe {
  width: 100%;
  border: none;
  box-shadow: 0 28px 45px -34px rgba(255, 96, 144, 0.55);
}

footer {
  margin-top: auto;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.95rem;
  border-top: 1px solid var(--bg-soft-strong);
  background: rgba(255, 255, 255, 0.02);
}

.footer-email {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.footer-email a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.6;
  transition: opacity 160ms ease;
}

.footer-email a:hover {
  opacity: 1;
}

@media (max-width: 720px) {
  header {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  iframe {
    height: 360px;
  }
}
