@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Koulen&family=Unbounded:wght@200;300;400;500;600;700&display=swap');

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

:root {
  --black:        #05060a;
  --deep:         #080a10;
  --charcoal:     #0f1118;
  --slate:        #1a1d27;
  --mid:          #2e3140;
  --muted:        #5a6270;
  --soft:         #8a95a3;
  --light:        #c8d0da;
  --white:        #eaecf0;
  --pure:         #ffffff;

  --saffron:        #e8873a;
  --saffron-dim:    #c77029;
  --saffron-bright: #f0963f;
  --saffron-pale:   rgba(232, 135, 58, 0.07);
  --saffron-glow:   rgba(232, 135, 58, 0.18);
  --green:          #4a8a5b;
  --green-dim:      #376948;
  --green-bright:   #5aa36e;
  --green-pale:     rgba(74, 138, 91, 0.07);
  --green-glow:     rgba(74, 138, 91, 0.15);

  --font-display: 'Syne', -apple-system, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;
  --font-brand:   'Koulen', 'Impact', sans-serif;
  --font-tagline: 'Unbounded', 'Syne', sans-serif;

  --ease-cinematic: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-reveal:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-sharp:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-display);
  background-color: var(--black);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .custom-cursor, .custom-cursor-ring { display: none !important; }
  .btn-primary, .btn-ghost { cursor: pointer; }
}

::selection {
  background: var(--saffron-pale);
  color: var(--saffron-bright);
}

.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--saffron);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-spring),
              height 0.25s var(--ease-spring),
              background 0.25s,
              opacity 0.25s;
  mix-blend-mode: screen;
}

.custom-cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232, 135, 58, 0.38);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.55s var(--ease-reveal),
              height 0.55s var(--ease-reveal),
              border-color 0.3s,
              opacity 0.3s;
}

.custom-cursor.cursor-hover {
  width: 18px;
  height: 18px;
  background: var(--green-bright);
  box-shadow: 0 0 10px rgba(90, 163, 110, 0.4);
}

.custom-cursor-ring.cursor-hover-ring {
  width: 56px;
  height: 56px;
  border-color: var(--saffron-bright);
  border-width: 1.5px;
  background: rgba(232, 135, 58, 0.04);
}

.aksha {
  color: var(--saffron);
  font-family: var(--font-brand);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.raksha {
  color: var(--green);
  font-family: var(--font-brand);
  font-weight: 400;
  letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

#noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4vw;
  transition: background 0.6s var(--ease-cinematic),
              border-color 0.6s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: rgba(255,255,255,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 8px var(--saffron-glow));
}

.nav-name {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-name .aksha,
.nav-name .raksha {
  font-weight: 400;
}

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(to right, var(--saffron), var(--green));
  transition: width 0.4s var(--ease-reveal);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--light);
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#spaceCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: glowFadeIn 2.5s var(--ease-cinematic) 0.5s forwards;
}

.hero-glow--saffron {
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 135, 58, 0.1) 0%, transparent 65%);
}

.hero-glow--green {
  width: 50vw;
  height: 50vw;
  max-width: 650px;
  max-height: 650px;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(74, 138, 91, 0.08) 0%, transparent 65%);
}

@keyframes glowFadeIn {
  to { opacity: 1; }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(232,135,58,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,135,58,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 100%);
  opacity: 0;
  animation: fadeIn 2s var(--ease-cinematic) 1s forwards;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.16;
  transform: scale(1.05);
  will-change: transform;
}

.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.4) 0%,
    rgba(5, 6, 10, 0.15) 35%,
    rgba(5, 6, 10, 0.6) 75%,
    rgba(5, 6, 10, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 6vw;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1.2s var(--ease-reveal) 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, var(--saffron), transparent);
  flex-shrink: 0;
}

.hero-eyebrow::after {
  background: linear-gradient(to left, var(--saffron), transparent);
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.7rem;
  border: 1px solid rgba(74,138,91,0.25);
  background: var(--green-pale);
  color: var(--green-bright);
  border-radius: 2px;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}

.hero-eyebrow-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(4.8rem, 13vw, 11rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 1.5s var(--ease-reveal) 0.5s forwards;
}

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

.hero-title-line2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--soft);
  margin-top: 0.5rem;
}

