/* ================================================================
   InfraOne Asia — 2026 Design System
   Deep-space dark · Aurora · Glassmorphism · Spatial depth
   ================================================================ */

/* ── Google Fonts loaded in HTML ── */

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  /* Background layers */
  --bg:        #050508;
  --bg-raised: #0b0b10;
  --surface:   rgba(255,255,255,0.032);
  --surface-2: rgba(255,255,255,0.060);
  --glass:     rgba(8,8,14,0.75);

  /* Borders */
  --border:        rgba(255,255,255,0.07);
  --border-mid:    rgba(255,255,255,0.12);
  --border-strong: rgba(255,255,255,0.22);

  /* Text */
  --text-1: #F0F0F6;
  --text-2: #96969E;
  --text-3: #5A5A68;

  /* Brand */
  --sunrise:   #FF9933;
  --kesari:    #D94A0E;
  --accent:    #FF7A1A;
  --glow:      rgba(255,122,26,0.38);
  --glow-dim:  rgba(255,122,26,0.12);

  /* Aliases for backwards compat with inline styles */
  --accent-sunrise: var(--sunrise);
  --accent-kesari:  var(--kesari);
  --text-primary:   var(--text-1);
  --text-muted:     var(--text-2);
  --text-faint:     var(--text-3);
  --font-display:   var(--f-display);
  --font-body:      var(--f-body);
  --font-mono:      var(--f-mono);
  --radius-sm:      var(--r-sm);
  --radius-md:      var(--r-md);
  --radius-lg:      var(--r-lg);
  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 64px; --space-7: 96px; --space-8: 128px;
  --border-strong-old: var(--border-mid);

  /* Semantic */
  --success: #3DDC84;
  --warn:    #F5C451;
  --error:   #FF5C5C;
  --focus:   #FFB066;

  /* Radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-pill: 9999px;

  /* Shadows */
  --sh-card:    0 0 0 1px rgba(255,255,255,0.035) inset, 0 20px 48px -20px rgba(0,0,0,0.65);
  --sh-raised:  0 8px 32px -8px rgba(0,0,0,0.55);
  --sh-glow:    0 0 0 1px rgba(255,122,26,0.28), 0 4px 24px rgba(255,122,26,0.45);
  --sh-glow-lg: 0 0 0 1px rgba(255,122,26,0.22), 0 0 44px rgba(255,122,26,0.28), 0 0 80px rgba(255,122,26,0.10);

  /* Typography */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", monospace;

  /* Spacing */
  --s1:4px;  --s2:8px;  --s3:16px; --s4:24px;
  --s5:32px; --s6:48px; --s7:64px; --s8:96px; --s9:128px;

  /* Layout */
  --max-w: 1240px;

  color-scheme: dark;
}

[data-theme="light"] {
  --bg:        #F7F6F3;
  --bg-raised: #FFFFFF;
  --surface:   rgba(0,0,0,0.030);
  --surface-2: rgba(0,0,0,0.055);
  --glass:     rgba(247,246,243,0.88);
  --border:        rgba(0,0,0,0.07);
  --border-mid:    rgba(0,0,0,0.11);
  --border-strong: rgba(0,0,0,0.19);
  --text-1: #10101A;
  --text-2: #50505C;
  --text-3: #7C7C8A;
  --sh-card: 0 1px 0 rgba(255,255,255,0.9) inset, 0 4px 24px -8px rgba(0,0,0,0.12);
  color-scheme: light;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

/* ── Noise texture ──────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
[data-theme="light"] body::after { opacity: 0.010; }

/* ── Aurora orbs ────────────────────────────────────────────────── */
.aurora {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.aurora-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.11;
}
[data-theme="light"] .aurora-orb { opacity: 0.055; }
.aurora-orb:nth-child(1) {
  width: 900px; height: 900px;
  background: radial-gradient(circle, #FF9933, transparent 70%);
  top: -280px; left: -180px;
  animation: orb-drift 20s ease-in-out infinite alternate;
}
.aurora-orb:nth-child(2) {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #D94A0E, transparent 70%);
  top: 25%; right: -150px;
  animation: orb-drift 28s ease-in-out infinite alternate-reverse;
}
.aurora-orb:nth-child(3) {
  width: 550px; height: 550px;
  background: radial-gradient(circle, #FF7A1A, transparent 70%);
  bottom: 5%; left: 25%;
  animation: orb-drift 22s ease-in-out infinite alternate;
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, 35px) scale(1.07); }
  100% { transform: translate(-25px, 55px) scale(0.94); }
}

/* Stacking context */
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s4); }
@media (min-width: 768px) { .container { padding: 0 var(--s5); } }

