:root {
  --bg: #050505;
  --bg-deep: #020202;
  --bg-soft: #0b0b0d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f5f5f7;
  --muted: #a7a7ad;
  --muted-2: #7e7e86;
  --line: rgba(255, 255, 255, 0.13);
  --orange: #ff6848;
  --green: #6eb257;
  --silver: #c9c9c9;
  --white: #ffffff;
  --black: #050505;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.52);
  --shadow-soft: 0 16px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 13% 18%, rgba(255, 104, 72, 0.15), transparent 29%),
    radial-gradient(circle at 88% 25%, rgba(110, 178, 87, 0.13), transparent 29%),
    linear-gradient(180deg, #070707 0%, #050505 42%, #0a0a0b 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: #fff;
  background: rgba(255, 104, 72, 0.35);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 44px 0 96px;
}

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

.cursor-glow {
  position: fixed;
  left: var(--x, 50%);
  top: var(--y, 18%);
  z-index: -2;
  width: 430px;
  height: 430px;
  pointer-events: none;
  opacity: 0.82;
  filter: blur(12px);
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), rgba(255, 104, 72, 0.05) 36%, transparent 68%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.3s ease, border 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 178px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.footer-brand img {
  width: 172px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.76);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-links .nav-cta {
  color: #070707;
  background: var(--white);
  font-weight: 850;
}

.nav-toggle {
  display: none;
}

.hero,
.team-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-top: 152px;
}

.team-hero {
  min-height: 72vh;
  padding-bottom: 72px;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.88;
  filter: blur(4px);
  animation: float 9s ease-in-out infinite alternate;
}

.orb-one {
  top: 8%;
  left: 50%;
  width: 690px;
  height: 690px;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 104, 72, 0.11) 34%, transparent 70%);
}

.orb-two {
  right: -120px;
  bottom: 8%;
  width: 480px;
  height: 480px;
  animation-delay: -3s;
  background: radial-gradient(circle, rgba(110, 178, 87, 0.18), transparent 68%);
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, 20px, 0) scale(1.04);
  }
}

.grid-light {
  position: absolute;
  inset: 18% 7% auto;
  height: 580px;
  border-radius: 999px;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.058) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.058) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  max-width: 1040px;
  text-align: center;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -64px -42px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 55%);
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(245, 245, 247, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 850;
}

.hero h1,
.team-hero h1,
.section-head h2,
.about-copy h2,
.legal-card h2,
.contact-panel h2,
.investor-panel h2 {
  margin: 0;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 860;
}

.team-hero h1 {
  max-width: 1030px;
  margin: 0 auto;
  font-size: clamp(44px, 8vw, 94px);
  font-weight: 860;
}

.hero-copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.25s ease, background 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #050505;
  background: #fff;
  box-shadow: 0 18px 60px rgba(255, 255, 255, 0.14);
}

.btn.secondary {
  color: #f5f5f7;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.quote-band blockquote {
  margin: 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft);
}

.quote-band p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.quote-band footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.compact {
  max-width: 820px;
}

.section-head h2,
.about-copy h2,
.legal-card h2,
.contact-panel h2,
.investor-panel h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 840;
}

.section-head p,
.about-copy p,
.contact-panel p,
.investor-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}


.built-india {
  padding-top: 40px;
}

.built-india-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 104, 72, 0.18), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(110, 178, 87, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.built-india-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: calc(var(--radius-xl) - 1px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.08));
  mask-image: linear-gradient(#000, transparent 84%);
  -webkit-mask-image: linear-gradient(#000, transparent 84%);
}

.built-india-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.built-india-copy h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(38px, 7vw, 86px);
  font-weight: 860;
  letter-spacing: -0.067em;
  line-height: 0.96;
}

.built-india-copy p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.58;
}

.built-india-signature {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.built-india-signature span {
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.metric-card {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.company-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.company-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.82;
  transition: opacity 0.2s ease;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.18), transparent 36%);
}

.company-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  opacity: 0.35;
  background: linear-gradient(135deg, rgba(255, 104, 72, 0.44), transparent 31%, rgba(110, 178, 87, 0.34));
}

.company-logo {
  display: grid;
  place-items: center;
  min-height: 228px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.company-logo img {
  width: min(76%, 330px);
  max-height: 210px;
  object-fit: contain;
}

.stayz-logo img {
  width: min(82%, 370px);
}

.jersey-logo img {
  width: min(60%, 250px);
}

.company-content {
  display: grid;
  align-content: start;
  padding-top: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.78);
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 850;
}

.company-content h3 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.06em;
}

.company-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.mini-stats span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.75);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: #fff;
  font-weight: 850;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.sticky-head {
  position: sticky;
  top: 120px;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(var(--orange), rgba(255, 255, 255, 0.18), var(--green));
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 28px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08), 0 0 30px rgba(255, 104, 72, 0.44);
}