.hero-tagline {
  font-family: var(--font-tagline);
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 300;
  font-style: normal;
  color: var(--soft);
  margin-bottom: 2.2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.4s var(--ease-reveal) 0.78s forwards;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-desc {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.4vw, 1.02rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.9;
  margin-bottom: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1.4s var(--ease-reveal) 1.02s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1.2s var(--ease-reveal) 1.28s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.4rem;
  background: var(--saffron);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--saffron-bright);
  transform: translateY(-3px);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--light);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}

.btn-ghost:hover {
  border-color: rgba(74,138,91,0.5);
  color: var(--green-bright);
  transform: translateY(-3px);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeIn 1.5s var(--ease-cinematic) 2.2s forwards;
}

.hero-scroll-cue span {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--saffron);
  animation: scrollPulse 2.5s ease-in-out 2.6s infinite;
}

.hero-coords {
  position: absolute;
  bottom: 3rem;
  right: 6vw;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--mid);
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: right;
  opacity: 0;
  animation: fadeIn 1.5s var(--ease-cinematic) 2.4s forwards;
}

.section-mission {
  padding: 18vh 6vw;
  position: relative;
}

.section-mission::before {
  content: '';
  position: absolute;
  left: 6vw;
  top: 0;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(232,135,58,0.5), transparent);
}

.mission-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem 9rem;
  align-items: start;
}

.mission-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  padding-top: 0.6rem;
  grid-column: 1;
  grid-row: 1;
}

.mission-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  grid-column: 2;
  grid-row: 1;
}

.mission-body {
  grid-column: 2;
  grid-row: 2;
}

.mission-body p {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.3rem;
  max-width: 600px;
}

.section-vision {
  padding: 14vh 6vw;
  position: relative;
  overflow: hidden;
}

.section-vision::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10vw;
  transform: translateY(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, rgba(74,138,91,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.vision-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10vw;
}

.vision-left { flex: 1; }

.vision-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2.5rem;
}

.vision-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  border-left: 2px solid var(--green);
  padding-left: 3rem;
  quotes: none;
}

.vision-right {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  position: relative;
}

.vision-earth-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

#earthCanvas {
  width: 300px;
  height: 300px;
  max-width: 100%;
  max-height: 100%;
  cursor: grab;
  touch-action: none;
}

#earthCanvas:active {
  cursor: grabbing;
}

.earth-instructions {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
  opacity: 0.6;
  text-align: center;
  pointer-events: none;
  animation: earthBlink 2.5s infinite ease-in-out;
}

@keyframes earthBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.section-why {
  padding: 18vh 6vw;
  position: relative;
}

.why-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.why-header {
  margin-bottom: 10vh;
  display: flex;
  flex-direction: column;
}

.why-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.6rem;
}

.why-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--white);
  max-width: 580px;
}

.why-narrative {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-moment {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3.5rem;
  max-width: 860px;
  padding: 4vh 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.4s;
}

.why-moment:hover {
  border-color: rgba(232,135,58,0.1);
}

.why-moment:nth-child(even) {
  margin-left: auto;
}

.why-moment-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  padding-top: 0.1rem;
  letter-spacing: -0.06em;
  transition: color 0.4s;
}

.why-moment:hover .why-moment-number {
  color: rgba(232,135,58,0.06);
}

.why-moment-content h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1rem;
}

.why-moment-content p {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 2;
}

.why-closing {
  max-width: 700px;
  padding-top: 6vh;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.why-closing-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
}

.why-closing-text em {
  font-style: italic;
  color: var(--white);
}

.section-solution {
  padding: 18vh 6vw;
  position: relative;
  background: var(--deep);
}

.section-solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,135,58,0.2), transparent);
}

.section-solution::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,91,0.15), transparent);
}

.solution-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.solution-header {
  margin-bottom: 9vh;
  max-width: 600px;
}

.solution-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
}

.solution-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.22;
}

.solution-sub {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
}

.solution-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--slate) transparent;
}

.flow-step {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 168px;
}

.flow-step-inner {
  flex: 1;
  padding: 2.2rem 1.6rem;
  position: relative;
  border: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}

.flow-step-inner::before {
  content: attr(data-index);
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--mid);
  letter-spacing: 0.1em;
}

