/* ============================================
   EVERSEE Creative Forum — Landing Page
   Brand: hot pink + deep purple, Syne + Plus Jakarta Sans
   ============================================ */

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

:root {
  /* Brand colors */
  --accent: #FF2883;
  --accent-hover: #ff4d9a;
  --gradient-start: #E91A83;
  --gradient-end: #4C24C1;

  /* Backgrounds */
  --bg: #0d0d0d;
  --bg-card: #0f0f0f;
  --bg-section: #17112B;
  --bg-section-light: #35244A;

  /* Text — high contrast on dark backgrounds */
  --text: #ffffff;
  --dim: #d0d0d0;
  --muted: #b0b0b0;
  --faint: #808080;

  /* Borders */
  --border: #1e1e2e;
  --border-hover: #3a3a4e;

  /* Accent-derived */
  --accent-bg: rgba(255,40,131,0.06);
  --accent-border: rgba(255,40,131,0.25);
  --accent-border-hover: rgba(255,40,131,0.5);
  --accent-badge: rgba(255,40,131,0.12);

  /* Typography */
  --head: 'Syne', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(255,40,131,0.3); }

@media (pointer: fine) { *, *::before, *::after { cursor: none !important; } }
@media (pointer: coarse) { body { cursor: auto; } *, *::before, *::after { cursor: auto !important; } }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Cursor
   ============================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: difference;
}
.cursor__circle {
  width: 20px; height: 20px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.cursor--hover .cursor__circle { width: 50px; height: 50px; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  transition: all 0.25s var(--ease);
  min-height: 44px;
  min-width: 44px;
}
.btn--accent {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(255,40,131,0.25);
}
.btn--accent:hover {
  box-shadow: 0 6px 32px rgba(255,40,131,0.4);
  transform: translateY(-1px);
}
.btn--outline {
  border: 1px solid var(--border);
  color: var(--dim);
}
.btn--outline:hover {
  border-color: var(--accent-border);
  color: var(--text);
}

/* ============================================
   1. Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.nav__logo {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }
.nav__cta {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__cta:hover {
  box-shadow: 0 4px 20px rgba(255,40,131,0.3);
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger--open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger--open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu__nav a {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--dim);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu__nav a:hover { color: var(--text); }
.mobile-menu__cta {
  margin-top: 12px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) !important;
  color: #fff !important;
  border-radius: 10px;
  font-size: 16px !important;
}

/* ============================================
   2. Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.hero__video-wrap {
  position: absolute;
  inset: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--head);
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #FF2883, #c45aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* Countdown */
.hero__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.countdown__item { text-align: center; min-width: 60px; }
.countdown__num {
  display: block;
  font-family: var(--head);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
}
.countdown__label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}
.countdown__sep {
  font-size: 28px;
  font-weight: 200;
  color: var(--faint);
  margin-top: -16px;
}

.hero__cta { margin-bottom: 16px; }
.hero__early {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero { padding: 16px; }
  .hero__video-wrap { inset: 16px; border-radius: 12px; }
}

/* ============================================
   3. About
   ============================================ */
.about {
  padding: 120px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.about__block {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}
.about__label {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.about__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dim);
}
.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.about__stat { text-align: center; }
.about__stat-num {
  display: block;
  font-family: var(--head);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1px;
}
.about__stat-label {
  display: block;
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}
.about__stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.about__curated {
  text-align: center;
  font-size: 16px;
  color: var(--dim);
  font-style: italic;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 24px; }
  .about__stats { flex-wrap: wrap; gap: 24px; }
  .about__stat-sep { display: none; }
}

/* ============================================
   4. Program (timeline layout)
   ============================================ */
