@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@500;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --bg: #050509;
  --surface: #101019;
  --surface-2: #14141d;
  --text: #f7f2eb;
  --muted: #b2a9a0;
  --accent: #e26fae;
  --accent-2: #f2a97c;
  --border: #272733;
  --max-width: 1120px;
  --font-heading: "Railway", "Raleway", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Halyard Display", "Inter", system-ui, -apple-system, sans-serif;
  --radius-pill: 9999px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 25px 70px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-2);
  text-decoration: none;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--accent);
  color: #0c0410;
  border-radius: var(--radius-pill);
  transition: top 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 9, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--text);
}

.brand img {
  height: 66px;
  width: auto;
  display: block;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0c0410;
  border-color: var(--accent);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-2);
  border-color: var(--accent-2);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: var(--border);
}

.section {
  padding: 64px 24px;
}

.section.tight {
  padding: 48px 24px;
}

.section.bleed {
  background: radial-gradient(circle at 20% 20%, rgba(226, 111, 174, 0.1), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(242, 169, 124, 0.1), transparent 32%),
    var(--bg);
}

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

.eyebrow {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 12px;
}

h1,
.hero h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
}

h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  margin: 0 0 14px;
  font-weight: 700;
}

h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 600;
}

p {
  margin: 0 0 12px;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
  margin: 0 0 24px;
}

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

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(226, 111, 174, 0.18), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(242, 169, 124, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(16, 16, 25, 0.9), rgba(5, 5, 9, 0.9));
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 13px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.card.surface-2 {
  background: var(--surface-2);
}

.badge {
  background: rgba(226, 111, 174, 0.16);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.list {
  color: var(--muted);
  padding-left: 18px;
}

.list li {
  margin-bottom: 10px;
}

.quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--text);
}

.quote .mark {
  color: var(--accent);
  font-size: 32px;
}

.quote footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.quote-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table td,
.table th {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  text-align: left;
}

.highlight {
  color: var(--accent-2);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.note {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(242, 169, 124, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline-step {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(226, 111, 174, 0.12);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
}

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.accordion details {
  border-bottom: 1px solid var(--border);
  padding: 16px 18px;
}

.accordion details:last-of-type {
  border-bottom: none;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  color: var(--muted);
  margin: 12px 0 0;
}

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.stat {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.stat strong {
  font-size: 22px;
  font-family: var(--font-heading);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.flex {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.callout {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(226, 111, 174, 0.14), rgba(242, 169, 124, 0.12));
  border: 1px solid var(--border);
}

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

.hero-new .hero-subhead {
  color: var(--text);
  font-size: 20px;
  margin: 0 0 12px;
}

.hero-new .hero-body {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 12px;
  max-width: 780px;
}

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

.pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pillar h4 {
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 6px;
  font-size: 13px;
}

.experience-section .experience-steps,
.membership-summary .experience-steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.experience-steps li {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.event-types .event-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.safety-link {
  margin-top: 14px;
}

.who-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.quick-essentials .checklist {
  list-style: disc;
  padding-left: 20px;
}

.voices .voice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.voices blockquote {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ready .cta-row {
  align-self: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .section {
    padding: 32px 20px;
  }
}