.flow-step-inner:hover {
  background: rgba(232,135,58,0.025);
  border-color: rgba(232,135,58,0.07);
}

.flow-icon {
  width: 38px;
  height: 38px;
  color: var(--saffron);
  margin-bottom: 1.4rem;
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.4s var(--ease-spring);
}

.flow-step-inner:hover .flow-icon {
  opacity: 1;
  color: var(--saffron-bright);
  animation: iconSignal 1.8s infinite ease-in-out;
}

@keyframes iconSignal {
  0%, 100% { transform: translateY(-3px) scale(1.0); filter: drop-shadow(0 0 0 rgba(232, 135, 58, 0)); }
  50% { transform: translateY(-7px) scale(1.15); filter: drop-shadow(0 0 10px rgba(232, 135, 58, 0.65)); }
}

.flow-icon svg {
  width: 100%;
  height: 100%;
}

.flow-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.7rem;
}

.flow-desc {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.78;
}

.flow-connector {
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, rgba(232,135,58,0.4), rgba(232,135,58,0.1));
  position: relative;
  margin-top: -3rem;
  overflow: hidden;
}

.flow-connector::before {
  content: '';
  position: absolute;
  top: 0; left: -30%;
  width: 30%; height: 100%;
  background: linear-gradient(to right, transparent, var(--saffron-bright), transparent);
  animation: flowLight 2.2s infinite linear;
}

@keyframes flowLight {
  0% { left: -30%; }
  100% { left: 100%; }
}

.flow-connector::after {
  content: '';
  position: absolute;
  right: -1px; top: -3px;
  border: 3.5px solid transparent;
  border-left-color: rgba(232,135,58,0.4);
}

.section-development {
  padding: 18vh 6vw;
  position: relative;
}

.dev-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dev-header {
  margin-bottom: 9vh;
}

.dev-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
}

.dev-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.22;
}

.dev-sub {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.timeline {
  position: relative;
}

.timeline-phase {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2.2rem;
  margin-bottom: 0;
  position: relative;
}

.phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--slate);
  border: 2px solid var(--mid);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.timeline-phase.completed .phase-dot {
  background: var(--saffron);
  border-color: var(--saffron);
  box-shadow: 0 0 10px var(--saffron-glow);
}

.timeline-phase.active .phase-dot {
  background: var(--deep);
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(74,138,91,0.1), 0 0 14px var(--green-glow);
}

.phase-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  min-height: 56px;
}

.timeline-phase.completed .phase-line {
  background: linear-gradient(to bottom, rgba(232,135,58,0.3), rgba(255,255,255,0.04));
}

.phase-content {
  padding: 0 0 5.5vh 0;
  cursor: pointer;
}

.phase-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.phase-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.phase-status {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--saffron-pale);
  color: var(--saffron);
  padding: 0.22rem 0.72rem;
  border-radius: 1px;
  border: 1px solid rgba(232,135,58,0.12);
}

.current-status {
  background: var(--green-pale);
  color: var(--green-bright);
  border-color: rgba(74,138,91,0.18);
}

.phase-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.phase-body p {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.95;
  max-width: 560px;
}

.section-progress {
  padding: 18vh 6vw;
  background: var(--deep);
  position: relative;
}

.section-progress::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
}

.progress-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.progress-header {
  margin-bottom: 9vh;
}

.progress-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
}

.progress-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.22;
}

.progress-narrative {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: start;
  margin-bottom: 9vh;
}

.progress-chapter {
  position: relative;
}

.progress-chapter-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 1.8rem;
}

.completed-marker {
  background: var(--saffron);
  box-shadow: 0 0 8px var(--saffron-glow);
}

.active-marker {
  background: var(--deep);
  border: 2px solid var(--green);
  box-shadow: 0 0 0 4px rgba(74,138,91,0.1), 0 0 12px var(--green-glow);
}

.future-marker {
  background: var(--slate);
  border: 1px solid var(--mid);
}

.progress-chapter h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 1.4rem;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.progress-list li {
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}

.progress-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  top: 0.18em;
}

.progress-divider {
  display: flex;
  align-items: flex-start;
  padding-top: 5px;
  justify-content: center;
}

.progress-divider::before {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.07), transparent);
}

