/* ========================================
   Root Variables
======================================== */
:root {
  --bg: #05070d;
  --bg-soft: #090d18;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --line-bright: rgba(114, 223, 255, 0.46);
  --text: #f6f8ff;
  --muted: #aab4cf;
  --muted-2: #6f7893;
  --blue: #58d5ff;
  --purple: #9c6dff;
  --teal: #48ffd2;
  --green: #62ff9f;
  --pink: #ff7adf;
  --gold: #f5d899;
  --danger: #ff6b9f;
  --shadow-blue: 0 0 44px rgba(88, 213, 255, 0.28);
  --shadow-purple: 0 0 54px rgba(156, 109, 255, 0.26);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100% - 32px));
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ========================================
   Reset
======================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img, svg { max-width: 100%; display: block; }
::selection { background: rgba(88, 213, 255, .3); color: #fff; }

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, p { margin: 0; }
h1 {
  max-width: 980px;
  font-size: clamp(3.35rem, 10vw, 8.4rem);
  line-height: .88;
  letter-spacing: -.085em;
  font-weight: 900;
}
h2 {
  font-size: clamp(2.25rem, 6vw, 5.75rem);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 850;
}
h3 { font-size: clamp(1.35rem, 3vw, 2.25rem); line-height: 1; letter-spacing: -.04em; }
h4 { font-size: 1.25rem; letter-spacing: -.03em; }
p { color: var(--muted); line-height: 1.75; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9e5ff;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow span, .section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: var(--shadow-blue);
}

/* ========================================
   Layout
======================================== */
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.section-heading { max-width: 840px; margin-bottom: 44px; }
.section-heading h2 { margin: 14px 0 18px; }
.section-heading p:last-child { max-width: 680px; }
.split-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 56px;
  align-items: center;
}
.split-layout.reverse { grid-template-columns: 1.05fr .95fr; }
.ambient-bg { position: fixed; inset: 0; z-index: -3; background: radial-gradient(circle at 50% -20%, #172546 0, transparent 45%), var(--bg); }
#particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.flare { position: absolute; width: 38vw; aspect-ratio: 1; filter: blur(70px); opacity: .48; border-radius: 999px; animation: drift 16s var(--ease) infinite alternate; }
.flare-one { left: -15vw; top: 10vh; background: rgba(88, 213, 255, .34); }
.flare-two { right: -12vw; top: 24vh; background: rgba(156, 109, 255, .38); animation-delay: -5s; }
.flare-three { left: 35vw; bottom: -24vh; background: rgba(72, 255, 210, .2); animation-delay: -9s; }
.page-transition { position: fixed; inset: 0; background: #02040a; z-index: 999; pointer-events: none; animation: pageReveal 1.1s var(--ease) forwards; }
.cursor-orb { position: fixed; width: 18px; height: 18px; border: 1px solid rgba(88, 213, 255, .7); border-radius: 50%; z-index: 998; pointer-events: none; transform: translate(-50%, -50%); mix-blend-mode: screen; opacity: .75; box-shadow: 0 0 28px rgba(88, 213, 255, .38); }

/* ========================================
   Navbar
======================================== */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; padding: 14px 0; transition: .35s var(--ease); }
.site-header.scrolled { background: rgba(5, 7, 13, .68); backdrop-filter: blur(22px); border-bottom: 1px solid var(--line); }
.navbar { display: flex; justify-content: space-between; align-items: center; min-height: 58px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.03em; }
.brand-symbol { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, rgba(88,213,255,.22), rgba(156,109,255,.16)); border: 1px solid rgba(255,255,255,.22); box-shadow: var(--shadow-blue); font-size: .78rem; }
.brand-name { font-size: .95rem; }
.nav-panel { display: flex; gap: 6px; padding: 8px; background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(20px); }
.nav-panel a { position: relative; padding: 11px 16px; color: var(--muted); font-size: .83rem; font-weight: 700; transition: .3s var(--ease); border-radius: 999px; }
.nav-panel a:hover, .nav-panel a.active { color: var(--text); background: rgba(88, 213, 255, .09); box-shadow: inset 0 0 0 1px rgba(88, 213, 255, .18); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: rgba(255,255,255,.06); border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 999px; transition: .3s var(--ease); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   Hero
======================================== */
.hero { min-height: 100vh; display: grid; place-items: center; padding: 130px 0 90px; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at center, #000 0, transparent 72%); transform: perspective(900px) rotateX(64deg) translateY(20%); transform-origin: center; animation: gridMove 12s linear infinite; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-subtitle { max-width: 680px; margin-top: 28px; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 800; overflow: hidden; isolation: isolate; transition: .35s var(--ease); }
.btn::before { content: ""; position: absolute; inset: -2px; background: linear-gradient(90deg, var(--blue), var(--purple), var(--teal)); z-index: -2; }
.btn::after { content: ""; position: absolute; inset: 1px; border-radius: inherit; background: rgba(5,7,13,.82); z-index: -1; }
.btn-primary { box-shadow: var(--shadow-blue); }
.btn-primary::after { background: linear-gradient(135deg, rgba(88,213,255,.32), rgba(156,109,255,.24)); }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 54px rgba(88,213,255,.34); }
.sphere-wrap { position: relative; width: min(74vw, 430px); aspect-ratio: 1; margin-left: auto; display: grid; place-items: center; }
.sphere { width: 54%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 32% 25%, #fff 0 3%, #aef4ff 5%, #486dff 24%, #100d3e 58%, #03040a 100%); box-shadow: inset -28px -34px 60px rgba(0,0,0,.58), 0 0 80px rgba(88,213,255,.45), 0 0 160px rgba(156,109,255,.24); animation: float 6s var(--ease) infinite alternate; }
.orbit { position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: rotateX(68deg) rotateZ(10deg); animation: rotateOrbit 16s linear infinite; }
.orbit span { position: absolute; top: 50%; left: -5px; width: 10px; height: 10px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 24px var(--blue); }
.orbit-two { inset: 18%; transform: rotateX(62deg) rotateZ(70deg); animation-duration: 12s; }
.orbit-two span { background: var(--purple); box-shadow: 0 0 24px var(--purple); }
.orbit-three { inset: 28%; transform: rotateX(55deg) rotateZ(130deg); animation-duration: 9s; }
.data-chip { position: absolute; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(18px); font-size: .74rem; color: #dceaff; box-shadow: var(--shadow-purple); animation: float 5s var(--ease) infinite alternate; }
.chip-one { top: 11%; right: 3%; }.chip-two { bottom: 19%; left: 0; animation-delay: -1.5s; }.chip-three { right: 0; bottom: 7%; animation-delay: -2.7s; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; width: 30px; height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; transform: translateX(-50%); display: grid; place-items: start center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 999px; background: var(--blue); animation: scrollCue 1.4s infinite; }

/* ========================================
   About
======================================== */
.about .section-content { padding: 42px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); border-radius: var(--radius-lg); backdrop-filter: blur(18px); box-shadow: var(--shadow-purple); }
.about p { margin-top: 18px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.metric-row article { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.055); border: 1px solid var(--line); }
.metric-row strong { display: block; font-size: 2rem; }
.metric-row span { display: block; color: var(--muted); font-size: .84rem; margin-top: 4px; }

/* ========================================
   Ecosystem
======================================== */
.ecosystem-map { position: relative; height: 330px; border-radius: var(--radius-lg); background: radial-gradient(circle at center, rgba(88,213,255,.16), transparent 45%), linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid var(--line); overflow: hidden; margin-bottom: 52px; backdrop-filter: blur(18px); }
.core-node { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 190px; height: 190px; border-radius: 50%; display: grid; place-items: center; text-align: center; font-weight: 900; letter-spacing: -.04em; background: rgba(5,7,13,.86); border: 1px solid rgba(88,213,255,.45); box-shadow: 0 0 60px rgba(88,213,255,.28), inset 0 0 40px rgba(156,109,255,.16); animation: pulseCore 3.5s var(--ease) infinite; }
.path { position: absolute; left: 50%; top: 50%; width: 42%; height: 1px; background: linear-gradient(90deg, transparent, rgba(88,213,255,.8), transparent); transform-origin: left; animation: pathGlow 2.8s infinite; }
.path-a { transform: rotate(18deg); }.path-b { transform: rotate(146deg); animation-delay: -.8s; }.path-c { transform: rotate(268deg); animation-delay: -1.6s; }
.mini-node { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 24px var(--blue); animation: float 4s var(--ease) infinite alternate; }
.node-a { left: 20%; top: 32%; }.node-b { right: 18%; top: 24%; animation-delay: -1s; }.node-c { right: 25%; bottom: 24%; animation-delay: -2s; }.node-d { left: 29%; bottom: 22%; animation-delay: -3s; }
.brand-block { margin-top: 38px; }
.block-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.block-header p { text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 900; color: var(--muted); }
.status-dot { width: 16px; height: 16px; border-radius: 50%; box-shadow: 0 0 24px currentColor; }
.status-dot.live { color: var(--green); background: var(--green); animation: livePulse 1.7s infinite; }
.status-dot.upcoming { color: var(--blue); background: var(--blue); }
.live-grid { display: grid; grid-template-columns: 1fr; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brand-card { position: relative; min-height: 310px; padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(140deg, rgba(255,255,255,.095), rgba(255,255,255,.035)); backdrop-filter: blur(20px); overflow: hidden; transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); isolation: isolate; }
.brand-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(88,213,255,.24), transparent 32%); opacity: 0; transition: .35s var(--ease); z-index: -1; }
.brand-card:hover { transform: translateY(-9px) scale(1.015); border-color: rgba(88,213,255,.38); box-shadow: var(--shadow-blue); }
.brand-card:hover::before { opacity: 1; }
.brand-card h4 { margin-top: 22px; }
.brand-card p { margin-top: 9px; font-size: .95rem; }
.brand-card-live { min-height: 430px; padding: 36px; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 50% 0, rgba(98,255,159,.16), transparent 38%), linear-gradient(140deg, rgba(255,255,255,.11), rgba(255,255,255,.035)); }
.brand-card-live h4 { font-size: clamp(2.2rem, 5vw, 4.7rem); letter-spacing: -.07em; }
.brand-card-live p { font-size: 1.1rem; }
.badge { position: absolute; top: 20px; right: 20px; padding: 8px 12px; border: 1px solid rgba(88,213,255,.25); background: rgba(88,213,255,.08); border-radius: 999px; color: #dff7ff; text-transform: uppercase; font-size: .68rem; font-weight: 900; letter-spacing: .13em; }
.badge-live { display: inline-flex; align-items: center; gap: 8px; border-color: rgba(98,255,159,.34); background: rgba(98,255,159,.09); color: #e8fff0; }
.badge-live span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px var(--green); animation: livePulse 1.7s infinite; }
.logo-frame { width: 124px; height: 124px; border-radius: 50%; padding: 9px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, rgba(88,213,255,.22), rgba(156,109,255,.2)); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 34px rgba(88,213,255,.23); animation: logoFloat 4.8s var(--ease) infinite alternate; }
.live-logo { width: 178px; height: 178px; background: linear-gradient(135deg, rgba(98,255,159,.24), rgba(88,213,255,.18), rgba(255,122,223,.14)); }
.brand-logo { width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.3), rgba(255,255,255,.06) 32%, rgba(5,7,13,.88) 80%); border: 1px solid rgba(255,255,255,.18); color: #fff; font-weight: 950; letter-spacing: -.08em; font-size: 1.75rem; text-shadow: 0 0 18px rgba(88,213,255,.8); overflow: hidden; }
.brand-logo-img { width: 100%; height: 100%; border-radius: 50%; display: block; object-fit: cover; object-position: center; background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.16), rgba(255,255,255,.04) 36%, rgba(5,7,13,.88) 100%); border: 1px solid rgba(255,255,255,.18); filter: drop-shadow(0 0 16px rgba(88,213,255,.28)); transition: transform .55s var(--ease), filter .55s var(--ease); }
.brand-card:hover .brand-logo-img { transform: scale(1.065) rotate(2deg); filter: drop-shadow(0 0 26px rgba(88,213,255,.56)); }
.brand-card-live:hover .brand-logo-img { filter: drop-shadow(0 0 34px rgba(98,255,159,.42)) drop-shadow(0 0 36px rgba(255,122,223,.26)); }
.crown-logo-img { object-fit: cover; }

