/* INDRA VPN — shared design system (dark glass + gold accents) */

:root {
  color-scheme: dark;

  --bg: #070807;
  --bg-2: #0b0c0a;
  --ink: #f6efdd;
  --ink-2: #c4bca9;
  --ink-muted: #8d8675;
  --ink-faint: #5d5848;

  --gold: #e2b95f;
  --gold-bright: #fff0bc;
  --gold-dim: #9f7728;

  --line: rgba(226, 185, 95, .20);
  --line-soft: rgba(255, 255, 255, .07);
  --glass: rgba(255, 255, 255, .025);
  --glass-2: rgba(255, 255, 255, .045);
  --panel: rgba(10, 11, 9, .72);

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-glow-sm: 0 0 0 1px rgba(226, 185, 95, .12), 0 8px 30px rgba(226, 185, 95, .10);
  --shadow-glow: 0 0 0 1px rgba(226, 185, 95, .22), 0 12px 48px rgba(226, 185, 95, .20);

  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --display: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  font-family: var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: #08070a; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background-color: #08070a;
  background-image:
    radial-gradient(1200px 760px at 8% -6%, rgba(226, 185, 95, .20), transparent 58%),
    radial-gradient(1000px 680px at 96% 4%, rgba(176, 122, 38, .16), transparent 56%),
    radial-gradient(900px 760px at 88% 78%, rgba(132, 38, 46, .16), transparent 60%),
    radial-gradient(820px 700px at 2% 92%, rgba(96, 60, 150, .12), transparent 62%),
    radial-gradient(700px 600px at 50% 50%, rgba(159, 119, 40, .06), transparent 70%),
    linear-gradient(160deg, #0a0808, #0b0a09 48%, #150e0a);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before { /* film grain for premium depth */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 60;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-bright));
  box-shadow: 0 0 12px rgba(226, 185, 95, .5);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Ambient animated background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient .indra-bg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ambient svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: .4; }
.ambient .orbit { fill: none; stroke: rgba(226, 185, 95, .16); stroke-width: 1.3; transform-origin: 50% 46%; animation: spin 80s linear infinite; }
.ambient .orbit.alt { animation-duration: 120s; animation-direction: reverse; stroke-opacity: .10; }
.ambient .route { fill: none; stroke: rgba(226, 185, 95, .22); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 12 46; animation: dash 20s linear infinite; }
.ambient .node { fill: var(--gold); filter: drop-shadow(0 0 10px rgba(226, 185, 95, .45)); animation: pulse 5s ease-in-out infinite; }
.ambient .node.dim { opacity: .4; animation-delay: -1.6s; }
.ambient .glow { fill: rgba(226, 185, 95, .06); animation: breathe 8s ease-in-out infinite; }

/* ---------- Layout ---------- */
.page {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.container { width: min(1080px, calc(100vw - 40px)); margin: 0 auto; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  justify-content: center;
}
.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(12, 13, 11, .55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: clamp(15px, 1.3vw, 19px);
  white-space: nowrap;
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(226, 185, 95, .22);
  animation: pulse 5.6s ease-in-out infinite;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  margin-left: auto;
  margin-right: 6px;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  background: var(--glass-2);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); border-color: var(--line); }
.btn-primary {
  color: #160d00;
  border-color: transparent;
  background: linear-gradient(120deg, var(--gold-dim), var(--gold) 45%, var(--gold-bright));
  box-shadow: var(--shadow-glow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); }
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -45%;
  width: 36%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  animation: sheen 6s ease-in-out infinite;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost { color: var(--ink); background: var(--glass); }
.btn-ghost:hover { border-color: var(--line); color: var(--gold-bright); }
.btn.disabled { pointer-events: none; color: var(--ink-faint); background: rgba(255, 255, 255, .03); border-color: var(--line-soft); }
.btn .arrow {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  font-size: 14px; line-height: 1;
}

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--gold);
}
h1, h2, h3 { margin: 0; letter-spacing: -.02em; text-wrap: balance; }
.hero h1, .section-head h2, .cta h2, .legal h1, .legal h2, .card .big {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
}
.gold-text {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: center;
  padding: clamp(40px, 7vw, 88px) 0 clamp(40px, 6vw, 76px);
}
.hero > *:not(.hero-indra) { position: relative; z-index: 1; }