.progress-statement {
  max-width: 700px;
  padding-top: 5vh;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.progress-statement p {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--soft);
  line-height: 1.88;
}

.section-founder {
  padding: 18vh 6vw;
  position: relative;
}

.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 9vw;
  align-items: start;
}

.founder-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.8rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.founder-role {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--green);
  border-bottom: 1px solid rgba(74,138,91,0.25);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.founder-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.founder-right p {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.founder-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 2.2rem 0;
}

.founder-transparency {
  color: var(--soft) !important;
  font-style: italic;
}

.section-contact {
  padding: 18vh 6vw;
  background: var(--deep);
  position: relative;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,135,58,0.15), transparent);
}

.contact-inner {
  max-width: 820px;
  margin: 0 auto;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 3.5rem;
  line-height: 1.22;
}

.contact-body p {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.88;
  margin-bottom: 2.8rem;
}

.contact-link-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s;
  gap: 2rem;
}

.contact-item:hover {
  border-color: rgba(255,255,255,0.1);
}

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item-value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--green);
  transition: color 0.3s;
}

.contact-item:hover .contact-item-value {
  color: var(--white);
}

.site-footer {
  padding: 6vh 6vw;
  border-top: 1px solid rgba(255,255,255,0.035);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.5;
  filter: drop-shadow(0 0 6px var(--saffron-glow));
}

.footer-name {
  font-family: var(--font-brand);
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.18rem;
}

.footer-name .aksha,
.footer-name .raksha {
  font-weight: 400;
  font-size: 1rem;
}

.footer-tagline {
  font-family: var(--font-tagline);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.88;
}

.footer-meta a {
  color: var(--green);
  transition: color 0.25s;
}

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

.footer-version {
  color: var(--mid) !important;
}

.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade-delay,
.reveal-phase,
.reveal-flow {
  opacity: 0;
  transition: opacity 0.9s var(--ease-reveal), transform 0.9s var(--ease-reveal);
}

.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-fade  { opacity: 0; }
.reveal-fade-delay  { opacity: 0; transition-delay: 0.2s; }
.reveal-phase { transform: translateY(20px); }
.reveal-flow  { transform: translateY(16px); transition-delay: calc(var(--i) * 0.1s); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}

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

