/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* color */
  --bg: #000000;
  --bg-secondary: #070009;
  --bg-gradient:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%),
    radial-gradient(ellipse at 90% 40%, #4a0a72 0%, #2a0048 25%, #12001f 50%, #000000 75%),
    radial-gradient(ellipse at 10% 90%, #2a0048 0%, #000000 60%);

  --surface: rgba(15,6,26,0.9);
  --surface-flat: rgba(20,20,20,0.7);
  --surface-hover: rgba(15,6,26,0.98);
  --surface-soft: rgba(255,255,255,0.04);
  --surface-panel: rgba(12,6,22,0.85);

  --pink: #e91e8c;
  --pink-light: #ff5ec4;
  --pink-dim: rgba(233,30,140,0.12);
  --purple: #7b1fa2;
  --purple-deep: #6b0fa0;

  --text: #d8d8d8;
  --text-muted: #aaa;
  --text-dim: #888;
  --text-faint: #666;

  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.07);
  --border-highlight: rgba(233,30,140,0.5);

  /* radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;

  /* layout */
  --max-width: 1080px;
  --nav-height: 58px;
  --gutter: 48px;

  /* effects */
  --glow: 0 0 40px rgba(233,30,140,0.15);
  --heading-pop: 0 2px 8px rgba(0,0,0,0.55);
  --transition: 0.25s ease;
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-gradient);
  background-size: 10px 10px, 10px 10px, auto, auto;
  background-color: var(--bg);
  filter: grayscale(0.5);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--pink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 700;
  text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--pink-light);
  outline-offset: 2px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.3px; }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; color: #fff; text-shadow: var(--heading-pop); text-transform: uppercase; margin-bottom: 12px; display: block; }
.placeholder-copy { color: var(--text-dim); font-style: italic; }
.placeholder-copy::before { content: '[Placeholder: '; }
.placeholder-copy::after { content: ']'; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 88px 0; position: relative; overflow: hidden; }
.section-head { text-align: center; margin-bottom: 52px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.section-head p + p { margin-top: 14px; }
.section .wrap > h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-bottom: 52px; }
.section-alt { background: var(--bg-secondary); }

