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

:root {
  --aksha: #FF9933;
  --raksha: #138808;
  --aksha-glow: rgba(255,153,51,0.18);
  --raksha-glow: rgba(19,136,8,0.12);
  --space: #020408;
  --space-mid: #04080f;
  --space-deep: #010205;
  --text: #dde0ec;
  --text-muted: #6e7794;
  --text-dim: #383d52;
  --surface: rgba(255,255,255,0.028);
  --surface-hover: rgba(255,255,255,0.055);
  --border: rgba(255,255,255,0.055);
  --border-accent: rgba(255,153,51,0.22);
  --font-brand: 'Koulen', cursive;
  --font-tag: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --section-pad: clamp(5.5rem, 11vh, 10rem);
  --radius: 20px;
  --radius-sm: 10px;
  --radius-portrait: 28px;
  --button-cut: 10px;
  --button-clip: polygon(0 0, calc(100% - var(--button-cut)) 0, 100% var(--button-cut), 100% 100%, var(--button-cut) 100%, 0 calc(100% - var(--button-cut)));
}

html {
  scroll-behavior: smooth;
  background: var(--space);
}

body {
  font-family: var(--font-body);
  background: var(--space);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

::selection {
  background: var(--aksha);
  color: #000;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

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

.brand-word {
  display: inline;
  white-space: nowrap;
}

.brand-word .aksha {
  color: var(--aksha);
  font-family: var(--font-brand);
}

.brand-word .raksha {
  color: var(--raksha);
  font-family: var(--font-brand);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-family: var(--font-tag);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aksha);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--aksha);
  display: block;
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: clamp(300px, 90vw, 900px);
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-label::before { display: none; }

h2 {
  font-family: var(--font-tag);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}

h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--aksha), #ffb84d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-family: var(--font-tag);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6,
a, button, span, li, blockquote {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ==========================================
   AEROSPACE CUT-CORNER CTA BUTTONS
   ========================================== */

@keyframes sweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-tag); /* Unbounded */
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 0.95rem 2.45rem;
  max-width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background: transparent;
  clip-path: var(--button-clip);
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Primary Button Style */
.btn-primary {
  /* Solid Saffron with 1.5px top inner edge highlight */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 2px), var(--aksha);
  color: #030712;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.24);
}

/* Secondary Button Style */
.btn-secondary, .btn-ghost {
  background: rgba(2, 4, 8, 0.58);
  color: #F8FAFC;
}

/* Secondary Button Outline (Mask exclusion technique for transparent background) */
.btn-secondary::before, .btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: rgba(255, 153, 51, 0.45);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  clip-path: var(--button-clip);
  pointer-events: none;
  z-index: 0;
  transition: background 0.3s ease;
}

/* Animated Light Sweep Overlay */
.btn-primary::after, .btn-secondary::after, .btn-ghost::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  clip-path: var(--button-clip);
}

/* Hover States */
.btn-primary:hover, .btn-secondary:hover, .btn-ghost:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.42));
}

.btn-secondary:hover::before, .btn-ghost:hover::before {
  background: var(--aksha); /* Border illuminates to full saffron glow */
}

.btn-primary:hover::after, .btn-secondary:hover::after, .btn-ghost:hover::after {
  animation: sweep 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Active State / compression */
.btn-primary:active, .btn-secondary:active, .btn-ghost:active {
  transform: translateY(-1px) scale(0.98);
  filter: drop-shadow(0 0 5px rgba(255, 153, 51, 0.25));
  transition: transform 0.08s ease, filter 0.08s ease;
}

.btn-large {
  padding: 1.1rem 2.6rem;
  font-size: 0.68rem;
  min-height: 58px;
}

/* Layout for dual actions in Join Us section */
.join-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

#bg-music-prompt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: slideInUp 0.6s 1.8s both cubic-bezier(0.4,0,0.2,1);
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.music-inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.1rem;
  background: rgba(4, 8, 15, 0.92);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  backdrop-filter: blur(24px);
  font-family: var(--font-tag);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.music-icon { color: var(--aksha); display: flex; }

.music-inner button {
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  border: none;
  font-family: var(--font-tag);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

#music-yes { background: var(--aksha); color: #000; }
#music-yes:hover { background: #ffb84d; }
#music-no { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
#music-no:hover { color: var(--text-muted); }

.music-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(4,8,15,0.88);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--aksha);
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.music-toggle:hover {
  border-color: var(--aksha);
  box-shadow: 0 0 24px rgba(255,153,51,0.35);
  transform: scale(1.08);
}

.hidden { display: none !important; }

.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(255,153,51,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 40%, rgba(19,136,8,0.025) 0%, transparent 60%);
}

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