@media (max-width: 1024px) {
  .nav-links { gap: 2rem; }

  .section-mission,
  .section-vision,
  .section-why,
  .section-solution,
  .section-development,
  .section-progress,
  .section-founder,
  .section-contact {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media (max-width: 900px) {
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .mission-label { grid-column: 1; }
  .mission-heading { grid-column: 1; }
  .mission-body { grid-column: 1; }

  .vision-inner { flex-direction: column; gap: 5vh; }
  .vision-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 280px;
    height: 280px;
  }

  .why-moment {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .why-moment-number { display: none; }
  .why-moment:nth-child(even) { margin-left: 0; }

  .solution-flow {
    flex-direction: column;
    overflow-x: visible;
  }
  .flow-step {
    flex-direction: column;
    min-width: unset;
    width: 100%;
  }
  .flow-step-inner {
    width: 100%;
    padding: 2rem 1.4rem;
  }
  .flow-connector {
    width: 1px;
    height: 28px;
    margin: 0 0 0 28px;
    background: linear-gradient(to bottom, rgba(232,135,58,0.4), rgba(232,135,58,0.08));
    position: relative;
    overflow: hidden;
  }
  .flow-connector::after { display: none; }
  .flow-connector::before {
    content: '';
    position: absolute;
    width: 100%; height: 30%;
    top: -30%; left: 0;
    background: linear-gradient(to bottom, transparent, var(--saffron-bright), transparent);
    animation: flowLightVertical 2.2s infinite linear;
  }

  @keyframes flowLightVertical {
    0% { top: -30%; }
    100% { top: 100%; }
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 5vh;
  }

  .progress-narrative {
    grid-template-columns: 1fr;
    gap: 4vh;
  }
  .progress-divider { display: none; }

  .contact-heading {
    font-size: clamp(1.5rem, 5vw, 2.4rem);
  }
}

@media (max-width: 680px) {
  .nav-inner {
    height: 64px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(5,6,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 6vw 2.5rem;
    gap: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link {
    font-size: 0.72rem;
    padding: 0.4rem 0;
  }

  .hero {
    min-height: calc(100vh - 64px);
    min-height: calc(100svh - 64px);
  }
  .hero-content {
    padding: 0 5vw;
    margin-top: 64px;
  }
  .hero-title {
    font-size: clamp(3.5rem, 16vw, 6rem);
    margin-bottom: 1.2rem;
  }
  .hero-tagline {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    margin-bottom: 1.6rem;
  }
  .hero-eyebrow {
    font-size: 0.56rem;
    margin-bottom: 1.8rem;
  }
  .hero-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .hero-coords { display: none; }
  .hero-scroll-cue { bottom: 1.5rem; }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .btn-primary, .btn-ghost {
    padding: 1rem 1.6rem;
    font-size: 0.62rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section-mission,
  .section-vision,
  .section-why,
  .section-solution,
  .section-development,
  .section-progress,
  .section-founder,
  .section-contact {
    padding-top: 12vh;
    padding-bottom: 12vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-mission::before {
    left: 5vw;
    height: 60px;
  }

  .mission-heading {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }

  .vision-quote {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    padding-left: 1.5rem;
  }

  .why-heading {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
  }
  .why-header {
    margin-bottom: 6vh;
  }
  .why-moment {
    padding: 3vh 0;
  }
  .why-moment-content h3 {
    font-size: 0.75rem;
  }
  .why-moment-content p {
    font-size: 0.86rem;
    line-height: 1.85;
  }
  .why-closing {
    padding-top: 4vh;
  }
  .why-closing-text {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }

  .solution-heading {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }
  .solution-header {
    margin-bottom: 6vh;
  }
  .flow-label {
    font-size: 0.68rem;
  }
  .flow-desc {
    font-size: 0.78rem;
  }

  .dev-heading {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }
  .dev-header {
    margin-bottom: 6vh;
  }

  .timeline-phase {
    grid-template-columns: 40px 1fr;
    gap: 1.2rem;
  }
  .phase-title {
    font-size: clamp(0.92rem, 3.5vw, 1.15rem);
  }
  .phase-body p {
    font-size: 0.84rem;
  }
  .phase-content {
    padding-bottom: 4vh;
  }

  .progress-heading {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }
  .progress-header {
    margin-bottom: 6vh;
  }
  .progress-chapter h3 {
    font-size: 0.68rem;
    margin-bottom: 1rem;
  }
  .progress-list li {
    font-size: 0.8rem;
  }

  .founder-name {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .founder-right p {
    font-size: 0.86rem;
    line-height: 1.85;
  }

  .contact-heading {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    margin-bottom: 2.5rem;
  }
  .contact-body p {
    font-size: 0.86rem;
    margin-bottom: 2rem;
  }
  .contact-item {
    padding: 1.2rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-meta { text-align: left; }
  .site-footer {
    padding: 4vh 5vw;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.8rem, 18vw, 4.5rem);
  }
  .hero-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
  .hero-eyebrow {
    font-size: 0.52rem;
    margin-bottom: 1.4rem;
  }
  .hero-desc {
    font-size: 0.82rem;
  }

  .section-mission,
  .section-vision,
  .section-why,
  .section-solution,
  .section-development,
  .section-progress,
  .section-founder,
  .section-contact {
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }

  .mission-heading {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .mission-body p {
    font-size: 0.84rem;
  }

  .why-heading {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .flow-step-inner {
    padding: 1.6rem 1.2rem;
  }

  .timeline-phase {
    grid-template-columns: 32px 1fr;
    gap: 1rem;
  }
  .phase-dot {
    width: 10px;
    height: 10px;
  }

  .contact-heading {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .nav-name {
    font-size: 1rem;
  }
}

/* Fix for 100vh on mobile browsers (address bar) */
@supports (height: 100svh) {
  .hero {
    min-height: 100svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-fade, .reveal-up, .reveal-left, .reveal-right,
  .reveal-fade-delay, .reveal-phase, .reveal-flow {
    opacity: 1;
    transform: none;
  }
  .hero-eyebrow, .hero-title, .hero-tagline, .hero-desc,
  .hero-actions, .hero-scroll-cue {
    opacity: 1;
    transform: none;
    animation: none;
  }
}