.timeline-item span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 10px 0 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.recognized-panel,
.investor-panel,
.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.recognized-panel::before,
.investor-panel::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
}

.recognition-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.recognition-card {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  transition: 0.25s ease;
}

.recognition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.recognition-card img {
  width: auto;
  max-height: 86px;
  object-fit: contain;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.about-copy {
  position: sticky;
  top: 120px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.capability span {
  color: var(--orange);
  font-weight: 900;
}

.capability h3 {
  margin: 34px 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.capability p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.investor-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.investor-copy {
  max-width: 820px;
}

.investor-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.legal-card,
.address-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow-soft);
}

dl {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

dt {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.address-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
}

.address-card p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.founders-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.leadership-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-soft);
}

.team-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 104, 72, 0.2), transparent 70%);
}

.team-card.founder::after {
  background: radial-gradient(circle, rgba(110, 178, 87, 0.22), transparent 70%);
}

.team-initial {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  border-radius: 21px;
  color: #050505;
  background: #fff;
  box-shadow: 0 18px 60px rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.team-card h3 {
  margin: auto 0 10px;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.team-card p {
  margin: 0;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}

.team-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer {
  padding: 52px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
}

.footer-master {
  display: grid;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-top p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  padding-top: 160px;
}

.legal-doc {
  max-width: 900px;
}

.legal-doc h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.legal-doc h2 {
  margin: 34px 0 10px;
  font-size: 28px;
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-doc .doc-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .metrics-grid,
  .founders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid,
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header.scrolled {
    padding: 9px 0;
  }

  .nav {
    min-height: 54px;
    gap: 12px;
  }

  .brand img {
    width: clamp(140px, 40vw, 172px);
    max-width: calc(100vw - 112px);
  }

  .nav-toggle {
    position: relative;
    z-index: 70;
    display: grid;
    flex: 0 0 44px;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 74px);
    left: max(14px, env(safe-area-inset-left, 0px));
    right: max(14px, env(safe-area-inset-right, 0px));
    z-index: 65;
    display: grid;
    width: auto;
    max-height: calc(100dvh - 92px);
    gap: 6px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease;
    background: rgba(10, 10, 12, 0.94);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 15px;
    white-space: normal;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .hero,
  .team-hero {
    min-height: 92vh;
    padding-top: 130px;
  }

  .section {
    padding: 82px 0;
  }

  .section-tight {
    padding: 36px 0 72px;
  }

  .company-grid,
  .recognition-logos,
  .built-india-panel,
  .about-grid,
  .legal-grid,
  .timeline-grid,
  .investor-panel {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .sticky-head {
    position: static;
  }

  .investor-actions {
    justify-content: flex-start;
  }


  .built-india-panel {
    gap: 24px;
    align-items: start;
  }

  .built-india-signature {
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .built-india-signature span {
    white-space: normal;
  }


  .footer-top {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }


  .hero,
  .team-hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 72px;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero h1,
  .team-hero h1 {
    letter-spacing: -0.055em;
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
  }

  .built-india {
    padding-top: 28px;
  }

  .built-india-panel {
    padding: 26px;
    border-radius: 28px;
  }

  .built-india-copy h2 {
    font-size: clamp(36px, 12vw, 58px);
    line-height: 0.98;
  }

  .built-india-copy p:last-child {
    margin-top: 18px;
    font-size: 16px;
  }

  .built-india-signature {
    grid-template-columns: 1fr;
    width: 100%;
  }


  .brand img {
    width: clamp(132px, 38vw, 148px);
  }

  .footer-brand img {
    width: 154px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 72px);
  }

  .team-hero h1 {
    font-size: clamp(40px, 13vw, 68px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-inner::before {
    inset: -30px -10px;
    border-radius: 30px;
  }

  .hero-actions,
  .investor-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .quote-band blockquote,
  .recognized-panel,
  .investor-panel {
    padding: 24px;
  }

  .metrics-grid,
  .capability-grid,
  .team-grid,
  .founders-grid,
  .leadership-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 142px;
  }

  .company-card {
    min-height: auto;
    padding: 20px;
  }

  .company-logo {
    min-height: 180px;
    padding: 24px;
  }

  .company-logo img {
    max-height: 150px;
  }

  .pill {
    align-items: flex-start;
    white-space: normal;
  }

  .timeline-item {
    padding: 22px 18px 22px 50px;
  }

  .legal-card,
  .address-card,
  .legal-doc .doc-card {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 128px;
  }


  .site-header {
    padding: 10px 0;
  }

  .nav {
    gap: 8px;
  }

  .nav-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .nav-links {
    top: calc(env(safe-area-inset-top, 0px) + 66px);
    left: 10px;
    right: 10px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.8vw, 48px);
  }


  .metric-card strong {
    font-size: 38px;
  }

  .footer-grid {
    padding: 22px;
  }
}
