/* ===== TOKENS ===== */
:root {
  --bg: #000000;
  --panel: #141414;
  --line: #262626;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --orange: #F26B1D;
  --orange-2: #FF7A1A;
  --on-orange: #0a0a0a;
  --maxw: 1200px;
  --ease: cubic-bezier(.16,1,.3,1);
  --font-display: "Archivo", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-mono: "Space Mono", monospace;
  --font-body: "Inter", sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }

/* ===== UTILITY ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: var(--muted);
}
.eyebrow--dark { color: rgba(0,0,0,.55); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .22s var(--ease), background .22s, box-shadow .22s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-dark {
  background: var(--on-orange);
  color: #fff;
}
.btn-dark:hover { background: #1a1a1a; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
}
.logo-icon { height: 32px; width: 32px; object-fit: contain; border-radius: 6px; mix-blend-mode: screen; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -.02em;
}
.logo-text .dot { color: rgba(0,0,0,.55); }
.nav.scrolled .logo-text .dot { color: var(--orange); }
.footer .logo-text .dot { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--orange);
  color: var(--on-orange);
  padding: clamp(70px, 8vh, 110px) clamp(32px, 5vw, 72px) clamp(28px, 4vh, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2vh, 22px);
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}
.hero-left .eyebrow { color: rgba(0,0,0,.55); }
.hero-left h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.03em;
  font-size: clamp(32px, min(5.2vw, 8vh), 74px);
  color: var(--on-orange);
}
.hero-left h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: rgba(0,0,0,.7);
  max-width: 420px;
}
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
}
.hero-map-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 3vw, 40px);
}
.india-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== FORM ===== */
.wl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
}
.form-row {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.wl-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: rgba(0,0,0,.08);
  border: 1.5px solid rgba(0,0,0,.2);
  border-radius: 999px;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-orange);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.wl-form input[type="email"]::placeholder { color: rgba(0,0,0,.4); }
.wl-form input[type="email"]:focus {
  border-color: rgba(0,0,0,.5);
  box-shadow: 0 0 0 3px rgba(0,0,0,.1);
}
.wl-form input[type="email"].shake {
  animation: shake .4s var(--ease);
}
.form-error {
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
  color: rgba(0,0,0,.7);
  padding-left: 4px;
}
.form-helper {
  font-size: 12px;
  color: rgba(0,0,0,.5);
  padding-left: 4px;
}

/* CTA section form */
.wl-form--cta input[type="email"] {
  background: rgba(0,0,0,.1);
  border-color: rgba(0,0,0,.25);
  color: var(--on-orange);
  max-width: 400px;
}
.wl-form--cta { align-items: center; }
.wl-form--cta .form-row { justify-content: center; }
.wl-form--cta .form-error { color: rgba(0,0,0,.65); text-align: center; }

/* Success state */
.wl-success {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: rgba(0,0,0,.1);
  border-radius: 16px;
  border: 1.5px solid rgba(0,0,0,.15);
  animation: fadeUp .5s var(--ease) both;
}
.wl-success strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-orange);
}
.wl-success span {
  font-size: 14px;
  color: rgba(0,0,0,.6);
}
.wl-form--cta .wl-success {
  text-align: center;
  align-items: center;
  max-width: 420px;
}

/* ===== STATS ===== */
.stats {
  padding-block: clamp(64px, 9vw, 120px);
}
.stats-eyebrow {
  margin-bottom: clamp(40px, 5vw, 60px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat .stat-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.stat .stat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== COMPARE ===== */
.compare {
  padding-block: clamp(64px, 9vw, 120px);
}
.compare-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 640px;
}
.compare-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 16px 0 18px;
}
.compare-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.compare-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}
.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.compare-col { background: var(--bg); }
.compare-col-head {
  padding: 20px 28px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
}
.compare-col--a .compare-col-head {
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.compare-col--b .compare-col-head {
  background: var(--orange);
  color: var(--on-orange);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.compare-item {
  padding: 18px 28px;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}
.compare-col--a .compare-item { color: var(--muted); }
.compare-col--b .compare-item { color: var(--text); font-weight: 500; }
.compare-col--b .compare-item::before {
  content: '→ ';
  color: var(--orange);
  font-weight: 700;
}

/* ===== CTA ===== */
.cta {
  background: var(--orange);
  color: var(--on-orange);
  text-align: center;
  padding: clamp(64px, 10vw, 140px) 24px;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 8vw, 112px);
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: clamp(36px, 4vw, 52px);
  color: var(--on-orange);
}
.cta-helper {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(0,0,0,.5);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 5vw, 64px);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 13px;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }
.footer-contact { text-align: right; }
.footer-contact h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* ===== ANIMATIONS ===== */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: clamp(88px, 15vw, 110px);
    padding-bottom: clamp(32px, 5vw, 48px);
  }
  .hero-left h1 { font-size: clamp(34px, 9vw, 56px); }
  .hero-right {
    height: auto;
    min-height: 0;
  }
  .hero-map-wrap {
    height: clamp(260px, 60vw, 380px);
    flex: none;
    padding: 16px;
  }
  .hero-stat { padding: 14px 16px; }
  .hero-stat-num { font-size: clamp(20px, 5vw, 28px); }
  .stats-grid { grid-template-columns: 1fr; }
  .compare-cols { grid-template-columns: 1fr; }
  .compare-col--a { order: 2; }
  .compare-col--b { order: 1; }
  .compare-col--a .compare-col-head {
    background: var(--orange);
    color: var(--on-orange);
    border-bottom: 1px solid rgba(0,0,0,.15);
  }
  .compare-cols .compare-col--b .compare-col-head { border-radius: 0; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; justify-content: center; }
  .wl-form--cta .form-row { flex-direction: column; align-items: center; }
  .wl-form--cta input[type="email"] { max-width: 100%; width: 100%; }
  .nav .btn-ghost { display: none; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
