@import url('/fonts/nunitosans-local.css');

:root {
  --bg: #eef9ff;
  --surface: #ffffff;
  --ink: #221c33;
  --ink-secondary: #635f73;
  --primary: #008ccf;
  --primary-hover: #006999;
  --accent: #ff7a45;
  --font-heading: 'Nunito Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }
header.hero {
  background: linear-gradient(135deg, #70e0fc 0%, var(--primary) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
header.hero .wrap { text-align: center; }
.back-link {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.back-link:hover { color: #fff; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.lead {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.92;
}
section { padding: 56px 0; }
h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 0 0 8px;
  font-weight: 800;
}
.section-sub {
  color: var(--ink-secondary);
  margin: 0 0 32px;
  font-size: 16px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(34,28,51,0.08);
}
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--ink-secondary); font-size: 15px; }
.requirement {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(34,28,51,0.08);
}
.requirement h2 { margin-bottom: 4px; }
.freq {
  display: inline-block;
  background: rgba(0,140,207,0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 6px 0 20px;
}
.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  flex: 1 1 200px;
}
.channel span.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.cta {
  text-align: center;
  padding: 64px 0 80px;
}
.cta h2 { margin-bottom: 12px; }
.cta p { color: var(--ink-secondary); margin-bottom: 28px; }
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
}
.btn:hover { background: var(--primary-hover); }
footer {
  text-align: center;
  padding: 28px 0;
  color: var(--ink-secondary);
  font-size: 13px;
}

/* Chooser (index) */
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.choice-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(34,28,51,0.08);
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.choice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34,28,51,0.12);
}
.choice-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(0,140,207,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.choice-card h2 { font-size: 20px; margin: 0 0 8px; }
.choice-card p { color: var(--ink-secondary); font-size: 15px; margin: 0 0 16px; }
.choice-card .go {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

/* Partners / social proof */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.partner-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(34,28,51,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.partner-card .logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0,140,207,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.partner-card .name { font-weight: 700; font-size: 15px; margin: 0 0 2px; }
.partner-card .kind { color: var(--ink-secondary); font-size: 13px; margin: 0; }
.partners-placeholder-note {
  color: var(--ink-secondary);
  font-size: 13px;
  margin: 16px 0 0;
  font-style: italic;
}

/* Topbar: logo mark + wordmark + tagline pills */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  animation: logo-pulse 3.5s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.brand-word {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.brand-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 2px;
}
.tagline-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
}
.tagline-pills span.pill {
  background: rgba(255,255,255,0.18);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.tagline-pills .sep {
  opacity: 0.5;
}

/* Rainbow stripe accent */
.stripe {
  display: flex;
  height: 5px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 28px;
  border-radius: 999px;
  overflow: hidden;
}
header.hero .stripe { margin: 0 auto 28px; }
.stripe span { flex: 1; }
.stripe .s1 { background: #9be8ac; }
.stripe .s2 { background: #f5aed4; }
.stripe .s3 { background: #f8dd7c; }
.stripe .s4 { background: #4f7de0; }

/* Event photo avatars (placeholders) */
.avatar-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.avatars {
  display: flex;
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, #ffffff, #d6f2ff);
  box-shadow: 0 4px 12px rgba(0,45,70,0.18);
  transition: transform 0.25s ease, z-index 0s;
  position: relative;
}
.avatar:first-child { margin-left: 0; }
.avatar:hover { transform: translateY(-8px) scale(1.08); z-index: 5; }
.avatar.pin::after {
  content: '📍';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
}
.avatars-note {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin-top: 10px;
  font-style: italic;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.cards .reveal:nth-child(1) { transition-delay: 0s; }
.cards .reveal:nth-child(2) { transition-delay: 0.1s; }
.cards .reveal:nth-child(3) { transition-delay: 0.2s; }
.choices .reveal:nth-child(1) { transition-delay: 0s; }
.choices .reveal:nth-child(2) { transition-delay: 0.12s; }
.partners .reveal:nth-child(1) { transition-delay: 0s; }
.partners .reveal:nth-child(2) { transition-delay: 0.1s; }
.partners .reveal:nth-child(3) { transition-delay: 0.2s; }
