/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Warm dark palette — NOT the typical AI purple/blue */
  --ink: #0F1117;
  --ink-light: #1A1D27;
  --ink-lighter: #252836;
  --slate: #2E3345;
  --slate-light: #3D4358;
  --muted: #7C8298;
  --soft: #A8AEBF;
  --cream: #E8E6E1;
  --warm-white: #F5F3EE;
  --white: #FEFDFB;

  /* Accent: warm amber/gold — distinctive, premium feel */
  --accent: #E8A838;
  --accent-light: #F0C060;
  --accent-glow: #E8A83830;
  --accent-dark: #C88A20;

  /* Supporting colors */
  --teal: #2ABFAB;
  --teal-soft: #2ABFAB20;
  --coral: #E8665A;
  --coral-soft: #E8665A18;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  /* Prevent horizontal overflow on mobile */
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, button { font-size: inherit; }

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

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.navbar.scrolled {
  background: rgba(15, 17, 23, 0.95);
  border-bottom-color: rgba(255,255,255,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--soft);
}

/* Mobile nav dropdown (toggled via JS) */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: var(--ink);
  padding: 20px 24px;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.nav-links.mobile-open a {
  font-size: 16px;
  padding: 8px 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Warm glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(232,168,56,0.15);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,56,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--soft);
  background: transparent;
  border: 1.5px solid var(--slate);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--muted);
  color: var(--white);
}

/* ── Screenshot (inline SVG mockup) ───────────────────────── */
.hero-visual {
  position: relative;
}

.app-frame {
  background: var(--ink-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.3),
    0 24px 48px rgba(0,0,0,0.2);
  position: relative;
}

.app-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(232,168,56,0.15) 0%, transparent 40%, rgba(42,191,171,0.1) 100%);
  z-index: -1;
  filter: blur(1px);
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--ink-lighter);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #E8665A; }
.dot-yellow { background: #E8A838; }
.dot-green { background: #2ABFAB; }

.app-titlebar-url {
  flex: 1;
  margin: 0 40px;
  padding: 4px 12px;
  background: var(--ink);
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.app-body {
  display: flex;
  min-height: 340px;
}

.app-sidebar {
  width: 180px;
  background: var(--ink-lighter);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 16px 12px;
  flex-shrink: 0;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-logo-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--ink);
}

.sidebar-logo span {
  font-size: 12px; font-weight: 700; color: var(--white);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

.sidebar-item.active {
  background: rgba(232,168,56,0.1);
  color: var(--accent);
}

.sidebar-icon {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--slate);
  flex-shrink: 0;
}

.sidebar-item.active .sidebar-icon {
  background: rgba(232,168,56,0.25);
}

.app-main {
  flex: 1;
  padding: 16px;
  background: var(--ink);
}

.app-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.app-main-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.app-main-btn {
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: var(--accent);
  border-radius: 6px;
  border: none;
}

.feed-card {
  background: var(--ink-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}

.feed-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.feed-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feed-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
}

.feed-meta {
  font-size: 10px;
  color: var(--muted);
}

.feed-text {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
}

.feed-reactions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.feed-reaction {
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--accent-glow);
  color: var(--accent);
}

.feed-reaction.muted {
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

/* ── Stats strip ──────────────────────────────────────────── */
.stats {
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Features ─────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.f-card {
  background: var(--ink-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
}

.f-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.f-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.f-icon svg { width: 22px; height: 22px; }

.f-icon.gold { background: var(--accent-glow); color: var(--accent); }
.f-icon.teal { background: var(--teal-soft); color: var(--teal); }
.f-icon.coral { background: var(--coral-soft); color: var(--coral); }

.f-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.f-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Showcase ─────────────────────────────────────────────── */
.showcase {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.showcase-content h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 14px;
}

.showcase-content > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.check-list { list-style: none; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 15px;
  color: var(--soft);
}

.check-list li strong { color: var(--cream); }

.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg { width: 12px; height: 12px; }

/* ── Second screenshot (Events) ──────────────────────────── */
.app-events-body { padding: 16px; }

.events-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}

.events-title {
  font-size: 15px; font-weight: 700; color: var(--white);
}

.events-tabs {
  display: flex; gap: 4px; margin-bottom: 14px;
}

.events-tab {
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

.events-tab.active {
  background: var(--accent);
  color: var(--ink);
}

.event-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--ink-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.event-date {
  width: 48px;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  flex-shrink: 0;
}

.event-date-month {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}

.event-date-day {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
}

.event-date.gold { background: var(--accent-glow); color: var(--accent); }
.event-date.teal { background: var(--teal-soft); color: var(--teal); }
.event-date.coral { background: var(--coral-soft); color: var(--coral); }

.event-info { flex: 1; }

.event-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 4px;
}

.event-badge.featured { background: var(--accent-glow); color: var(--accent); }

.event-name {
  font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px;
}

.event-detail {
  font-size: 11px; color: var(--muted); line-height: 1.5;
}

.event-rsvp {
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  flex-shrink: 0;
  align-self: center;
}

.event-rsvp.filled { background: var(--accent); color: var(--ink); }
.event-rsvp.outline {
  background: transparent;
  border: 1px solid var(--slate);
  color: var(--soft);
}

/* ── Waitlist CTA ─────────────────────────────────────────── */
.waitlist-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232,168,56,0.06) 0%, transparent 60%),
    var(--ink-light);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.waitlist-inner h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.waitlist-inner > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Honeypot — visually hidden but not display:none so smarter bots still see it */
.wl-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.waitlist-form {
  background: var(--ink-lighter);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group { margin-bottom: 14px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
  margin-bottom: 5px;
}

.form-group .opt {
  font-weight: 400;
  color: var(--muted);
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--white);
  background: var(--ink);
  border: 1.5px solid var(--slate);
  border-radius: 8px;
  outline: none;
  transition: all 0.2s;
}

.form-input::placeholder { color: var(--slate-light); }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.form-check a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-check a:hover { color: var(--accent-light); }

.form-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,168,56,0.3);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
}