.section-title {
  font-family: var(--head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 56px;
}
.program {
  padding: 120px 0;
  background: var(--bg-section);
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
}
.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  font-family: var(--head);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255,40,131,0.06);
  flex-shrink: 0;
}
.timeline__line {
  display: block;
  width: 1.5px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent-border), transparent);
  margin-top: 8px;
}
.timeline__content {
  padding-bottom: 48px;
}
.timeline__item:last-child .timeline__content {
  padding-bottom: 0;
}
.timeline__header {
  margin-bottom: 20px;
}
.timeline__name {
  font-family: var(--head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.timeline__date {
  font-size: 15px;
  color: var(--dim);
}
.timeline__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.timeline__list li {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.timeline__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}
.timeline__evening {
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(255,40,131,0.04);
  border: 1px solid rgba(255,40,131,0.1);
}
.timeline__evening-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.timeline__evening p {
  font-size: 16px;
  color: var(--accent);
  font-weight: 400;
}
.timeline__optional {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .program { padding: 80px 0; }
  .timeline__item { grid-template-columns: 48px 1fr; gap: 20px; }
  .timeline__num { width: 40px; height: 40px; font-size: 18px; }
}

/* ============================================
   5. Speed Matching
   ============================================ */
.matching {
  padding: 120px 0;
}
.matching__inner {
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 64px 48px;
  background: var(--accent-bg);
  text-align: center;
}
.matching__title {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.matching__headline {
  font-family: var(--head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.matching__sub {
  font-size: 17px;
  color: var(--dim);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.matching__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.matching__label {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.matching__block p {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 768px) {
  .matching { padding: 80px 0; }
  .matching__inner { padding: 40px 24px; }
  .matching__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   6. Who's Coming (Speakers)
   ============================================ */
.speakers {
  padding: 120px 0;
  background: var(--bg-section);
}
.speakers__sub {
  text-align: center;
  font-size: 16px;
  color: var(--dim);
  margin-top: -40px;
  margin-bottom: 48px;
}
.speakers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.speaker-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  background: rgba(15,15,15,0.6);
  text-align: center;
  transition: border-color 0.2s;
}
.speaker-card:hover { border-color: var(--border-hover); }
.speaker-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,26,131,0.2), rgba(76,36,193,0.2));
  margin: 0 auto 20px;
  /* TODO: replace with real photos */
}
.speaker-card__name {
  font-family: var(--head);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}
.speaker-card__role {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.4;
  margin-bottom: 4px;
}
.speaker-card__city {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.speakers__tech-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}
.speakers__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.speakers__logo {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 0.5px;
  transition: border-color 0.2s, color 0.2s;
}
.speakers__logo:hover {
  border-color: var(--accent-border);
  color: var(--dim);
}
.speakers__cta {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .speakers { padding: 80px 0; }
  .speakers__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 48px; }
}

/* ============================================
   7. Tickets
   ============================================ */
.tickets {
  padding: 120px 0;
}
.tickets__early {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 400px;
  margin: -32px auto 56px;
  padding: 13px 24px;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-bg);
}
.pulse {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.7)} }

.tickets__segment-label {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 32px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
}
.tickets__segment-label::before,
.tickets__segment-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.tickets__grid {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 56px;
}
.tickets__grid--two { grid-template-columns: 1fr 1fr; }
.tickets__grid--three { grid-template-columns: 1fr 1fr 1fr; }

/* Ticket card */
.ticket-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  background: var(--bg-card);
  position: relative;
  transition: border-color 0.2s;
}
.ticket-card:hover { border-color: var(--border-hover); }
.ticket-card--featured {
  border-color: var(--accent-border);
  background: linear-gradient(145deg, rgba(233,26,131,0.06), var(--bg-card));
}
.ticket-card--featured:hover { border-color: var(--accent-border-hover); }
.ticket-card__badge {
  position: absolute;
  top: -11px; left: 32px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.ticket-card__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}
.ticket-card__title {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.ticket-card__days {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 28px;
}
.ticket-card__price {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.ticket-card__price sup {
  font-size: 18px;
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
  margin-right: 2px;
}
.ticket-card__price--custom {
  font-size: 28px;
  letter-spacing: -1px;
  padding-top: 8px;
  color: var(--muted);
}
.ticket-card__note {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 28px;
}
.ticket-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.ticket-card--featured .ticket-card__divider {
  background: rgba(255,40,131,0.15);
}
.ticket-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--dim);
  line-height: 1.4;
}
.ticket-card__feature::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1.2px solid #333;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23333' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ticket-card__feature--on { color: #ddd; }
.ticket-card__feature--on::before {
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23FF2883' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ticket-card__feature--highlight { color: var(--accent); }
.ticket-card__feature--highlight::before {
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23FF2883' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.tag {
  display: inline-block;
  font-size: 9px;
  background: var(--accent-badge);
  color: var(--accent);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
.ticket-card__cta {
  display: block;
  margin-top: 32px;
  width: 100%;
}

@media (max-width: 1024px) {
  .tickets__grid--three { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .tickets { padding: 80px 0; }
  .tickets__grid--two { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   8. Waitlist (Email Capture)
   ============================================ */
.waitlist {
  padding: 80px 0;
  background: var(--bg-section);
}
.waitlist__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.waitlist__title {
  font-family: var(--head);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}
.waitlist__sub {
  font-size: 17px;
  color: var(--dim);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
}
.waitlist__form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.waitlist__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(15,15,15,0.6);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
}
.waitlist__input::placeholder { color: var(--faint); }
.waitlist__input:focus { border-color: var(--accent-border); }
.waitlist__btn { flex-shrink: 0; }

@media (max-width: 480px) {
  .waitlist__form { flex-direction: column; }
}

/* ============================================
   9. FAQ
   ============================================ */
.faq {
  padding: 120px 0;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child {
  border-top: 1px solid var(--border);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  min-height: 44px;
}
.faq__icon {
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--faint);
  transition: transform 0.3s var(--ease);
}
.faq__item--open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__answer p {
  padding: 0 0 22px;
  font-size: 16px;
  color: var(--dim);
  line-height: 1.7;
  font-weight: 400;
}
.faq__answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .faq { padding: 80px 0; }
}

/* ============================================
   10. Footer
   ============================================ */
.footer {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer__copy {
  font-size: 13px;
  color: var(--muted);
}
.footer__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer__link {
  font-size: 15px;
  color: var(--dim);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--text); }
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__socials a {
  font-size: 15px;
  color: var(--dim);
  transition: color 0.2s;
}
.footer__socials a:hover { color: var(--text); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__socials { align-items: center; }
}

/* ============================================
   Scroll Reveal
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