/* ── Scroll progress bar ────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 300;
  background: linear-gradient(90deg, var(--sunrise), var(--kesari));
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.05s linear;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin: 0; color: var(--text-1);
}
h1 { font-size: clamp(2.6rem, 6.5vw + 0.5rem, 5.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw + 0.5rem, 3rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin: 0; color: var(--text-2); }
.lead { font-size: 1.125rem; color: var(--text-2); max-width: 600px; line-height: 1.8; }

/* Gradient text */
.grad-text {
  background: linear-gradient(130deg, var(--sunrise) 0%, var(--kesari) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Section spacing ────────────────────────────────────────────── */
.section { padding: var(--s8) 0; }
@media (max-width: 600px) { .section { padding: var(--s7) 0; } }

.section-head { margin-bottom: var(--s6); max-width: 680px; }
.section-head .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sunrise); margin-bottom: var(--s3);
}
.section-head .label::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section-head h2 { margin-bottom: var(--s3); }

/* ── Eyebrow pill ───────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sunrise);
  border: 1px solid rgba(255,153,51,0.22); border-radius: var(--r-pill);
  padding: 6px 16px;
  background: rgba(255,153,51,0.05);
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent), 0 0 18px var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.75); }
}

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 0 var(--s3);
}
.nav-float {
  max-width: var(--max-w);
  margin: 12px auto 0;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px 9px 16px;
  transition: box-shadow .3s, border-color .3s;
}
.site-header.scrolled .nav-float {
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  border-color: var(--border);
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--sunrise), var(--kesari));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-style: italic;
  color: #1a0800; font-size: 18px;
  transform: skewX(-5deg);
  box-shadow: 0 0 14px rgba(255,122,26,0.55);
  flex-shrink: 0;
}
.brand-text { font-family: var(--f-display); font-weight: 700; font-size: 17px; color: var(--text-1); line-height: 1; }
.brand-sub  { display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; color: var(--text-3); margin-top: 2px; }

/* Real logo image replacing CSS brand-mark */
.brand-img {
  height: 46px; width: auto; display: block;
  border-radius: 11px;
  filter: drop-shadow(0 0 12px rgba(255,122,26,0.55));
  transition: filter .2s;
}
.brand:hover .brand-img { filter: drop-shadow(0 0 20px rgba(255,122,26,0.80)); }
.brand-img-sm { height: 30px; border-radius: 7px; }
.footer-brand .brand-img { filter: drop-shadow(0 0 6px rgba(255,122,26,0.30)); }

.primary-nav { display: flex; align-items: center; gap: var(--s3); }
.nav-links { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .03em;
  color: var(--text-3); padding: 7px 10px; border-radius: var(--r-sm);
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover             { color: var(--text-1); background: var(--surface-2); }
.nav-links a[aria-current="page"] { color: var(--sunrise); background: var(--glow-dim); }

.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-mid);
  background: var(--surface); color: var(--text-3); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: color .15s, border-color .15s; flex-shrink: 0;
}
.theme-toggle:hover { color: var(--sunrise); border-color: var(--accent); }

/* ── Language toggle pill ─────────────────────────────────── */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px; border-radius: var(--r-sm);
  border: 1px solid var(--border-mid);
  background: var(--surface);
  color: var(--sunrise); font-size: 12px; font-weight: 600;
  font-family: var(--f-mono); letter-spacing: 0.04em;
  text-decoration: none; flex-shrink: 0;
  transition: color .15s, border-color .15s, background .15s;
  backdrop-filter: blur(8px);
}
.lang-toggle:hover { color: var(--accent); border-color: var(--accent); background: var(--glow-dim); }

.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid var(--border-mid); background: var(--surface); color: var(--text-1);
  align-items: center; justify-content: center; flex-shrink: 0;
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav > a.btn { display: none; }
  .lang-toggle { display: none; }
}
@media (max-width: 480px) {
  .site-header { padding: 0 var(--s2); }
  .nav-float { margin-top: 8px; border-radius: var(--r-lg); padding: 8px 10px 8px 12px; }
}