#navbar.scrolled {
  background: rgba(2,4,8,0.82);
  backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,153,51,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gutter);
}

.nav-logo {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-family: var(--font-tag);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--aksha);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links .nav-cta {
  --button-cut: 8px;
  padding: 0.58rem 1.5rem;
  background: rgba(2, 4, 8, 0.58);
  color: var(--aksha);
  clip-path: var(--button-clip);
  border: none;
  font-family: var(--font-tag);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              filter 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s ease,
              background 0.3s ease;
}

.nav-links .nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.2px;
  background: rgba(255, 153, 51, 0.4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  clip-path: var(--button-clip);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.nav-links .nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  clip-path: var(--button-clip);
}

.nav-links .nav-cta:hover {
  background: var(--aksha);
  color: #030712;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(255, 153, 51, 0.42));
}

.nav-links .nav-cta:hover::before {
  background: var(--aksha);
}

.nav-links .nav-cta:hover::after {
  animation: sweep 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-links .nav-cta:active {
  transform: translateY(-0.5px) scale(0.97);
  filter: drop-shadow(0 0 4px rgba(255, 153, 51, 0.25));
  transition: transform 0.08s ease, filter 0.08s ease;
}

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

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--border);
  background: rgba(2,4,8,0.95);
  backdrop-filter: blur(20px);
}

.nav-mobile a {
  font-family: var(--font-tag);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.nav-mobile a:hover { color: var(--aksha); }
.nav-mobile.open { display: flex; }

.nav-mobile a:last-child {
  --button-cut: 8px;
  align-self: flex-start;
  padding: 0.58rem 1.5rem;
  background: rgba(2, 4, 8, 0.58);
  border: 1px solid var(--border-accent);
  clip-path: var(--button-clip);
  color: var(--aksha);
}

.nav-mobile a:last-child:hover {
  background: var(--aksha);
  border-color: var(--aksha);
  color: #030712;
}

#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  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: 115%;
  object-fit: cover;
  object-position: center 65%;
  opacity: 0.5;
  will-change: transform;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--space) 0%,
    rgba(2,4,8,0.08) 30%,
    rgba(2,4,8,0.35) 60%,
    var(--space) 100%
  );
}

.stars-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star-dot {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur,3s) ease-in-out infinite;
  animation-delay: var(--delay,0s);
}

@keyframes twinkle {
  0%, 100% { opacity: var(--max-op,0.8); transform: scale(1); }
  50% { opacity: 0.08; transform: scale(0.5); }
}

#orbit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: clamp(300px, 90vw, 900px);
  margin: 0 auto;
  padding: 0 var(--gutter);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.38rem 0;
  font-family: var(--font-tag);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aksha);
  margin-bottom: 1.6rem;
  position: relative;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--aksha), var(--raksha));
  flex-shrink: 0;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--aksha);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,153,51,0.7); }
  50% { box-shadow: 0 0 0 7px rgba(255,153,51,0); }
}

.hero-title {
  font-size: clamp(3.6rem, 15vw, 11rem);
  line-height: 0.88;
  margin-bottom: 1.3rem;
  filter: drop-shadow(0 0 80px rgba(255,153,51,0.12));
}

.hero-title .aksha,
.hero-title .raksha {
  display: inline;
}

