/* NEON RETRO — vibrant cyber palette for StaySharp */
:root {
  --bg-deep: #0a0a0f;
  --bg-elevated: #111118;
  --bg-card: #16161f;
  --neon-cyan: #00f3ff;
  --neon-mint: #00ff9d;
  --neon-purple: #d500ff;
  --neon-pink: #ff2d95;
  --neon-yellow: #ffee00;
  --glow-cyan: rgba(0, 243, 255, 0.25);
  --glow-mint: rgba(0, 255, 157, 0.25);
  --glow-pink: rgba(255, 45, 149, 0.2);
  --ink-light: #eef2ff;
  --ink-muted: #9ca3bf;
  --ink-soft: #6c728f;
  --line: rgba(0, 243, 255, 0.2);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-neon: 0 0 15px rgba(0, 243, 255, 0.3), 0 0 5px rgba(0, 255, 157, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--ink-light);
  line-height: 1.6;
  font-size: 1.05rem;
}

h1, h2, h3, .form-title, .science-stat, .story-quote {
  font-family: "Fraunces", Georgia, serif;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 12px rgba(0, 243, 255, 0.15);
}
.nav-logo {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 4px var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-logo small {
  font-size: 0.7rem;
  font-family: monospace;
  color: var(--neon-mint);
  opacity: 0.8;
}
.nav-cta {
  background: linear-gradient(105deg, var(--neon-cyan), var(--neon-mint));
  color: #0a0a0f;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  box-shadow: 0 0 8px var(--neon-cyan);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px var(--neon-cyan);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  padding: 4rem 5% 5rem;
  background: radial-gradient(ellipse at 30% 40%, #12121c 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; gap: 2rem; } }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px var(--neon-cyan);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #fff;
}
.hero h1 em {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-proof { display: flex; flex-direction: column; gap: 0.8rem; }
.proof-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; color: #c5ced8; }
.proof-dot { width: 8px; height: 8px; background: var(--neon-mint); border-radius: 50%; box-shadow: 0 0 6px var(--neon-mint); }

/* Form Card */
.form-card {
  background: rgba(17, 17, 24, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}
.form-pretitle {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-mint);
}
.form-title {
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.form-sub { font-size: 0.85rem; color: var(--ink-muted); margin: 0.5rem 0 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.35rem;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(10, 10, 15, 0.8);
  color: #fff;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px var(--glow-cyan);
}
.join-btn {
  width: 100%;
  background: linear-gradient(105deg, var(--neon-cyan), var(--neon-mint));
  color: #0a0a0f;
  border: none;
  padding: 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 0 8px var(--neon-cyan);
}
.join-btn:hover { transform: translateY(-1px); box-shadow: 0 0 18px var(--neon-cyan); }
.form-note { font-size: 0.7rem; text-align: center; color: var(--ink-soft); margin-top: 1rem; }

/* Trust Bar */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 5%;
  background: rgba(0, 243, 255, 0.03);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-item::before { content: "✓"; color: var(--neon-mint); text-shadow: 0 0 4px var(--neon-mint); }

/* General Sections */
.section { padding: 5rem 5%; }
.section-alt { background: rgba(0, 255, 157, 0.02); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-mint);
  text-shadow: 0 0 3px var(--neon-mint);
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0.5rem 0 1rem;
  background: linear-gradient(135deg, #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub { font-size: 1rem; color: var(--ink-muted); margin-bottom: 2rem; max-width: 540px; }

/* Science Grid */
.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.science-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--neon-cyan);
}
.science-card:hover { box-shadow: 0 0 20px var(--glow-cyan); transform: translateY(-2px); }
.science-stat {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.science-card h3 { font-size: 1.1rem; color: #fff; margin: 0.5rem 0; }
.science-card p { font-size: 0.9rem; color: var(--ink-muted); }
.science-source { font-size: 0.7rem; color: var(--ink-soft); font-style: italic; margin-top: 0.5rem; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
}
.pillar-icon { font-size: 2rem; filter: drop-shadow(0 0 4px var(--neon-cyan)); }
.pillar-body h3 { color: #fff; margin-bottom: 0.5rem; }
.pillar-body p { font-size: 0.9rem; color: var(--ink-muted); }

/* Stories */
.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.story {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.story-quote { font-style: italic; margin-bottom: 1.25rem; color: var(--ink-light); }
.story-author { display: flex; align-items: center; gap: 0.75rem; }
.story-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0a0a0f;
  box-shadow: 0 0 8px var(--neon-cyan);
}
.story-name { font-weight: 600; color: #fff; }
.story-meta { font-size: 0.75rem; color: var(--ink-muted); }
.story-activity {
  font-size: 0.7rem;
  background: rgba(0, 243, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--neon-cyan);
}

/* NEW PHOTO BLOCKS */
.photo-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.photo-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px var(--glow-cyan);
  border-color: var(--neon-cyan);
}
.photo-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
}
.photo-caption {
  padding: 1.2rem;
}
.photo-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #fff;
}
.photo-caption p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.photo-img::after {
  content: "📸";
  background: rgba(0,0,0,0.5);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--neon-cyan);
  backdrop-filter: blur(2px);
}

/* specific images using inline gradients + emojis (creative stock style) */
.img-community { background: linear-gradient(125deg, #1a2a3a, #0f1a24), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><circle cx="80" cy="100" r="28" fill="%2300f3ff" opacity="0.2"/><circle cx="200" cy="80" r="35" fill="%2300ff9d" opacity="0.2"/><circle cx="320" cy="120" r="30" fill="%23ff2d95" opacity="0.2"/><text x="80" y="108" fill="%2300f3ff" font-size="36" font-family="monospace">👥</text><text x="195" y="85" fill="%2300ff9d" font-size="42">💬</text><text x="315" y="128" fill="%23ff2d95" font-size="38">🤝</text></svg>'); background-blend-mode: overlay; background-size: cover; }
.img-brain { background: linear-gradient(145deg, #121e2c, #0a1118), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><path d="M160 80 L240 80 M200 40 L200 120" stroke="%2300f3ff" stroke-width="2" stroke-dasharray="4 4"/><circle cx="200" cy="80" r="28" fill="%2300ff9d" opacity="0.2"/><text x="190" y="88" fill="%2300ff9d" font-size="44">🧠</text><text x="280" y="140" fill="%2300f3ff" font-size="32">⚡</text></svg>'); background-blend-mode: overlay; background-size: cover; }
.img-outdoors { background: linear-gradient(105deg, #1a3428, #102018), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><path d="M120 120 L200 50 L280 120" stroke="%2300ff9d" fill="none" stroke-width="2"/><circle cx="200" cy="100" r="18" fill="%2300f3ff" opacity="0.3"/><text x="180" y="110" font-size="44">🌿</text><text x="260" y="150" font-size="36">☀️</text></svg>'); background-blend-mode: overlay; background-size: cover; }
.img-tech { background: linear-gradient(115deg, #1a1a2e, #0f0f1a), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect x="140" y="80" width="120" height="50" rx="8" fill="none" stroke="%2300f3ff" stroke-width="2"/><text x="170" y="112" fill="%2300ff9d" font-size="24">AI</text><text x="280" y="60" font-size="40">💻</text><circle cx="320" cy="140" r="15" fill="%23ff2d95" opacity="0.3"/></svg>'); background-blend-mode: overlay; background-size: cover; }

/* Programme Steps & FAQ */
.programme-steps { margin-top: 2rem; }
.prog-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.prog-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0f;
  box-shadow: 0 0 8px var(--neon-cyan);
}
.faq-list { margin-top: 2rem; }
.faq-item { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.faq-q { font-weight: 600; color: var(--neon-cyan); margin-bottom: 0.5rem; }
.faq-a { font-size: 0.9rem; color: var(--ink-muted); }

/* Bottom CTA */
.bottom-cta {
  background: radial-gradient(ellipse at 50% 0%, #12121c 0%, var(--bg-deep) 100%);
  padding: 4rem 5%;
  text-align: center;
  border-top: 1px solid var(--neon-cyan);
}
.bottom-cta h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bottom-form {
  max-width: 440px;
  margin: 2rem auto 0;
  background: var(--bg-card);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
footer {
  background: #06060a;
  padding: 2rem 5%;
  text-align: center;
  font-size: 0.7rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
footer a { color: var(--neon-cyan); text-decoration: none; }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.modal-overlay.active { visibility: visible; opacity: 1; }
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  border-radius: 28px;
  max-width: 460px;
  width: 86%;
  text-align: center;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 40px var(--glow-cyan);
  animation: modalFade 0.3s ease-out;
}
@keyframes modalFade { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-icon { font-size: 3rem; margin-bottom: 1rem; filter: drop-shadow(0 0 8px var(--neon-cyan)); }
.modal-card h2 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modal-close-btn {
  background: linear-gradient(105deg, var(--neon-cyan), var(--neon-mint));
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 8px var(--neon-cyan);
}
@media (max-width: 560px) {
  .prog-step { grid-template-columns: 1fr; text-align: center; }
  .prog-num { margin: 0 auto; }
  .pillar { flex-direction: column; text-align: center; align-items: center; }
}