/* ---------- Animated INDRA emblem backdrop ---------- */
.hero-indra {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}
.hero-indra .stage {
  position: relative;
  width: min(560px, 70%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateX(8%);
}
.hero-indra .emblem {
  position: absolute;
  width: 42%;
  height: 42%;
  filter: drop-shadow(0 0 22px rgba(226, 185, 95, .35));
  animation: emblem-breathe 6.5s ease-in-out infinite;
}
.hero-indra .ping {
  position: absolute;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(226, 185, 95, .42);
  opacity: 0;
  animation: ping 7.5s ease-out infinite;
}
.hero-indra .ping:nth-child(2) { animation-delay: 2.5s; }
.hero-indra .ping:nth-child(3) { animation-delay: 5s; }
.hero-indra .sweep {
  position: absolute;
  width: 96%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(226, 185, 95, .18), rgba(226, 185, 95, 0) 60deg, transparent 360deg);
  -webkit-mask: radial-gradient(circle, transparent 0 20%, #000 21%);
  mask: radial-gradient(circle, transparent 0 20%, #000 21%);
  animation: spin 18s linear infinite;
}
@keyframes ping {
  0% { transform: scale(.45); opacity: .55; }
  70% { opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes emblem-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 22px rgba(226, 185, 95, .30)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 34px rgba(226, 185, 95, .5)); }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
}
.hero .lead {
  margin: 22px 0 0;
  max-width: 30rem;
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  text-wrap: pretty;
}

/* ---------- Hero phones (real INDRA app) ---------- */
.hero-phones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 46vw, 560px);
}
.hero-phones::before { /* soft glow only — separates phone without a solid panel */
  content: "";
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 185, 95, .28), rgba(226, 185, 95, .07) 44%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
  animation: aura 7s ease-in-out infinite;
}
.phone {
  position: relative;
  z-index: 1;
  width: clamp(158px, 16vw, 196px);
  padding: 11px 9px 15px;
  border-radius: 38px;
  background: linear-gradient(150deg, #221708, #07060300 8%, #050504 60%);
  border: 1px solid rgba(226, 185, 95, .42);
  transform: perspective(1500px) rotateY(-15deg) rotateX(4deg);
  box-shadow:
    inset 2px 2px 0 rgba(255, 240, 200, .22),
    inset -1px -1px 0 rgba(0, 0, 0, .6),
    -22px 30px 70px rgba(0, 0, 0, .7),
    0 0 0 1px rgba(0, 0, 0, .5);
  animation: floaty 8s ease-in-out infinite;
}
.phone::after { /* side button */
  content: "";
  position: absolute;
  right: -2px; top: 28%;
  width: 2px; height: 48px;
  border-radius: 2px;
  background: rgba(226, 185, 95, .28);
}
.phone .screen { position: relative; border-radius: 32px; overflow: hidden; background: #000; aspect-ratio: 620 / 1102; }
.phone .screen img { display: block; width: 100%; height: 100%; object-fit: cover; }
.phone .notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 32%; height: 15px;
  border-radius: 999px;
  background: #000;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}
@keyframes aura { 0%, 100% { transform: scale(.92); opacity: .65; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

/* trust chips */
.trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--glass);
  font-size: 13px; font-weight: 700; color: var(--ink-2);
}
.trust .chip svg { width: 15px; height: 15px; color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 30rem;
  margin-top: 38px;
}
.stat {
  padding: 16px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--glass);
  text-align: center;
}
.stat b {
  display: block;
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { display: block; margin-top: 4px; font-size: 12px; color: var(--ink-muted); }

/* ---------- Regal centered hero (INDRA) ---------- */
.hero.solo { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.hero.solo .lead { margin-left: auto; margin-right: auto; }
.hero.solo .hero-actions { justify-content: center; }
.hero.solo .stats { margin-left: auto; margin-right: auto; }

.emblem {
  position: relative;
  width: clamp(112px, 13vw, 168px);
  height: clamp(112px, 13vw, 168px);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}
.emblem img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 26%;
  filter: drop-shadow(0 0 40px rgba(226, 185, 95, .35));
  animation: emblem-float 7s ease-in-out infinite;
}
.emblem::before,
.emblem::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(226, 185, 95, .28);
  border-radius: 50%;
  animation: halo-spin 26s linear infinite;
}
.emblem::before { inset: -16%; }
.emblem::after { inset: -34%; border-color: rgba(226, 185, 95, .16); animation-duration: 40s; animation-direction: reverse; }
@keyframes emblem-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes halo-spin { to { transform: rotate(360deg); } }

/* vajra divider — signature mark between sections */
.vajra {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin: 6px auto 0;
  color: var(--gold);
  opacity: .85;
}
.vajra::before, .vajra::after {
  content: "";
  height: 1px; width: clamp(40px, 12vw, 120px);
  background: linear-gradient(90deg, transparent, rgba(226, 185, 95, .5));
}
.vajra::after { transform: scaleX(-1); }
.vajra b { font-size: 13px; letter-spacing: .12em; }

/* connection mock card */
.mock {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 6px;
}
.mock-inner { border-radius: 22px; overflow: hidden; background: rgba(8, 9, 7, .7); }
.mock-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono); font-size: 12px; color: var(--ink-muted);
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: pulse 2.4s ease-in-out infinite; }
.mock-log { padding: 16px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-muted); display: grid; gap: 9px; }
.mock-log .ok { color: var(--gold); }
.mock-log .faint { color: var(--ink-faint); }