.hero-tagline {
  font-family: var(--font-tag);
  font-weight: 200;
  font-size: clamp(0.85rem, 2.2vw, 1.3rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.6rem;
}

.hero-sub {
  color: rgba(221, 224, 236, 0.85);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  90% { transform: scaleY(1); transform-origin: top; opacity: 0.2; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

.hero-scroll-indicator span {
  font-family: var(--font-tag);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--d,0s);
}

.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.revealed.reveal-up,
.revealed.reveal-left,
.revealed.reveal-right {
  opacity: 1;
  transform: none;
}

#problem {
  padding: var(--section-pad) 0;
  background: var(--space);
  position: relative;
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.problem-text p {
  color: rgba(221, 224, 236, 0.85);
  margin-top: 1.5rem;
  font-size: 1.02rem;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.disaster-card {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  animation: cardFloat calc(3.5s + var(--i) * 0.6s) ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.4s);
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes cardFloat {
  from { transform: translateY(0px); }
  to { transform: translateY(-8px); }
}

.disaster-card:hover {
  border-color: rgba(255,153,51,0.3);
  box-shadow: 0 12px 40px rgba(255,153,51,0.07), 0 0 0 1px rgba(255,153,51,0.08);
}

.disaster-icon { font-size: 1.8rem; margin-bottom: 0.85rem; }

.disaster-name {
  font-family: var(--font-tag);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.disaster-desc { font-size: 0.8rem; color: var(--text-muted); }

.consequence-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.consequence-item {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition: background 0.3s ease;
  position: relative;
}

.consequence-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,80,80,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.consequence-item:hover { background: rgba(255,80,80,0.03); }
.consequence-item:hover::before { opacity: 1; }

.consequence-item p { font-size: 0.85rem; line-height: 1.5; }

.con-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.18);
  color: rgba(255,90,90,0.8);
  flex-shrink: 0;
}

.consequence-divider {
  width: 1px;
  background: var(--border);
  margin: 1.25rem 0;
  align-self: stretch;
}

#mission {
  padding: var(--section-pad) 0;
  background: var(--space-mid);
  position: relative;
  overflow: hidden;
}

#mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255,153,51,0.035) 0%, transparent 70%);
  pointer-events: none;
}

.mission-inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

.mission-quote {
  font-family: var(--font-tag);
  font-weight: 200;
  font-size: clamp(1.45rem, 3.2vw, 2.3rem);
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 1.75rem 0 2rem;
  font-style: normal;
  border: none;
  position: relative;
}

.mission-quote::before {
  content: '\201C';
  color: var(--aksha);
  font-family: var(--font-brand);
  font-size: 3.5rem;
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 0.2rem;
  opacity: 0.7;
}

.mission-body {
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.88;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pillar {
  padding: 2.75rem 2rem;
  background: var(--space-mid);
  transition: background 0.35s ease;
  position: relative;
  border-right: 1px solid var(--border);
}

.pillar:last-child { border-right: none; }

.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aksha), var(--raksha));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left;
}

.pillar:hover { background: rgba(255,153,51,0.025); }
.pillar:hover::after { transform: scaleX(1); }

.pillar-num {
  font-family: var(--font-tag);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--aksha);
  margin-bottom: 1.4rem;
  opacity: 0.6;
}

.pillar p { font-size: 0.88rem; margin-top: 0.5rem; }

#how {
  padding: var(--section-pad) 0;
  background: var(--space);
  position: relative;
  overflow: hidden;
}

#how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(19,136,8,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255,153,51,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.how-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}

.flow-step {
  padding: 2.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.flow-step:hover {
  border-color: rgba(255,153,51,0.25);
  box-shadow: 0 20px 60px rgba(255,153,51,0.08), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-6px);
}

.flow-icon-wrap { margin-bottom: 1.75rem; }

.flow-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255,153,51,0.07);
  border: 1px solid rgba(255,153,51,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aksha);
  transition: all 0.35s ease;
}

.flow-step:hover .flow-icon {
  background: rgba(255,153,51,0.13);
  box-shadow: 0 0 24px rgba(255,153,51,0.25);
  border-color: rgba(255,153,51,0.35);
}

