/* =========================================
   GANGCLAWCITY Landing Page — Premium Dark Neon Theme
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #06080f;
  --bg-secondary: #0a0e1a;
  --bg-card: #0d1221;
  --bg-card-hover: #111833;

  --text-primary: #e8eaf0;
  --text-secondary: #8b92a8;
  --text-muted: #5c6280;

  --accent-cyan: #00e5ff;
  --accent-magenta: #e040fb;
  --accent-gold: #ffc400;
  --accent-green: #00e676;

  --gradient-main: linear-gradient(135deg, #00e5ff 0%, #e040fb 50%, #ffc400 100%);
  --gradient-card: linear-gradient(180deg, rgba(0,229,255,0.05) 0%, rgba(224,64,251,0.03) 100%);
  --gradient-border: linear-gradient(135deg, rgba(0,229,255,0.3), rgba(224,64,251,0.3));

  --glow-cyan: 0 0 30px rgba(0,229,255,0.15);
  --glow-magenta: 0 0 30px rgba(224,64,251,0.15);

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.3s;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* Focus Indicators */
*:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ---------- Particle Canvas ---------- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.4));
}

.accent {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta-primary {
  background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
  color: #06080f;
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2);
}

.nav-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

.nav-cta-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
}

.nav-cta-secondary:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  background: var(--gradient-main);
  color: #06080f;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: #06080f;
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(6,8,15,0.3) 0%,
    rgba(6,8,15,0.6) 50%,
    rgba(6,8,15,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.06);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-line {
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--accent-cyan);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-val {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- MANIFESTO ---------- */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.manifesto-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.35;
}

.manifesto-right p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.manifesto-right strong {
  color: var(--text-primary);
}

.manifesto-right em {
  color: var(--accent-magenta);
  font-style: normal;
}

/* ---------- PROBLEM ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.15);
  background: var(--bg-card-hover);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- SOLUTION ---------- */
.solution-visual {
  position: relative;
  margin-bottom: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.solution-img {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.solution-glow {
  position: absolute;
  bottom: -50%;
  left: 20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.sol-feat {
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.sol-feat:hover {
  border-color: rgba(0, 229, 255, 0.15);
  background: rgba(0, 229, 255, 0.03);
  transform: translateY(-2px);
}

.sol-feat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.sol-feat h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sol-feat p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- DISTRICTS ---------- */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.district-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.district-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.district-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-cyan);
}

.district-card:hover::after {
  opacity: 1;
}

.district-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.district-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.district-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.district-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

/* ---------- DIFFERENCE ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.diff-col {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.diff-old {
  background: rgba(255, 60, 60, 0.04);
  border: 1px solid rgba(255, 60, 60, 0.1);
}

.diff-new {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.diff-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.diff-old .diff-label { color: #ff5252; }
.diff-new .diff-label { color: var(--accent-cyan); }

.diff-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-col li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.diff-old li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff5252;
  font-size: 0.7rem;
  top: 3px;
}

.diff-new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 0.8rem;
  top: 2px;
}

.diff-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.diff-vs {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
}

/* ---------- ARCHITECTURE ---------- */
.arch-stack {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arch-layer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.arch-layer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.arch-layer:hover {
  transform: translateX(8px);
  border-color: rgba(0, 229, 255, 0.15);
  background: var(--bg-card-hover);
}

.arch-layer:hover::before {
  opacity: 1;
}

.arch-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-cyan);
  opacity: 0.5;
  min-width: 40px;
}

.arch-layer:hover .arch-num {
  opacity: 1;
}

.arch-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.arch-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---------- USERS ---------- */
.users-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.user-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.user-card:hover {
  border-color: rgba(0, 229, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.user-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.user-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.user-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- ROADMAP ---------- */
.roadmap-timeline {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding-left: 40px;
}

.roadmap-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-magenta), var(--accent-gold));
  opacity: 0.25;
}

.roadmap-phase {
  position: relative;
  padding: 0 0 40px;
}

.roadmap-phase:last-child {
  padding-bottom: 0;
}

.phase-dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--text-muted);
  transition: var(--transition);
}

.roadmap-phase.active .phase-dot {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.roadmap-phase:hover .phase-dot {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.phase-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.phase-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.phase-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- MALAYSIA ---------- */
.malaysia-block {
  text-align: center;
  padding: 60px 40px;
  border-radius: var(--radius-xl);
  background: rgba(0, 229, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.08);
}

.malaysia-flag {
  font-size: 3rem;
  margin-bottom: 16px;
}

.malaysia-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.malaysia-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: left;
}

.mv {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mv strong {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}

.mv span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------- VIRAL ---------- */
.viral-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.viral-item {
  padding: 24px 20px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.viral-item:hover {
  border-color: rgba(224, 64, 251, 0.2);
  background: rgba(224, 64, 251, 0.04);
  transform: translateY(-2px);
  box-shadow: var(--glow-magenta);
}

/* ---------- CTA ---------- */
.section-cta {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 120px 0;
}

.cta-block {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
#footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 32px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diff-divider {
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6, 8, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .malaysia-block {
    padding: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    justify-content: center;
  }

  .district-grid {
    grid-template-columns: 1fr;
  }

  .users-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Email Capture Form */
  .email-capture {
    margin: 40px 0;
    padding: 40px 32px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-xl);
    text-align: center;
  }

  .email-form {
    max-width: 500px;
    margin: 0 auto;
  }

  .email-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }

  .email-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(6, 8, 15, 0.8);
    border: 2px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s;
  }

  .email-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  }

  .email-input::placeholder {
    color: var(--text-tertiary);
  }

  .email-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--gradient-main);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }

  .email-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.4);
  }

  .email-privacy {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 12px;
  }

  .email-success {
    padding: 40px 20px;
    text-align: center;
  }
}