/* ── Mobile Drawer ──────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(28px);
  display: flex; flex-direction: column; padding: var(--s4);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-drawer.open { transform: none; visibility: visible; }
.mobile-drawer .drawer-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s6);
}
.mobile-drawer ul  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-drawer a {
  display: block; padding: 16px 8px;
  font-family: var(--f-mono); font-size: 15px; letter-spacing: .04em;
  border-bottom: 1px solid var(--border); color: var(--text-2);
  transition: color .15s; min-height: 44px;
}
.mobile-drawer a:hover { color: var(--sunrise); }
.mobile-drawer .btn { margin-top: var(--s4); }
.mobile-drawer .lang-toggle { display: inline-flex; margin-top: var(--s4); align-self: flex-start; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 22px; border-radius: var(--r-md); border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, filter .15s, background .15s, color .15s;
  min-height: 44px; white-space: nowrap; cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--sunrise), var(--kesari));
  color: #1a0800; box-shadow: var(--sh-glow);
}
.btn-primary:hover { filter: brightness(1.1); box-shadow: var(--sh-glow-lg); }
.btn-secondary {
  background: var(--surface); color: var(--text-1);
  border-color: var(--border-mid); backdrop-filter: blur(8px);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--sunrise); background: var(--glow-dim); }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--sunrise); }
.btn-block { width: 100%; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100svh - 72px);
  display: flex; align-items: center;
  padding: var(--s8) 0 var(--s7); overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.38; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 860px;
  display: flex; flex-direction: column; gap: var(--s4);
}
.hero h1 {
  font-size: clamp(3rem, 8vw + 0.25rem, 6.5rem);
  font-weight: 800; line-height: 0.98;
}
.hero-sub { font-size: 1.2rem; color: var(--text-2); max-width: 560px; line-height: 1.75; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .14em;
  color: var(--text-3); text-transform: uppercase;
  animation: scroll-bob 2.5s ease-in-out infinite;
}
.scroll-cue-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--accent), transparent); }
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Partner strip ──────────────────────────────────────────────── */
.partner-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: var(--s5) 0; background: var(--surface);
}
.partner-strip .label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); display: block; margin-bottom: var(--s3);
}
.partner-track {
  display: flex; gap: var(--s5); align-items: center;
  color: var(--text-3); font-family: var(--f-display); font-size: 14px; font-weight: 500;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 2px;
}
.partner-track::-webkit-scrollbar { display: none; }
.partner-track span { white-space: nowrap; transition: color .2s; padding: 4px 0; }
.partner-track span:hover { color: var(--text-1); }

/* ── Stats row ──────────────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  padding: var(--s5) var(--s4); background: var(--surface);
  text-align: center; transition: background .2s;
}
.stat-item:hover { background: var(--surface-2); }
.stat-num {
  font-family: var(--f-display); font-size: 2.8rem; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(130deg, var(--sunrise), var(--kesari));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 6px;
}
.stat-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); }

/* ── Grid ───────────────────────────────────────────────────────── */
.grid { display: grid; gap: var(--s3); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}
.span-2 { grid-column: span 2; }
@media (max-width: 960px) { .span-2 { grid-column: span 1; } }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  box-shadow: var(--sh-card);
  transition: transform .28s cubic-bezier(.4,0,.2,1),
              box-shadow .28s, border-color .28s;
  overflow: hidden;
}
/* Radial highlight on hover — mouse position driven by JS */
.card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(
    500px circle at var(--cx, 50%) var(--cy, 50%),
    rgba(255,122,26,0.07), transparent 40%
  );
  opacity: 0; transition: opacity .4s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-mid); box-shadow: var(--sh-raised), 0 0 0 1px var(--border-mid); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(255,153,51,0.14), rgba(217,74,14,0.07));
  border: 1px solid rgba(255,153,51,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: var(--s3);
}
/* Legacy class alias */
.card .icon { width: 48px; height: 48px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(255,153,51,0.14), rgba(217,74,14,0.07));
  border: 1px solid rgba(255,153,51,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: var(--s3); }