.flow-step-num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-tag);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.flow-step h3 { margin-bottom: 0.75rem; }
.flow-step p { font-size: 0.88rem; }

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.75rem;
  gap: 0.4rem;
  opacity: 0.5;
}

.flow-line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--aksha), var(--raksha));
}

.flow-arrow-icon { color: var(--aksha); display: flex; }

#roadmap {
  padding: var(--section-pad) 0;
  background: var(--space-mid);
  position: relative;
  overflow: hidden;
}

.roadmap-track {
  position: relative;
  display: flex;
  flex-direction: column;
}

.roadmap-line {
  position: absolute;
  left: 23px;
  top: 16px; bottom: 16px;
  width: 1px;
  background: linear-gradient(to bottom, var(--aksha) 0%, rgba(19,136,8,0.3) 40%, var(--border) 100%);
  z-index: 0;
}

.roadmap-phase {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2.25rem;
  padding: 2.25rem 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.roadmap-phase:last-child { border-bottom: none; }

.roadmap-phase:hover .phase-content { transform: translateX(6px); }

.phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.25rem;
  padding-right: 1.25rem;
  position: relative;
}

.phase-marker::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: linear-gradient(180deg, var(--text-dim) 0%, var(--text-dim) 100%);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.roadmap-phase.done .phase-marker::before {
  background: linear-gradient(180deg, var(--raksha) 0%, rgba(19,136,8,0.4) 100%);
  box-shadow: 0 0 12px rgba(19,136,8,0.5);
}

.roadmap-phase.active .phase-marker::before {
  background: linear-gradient(180deg, var(--aksha) 0%, rgba(255,153,51,0.4) 100%);
  box-shadow: 0 0 16px rgba(255,153,51,0.6);
  animation: linePulse 2.2s ease-in-out infinite;
}

@keyframes linePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,153,51,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255,153,51,0); }
}

.phase-status-badge {
  display: none;
}

.phase-dot {
  display: none;
}

.phase-content { transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }

.phase-num {
  font-family: var(--font-tag);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.roadmap-phase.done .phase-num { color: var(--raksha); opacity: 0.65; }
.roadmap-phase.active .phase-num { color: var(--aksha); }
.phase-content h3 { margin-bottom: 0.4rem; }
.phase-content p { font-size: 0.88rem; }

#founder {
  padding: var(--section-pad) 0;
  background: var(--space-deep);
  position: relative;
  overflow: hidden;
}

.founder-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 10% 50%, rgba(19,136,8,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 90% 50%, rgba(255,153,51,0.045) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 10%, rgba(255,153,51,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(260px, 450px) minmax(0, 1fr);
  gap: 5.5rem;
  align-items: center;
  margin-top: 3rem;
}

.founder-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.portrait-glow {
  position: absolute;
  width: min(490px, 92vw); height: min(620px, 118vw);
  border-radius: 18px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,153,51,0.12), rgba(19,136,8,0.06) 60%, transparent 80%);
  filter: blur(28px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.04); }
}

.portrait-wrap {
  width: min(450px, 86vw);
  aspect-ratio: 45 / 58;
  height: auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--surface);
  position: relative;
  z-index: 1;
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.portrait-wrap:hover {
  box-shadow:
    0 28px 72px rgba(0,0,0,0.6),
    0 0 40px rgba(255,153,51,0.18),
    0 0 0 1px rgba(255,153,51,0.2);
  border-color: rgba(255,153,51,0.25);
  transform: translateY(-6px) scale(1.015);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.portrait-wrap:hover .founder-img {
  filter: grayscale(0%) contrast(1.08);
  transform: scale(1.04);
}

.portrait-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255,255,255,0.04) 50%,
    transparent 60%
  );
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%); }
  50% { transform: translateX(100%) translateY(100%); }
}