.crown-logo { font-family: var(--font-display); color: #ffe7f9; font-size: 3.25rem; text-shadow: 0 0 26px rgba(255,122,223,.9); }
.script-logo { font-family: var(--font-display); font-size: 3.7rem; color: #ffd7fb; }
.rhino-logo { color: #cbe6ff; }.food-logo { color: #ffe1b8; }.cafe-logo { color: #e5c99f; }.pasta-logo { color: #ffd8a7; }.road-logo { color: #d7fff3; font-size: 1.45rem; }
.brand-meta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.brand-meta span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .78rem; background: rgba(255,255,255,.055); }
.charity-card { grid-column: span 3; min-height: 250px; display: grid; align-content: center; justify-items: center; text-align: center; }

/* ========================================
   Services
======================================== */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 246px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); position: relative; overflow: hidden; transition: .4s var(--ease); }
.service-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -48px; top: -48px; border-radius: 50%; background: rgba(88,213,255,.12); filter: blur(10px); transition: .4s var(--ease); }
.service-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(88,213,255,.1); color: var(--blue); font-weight: 900; border: 1px solid rgba(88,213,255,.25); }
.service-card h3 { margin: 34px 0 12px; font-size: 1.2rem; line-height: 1.12; }
.service-card p { font-size: .9rem; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(88,213,255,.35); box-shadow: var(--shadow-blue); }
.service-card:hover::after { transform: scale(1.6); }