.card h3 { margin-bottom: 10px; }
.card .tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .11em; text-transform: uppercase;
  color: var(--sunrise); display: block; margin-bottom: 10px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: var(--s3);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent); transition: gap .15s, color .15s;
}
.card-link:hover { gap: 10px; color: var(--sunrise); }
.card-list { list-style: none; margin: var(--s3) 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.card-list li { display: flex; gap: 8px; font-size: 14px; color: var(--text-2); }
.card-list li::before { content: '›'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── Quote cards ────────────────────────────────────────────────── */
.quote-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s5);
  display: flex; flex-direction: column; gap: var(--s3);
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.quote-card:hover { border-color: var(--border-mid); transform: translateY(-2px); }
.quote-card::before {
  content: '"';
  position: absolute; top: -16px; left: 18px;
  font-family: var(--f-display); font-size: 130px; line-height: 1;
  color: var(--accent); opacity: 0.065; pointer-events: none; user-select: none;
}
.quote-card blockquote { margin: 0; font-size: 15px; color: var(--text-1); line-height: 1.7; font-style: italic; position: relative; }
.quote-card cite { font-style: normal; font-size: 12px; color: var(--text-3); font-family: var(--f-mono); letter-spacing: .03em; }

/* ── Quick-nav glass pill row ───────────────────────────────────── */
.quick-nav-glass {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 4px 0;
}
.quick-nav-glass a {
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em;
  color: var(--text-2);
  text-decoration: none; cursor: pointer;
  transition: all .2s;
}
.quick-nav-glass a:hover {
  border-color: var(--sunrise); color: var(--sunrise); background: var(--surface-2);
}

/* ── CTA band ───────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,153,51,0.07) 0%, rgba(217,74,14,0.11) 100%);
  border: 1px solid rgba(255,122,26,0.18);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s5);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--s4);
}
.cta-band::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,26,0.13), transparent 68%);
  pointer-events: none;
}
.cta-band h2 { position: relative; }
.cta-band .fine { font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; color: var(--text-3); }

/* ── Badge ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--sunrise); border: 1px solid rgba(255,153,51,0.22); border-radius: var(--r-pill);
  padding: 7px 16px; background: rgba(255,153,51,0.06);
}

/* ── Section rule ───────────────────────────────────────────────── */
.rule { width: 56px; height: 3px; background: linear-gradient(90deg, var(--sunrise), var(--kesari)); border-radius: 3px; margin-bottom: var(--s3); }

/* ── Forms ──────────────────────────────────────────────────────── */
.form-grid { display: grid; gap: var(--s3); }
label { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; background: var(--surface); border: 1px solid var(--border-mid);
  border-radius: var(--r-sm); padding: 13px 16px; color: var(--text-1);
  font-family: var(--f-body); font-size: 15px; min-height: 44px;
  transition: border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(255,122,26,0.14); }
.field-error { color: var(--error); font-size: 12px; font-family: var(--f-mono); margin-top: 4px; display: none; }
.form-status { font-family: var(--f-mono); font-size: 13px; margin-top: var(--s3); }
.form-status.success { color: var(--success); }
.form-status.error   { color: var(--error); }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: var(--s8) 0 var(--s5);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--s4); }
.footer-brand .brand-mark { width: 32px; height: 32px; font-size: 15px; border-radius: 8px; }
.footer-brand .brand-text  { font-size: 15px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s5); margin-bottom: var(--s6);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: var(--s3);
}
.footer-grid p { font-size: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--text-2); font-size: 14px; transition: color .15s; }
.footer-grid a:hover { color: var(--sunrise); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s3);
  border-top: 1px solid var(--border); padding-top: var(--s4);
  font-size: 12px; color: var(--text-3); font-family: var(--f-mono);
}
.social-row { display: flex; gap: 8px; }
.social-row a {
  width: 34px; height: 34px; border: 1px solid var(--border-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 13px;
  transition: color .15s, border-color .15s, background .15s;
}
.social-row a:hover { color: var(--sunrise); border-color: var(--accent); background: var(--glow-dim); }

/* ── Reveal animations ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ── Page hero (inner pages) ────────────────────────────────────── */
.page-hero { padding: var(--s8) 0 var(--s6); }
.page-hero .eyebrow { margin-bottom: var(--s4); }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
.page-hero .lead { margin-top: var(--s4); }

/* ── Legal / Prose ──────────────────────────────────────────────── */
.legal-content { max-width: 760px; display: flex; flex-direction: column; gap: var(--s4); }
.legal-content h2 { font-size: 1.25rem; margin-top: var(--s4); border-top: 1px solid var(--border); padding-top: var(--s4); }
.legal-content p, .legal-content li { color: var(--text-2); font-size: 15px; line-height: 1.8; }

/* ── Back link ──────────────────────────────────────────────────── */
.back-link {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-3); display: inline-flex; gap: 6px; align-items: center;
  margin-bottom: var(--s4); transition: color .15s;
}
.back-link:hover { color: var(--sunrise); }

/* ── Skip link ──────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #1a0800;
  padding: 10px 16px; z-index: 1000; font-family: var(--f-mono); font-size: 13px;
}
.skip-link:focus { left: 8px; top: 8px; border-radius: var(--r-sm); }

/* ── Placeholder note ───────────────────────────────────────────── */
.placeholder-note {
  font-family: var(--f-mono); font-size: 12px; color: var(--warn);
  border: 1px dashed rgba(245,196,81,0.35); border-radius: var(--r-sm);
  padding: 10px 14px; background: rgba(245,196,81,0.05);
}