.form-error {
  display: none;
  padding: 9px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--coral);
  background: var(--coral-soft);
  border: 1px solid rgba(232,102,90,0.15);
  border-radius: 8px;
}

.form-error.visible { display: block; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-built-by {
  margin-top: 10px !important;
  font-size: 12px !important;
  color: var(--slate-light) !important;
}

.footer-built-by a {
  color: var(--accent);
  transition: color 0.2s;
}

.footer-built-by a:hover { color: var(--accent-light); }

.footer-bottom a {
  color: inherit;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--white); }

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--soft);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 20px;
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a { color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ── Feature Categories ───────────────────────────────────── */
.feature-category {
  margin-bottom: 56px;
}

.feature-category:last-child { margin-bottom: 0; }

.feature-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.feature-category-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-category-icon svg { width: 18px; height: 18px; }
.feature-category-icon.gold { background: var(--accent-glow); color: var(--accent); }
.feature-category-icon.teal { background: var(--teal-soft); color: var(--teal); }
.feature-category-icon.coral { background: var(--coral-soft); color: var(--coral); }

/* Platform badges inside feature cards */
.f-platforms {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.f-badge {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.f-badge.web {
  background: rgba(42,191,171,0.12);
  color: var(--teal);
}

.f-badge.mobile {
  background: var(--accent-glow);
  color: var(--accent);
}

/* ── Mobile App Callout ──────────────────────────────────── */
.mobile-callout {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(42,191,171,0.04) 0%, transparent 60%),
    var(--ink);
}

.mobile-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mobile-callout-content h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 14px;
}

.mobile-callout-content > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.mobile-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-platform-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--ink-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.mobile-platform-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-platform-icon svg { width: 20px; height: 20px; }

.mobile-platform-card strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
}

.mobile-platform-card span {
  font-size: 12px;
  color: var(--muted);
}

/* ── Phone Mockup ────────────────────────────────────────── */
.phone-frame {
  width: 260px;
  margin: 0 auto;
  background: var(--ink-lighter);
  border: 2px solid var(--slate);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 22px;
  background: var(--ink-lighter);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: var(--ink);
  margin: 0 4px 4px;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--soft);
}

.phone-statusbar span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-header {
  padding: 8px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.phone-header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.phone-feed-card {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.phone-tabs {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--ink-light);
}

.phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  color: var(--muted);
}

.phone-tab.active { color: var(--accent); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .app-sidebar { width: 140px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { padding: 110px 0 48px; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 { font-size: 34px; }
  .hero-sub { margin: 0 auto 28px; font-size: 16px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-visual { order: -1; max-width: 440px; margin: 0 auto; }
  .app-sidebar { display: none; }

  .section-head h2 { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 36px; }
  .stat-num { font-size: 30px; }

  .showcase-inner { grid-template-columns: 1fr; gap: 36px; }
  .mobile-callout-inner { grid-template-columns: 1fr; gap: 36px; }
  .mobile-callout-visual { order: -1; }
  .phone-frame { width: 220px; }
  .phone-screen { min-height: 360px; }

  .waitlist-inner h2 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .feature-category-title { font-size: 16px; }
  .mobile-callout-content h2 { font-size: 28px; }
  .showcase-content h2 { font-size: 28px; }

  /* Touch-friendly inputs */
  .form-input { font-size: 16px; padding: 13px 14px; }
  .form-submit { font-size: 16px; padding: 15px; }
  .form-check span { font-size: 13px; }
  .form-check input[type="checkbox"] { width: 20px; height: 20px; }

  /* Touch-friendly buttons */
  .btn-accent, .btn-outline { padding: 14px 24px; font-size: 16px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .nav-cta { padding: 10px 18px; }

  /* Event cards stack better */
  .event-card { flex-wrap: wrap; }
  .event-rsvp { margin-top: 8px; width: 100%; text-align: center; padding: 10px; }
}

/* Small phones */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 40px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .section-head h2 { font-size: 24px; }
  .waitlist-inner h2 { font-size: 24px; }
  .waitlist-form { padding: 24px 18px; }
  .stat-num { font-size: 26px; }
  .stats-row { gap: 24px; }
  .f-card { padding: 20px; }
  .mobile-callout-content h2 { font-size: 24px; }
  .showcase-content h2 { font-size: 24px; }
  .phone-frame { width: 200px; }
  .phone-screen { min-height: 320px; }
  .legal-page h1 { font-size: 26px; }
  .legal-page h2 { font-size: 18px; }
}

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page {
  padding: 120px 24px 80px;
  max-width: 700px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.legal-page .last-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-page p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-page li {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { color: var(--accent-light); }