#video-ad { padding: 32px 0 48px; }
.video-ad-frame {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border: 2px solid #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-ad-frame video { width: 100%; display: block; }
.video-ad-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: rgba(0,0,0,0.8);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.video-ad-overlay:hover { background: rgba(0,0,0,0.9); }
.video-ad-overlay[hidden] { display: none; }
.video-ad-play-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple-deep) 100%);
  box-shadow: 0 8px 28px rgba(233,30,140,0.45);
  transition: transform var(--transition);
}
.video-ad-overlay:hover .video-ad-play-icon { transform: scale(1.06); }
.video-ad-play-icon::before,
.video-ad-play-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--pink-light);
  animation: video-ad-pulse 2.4s ease-out infinite;
}
.video-ad-play-icon::after { animation-delay: 1.2s; }
@keyframes video-ad-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.video-ad-play-icon svg { width: 28px; height: 28px; fill: #fff; margin-left: 3px; }
.video-ad-play-label {
  max-width: 260px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 20px rgba(233,30,140,0.4);
}

#ai-kitty { padding: 88px 0 68px; background: transparent; }
#ai-kitty .wrap { max-width: 880px; }

/* shared card primitive */
.card {
  padding: 36px 32px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  border-radius: var(--radius-md);
}
.card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 1.2px; color: #c8cdd5; }
.card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
.card p + p { margin-top: 14px; }
.card p strong { color: var(--text); }
.card--flat { background: #1a0a2e; border-color: #3d1a5e; }
.card--accent { border-left: 3px solid var(--pink); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: var(--surface-flat); }
.card--ghost { background: var(--surface-soft); border: 2px dashed var(--border); color: var(--text-dim); text-align: center; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: background var(--transition);
}
nav.is-scrolled { background: #0d0d0d; }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: 40px; object-fit: contain; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; color: #b8bec7; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.5px; padding: 4px 2px; border-bottom: 2px solid transparent; transition: color var(--transition), border-color var(--transition); }
.nav-links a:hover, .nav-links a.is-active { color: #fff; border-color: var(--pink); }

.nav-links a.nav-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 7px 20px;
  border-radius: 980px;
  font-weight: 800 !important;
  border-bottom: none !important;
  transition: filter var(--transition), transform var(--transition);
}
.nav-pill:hover { filter: brightness(1.1); transform: translateY(-1px); }
.nav-pill-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 17px;
  height: 17px;
  fill: #fff;
  stroke-width: 1px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}

.nav-links a.nav-shop {
  color: #fff !important;
  background: linear-gradient(135deg, #5a1f8c 0%, #2a0d4d 100%);
}
.nav-shop .nav-pill-badge { stroke: #2a0d4d; }

.nav-links a.nav-tokens {
  color: #04140f !important;
  background: #14e6a8;
}
.nav-tokens .nav-pill-badge { stroke: #04140f; }

.nav-cta { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: transform var(--transition), opacity var(--transition); }
nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { padding: 13px 30px; background: #000; color: #fff; border: none; font-size: 0.95rem; font-weight: 700; cursor: pointer; border-radius: 980px; font-family: inherit; box-shadow: 0 6px 20px rgba(0,0,0,0.5); transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn:hover { background: #1a1a1a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
.btn-outline { padding: 12px 28px; background: transparent; color: #fff; border: 1px solid var(--border-highlight); font-size: 0.9rem; font-weight: 700; cursor: pointer; border-radius: 980px; font-family: inherit; transition: background var(--transition); }
.btn-outline:hover { background: var(--pink-dim); }
.btn-link { color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3px; text-decoration: underline; cursor: pointer; background: none; border: none; font-family: inherit; }

.btn-alcor { display: inline-flex; align-items: center; gap: 6px; padding: 12px 28px; background: transparent; color: #14e6a8; border: 1px solid #14e6a8; font-size: 0.88rem; font-weight: 700; cursor: pointer; border-radius: 980px; font-family: inherit; text-decoration: none; transition: background var(--transition), color var(--transition); }
.btn-alcor:hover { background: #14e6a8; color: #04140f; }
.btn-alcor--small { padding: 9px 20px; font-size: 0.8rem; margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
#home { padding: 72px 0; max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; position: relative; }
.hero-text { flex: 0 1 430px; padding: 0 var(--gutter); }
.hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -0.5px; margin-bottom: 24px; }
.hero-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

/* GetResponse signup form — best-effort restyle; the widget may render
   in a closed Shadow DOM, in which case these rules cannot reach inside
   and colors/fonts must be set in GetResponse's own editor instead. */
.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-light);
  border: 1px solid var(--border-highlight);
  border-radius: 980px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

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

.gr-signup-form { width: 100%; max-width: 380px; margin-top: -10px; }
.gr-signup-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gr-signup-form form[hidden] { display: none; }
.gr-signup-form label {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.gr-signup-form input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 9px 14px;
  font-family: inherit;
  font-size: 0.85rem;
  transition: border-color var(--transition), background var(--transition);
}
.gr-signup-form input::placeholder { color: var(--text-dim); }
.gr-signup-form input:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,255,255,0.1);
}

/* Email + submit read as one pill-shaped bar */
.gr-signup-form .signup-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 980px;
  background: rgba(255,255,255,0.06);
}
.gr-signup-form .signup-bar input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: none;
  padding: 9px 14px;
}
.gr-signup-form .signup-bar input:focus { background: none; }
.gr-signup-form .signup-bar button {
  flex-shrink: 0;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 980px;
  padding: 9px 22px;
  font-weight: 800;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
}
.gr-signup-form .signup-bar button:hover { filter: brightness(1.1); transform: translateY(-1px); }
.gr-signup-form .signup-bar button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; filter: none; }

.gr-signup-form .signup-fine {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin: 2px 2px 0;
}
.gr-signup-form .form-status {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}
.gr-signup-form .form-status.is-success { color: #4ade80; }
.gr-signup-form .form-status.is-error { color: var(--pink-light); }

.gr-signup-form .signup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 12px 0 4px;
}
.gr-signup-form .signup-success[hidden] { display: none; }
.success-tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 8px 24px rgba(74,222,128,0.4);
  animation: bounce 1.8s ease-in-out infinite;
}
.success-tick svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #06210f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gr-signup-form .signup-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}
.gr-signup-form .signup-success a {
  color: var(--pink-light);
  font-weight: 700;
  text-decoration: none;
}
.hero-img { flex: 0 0 260px; max-width: 260px; }
.hero-img img { width: 100%; border-radius: var(--radius-sm); display: block; }

.hero-visual { position: relative; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(107,15,160,0.35), rgba(26,0,48,0.6)); border: 1px solid var(--border); overflow: hidden; aspect-ratio: 9 / 16; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mute-toggle { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; padding: 9px 18px 9px 9px; border-radius: 980px; background: rgba(0,0,0,0.5); border: none; color: #fff; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.35); animation: mute-pulse 2.2s ease-in-out infinite; }
.mute-toggle:hover { filter: brightness(1.08); }
.mute-toggle-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.mute-toggle svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 1.8; }
.mute-toggle .icon-unmuted[hidden], .mute-toggle .icon-muted[hidden] { display: none; }
.mute-toggle-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px; white-space: nowrap; }
@keyframes mute-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.35), 0 0 0 0 rgba(233,30,140,0.5); }
  50% { box-shadow: 0 4px 16px rgba(0,0,0,0.35), 0 0 0 8px rgba(233,30,140,0); }
}
.mute-toggle.is-unmuted { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .mute-toggle { animation: none; }
}