/* ========================================
   Operations
======================================== */
.ops-visual { min-height: 520px; position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at center, rgba(88,213,255,.13), transparent 42%), rgba(255,255,255,.035); overflow: hidden; }
.ops-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at center, #000 0, transparent 75%); }
.dashboard-card { position: absolute; border: 1px solid rgba(88,213,255,.28); background: rgba(5,7,13,.72); backdrop-filter: blur(18px); box-shadow: var(--shadow-blue); }
.main-dash { width: 240px; min-height: 150px; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 28px; padding: 24px; text-align: center; }
.main-dash span { display: block; width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 14px; background: linear-gradient(135deg, var(--blue), var(--purple)); box-shadow: var(--shadow-purple); }
.dash-node { position: absolute; padding: 14px 18px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.07); box-shadow: var(--shadow-purple); font-weight: 800; color: #eaf4ff; animation: float 5s var(--ease) infinite alternate; }
.dash-one { left: 9%; top: 20%; }.dash-two { right: 10%; top: 18%; animation-delay: -1s; }.dash-three { left: 12%; bottom: 18%; animation-delay: -2s; }.dash-four { right: 12%; bottom: 20%; animation-delay: -3s; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.feature-list li { padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.055); border: 1px solid var(--line); color: #dce8ff; }
.feature-list li::before { content: "✦"; color: var(--blue); margin-right: 10px; }

/* ========================================
   Assets and Presence
======================================== */
.region-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.india-map, .region-list, .presence-card, .vision-panel, .contact-panel { border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); border-radius: var(--radius-lg); backdrop-filter: blur(18px); }
.india-map { position: relative; min-height: 430px; overflow: hidden; display: grid; place-items: center; }
.map-core { width: 220px; height: 300px; clip-path: polygon(42% 0,65% 10%,75% 25%,68% 43%,83% 58%,65% 75%,57% 100%,35% 79%,22% 62%,30% 42%,18% 23%); background: linear-gradient(180deg, rgba(88,213,255,.34), rgba(156,109,255,.18)); border: 1px solid rgba(255,255,255,.2); filter: drop-shadow(0 0 45px rgba(88,213,255,.35)); animation: float 5s var(--ease) infinite alternate; }
.pin { position: absolute; padding: 8px 11px; border-radius: 999px; background: rgba(5,7,13,.75); border: 1px solid rgba(88,213,255,.3); color: #eaf7ff; font-size: .76rem; font-weight: 800; box-shadow: var(--shadow-blue); }
.pin::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); margin-right: 7px; box-shadow: 0 0 14px var(--teal); }
.pin-tn { left: 45%; top: 35%; }.pin-ap { left: 50%; top: 49%; }.pin-tm { left: 45%; bottom: 19%; }.pin-kl { left: 28%; bottom: 25%; }
.region-list { padding: 24px; display: grid; gap: 14px; align-content: center; }
.region-list article { padding: 22px; border-radius: 22px; background: rgba(255,255,255,.055); border: 1px solid var(--line); font-size: 1.2rem; font-weight: 850; }
.region-list span { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); margin-right: 12px; box-shadow: 0 0 20px var(--blue); }
.presence-card { padding: 42px; display: grid; grid-template-columns: 1fr .82fr; gap: 28px; align-items: center; }
.presence-card h2 { margin: 14px 0 18px; }
.world-orbit { position: relative; min-height: 320px; border-radius: 28px; background: radial-gradient(circle at center, rgba(88,213,255,.12), transparent 58%); overflow: hidden; }
.world-line { position: absolute; left: 10%; right: 10%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent); animation: pathGlow 2s infinite; }
.city-pin { position: absolute; padding: 12px 14px; border-radius: 999px; border: 1px solid rgba(88,213,255,.3); background: rgba(5,7,13,.72); font-weight: 900; box-shadow: var(--shadow-blue); }
.hyderabad { left: 17%; top: 55%; }.london { right: 17%; top: 32%; }

