@font-face {
  font-family: "Excon";
  src: url("/fonts/excon-medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@property --shiny-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --shiny-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --shiny-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --shiny-color {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

:root {
  --saffron: #ff7a18;
  --green: #087648;
  --navy: #11165e;
  --ink: #161616;
  --muted: #555b60;
  --milk: #fffdf7;
  --paper: #f5f4ee;
  --rule: rgba(22, 22, 22, 0.14);
  color-scheme: light;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: var(--milk);
  font-family: "Zodiak", Georgia, serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 36px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  font-family: "Excon", sans-serif;
  font-size: 12px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-left: 18px;
  display: grid;
  grid-template-rows: 78px minmax(0, 1fr) 52px;
  overflow-x: clip;
}

.flag-rail {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 10;
  width: 18px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.flag-rail span:nth-child(1) {
  background: var(--saffron);
}

.flag-rail span:nth-child(2) {
  background: #fff;
}

.flag-rail span:nth-child(3) {
  background: var(--green);
}

.site-header {
  height: 78px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: "Excon", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.brand-shield {
  width: 31px;
  height: auto;
  flex: none;
  image-rendering: pixelated;
}

.brand-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.brand small {
  color: var(--green);
  font-family: "Zodiak", Georgia, serif;
  font-size: 12px;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 22px);
  color: #65676a;
  font-family: "Excon", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.github-link,
.source-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.github-link img,
.source-link img {
  display: block;
  flex: none;
}

.nav-cta {
  --shiny-bg: var(--green);
  --shiny-bg-subtle: #05613a;
  --cta-bg-start: #0b8554;
  --cta-bg-end: #05643d;
  --cta-shadow: rgba(8, 118, 72, 0.28);
  --cta-arrow-bg: rgba(255, 255, 255, 0.14);
  --cta-arrow-border: rgba(255, 255, 255, 0.28);
  --shiny-highlight: #ffffff;
  --shiny-highlight-subtle: #a8f0cb;
  --shiny-duration: 3.8s;
  --shiny-shadow-size: 2px;
  isolation: isolate;
  position: relative;
  min-height: 46px;
  padding: 7px 8px 7px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--cta-bg-start), var(--cta-bg-end)) padding-box,
    conic-gradient(
      from calc(var(--shiny-angle) - var(--shiny-offset)),
      transparent,
      var(--shiny-highlight) var(--shiny-percent),
      var(--shiny-color) calc(var(--shiny-percent) * 2),
      var(--shiny-highlight) calc(var(--shiny-percent) * 3),
      transparent calc(var(--shiny-percent) * 4)
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16),
    0 6px 16px var(--cta-shadow);
  cursor: pointer;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  animation: shiny-gradient var(--shiny-duration) linear infinite;
  transition:
    --shiny-offset 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --shiny-percent 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --shiny-color 800ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 220ms cubic-bezier(0.25, 1, 0.5, 1),
    filter 220ms ease,
    transform 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  --shiny-offset: 95deg;
  --shiny-percent: 20%;
  --shiny-color: var(--shiny-highlight-subtle);
  filter: brightness(1.04) saturate(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 10px 24px var(--cta-shadow);
  transform: translateY(-2px);
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.copy-panel {
  position: relative;
  min-width: 0;
  padding: clamp(38px, 6.2vh, 58px) 4vw clamp(44px, 5.5vh, 58px);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--rule);
  overflow: hidden;
}

.copy-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
}

.kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  font-family: "Excon", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.kicker .india-flag {
  width: 27px;
  height: auto;
  display: block;
  flex: none;
}

.audit-dialog-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dialog-flag {
  width: 24px;
  height: auto;
  display: block;
  flex: none;
}

h1 {
  max-width: 680px;
  margin: clamp(16px, 2.2vh, 21px) 0 clamp(12px, 1.8vh, 16px);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: clamp(62px, 6vw, 92px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

h1 > span {
  display: block;
}

h1 .headline-lead {
  margin-bottom: 0.12em;
  font-size: 0.58em;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 mark {
  position: relative;
  z-index: 0;
  padding: 0 0.03em;
  color: inherit;
  background: none;
}

h1 mark::before {
  content: "";
  position: absolute;
  right: -0.04em;
  bottom: 0.04em;
  left: -0.03em;
  z-index: -1;
  height: 0.3em;
  background: var(--saffron);
  clip-path: polygon(0 18%, 100% 0, 98% 100%, 1% 86%);
  transform: rotate(-0.8deg);
}

.nation-line {
  position: relative;
  width: min(100%, 590px);
  min-height: 34px;
  margin: 0 0 clamp(12px, 1.8vh, 17px);
  overflow: hidden;
  color: var(--navy);
  font-family: "Excon", sans-serif;
  font-size: clamp(9px, 0.72vw, 11px);
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.nation-line p {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: nation-line-cycle 24s ease-in-out infinite;
}

.nation-line p:nth-child(2) {
  animation-delay: 6s;
}

.nation-line p:nth-child(3) {
  animation-delay: 12s;
}

.nation-line p:nth-child(4) {
  animation-delay: 18s;
}

.nation-line cite {
  color: var(--green);
  font-style: normal;
  white-space: nowrap;
}

.lede {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.45;
}

.lede code {
  color: var(--navy);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
  font-weight: 600;
}

.hero-actions {
  width: min(100%, 570px);
  margin-top: clamp(20px, 2.8vh, 27px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.audit-cta {
  --shiny-bg: var(--saffron);
  --shiny-bg-subtle: #e96600;
  --cta-bg-start: #ff902d;
  --cta-bg-end: #ff6f0f;
  --cta-shadow: rgba(255, 122, 24, 0.3);
  --cta-arrow-bg: rgba(22, 22, 22, 0.08);
  --cta-arrow-border: rgba(22, 22, 22, 0.15);
  --shiny-highlight: #ffffff;
  --shiny-highlight-subtle: #fff4d5;
  --shiny-duration: 3.8s;
  --shiny-shadow-size: 2px;
  isolation: isolate;
  position: relative;
  min-height: 52px;
  padding: 8px 9px 8px 20px;
  border: 1px solid var(--saffron);
  border-color: transparent;
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--cta-bg-start), var(--cta-bg-end)) padding-box,
    conic-gradient(
      from calc(var(--shiny-angle) - var(--shiny-offset)),
      transparent,
      var(--shiny-highlight) var(--shiny-percent),
      var(--shiny-color) calc(var(--shiny-percent) * 2),
      var(--shiny-highlight) calc(var(--shiny-percent) * 3),
      transparent calc(var(--shiny-percent) * 4)
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(142, 52, 0, 0.18),
    0 7px 18px var(--cta-shadow);
  cursor: pointer;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  animation: shiny-gradient var(--shiny-duration) linear infinite;
  transition:
    --shiny-offset 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --shiny-percent 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --shiny-color 800ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 220ms cubic-bezier(0.25, 1, 0.5, 1),
    filter 220ms ease,
    transform 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.audit-cta:hover,
.audit-cta:focus-visible {
  --shiny-offset: 95deg;
  --shiny-percent: 20%;
  --shiny-color: var(--shiny-highlight-subtle);
  filter: brightness(1.03) saturate(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(142, 52, 0, 0.16),
    0 11px 26px var(--cta-shadow);
  transform: translateY(-2px);
}

.nav-cta::before,
.nav-cta::after,
.nav-cta > span::before,
.audit-cta::before,
.audit-cta::after,
.audit-cta > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.nav-cta::before,
.audit-cta::before {
  width: calc(100% - var(--shiny-shadow-size) * 3);
  height: calc(100% - var(--shiny-shadow-size) * 3);
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 2px 2px, #fff 0.5px, transparent 0) padding-box;
  background-size: 4px 4px;
  background-repeat: space;
  opacity: 0.18;
  -webkit-mask-image: conic-gradient(
    from calc(var(--shiny-angle) + 45deg),
    #000,
    transparent 10% 90%,
    #000
  );
  mask-image: conic-gradient(
    from calc(var(--shiny-angle) + 45deg),
    #000,
    transparent 10% 90%,
    #000
  );
}

.nav-cta::after,
.audit-cta::after {
  width: 126%;
  aspect-ratio: 1;
  z-index: 0;
  background: linear-gradient(-50deg, transparent, var(--shiny-highlight), transparent);
  opacity: 0.2;
  -webkit-mask-image: radial-gradient(circle at bottom, transparent 42%, #000);
  mask-image: radial-gradient(circle at bottom, transparent 42%, #000);
  animation: shiny-shimmer calc(var(--shiny-duration) / 0.4) linear infinite reverse;
}

.nav-cta > span,
.audit-cta > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cta-label {
  line-height: 1;
}

.cta-arrow {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--cta-arrow-border);
  border-radius: 50%;
  background: var(--cta-arrow-bg);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  transition:
    background-color 220ms ease,
    transform 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-cta > span::before,
.audit-cta > span::before {
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  z-index: -1;
  border-radius: 999px;
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-highlight);
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.25, 1, 0.5, 1);
  animation: shiny-breathe calc(var(--shiny-duration) * 1.5) linear infinite;
}

.nav-cta:is(:hover, :focus-visible) > span::before,
.audit-cta:is(:hover, :focus-visible) > span::before {
  opacity: 0.4;
}

.nav-cta:is(:hover, :focus-visible) .cta-arrow,
.audit-cta:is(:hover, :focus-visible) .cta-arrow {
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(2px);
}

.nav-cta:active,
.audit-cta:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 3px 9px var(--cta-shadow);
  transform: translateY(0) scale(0.985);
}

.source-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
}

.audit-note {
  max-width: 570px;
  margin: 8px 0 0;
  color: #676c6f;
  font-size: 10.5px;
  line-height: 1.35;
}

.audit-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(760px, calc(100svh - 32px));
  padding: 0;
  border: 1px solid rgba(17, 22, 94, 0.32);
  border-radius: 0;
  color: var(--ink);
  background: var(--milk);
  box-shadow:
    -10px 10px 0 var(--saffron),
    10px -10px 0 var(--green),
    0 36px 90px rgba(17, 22, 94, 0.28);
  overflow: auto;
}

.audit-dialog::backdrop {
  background: rgba(12, 16, 38, 0.72);
  backdrop-filter: blur(5px);
}

.audit-dialog-shell {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.audit-dialog-head {
  min-height: 76px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.audit-dialog-kicker,
.audit-progress {
  margin: 0;
  font-family: "Excon", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.audit-dialog-kicker {
  color: var(--navy);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.audit-progress {
  margin-top: 5px;
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.dialog-close,
.dialog-back {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(22, 22, 22, 0.2);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: "Excon", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-back {
  margin-bottom: 18px;
}

.audit-pane {
  min-height: 0;
  padding: clamp(28px, 5vw, 48px);
}

.audit-pane[hidden] {
  display: none !important;
}

.audit-pane h2 {
  max-width: 570px;
  margin: 0;
  font-family: "Excon", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.audit-options {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.audit-options button {
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid rgba(17, 22, 94, 0.24);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-family: "Zodiak", Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.audit-options button:hover,
.audit-options button:focus-visible,
.audit-options button[data-selected="true"] {
  border-color: var(--saffron);
  background: #fff3e8;
  transform: translateY(-1px);
}

.dialog-intro {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.audit-form {
  margin-top: 22px;
}

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

.audit-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #45494c;
  font-family: "Excon", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-form label small {
  color: #7b7e80;
  font: inherit;
}

.audit-form input[type="text"],
.audit-form input[type="email"],
.audit-form input[type="tel"],
.audit-form input[type="url"] {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(22, 22, 22, 0.28);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Zodiak", Georgia, serif;
  font-size: 14px;
  font-weight: 300;
}

.audit-form input:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

.audit-field-wide {
  grid-column: 1 / -1;
}

.audit-consent {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: #555b60;
  font-size: 11px;
  line-height: 1.4;
}

.audit-consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--green);
}

.audit-consent > span {
  margin: 0 !important;
  font-family: "Zodiak", Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.audit-consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.audit-turnstile {
  width: 100%;
  margin-top: 10px;
}

.audit-turnstile:empty {
  display: none;
}

.audit-status {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 11px;
  line-height: 1.35;
}

.audit-form[data-state="error"] .audit-status {
  color: #a43321;
}

.audit-submit {
  min-height: 48px;
  margin-top: 14px;
  padding: 13px 18px;
  border: 1px solid var(--saffron);
  color: var(--ink);
  background: var(--saffron);
  cursor: pointer;
  font-family: "Excon", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audit-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.audit-form-note {
  margin: 8px 0 0;
  color: #73777a;
  font-size: 10px;
}

.audit-done {
  display: grid;
  align-content: center;
  justify-items: start;
}

.audit-done img {
  margin-bottom: 18px;
  image-rendering: pixelated;
}

.audit-done > p:not(.audit-dialog-kicker) {
  max-width: 510px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.proof-panel {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3.4vh, 34px) 3vw clamp(34px, 4vh, 40px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 1.8vh, 18px);
  background: var(--paper);
  overflow: hidden;
}

.proof-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.proof-title h2,
.proof-title em {
  margin: 0;
  font-family: "Excon", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
}

.proof-title h2 {
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-title em {
  color: var(--green);
  white-space: nowrap;
}

.legal {
  position: absolute;
  right: 3vw;
  bottom: 8px;
  margin: 0;
  color: #5b5f62;
  font-size: 9px;
  line-height: 1.2;
  text-align: right;
}

.terminal-stage {
  position: relative;
  min-height: 370px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.terminal-stage::before {
  content: "";
  position: absolute;
  inset: 10% 5% 8%;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 24, 0.2), transparent 38%),
    radial-gradient(circle at 88% 88%, rgba(8, 118, 72, 0.18), transparent 40%);
  filter: blur(7px);
}

.terminal-stage::after {
  content: "";
  position: absolute;
  inset: 15% 9%;
  z-index: -1;
  border: 1px solid rgba(17, 22, 94, 0.11);
  transform: rotate(-2.1deg);
}

.terminal-window {
  width: min(40vw, 580px);
  min-width: 440px;
  overflow: hidden;
  color: #f8f8ef;
  background: #0c1026;
  border: 1px solid rgba(17, 22, 94, 0.3);
  box-shadow:
    -10px 10px 0 rgba(255, 122, 24, 0.92),
    10px -10px 0 rgba(8, 118, 72, 0.9),
    0 28px 58px rgba(17, 22, 94, 0.2);
}

.terminal-chrome {
  min-height: 52px;
  padding: 8px 11px 8px 16px;
  display: grid;
  grid-template-columns: 72px 1fr 42px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #121839;
}

.terminal-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.terminal-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--saffron);
}

.terminal-dots i:nth-child(2) {
  background: #fff4d5;
}

.terminal-dots i:nth-child(3) {
  background: var(--green);
}

.terminal-title {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Excon", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.terminal-shield {
  width: 35px;
  height: auto;
  justify-self: end;
  image-rendering: pixelated;
}

.terminal-tabs {
  min-height: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #101632;
}

.terminal-tab {
  position: relative;
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  background: transparent;
  cursor: pointer;
  font-family: "Excon", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.terminal-tab:last-child {
  border-right: 0;
}

.terminal-tab span {
  margin-right: 6px;
  color: var(--saffron);
}

.terminal-tab::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.terminal-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.terminal-tab[aria-selected="true"] {
  color: #fff;
  background: rgba(255, 122, 24, 0.08);
}

.terminal-tab[aria-selected="true"]::after {
  transform: scaleX(1);
}

.terminal-tab:focus-visible {
  z-index: 2;
  outline-color: var(--saffron);
  outline-offset: -4px;
}

.terminal-body {
  min-height: 268px;
  padding: clamp(20px, 2.7vh, 26px) clamp(20px, 2.4vw, 30px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 100% 27px,
    #0c1026;
}

.terminal-scene {
  position: relative;
  width: 100%;
  min-height: 220px;
}

.terminal-scene[hidden] {
  display: none !important;
}

.scene-label {
  margin: 0 0 13px;
  color: #f0b17e;
  font-family: "Excon", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.terminal-line {
  position: relative;
  z-index: 1;
  min-height: 20px;
  margin: 0;
  color: #d9ddeb;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(11px, 0.86vw, 13px);
  font-weight: 400;
  line-height: 1.52;
  white-space: normal;
}

.terminal-line + .terminal-line {
  margin-top: 2px;
}

.terminal-line.command {
  margin-bottom: 7px;
  color: #fff;
  font-weight: 600;
}

.terminal-line.command > span:first-child {
  color: var(--saffron);
}

.typed-copy {
  color: inherit;
}

.typing-cursor {
  width: 7px;
  height: 1.05em;
  margin-left: 2px;
  display: none;
  vertical-align: -0.17em;
  background: var(--saffron);
  animation: terminal-cursor 720ms steps(1, end) infinite;
}

.terminal-window.terminal-ready [data-terminal-step] {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.terminal-window.terminal-ready [data-terminal-step][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

.terminal-window.terminal-ready [data-terminal-step].is-typing .typing-cursor {
  display: inline-block;
}

.term-info {
  color: #f0b17e;
}

.terminal-line.good,
.terminal-line.success {
  color: #83e6ad;
}

.terminal-line.good > span,
.terminal-line.success > span {
  color: #42c77b;
}

.terminal-line.warning {
  color: #ffd1a8;
}

.terminal-line.warning > span {
  color: var(--saffron);
}

.terminal-line.step > span {
  color: var(--saffron);
}

.terminal-line.follow-up {
  margin-top: 9px;
  color: #fff4d5;
}

.terminal-line.accepted {
  margin-top: 7px;
  color: #83e6ad;
}

.terminal-note {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.4;
}

.debt-skeletons {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 38%;
  display: grid;
  gap: 7px;
  opacity: 0.08;
}

.debt-skeletons i {
  height: 7px;
  display: block;
  background: #fff;
}

.debt-skeletons i:nth-child(2) {
  width: 72%;
}

.debt-skeletons i:nth-child(3) {
  width: 88%;
}

.terminal-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}

.terminal-facts span {
  padding-top: 12px;
  color: #64686b;
  font-size: 10px;
  line-height: 1.2;
}

.terminal-facts b {
  margin-right: 3px;
  color: var(--ink);
  font-family: "Excon", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.site-footer {
  min-width: 0;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  border-top: 1px solid var(--rule);
  background: var(--milk);
  color: #65696c;
  font-size: 10px;
  line-height: 1.3;
}

.site-footer p {
  min-width: 0;
  margin: 0;
  white-space: nowrap;
}

.site-footer p span {
  margin-left: 8px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 20px);
  font-family: "Excon", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  position: relative;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

@keyframes shiny-gradient {
  to {
    --shiny-angle: 360deg;
  }
}

@keyframes shiny-shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes shiny-breathe {
  0%,
  100% {
    scale: 1;
  }

  50% {
    scale: 1.2;
  }
}

@keyframes terminal-cursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@keyframes nation-line-cycle {
  0% {
    opacity: 0;
    transform: translateY(7px);
  }

  3%,
  21% {
    opacity: 1;
    transform: translateY(0);
  }

  25%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) and (min-width: 761px) {
  .site-header {
    padding-inline: 3vw;
  }

  .copy-panel {
    padding-inline: 3vw;
  }

  h1 {
    font-size: clamp(58px, 6.6vw, 68px);
  }

  .terminal-window {
    width: min(42vw, 520px);
    min-width: 390px;
  }

  .terminal-line {
    font-size: 11.5px;
  }

  .site-footer p span {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-left: 8px;
    grid-template-rows: 58px auto auto;
  }

  .flag-rail {
    width: 8px;
  }

  .site-header {
    height: 58px;
    padding: 0 18px;
    gap: 14px;
  }

  .brand {
    gap: 7px;
    font-size: 16px;
  }

  .brand-shield {
    width: 27px;
  }

  .brand-copy {
    gap: 6px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-links {
    font-size: 9px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 6px 7px 6px 14px;
    font-size: 9px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .copy-panel {
    padding: 22px 20px 24px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .kicker {
    gap: 11px;
    font-size: 9px;
  }

  .kicker .india-flag {
    width: 24px;
  }

  h1 {
    margin: 13px 0 14px;
    font-size: clamp(44px, 12.5vw, 50px);
    line-height: 0.94;
  }

  .nation-line {
    min-height: 39px;
    margin-bottom: 10px;
    font-size: 8.5px;
    line-height: 1.4;
  }

  .lede {
    max-width: 530px;
    font-size: 12.7px;
    line-height: 1.4;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 14px;
  }

  .audit-cta {
    min-height: 46px;
    padding: 7px 8px 7px 15px;
    font-size: 9.5px;
  }

  .nav-cta > span,
  .audit-cta > span {
    gap: 9px;
  }

  .cta-arrow {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .source-link {
    min-height: 40px;
    font-size: 12px;
  }

  .audit-note {
    margin-top: 6px;
    font-size: 9px;
  }

  .audit-dialog {
    width: min(100% - 20px, 620px);
    max-height: calc(100svh - 20px);
    box-shadow:
      -5px 5px 0 var(--saffron),
      5px -5px 0 var(--green),
      0 24px 60px rgba(17, 22, 94, 0.25);
  }

  .audit-dialog-shell {
    min-height: min(620px, calc(100svh - 20px));
  }

  .audit-dialog-head {
    min-height: 64px;
    padding: 12px 14px;
  }

  .audit-pane {
    padding: 24px 18px;
  }

  .audit-pane h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .audit-options {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .audit-options button {
    min-height: 50px;
    font-size: 13px;
  }

  .audit-form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .audit-field-wide {
    grid-column: auto;
  }

  .proof-panel {
    padding: 16px 18px 34px;
    grid-template-rows: auto minmax(336px, auto) auto;
    gap: 8px;
  }

  .proof-title h2,
  .proof-title em {
    font-size: 9px;
  }

  .proof-title {
    align-items: flex-start;
  }

  .proof-title em {
    display: none;
  }

  .terminal-stage {
    min-height: 336px;
  }

  .terminal-window {
    width: min(calc(100vw - 58px), 520px);
    min-width: 0;
    box-shadow:
      -6px 6px 0 rgba(255, 122, 24, 0.92),
      6px -6px 0 rgba(8, 118, 72, 0.9),
      0 20px 40px rgba(17, 22, 94, 0.18);
  }

  .terminal-chrome {
    min-height: 44px;
    padding: 6px 8px 6px 12px;
    grid-template-columns: 58px 1fr 34px;
  }

  .terminal-dots {
    gap: 5px;
  }

  .terminal-dots i {
    width: 7px;
    height: 7px;
  }

  .terminal-title {
    font-size: 8px;
  }

  .terminal-shield {
    width: 29px;
  }

  .terminal-tabs {
    min-height: 44px;
  }

  .terminal-tab {
    min-height: 44px;
    padding-inline: 8px;
    font-size: 8px;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .terminal-tab span {
    margin-right: 3px;
  }

  .terminal-tab::after {
    right: 8px;
    left: 8px;
  }

  .terminal-body {
    min-height: 244px;
    padding: 16px 15px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 100% 23px,
      #0c1026;
  }

  .terminal-scene {
    min-height: 212px;
  }

  .scene-label {
    margin-bottom: 9px;
    font-size: 7px;
  }

  .terminal-line {
    min-height: 18px;
    font-size: clamp(9.6px, 2.8vw, 10.6px);
    line-height: 1.48;
    white-space: normal;
  }

  .terminal-line + .terminal-line {
    margin-top: 3px;
  }

  .terminal-line.command {
    margin-bottom: 7px;
  }

  .terminal-line.follow-up {
    margin-top: 7px;
  }

  .terminal-note {
    margin-top: 8px;
    font-size: 8.5px;
  }

  .debt-skeletons {
    width: 34%;
    opacity: 0.06;
  }

  .terminal-facts span {
    padding-top: 9px;
    font-size: 8px;
  }

  .terminal-facts b {
    display: block;
    margin: 0 0 2px;
    font-size: 16px;
  }

  .legal {
    right: 18px;
    bottom: 6px;
    max-width: calc(100% - 36px);
    font-size: 8px;
  }

  .site-footer {
    min-height: 72px;
    padding: 10px 18px;
    align-content: center;
    flex-wrap: wrap;
    gap: 7px 18px;
    font-size: 8.5px;
  }

  .site-footer p {
    width: 100%;
    white-space: normal;
  }

  .site-footer p span {
    margin-left: 5px;
  }

  .site-footer nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 8px;
  }
}

@media (max-width: 560px) {
  .nav-links > a {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand small {
    display: none;
  }

  .site-header {
    padding-inline: 14px;
  }

  .copy-panel {
    padding-inline: 16px;
  }

  h1 {
    font-size: 45px;
  }

  .proof-panel {
    padding-inline: 16px;
  }

  .legal {
    right: 16px;
  }
}

@media (max-height: 740px) and (min-width: 761px) {
  .page-shell {
    grid-template-rows: 70px minmax(0, 1fr) 48px;
  }

  .site-header {
    height: 70px;
  }

  .copy-panel {
    padding-block: 30px 40px;
  }

  h1 {
    margin-block: 15px 17px;
    font-size: clamp(58px, 6vw, 82px);
  }

  .hero-actions {
    margin-top: 16px;
  }

  .proof-panel {
    padding-block: 24px 30px;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .terminal-stage {
    min-height: 336px;
  }

  .terminal-body {
    min-height: 236px;
    padding-block: 15px;
  }

  .terminal-scene {
    min-height: 206px;
  }

  .terminal-line {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .terminal-line + .terminal-line {
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .terminal-window.terminal-ready [data-terminal-step] {
    opacity: 1;
    transform: none;
  }

  .nation-line p {
    display: none;
    opacity: 1;
    transform: none;
  }

  .nation-line p:first-child {
    display: block;
  }

  .typing-cursor {
    display: none !important;
  }

}

.policy-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-left: 18px;
  display: grid;
  grid-template-rows: 78px minmax(0, 1fr) 52px;
}

.policy-back {
  min-height: 44px;
  padding-inline: 15px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--green);
  font-family: "Excon", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-main {
  min-width: 0;
  padding: clamp(42px, 7vh, 72px) 4vw;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr);
  align-items: start;
  gap: clamp(46px, 7vw, 110px);
}

.policy-intro h1 {
  max-width: 540px;
  margin: 20px 0 22px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.95;
}

.policy-intro > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.policy-sections {
  max-width: 720px;
}

.policy-sections section {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--rule);
}

.policy-sections section + section {
  padding-top: 22px;
}

.policy-sections h2 {
  margin: 0 0 9px;
  font-family: "Excon", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.policy-sections p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.policy-sections p + p {
  margin-top: 9px;
}

.policy-sections a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--green);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 760px) {
  .policy-shell {
    padding-left: 8px;
    grid-template-rows: 58px auto auto;
  }

  .policy-main {
    padding: 30px 20px 38px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .policy-intro h1 {
    margin-block: 16px 18px;
    font-size: clamp(44px, 13vw, 58px);
  }

  .policy-intro > p:last-child {
    font-size: 15px;
  }

  .policy-sections section {
    padding-bottom: 18px;
  }

  .policy-sections section + section {
    padding-top: 18px;
  }

  .policy-back {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 9px;
  }
}

.not-found {
  min-height: 100vh;
  min-height: 100svh;
  padding: 40px;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found main {
  max-width: 620px;
}

.not-found .kicker {
  justify-content: center;
}

.not-found h1 {
  margin-inline: auto;
}

.not-found p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.not-found a {
  margin-top: 18px;
  display: inline-block;
}
