@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/manrope-400.woff2') format('woff2'), url('/fonts/manrope-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/manrope-500.woff2') format('woff2'), url('/fonts/manrope-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/manrope-600.woff2') format('woff2'), url('/fonts/manrope-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/manrope-700.woff2') format('woff2'), url('/fonts/manrope-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/manrope-800.woff2') format('woff2'), url('/fonts/manrope-800.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/space-grotesk-600.woff2') format('woff2'), url('/fonts/space-grotesk-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-700.woff2') format('woff2'), url('/fonts/space-grotesk-700.ttf') format('truetype');
}

:root {
  color-scheme: light;
  --bg-0: #f3f5f8;
  --bg-1: #eef1f5;
  --bg-2: #e8edf3;
  --card: rgba(255, 255, 255, 0.95);
  --card-soft: rgba(252, 253, 255, 0.92);
  --line: #d8dee7;
  --ink: #14202d;
  --ink-soft: #5a6c80;
  --accent: #e14b3b;
  --accent-strong: #c93b2d;
  --accent-2: #1f7f8a;
  --accent-2-strong: #176772;
  --shadow-sm: 0 4px 14px rgba(16, 28, 45, 0.06);
  --shadow-md: 0 8px 22px rgba(16, 28, 45, 0.08);
  --shadow-xl: 0 18px 40px rgba(16, 28, 45, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(225, 75, 59, 0.07), transparent 36%),
    radial-gradient(circle at 92% 0%, rgba(31, 127, 138, 0.07), transparent 34%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 55%, var(--bg-2) 100%);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: #1f4e78; }
a:hover { color: #163955; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.55rem 0.75rem;
  z-index: 100;
  border-radius: 10px;
  background: #fff;
  color: #111;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background:
    linear-gradient(rgba(12, 24, 39, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 24, 39, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  z-index: -2;
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(92px);
  pointer-events: none;
  opacity: 0.18;
  z-index: -3;
  animation: drift 20s ease-in-out infinite;
}
.bg-blur-a {
  width: 340px;
  height: 340px;
  left: -120px;
  top: 24px;
  background: rgba(225, 75, 59, 0.24);
}
.bg-blur-b {
  width: 300px;
  height: 300px;
  right: -100px;
  top: 180px;
  background: rgba(31, 127, 138, 0.2);
  animation-delay: 2.8s;
}

.site {
  width: min(var(--max-width), calc(100% - 1.6rem));
  margin: 0 auto;
  padding: 0.9rem 0 2.2rem;
}

.site-header {
  position: sticky;
  top: 0.65rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: space-between;
  padding: 0.72rem 0.85rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 32px rgba(16, 28, 45, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #0f1c2b;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f27f5a);
  box-shadow: 0 0 0 6px rgba(225, 75, 59, 0.14);
}

.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.topnav a {
  text-decoration: none;
  color: #34475c;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0.36rem 0.5rem;
}
.topnav a:hover {
  border-color: #cfd8e4;
  color: #162535;
  background: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.74rem 1rem;
  font-family: inherit;
  font-size: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1a2432, #111826);
  box-shadow: 0 12px 24px rgba(16, 24, 39, 0.16);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #111826, #0a101a);
  box-shadow: 0 14px 24px rgba(16, 24, 39, 0.22);
}
.btn-outline {
  color: #1b2b3e;
  border-color: #cfd8e4;
  background: rgba(255, 255, 255, 0.86);
}
.btn-outline:hover {
  color: #0f1e2f;
  border-color: #b8c5d5;
  background: #fff;
}
.btn-small { padding: 0.52rem 0.75rem; font-size: 0.88rem; }

main { display: grid; gap: 0.9rem; }

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-xl);
  padding: clamp(1rem, 2.2vw, 1.5rem);
}
.highlight {
  border-color: #e4d8d4;
  background:
    linear-gradient(170deg, rgba(225, 75, 59, 0.07), rgba(255, 255, 255, 0.94)),
    #ffffff;
}
.newsletter-wrap {
  border-color: #cfe0e2;
  background:
    linear-gradient(170deg, rgba(31, 127, 138, 0.07), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.breadcrumbs { margin: 0; font-size: 0.82rem; color: var(--ink-soft); }
.breadcrumbs a { text-decoration: none; color: #1f5c8a; }

.kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #9b2f24;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 800;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9b2f24;
  flex-shrink: 0;
}

h1, h2, h3, .brand {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.15;
  margin: 0;
}
h1 {
  font-size: clamp(2rem, 6vw, 3.35rem);
  letter-spacing: -0.03em;
  margin-top: 0.65rem;
  max-width: 18ch;
}
h2 { font-size: clamp(1.3rem, 3.4vw, 2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.08rem; }
p { margin: 0; }

.hero-lead { margin-top: 0.82rem; color: var(--ink-soft); max-width: 68ch; }
.hero-actions { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.58rem; }

.tag-list {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tag-list li {
  border-radius: 999px;
  border: 1px solid #d8e0ea;
  background: #f8fafc;
  color: #334658;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.66rem;
}

.kpi-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}
.kpi-grid article {
  border: 1px solid #dbe3ec;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kpi-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.kpi-value {
  font-size: 1.5rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--ink);
}
.kpi-label { margin-top: 0.2rem; color: var(--ink-soft); font-size: 0.91rem; }

.section-head { display: grid; gap: 0.44rem; margin-bottom: 0.9rem; }
.section-head p { color: var(--ink-soft); }

.card-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.two-col {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  border: 1px solid #dbe3ec;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.card p { margin-top: 0.42rem; color: var(--ink-soft); }
.check-list {
  margin: 0.42rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.3rem;
}

.event-feed { display: grid; gap: 0.8rem; }
.event-feed-list {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.event-preview-card {
  border: 1px solid #dbe3ec;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 0.82rem;
  display: grid;
  gap: 0.42rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.event-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 28, 45, 0.12);
}
.event-preview-top {
  margin: 0;
  color: #51667d;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.event-preview-title { font-size: 1rem; color: var(--ink); }
.event-preview-copy { margin: 0; color: #5b6d80; font-size: 0.92rem; }
.event-preview-meta { margin: 0; color: #2e445c; font-size: 0.84rem; font-weight: 700; }
.event-preview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.24rem 0.4rem;
}
.event-preview-stats span {
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  background: #f7fafc;
  color: #243a51;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.22rem 0.36rem;
}
.event-preview-stats strong { color: #1e3348; }
.event-preview-people {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}
.event-preview-people li {
  border-radius: 999px;
  border: 1px solid #d8e2ed;
  background: #f4f8fb;
  color: #2e4257;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.46rem;
}
.event-preview-people-muted { margin: 0; color: var(--ink-soft); font-size: 0.8rem; }
.event-preview-footer {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}
.event-preview-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d6e0eb;
  background: #f4f8fd;
  color: #2b3f55;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.26rem 0.52rem;
}
.event-preview-price {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e6d4cf;
  background: #fff7f4;
  color: #8e3f33;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.26rem 0.52rem;
}
.event-feed-note {
  margin: 0.1rem 0 0;
  min-height: 1.2rem;
  color: #5f6f81;
  font-size: 0.9rem;
  font-weight: 700;
}
.event-feed-note.is-success { color: #1f6d58; }
.event-feed-note.is-info { color: #33536f; }
.event-feed-note.is-error { color: #a33737; }
.event-feed-fallback {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a6e50;
  margin-bottom: 0.75rem;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-live 2.2s ease-in-out infinite;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  counter-reset: steps;
}
.steps li {
  position: relative;
  padding: 0.85rem 0.85rem 0.85rem 3.1rem;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
  counter-increment: steps;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.steps li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0.9rem;
  top: 0.85rem;
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--accent-2), var(--accent-2-strong));
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}
.steps p { margin-top: 0.35rem; color: var(--ink-soft); }

.related-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.related-grid a {
  border: 1px solid #dbe3ec;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--ink);
}
.related-grid a span {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.faq { display: grid; gap: 0.5rem; }
details {
  border: 1px solid #dbe3ec;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0.9rem;
}
details[open] {
  box-shadow: var(--shadow-md);
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details p { margin-top: 0.45rem; color: var(--ink-soft); }

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin-top: 0.72rem;
}
.newsletter-row input {
  width: 100%;
  min-width: 0;
  border: 1px solid #d3dde8;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #122130;
  padding: 0.75rem 0.85rem;
  font: inherit;
}
.newsletter-row input::placeholder { color: #7b8ea3; }
.newsletter-row input:focus {
  outline: none;
  border-color: #9fafc2;
  box-shadow: 0 0 0 3px rgba(41, 74, 109, 0.12);
}
.newsletter-feedback { margin-top: 0.5rem; min-height: 1.2rem; font-size: 0.92rem; font-weight: 700; }
.newsletter-feedback.is-success { color: #1f6d58; }
.newsletter-feedback.is-error { color: #a33737; }
.newsletter-feedback.is-info { color: #33536f; }

.muted { color: var(--ink-soft); }

.footer {
  margin-top: 0.9rem;
  border-top: 1px solid #d9e1ea;
  padding: 0.9rem 0.2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.footer-links { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.footer-links a {
  text-decoration: none;
  border: 1px solid #d4dde8;
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  color: #2d435a;
  background: #f8fbfd;
  font-weight: 700;
  font-size: 0.83rem;
}
.footer-links a:hover { color: #1a2c3d; border-color: #bcc8d7; }

.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;
}

.launch-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 19, 30, 0.42);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 130;
}
.launch-gate-overlay[hidden] { display: none !important; }
.launch-gate-modal {
  width: min(560px, 100%);
  border: 1px solid #d6dee8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(11, 20, 32, 0.18);
  padding: 1.2rem;
  display: grid;
  gap: 0.65rem;
}
.launch-gate-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}
.launch-gate-head h2 { font-size: clamp(1.2rem, 3vw, 1.55rem); }
.launch-gate-copy { color: var(--ink-soft); margin: 0; }
.launch-gate-close {
  border: 1px solid #cfd9e5;
  background: #f5f8fc;
  color: #1e3145;
  border-radius: 10px;
  font-weight: 800;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}
body.launch-gate-open { overflow: hidden; }
.is-hidden { display: none !important; }

/* ---- Animations ---- */

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14px, 11px) scale(1.04); }
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  60% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.35s; }

/* ---- Responsive ---- */

@media (max-width: 980px) {
  .site { width: min(var(--max-width), calc(100% - 1rem)); }
  .site-header { top: 0.4rem; flex-wrap: wrap; justify-content: center; gap: 0.55rem; }
  .kpi-grid,
  .card-grid,
  .event-feed-list,
  .event-feed-fallback,
  .two-col { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site { width: calc(100% - 0.7rem); padding-top: 0.58rem; }
  .topnav { justify-content: center; width: 100%; }
  .hero-actions { width: 100%; }
  .btn, .btn-small { width: 100%; }
  .newsletter-row { grid-template-columns: 1fr; }
  .event-preview-stats { grid-template-columns: 1fr; }
  .event-preview-footer { flex-direction: column; align-items: stretch; }
  .event-preview-tag { width: fit-content; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-blur, .btn { animation: none; transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-dot { animation: none; }
  html { scroll-behavior: auto; }
}