/* ========================================
   Why, Vision, Contact, Footer
======================================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-grid article { padding: 26px; border-radius: var(--radius-md); border: 1px solid var(--line); background: rgba(255,255,255,.055); transition: .35s var(--ease); }
.why-grid article:hover { transform: translateY(-7px); box-shadow: var(--shadow-purple); }
.why-grid h3 { margin-bottom: 14px; font-size: 1.15rem; }
.vision-panel { text-align: center; padding: clamp(48px, 8vw, 96px) 24px; background: radial-gradient(circle at center, rgba(156,109,255,.18), transparent 42%), linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); }
.vision-panel .eyebrow { justify-content: center; }
.vision-panel h2 { max-width: 920px; margin: 16px auto 20px; }
.vision-panel p:last-child { max-width: 680px; margin: 0 auto; }
.contact-panel { padding: 38px; display: grid; grid-template-columns: 1fr .95fr; gap: 24px; align-items: center; }
.contact-panel h2 { margin: 14px 0 12px; }
.email-card { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; align-items: center; }
.email-card a { padding: 18px 20px; border-radius: 999px; border: 1px solid rgba(88,213,255,.28); background: rgba(88,213,255,.08); font-weight: 850; box-shadow: var(--shadow-blue); transition: .35s var(--ease); }
.email-card a:hover { transform: translateY(-3px); background: rgba(88,213,255,.14); }
.email-card button { border: 1px solid var(--line); background: rgba(255,255,255,.075); border-radius: 999px; padding: 18px 20px; cursor: pointer; font-weight: 850; transition: .35s var(--ease); }
.email-card button:hover { border-color: rgba(88,213,255,.45); box-shadow: var(--shadow-blue); }
#copy-status { width: 100%; text-align: right; color: var(--green); min-height: 20px; font-size: .85rem; }
.site-footer { padding: 70px 0 28px; background: rgba(2,4,10,.5); }
.footer-inner { display: grid; grid-template-columns: 1.2fr .9fr .4fr; gap: 24px; align-items: start; }
.footer-inner p { margin-top: 14px; }
.footer-links, .social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a, .social-links a { color: var(--muted); border: 1px solid var(--line); background: rgba(255,255,255,.045); padding: 11px 13px; border-radius: 999px; transition: .3s var(--ease); }
.footer-links a:hover, .social-links a:hover { color: #fff; border-color: rgba(88,213,255,.4); box-shadow: var(--shadow-blue); }
.neon-divider { width: var(--container); margin: 42px auto 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent); box-shadow: var(--shadow-blue); }
.copyright { text-align: center; font-size: .84rem; }

/* ========================================
   Animation States
======================================== */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(10px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
@keyframes pageReveal { to { opacity: 0; visibility: hidden; } }
@keyframes drift { to { transform: translate3d(7vw, -4vh, 0) scale(1.08); } }
@keyframes gridMove { to { background-position: 0 72px, 72px 0; } }
@keyframes float { to { transform: translateY(-16px); } }
@keyframes logoFloat { to { transform: translateY(-10px) rotate(2deg); } }
@keyframes rotateOrbit { to { rotate: 360deg; } }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(18px); opacity: 0; } }
@keyframes pulseCore { 50% { box-shadow: 0 0 90px rgba(88,213,255,.45), inset 0 0 60px rgba(156,109,255,.25); } }
@keyframes pathGlow { 50% { opacity: .25; filter: blur(2px); } }
@keyframes livePulse { 50% { transform: scale(1.25); opacity: .55; } }