/* ---------- Sections & bento ---------- */
.section { padding: clamp(36px, 6vw, 72px) 0; }
.section-head { max-width: 42rem; margin-bottom: 34px; }
.section-head h2 { margin-top: 14px; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }
.section-head p { margin: 12px 0 0; color: var(--ink-2); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--glass);
  padding: 26px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.card:hover { border-color: var(--line); box-shadow: var(--shadow-glow-sm); transform: translateY(-3px); }
.card::before {
  content: "";
  position: absolute;
  left: 26px; top: -1px;
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 185, 95, .7), transparent);
}
.card.col-4 { grid-column: span 4; }
.card.col-3 { grid-column: span 3; }
.card.col-2 { grid-column: span 2; }
.card .reveal-panel {
  position: absolute;
  inset: auto 14px 14px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 9, .96);
  backdrop-filter: blur(8px);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  transform: translateY(122%);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}
.card:hover .reveal-panel,
.card:focus-within .reveal-panel { transform: translateY(0); }
.card-ico {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(226, 185, 95, .10);
  border: 1px solid rgba(226, 185, 95, .26);
  margin-bottom: 16px;
}
.card-ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; font-weight: 800; }
.card .sub { margin-top: 4px; font-size: 13px; color: var(--ink-muted); }
.card p { margin: 12px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.card .big { font-size: 42px; font-weight: 900; line-height: 1; }
.card.center { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--glass);
  font-size: 14px; font-weight: 700;
}
.pill small { font-family: var(--mono); font-size: 11px; color: var(--gold); opacity: .8; }
.card .tag { margin-left: 9px; font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--gold); opacity: .82; vertical-align: middle; white-space: nowrap; }

/* steps */
.steps { display: grid; gap: 12px; }
.step {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--glass);
  color: var(--ink-2);
  font-size: 14px;
}
.step .n {
  display: grid; place-items: center;
  width: 30px; height: 30px; flex: 0 0 auto;
  border-radius: 50%;
  font-weight: 900; font-size: 14px;
  color: #160d00;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
}
.step strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 15px; }

/* CTA band */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
}
.cta::after {
  content: "";
  position: absolute; inset: -1px;
  background: radial-gradient(620px 280px at 50% 0%, rgba(226, 185, 95, .16), transparent 70%);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(28px, 4.4vw, 48px); font-weight: 900; }