/* ============================================================
   SCROLL ARROW
   ============================================================ */
.scroll-arrow { display: flex; justify-content: center; padding: 8px 0 0; }
.scroll-arrow a { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; animation: bounce 1.8s ease-in-out infinite; }
.scroll-arrow a::before, .scroll-arrow a::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
}
.scroll-arrow a::after { opacity: 0.4; margin-top: -8px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { text-align: center; }
.manifesto .wrap { max-width: 760px; }
.manifesto p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.manifesto p + p { margin-top: 14px; }
.story-heading { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-bottom: 12px; }
.manifesto .story-tight + .story-tight { margin-top: 4px; }
.manifesto .story-punch { font-size: clamp(1.1rem, 2.4vw, 1.35rem); font-weight: 800; color: #fff; margin-top: 24px; }
.manifesto .story-callout { font-size: clamp(1.05rem, 2.2vw, 1.25rem); font-weight: 800; color: #fff; margin-top: 24px; }
.manifesto .story-quote { font-style: italic; font-weight: 700; color: #fff; font-size: 0.95rem; }
.manifesto .story-pink { color: var(--pink-light); }

/* Belief story: 4 beats in one section, each its own reveal */
.story-beats { display: flex; flex-direction: column; }
.story-beat { padding: 44px 0; border-top: 1px solid var(--border); }
.story-beat:first-child { border-top: none; padding-top: 0; }
.story-arrow { display: flex; justify-content: center; margin-bottom: 16px; }
.story-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--pink-light);
  border-bottom: 2px solid var(--pink-light);
  transform: rotate(45deg);
  opacity: 0.8;
  animation: bounce 1.8s ease-in-out infinite;
}
.story-beat:first-child .story-arrow { display: none; }

/* Reworked participation: Believe / Belong / Participate / Own */
.steps.steps-4 { grid-template-columns: repeat(4, 1fr); }

/* Final CTA buttons */
.join-airk-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* ============================================================
   MEET THE FAMILY
   ============================================================ */
.family-portrait { max-width: 720px; margin: 0 auto 52px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--glow); }
.family-portrait img { width: 100%; display: block; }
.family-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.family-visual { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); overflow: hidden; }
.family-visual:not(.card--ghost) { border: 1px solid var(--border); background: var(--surface-soft); }
.family-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.family-visual.card--ghost img { width: 70%; height: auto; object-fit: contain; }
.family-card h3 { font-size: 1.1rem; font-weight: 800; line-height: 1; color: #fff; text-shadow: var(--heading-pop); }
.family-name { display: flex; flex-direction: column; gap: 3px; }
.family-tag { font-size: 0.78rem; font-weight: 400; font-style: italic; line-height: 1; color: var(--pink-light); letter-spacing: 0.3px; }
.family-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.eco-card { padding: 32px 28px; border: 1px solid var(--border-soft); background: var(--surface-panel); border-radius: var(--radius-lg); text-decoration: none; color: inherit; display: block; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.eco-card:hover { transform: translateY(-4px); border-color: var(--border-highlight); box-shadow: var(--glow); }
.eco-card .eco-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--pink-dim); border: 1px solid var(--border-highlight); margin-bottom: 18px; }
.eco-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.eco-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PARTICIPATION
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step { text-align: center; padding: 28px 16px; position: relative; }
.step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; aspect-ratio: 1 / 1; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%); color: #fff; font-weight: 800; line-height: 1; margin: 0 auto 16px; }
.step h3 { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* ============================================================
   AI KITTY
   ============================================================ */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.split .card { padding: 40px 36px; }
.card-visual { margin: -40px -36px 24px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; aspect-ratio: 16 / 10; }
#ai-kitty .card-visual { aspect-ratio: 16 / 8; }
.card-visual img, .card-visual video { width: 100%; height: 100%; object-fit: cover; display: block; }
.split .card .eyebrow { margin-bottom: 14px; }
.split .card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.status-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; padding: 4px 12px; border-radius: 980px; margin-bottom: 16px; }
.status-tag--live { background: rgba(46,204,113,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.status-tag--vision { background: var(--pink-dim); color: #fff; text-shadow: var(--heading-pop); border: 1px solid var(--border-highlight); }

/* ============================================================
   AIRK (token)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar { padding: 32px 24px; background: #1a0a2e; border: 1px solid #3d1a5e; border-radius: var(--radius-md); }
.pillar h3 { font-size: 0.8rem; font-weight: 700; margin-bottom: 12px; color: #c8cdd5; letter-spacing: 0.8px; }
.pillar p { font-size: 0.88rem; color: #ccc; line-height: 1.75; }

/* ============================================================
   NFT
   ============================================================ */
.nft-panel { display: flex; align-items: center; gap: 48px; padding: 44px; border-radius: var(--radius-lg); background: var(--surface-panel); border: 1px solid var(--border); }
.nft-panel .card--ghost { flex: 0 0 220px; aspect-ratio: 1; }
.nft-panel-icon { flex: 0 0 220px; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.nft-panel-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nft-panel-copy { flex: 1; }
.nft-panel-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.nft-panel-copy p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.nft-panel-copy p + p { margin-top: 12px; }

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-inner { text-align: center; }
#community h2 { margin-bottom: 20px; }
.community-tagline { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 480px; margin: 0 auto 44px; }
.community-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.community-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; padding: 56px 32px; }
.community-card h3 { font-size: 1.2rem; font-weight: 800; color: #fff; text-shadow: var(--heading-pop); letter-spacing: 0.2px; }
.community-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.community-highlight { display: flex; align-items: center; gap: 14px; text-align: left; align-self: stretch; }
.chip-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--pink-dim); border: 1px solid var(--border-highlight); display: flex; align-items: center; justify-content: center; }
.chip-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--pink-light); stroke-width: 1.6; }
.chip-text { display: flex; flex-direction: column; gap: 5px; }
.chip-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #fff; text-shadow: var(--heading-pop); }
.chip-time { font-size: 0.98rem; font-weight: 700; color: #fff; line-height: 1.4; }
.community-card-btn { color: #fff; text-decoration: none; font-weight: 700; padding: 11px 26px; border-radius: 980px; font-size: 0.8rem; margin-top: auto; transition: filter var(--transition), transform var(--transition); }
.community-card .community-highlight:last-of-type { margin-bottom: 20px; }
.community-card-btn:hover { transform: translateY(-1px); }
.community-card-btn.telegram { background: #001f5b; }
.community-card-btn.telegram:hover { background: #001440; }
.community-card-btn.twitter { background: #111; }
.community-card-btn.twitter:hover { background: #2a2a2a; }
.community-card-btn.youtube { background: #a30d0d; }
.community-card-btn.youtube:hover { background: #7a0a0a; }
.youtube-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.youtube-caption { font-size: 0.8rem; color: var(--text-dim); max-width: 240px; line-height: 1.6; }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.roadmap-col { padding: 28px 24px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border-soft); }
.roadmap-col .status-tag { margin-bottom: 18px; }
.roadmap-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.roadmap-col li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; padding-left: 16px; position: relative; }
.roadmap-col li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }

/* ============================================================
   SHOP
   ============================================================ */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.shop-card { aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.shop-card .shop-icon { width: 44px; height: 44px; border-radius: 50%; border: 2px dashed var(--border); }
.shop-note { text-align: center; color: var(--text-dim); font-size: 0.9rem; }

/* ============================================================
   VETTED TOKENS
   ============================================================ */
.vt-card { padding: 32px 26px; text-align: center; }
.vt-icon { width: 84px; height: 84px; margin: 0 auto 20px; border-radius: var(--radius-md); background: var(--surface-soft); border: 2px dashed var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vt-icon img { width: 60%; height: 60%; object-fit: contain; }
.vt-card h3 { color: #fff; text-shadow: var(--heading-pop); font-size: 1.25rem; font-weight: 800; margin-bottom: 18px; letter-spacing: 0.2px; }
.vt-card .btn-alcor { width: 100%; justify-content: center; margin-top: 0; }

/* ============================================================
   TEAM (formerly ABOUT)
   ============================================================ */
#team h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-bottom: 24px; }
#team p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 620px; }
#team p + p { margin-top: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-md); background: var(--surface-soft); overflow: hidden; }
.faq-item summary { padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 0.95rem; color: #fff; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--pink); flex-shrink: 0; transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #0d0d0d; border-top: 1px solid var(--border); padding: 32px 0; }
.footer-mission { max-width: var(--max-width); margin: 0 auto 24px; padding: 0 var(--gutter); font-size: 0.78rem; line-height: 1.7; color: var(--text-faint); font-style: italic; text-align: center; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.78rem; color: var(--text-faint); }
footer a { color: var(--text-faint); text-decoration: none; margin-left: 24px; }
footer a:hover { color: var(--pink); }

/* ============================================================
   DECORATIVE SVG MOTIFS
   ============================================================ */
.deco { position: absolute; opacity: 0.35; z-index: 0; pointer-events: none; }
.deco * { fill: none; stroke: #fff; stroke-width: 1.5; }
.deco-dashed * { stroke-dasharray: 6 6; }
.deco-sm { width: 36px; height: 36px; }
.deco-md { width: 58px; height: 58px; }
.deco-lg { width: 90px; height: 90px; }
.deco-tl { top: 28px; left: 28px; }
.deco-tr { top: 28px; right: 28px; }
.deco-bl { bottom: 28px; left: 28px; }
.deco-br { bottom: 28px; right: 28px; }
@media (max-width: 780px) {
  .deco { display: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .grid-3, .grid-4, .grid-6, .eco-grid, .pillars, .split, .roadmap-grid, .shop-grid, .community-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps.steps-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  :root { --gutter: 28px; }

  .nav-links { position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: rgba(5,0,15,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: flex-start; padding: 32px var(--gutter); gap: 24px; transform: translateX(100%); transition: transform var(--transition); overflow-y: auto; }
  nav.is-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  #home { flex-direction: column; padding: 48px 0; }
  .hero-text { flex: none; max-width: 100%; padding: 0 var(--gutter); }
  .hero-img { flex: none; max-width: 220px; padding: 0; padding-top: 24px; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }

  .grid-3, .grid-4, .grid-6, .eco-grid, .pillars, .split, .roadmap-grid, .shop-grid, .community-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }

  .nft-panel { flex-direction: column; text-align: center; padding: 32px 24px; }
  .nft-panel .card--ghost { flex: none; width: 180px; margin: 0 auto; }
  .nft-panel-icon { flex: none; width: 180px; margin: 0 auto; }

  .footer-inner { flex-direction: column; text-align: center; }
  footer a { margin: 0 8px; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}