/* ========================================
   Media Queries
======================================== */
@media (max-width: 1024px) {
  .hero-inner, .split-layout, .split-layout.reverse, .region-grid, .presence-card, .contact-panel { grid-template-columns: 1fr; }
  .hero-visual { order: -1; padding-top: 30px; }
  .sphere-wrap { margin: 0 auto; width: min(76vw, 360px); }
  .brand-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .email-card { justify-content: flex-start; }
  #copy-status { text-align: left; }
}
@media (max-width: 780px) {
  :root { --container: min(100% - 24px, 1160px); }
  .section { padding: 78px 0; }
  .cursor-orb { display: none; }
  .menu-toggle { display: flex; }
  .nav-panel { position: fixed; left: 12px; right: 12px; top: 82px; display: grid; gap: 8px; padding: 14px; border-radius: 28px; transform: translateY(-18px) scale(.96); opacity: 0; pointer-events: none; transition: .35s var(--ease); }
  .nav-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-panel a { padding: 15px 16px; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-inner { gap: 14px; }
  .hero-actions .btn { width: 100%; }
  .metric-row, .brand-grid, .service-grid, .why-grid { grid-template-columns: 1fr; }
  .charity-card { grid-column: auto; }
  .ecosystem-map { height: 260px; }
  .core-node { width: 144px; height: 144px; font-size: .82rem; }
  .path { width: 44%; }
  .brand-card-live { min-height: 380px; }
  .live-logo { width: 150px; height: 150px; }
  .logo-frame { width: 110px; height: 110px; }
  .presence-card, .contact-panel, .about .section-content { padding: 24px; border-radius: 26px; }
  .email-card a, .email-card button { width: 100%; justify-content: center; text-align: center; }
  .world-orbit { min-height: 240px; }
}
@media (max-width: 460px) {
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2.1rem, 12vw, 3.7rem); }
  .brand-name { font-size: .78rem; }
  .brand-card { padding: 22px; }
  .badge { top: 16px; right: 16px; }
  .city-pin, .pin { font-size: .68rem; }
  .pin-tn { left: 39%; }.pin-ap { left: 45%; }.pin-kl { left: 20%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
.header-logo {
  width: 120px;
  height: 48px;
  object-fit: contain;
  display: block;
  
  filter: drop-shadow(0 0 14px rgba(92, 225, 255, 0.35));
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  width: 240px;
  height: 100px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 24px rgba(92, 225, 255, 0.45));
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.logo-core-node {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.core-logo {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(92, 225, 255, 0.55));
}