.cta p { margin: 14px auto 0; max-width: 34rem; color: var(--ink-2); font-size: 17px; }
.cta .hero-actions { justify-content: center; }

/* ---------- Clients ---------- */
.client-grid { display: grid; gap: 18px; margin-top: 8px; }
.client-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--glass);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.client-card:hover { border-color: var(--line); box-shadow: var(--shadow-glow-sm); transform: translateY(-3px); }
.client-card.primary { border-color: rgba(226, 185, 95, .34); background: linear-gradient(140deg, rgba(226, 185, 95, .06), var(--glass)); }
.client-card::before {
  content: "";
  position: absolute; left: 24px; top: -1px;
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 185, 95, .8), transparent);
}
.client-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.client-ico {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  color: #160d00; font-weight: 900; font-size: 16px;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
}
.client-ico svg { width: 22px; height: 22px; }
.badge {
  display: inline-flex; align-items: center;
  min-height: 24px; padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 0, 0, .25);
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.badge.muted { color: var(--ink-muted); }
.client-card h2 { margin: 14px 0 0; font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; }
.client-card p { margin: 8px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; max-width: 40rem; }
.client-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-end; }
.note {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(226, 185, 95, .05);
  color: var(--ink-2);
  font-size: 15px; line-height: 1.6;
}

/* ---------- Legal pages ---------- */
.legal {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(8px);
}
.legal h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; }
.legal .lead { margin: 18px 0 0; max-width: 44rem; color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.legal .updated { margin-top: 16px; color: var(--ink-muted); font-size: 14px; }
.legal section { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-soft); }
.legal h2 { margin-bottom: 12px; font-size: clamp(21px, 2.6vw, 28px); font-weight: 800; color: var(--ink); }
.legal p, .legal li { color: var(--ink-2); font-size: 16px; line-height: 1.7; text-wrap: pretty; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0; padding-left: 22px; }
.legal li + li { margin-top: 8px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--gold); }
.legal a:hover { color: var(--gold-bright); }
.legal .notice {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(226, 185, 95, .06);
  color: var(--ink);
}

/* ---------- Footer ---------- */
footer.site {
  margin-top: 40px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-muted);
  font-size: 14px;
}
footer.site .brand-sm { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .12em; color: var(--ink); }
footer.site .brand-sm img { width: 24px; height: 24px; border-radius: 7px; }
footer.site nav { display: flex; gap: 22px; flex-wrap: wrap; }
footer.site a { color: var(--ink-2); }
footer.site a:hover { color: var(--gold-bright); }
footer.site .mini { width: 100%; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line-soft); color: var(--ink-faint); font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
footer.site .mini .gold-text { font-weight: 700; }

/* ---------- Animations ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -116; } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.16); opacity: 1; } }
@keyframes breathe { 0%, 100% { opacity: .04; } 50% { opacity: .12; } }
@keyframes sheen { 0%, 55% { left: -45%; } 70% { left: 115%; } 100% { left: 115%; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  body { background-attachment: scroll; }  /* fixed bg leaves a late-painting black strip on mobile */
  .hero { grid-template-columns: 1fr; gap: 26px; padding-top: 24px; }
  .hero .mock { order: 2; max-width: 360px; }
  .hero-indra { display: none; }                 /* drop floating emblem on mobile — it overlapped text */
  .hero-phones { min-height: auto; margin-top: 4px; }
  .phone { width: clamp(214px, 62vw, 268px); transform: none; }  /* upright, centered, larger */
  .bento { grid-template-columns: 1fr; }
  .card.col-4, .card.col-3, .card.col-2 { grid-column: auto; }
  .nav-links a.hide-sm { display: none; }
  .ambient svg { opacity: .4; }
}
@media (max-width: 560px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .stats { max-width: none; }
  .client-card { grid-template-columns: 1fr; }
  .client-actions { justify-content: flex-start; }
  footer.site { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}