.founder-contact-links {
  display: flex;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.contact-link {
  --button-cut: 7px;
  width: 36px; height: 36px;
  clip-path: var(--button-clip);
  background: rgba(2, 4, 8, 0.58);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

.contact-link:hover {
  border-color: var(--aksha);
  color: var(--aksha);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,153,51,0.25);
  background: rgba(255,153,51,0.06);
}

.founder-name {
  font-family: var(--font-tag);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.founder-role {
  font-family: var(--font-tag);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aksha);
  margin-bottom: 2rem;
  opacity: 0.75;
}

.founder-desc {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.82;
}

.founder-portfolio-link {
  --button-cut: 9px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  min-height: 44px;
  padding: 0.72rem 1.55rem;
  background: rgba(2, 4, 8, 0.58);
  border: 1px solid var(--border-accent);
  clip-path: var(--button-clip);
  color: var(--aksha);
  font-family: var(--font-tag);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.founder-portfolio-link:hover {
  background: rgba(255,153,51,0.1);
  border-color: var(--aksha);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(255,153,51,0.2);
}

#join {
  padding: var(--section-pad) 0;
  background: var(--space);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.join-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,153,51,0.06) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

.join-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.join-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.join-inner h2 { margin: 1rem 0 1.6rem; }
.join-inner > p { margin-bottom: 2.75rem; font-size: 1.02rem; }

.join-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.role-tag {
  --button-cut: 7px;
  padding: 0.42rem 1.05rem;
  border: 1px solid var(--border);
  clip-path: var(--button-clip);
  font-family: var(--font-tag);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(2, 4, 8, 0.52);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

.role-tag:hover {
  border-color: var(--border-accent);
  color: var(--aksha);
  background: rgba(255,153,51,0.05);
  transform: translateY(-2px);
}

.join-email { margin-top: 1.4rem; }

.join-email a {
  color: var(--text-dim);
  font-family: var(--font-tag);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.join-email a:hover { color: var(--aksha); }

footer {
  padding: 4.5rem 0 2.5rem;
  background: var(--space-deep);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-brand { font-size: 2rem; line-height: 1; }

.footer-logo p {
  font-family: var(--font-tag);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-family: var(--font-tag);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-tag);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .how-flow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .flow-connector {
    flex-direction: row;
    justify-content: center;
    padding: 0;
    transform: rotate(90deg);
    height: 32px;
  }
  .flow-line { width: 24px; }
  .mission-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-inner {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 4rem;
  }
  .portrait-wrap { width: min(360px, 82vw); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-header { margin-bottom: 3rem; }
  .hero-content { padding-top: 2rem; }
  .hero-sub br { display: none; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: 1 1 220px;
  }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .consequence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
  }
  .consequence-divider { display: none; }
  .consequence-item { background: var(--space); }
  .mission-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar { border-bottom: 1px solid var(--border); }
  .pillar:nth-child(2n) { border-right: none; }
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .founder-portrait { margin: 0 auto; width: 100%; }
  .founder-contact-links { justify-content: center; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  :root {
    --gutter: 1.15rem;
    --section-pad: 4.5rem;
  }
  h2 { font-size: clamp(1.65rem, 9vw, 2.35rem); }
  .section-label {
    font-size: 0.54rem;
    letter-spacing: 0.16em;
  }
  .section-header .section-label { justify-content: center; }
  #hero { min-height: 620px; }
  .hero-title { font-size: clamp(3.05rem, 17vw, 5rem); }
  .hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .hero-badge {
    font-size: 0.5rem;
    letter-spacing: 0.13em;
    gap: 0.55rem;
  }
  .hero-badge::before,
  .hero-badge::after { width: 18px; }
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    letter-spacing: 0.14em;
  }
  .problem-cards { grid-template-columns: 1fr; }
  .consequence-strip { grid-template-columns: 1fr; }
  .consequence-divider { display: none !important; }
  .mission-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .join-actions { gap: 0.8rem; }
  .join-email a {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }
  .footer-links {
    gap: 1rem 1.4rem;
  }
  #bg-music-prompt { bottom: 1rem; right: 1rem; left: 1rem; }
  .music-inner { font-size: 0.55rem; flex-wrap: wrap; }
  .how-flow .flow-connector { display: none; }
  .how-flow { gap: 1rem; }
}
