@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,62.5..125,100..900;1,62.5..125,100..900&display=swap");

:root {
  color-scheme: dark;
  --bg: #040605;
  --bg-elevated: #0a110d;
  --surface: rgba(11, 17, 13, 0.7);
  --surface-strong: rgba(17, 25, 20, 0.88);
  --surface-soft: rgba(15, 22, 18, 0.55);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(169, 229, 86, 0.32);
  --text: #f5f7f2;
  --muted: #a3aca7;
  --muted-strong: #ced5d1;
  --accent: #9edc43;
  --accent-strong: #c7f279;
  --accent-soft: rgba(158, 220, 67, 0.14);
  --accent-glow: rgba(158, 220, 67, 0.28);
  --chrome: #dfe3dc;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.45);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --max-width: 1280px;
  --header-gap: 1rem;
  --page-gutter: clamp(1rem, 2vw, 2.5rem);
  --section-space: clamp(4.75rem, 8vw, 8rem);
  --transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-display: "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-stretch: 94%;
  font-weight: 450;
  letter-spacing: -0.012em;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(158, 220, 67, 0.12), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.03), transparent 35%),
    linear-gradient(180deg, #050705 0%, #070a08 42%, #030403 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(158, 220, 67, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.54));
}

::selection {
  background: rgba(158, 220, 67, 0.24);
  color: var(--text);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: 0;
}

.container {
  width: min(var(--max-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.grid-2,
.grid-3,
.grid-4,
.stack-grid,
.contrast-grid,
.experience-grid,
.split-grid,
.network-grid,
.contact-grid,
.support-grid,
.process-grid,
.footer-grid,
.app-grid,
.page-hero-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
}

.grid-2,
.split-grid,
.contact-grid,
.page-hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.stack {
  display: grid;
  gap: 1rem;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section:first-of-type {
  padding-top: 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  max-width: 46rem;
}

.section-head.narrow {
  max-width: 40rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.page-badge,
.meta-chip,
.footer-label,
.story-index,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
}

.button,
.nav-list a,
.nav-toggle,
.eyebrow,
.page-badge,
.meta-chip,
.footer-label,
.story-index,
.card-kicker,
.phone-chip,
.step-chip,
.city-meta span,
.priority-tag,
.stage-topline span,
.orbit-label {
  font-family: var(--font-display);
  font-stretch: 104%;
}

.eyebrow {
  color: var(--accent-strong);
}

.page-badge,
.meta-chip {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 9, 0.48);
  color: var(--muted-strong);
  letter-spacing: 0.2em;
}

.headline-xl,
.headline-lg,
.headline-md,
.headline-sm,
.display-line {
  margin: 0;
  font-family: var(--font-display);
  font-stretch: 114%;
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.headline-xl {
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  max-width: 12ch;
}

.headline-lg {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.headline-md {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.headline-sm {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.lede,
.body-copy,
.feature-copy,
.faq-answer,
.footer-copy,
.scene-copy,
.card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 42rem;
}

.panel,
.cut-panel,
.input-shell,
.phone-shell,
.story-step,
.faq-item,
.contact-form,
.process-card,
.footer-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 26, 21, 0.88), rgba(8, 12, 10, 0.75));
  box-shadow: var(--shadow);
}

.panel,
.phone-shell,
.story-step,
.faq-item,
.contact-form,
.process-card,
.footer-panel {
  border-radius: var(--radius-lg);
}

.cut-panel {
  border-radius: var(--radius-xl);
  clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 56px, 100% 100%, 0 100%);
}

.panel::before,
.cut-panel::before,
.story-step::before,
.faq-item::before,
.contact-form::before,
.process-card::before,
.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(158, 220, 67, 0.1), transparent 35%);
  opacity: 0.9;
  pointer-events: none;
}

.button-row,
.hero-actions,
.meta-row,
.chip-row,
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: transform 0.7s ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(100%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  transform: none;
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}

.button-primary {
  color: #091006;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 38px rgba(158, 220, 67, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(10, 15, 12, 0.42);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-ghost {
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.button:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(158, 220, 67, 0.5);
  outline-offset: 3px;
}

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  height: 2px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.9));
  box-shadow: 0 0 22px rgba(158, 220, 67, 0.34);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem var(--page-gutter);
  transition: transform 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  padding-top: 0.7rem;
}

.header-shell {
  width: min(var(--max-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--header-gap);
  align-items: center;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 9, 7, 0.72);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-lockup img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 16px rgba(158, 220, 67, 0.18));
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
}

.brand-name {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.08em;
  font-stretch: 118%;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.brand-name span {
  display: block;
}

.brand-fit {
  color: var(--accent-strong);
  text-shadow: 0 0 22px rgba(158, 220, 67, 0.28);
}

.brand-tag {
  font-family: var(--font-display);
  font-stretch: 106%;
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.45rem;
  height: 1px;
  background: rgba(158, 220, 67, 0.72);
  transform: translateY(-50%);
}

.site-nav {
  justify-self: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active,
.nav-list a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  min-width: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
}

main {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8rem 0 5.5rem;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(1.02) contrast(1.08) brightness(0.72);
  transform: scale(calc(1 + (var(--hero-progress, 0) * 0.08)));
  transition: transform 0.3s ease;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(4, 6, 4, 0.9) 0%, rgba(4, 6, 4, 0.54) 28%, rgba(4, 6, 4, 0.12) 58%, rgba(4, 6, 4, 0.3) 100%),
    radial-gradient(circle at 74% 22%, rgba(158, 220, 67, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(4, 6, 4, 0.08), rgba(4, 6, 4, 0.34) 58%, rgba(4, 6, 4, 0.72));
}

.hero-media::after {
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 96%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at 50% 42%, transparent 0 28%, rgba(0, 0, 0, 0.18) 100%);
}

.section--tight {
  padding-top: 1rem;
}

.hero-cinema {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
}

.hero-topband {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-ledger span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 9, 7, 0.48);
  color: var(--muted-strong);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 2.4vw, 2.2rem);
  align-items: center;
  min-height: calc(100svh - 11rem);
  padding: clamp(1.25rem, 2vw, 1.7rem);
  overflow: visible;
  background:
    radial-gradient(circle at 74% 26%, rgba(158, 220, 67, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(10, 15, 12, 0.36), rgba(4, 7, 5, 0.18));
  backdrop-filter: blur(10px) saturate(135%);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.hero-frame::before {
  opacity: 0.34;
}

.hero-copy-rail {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.1rem;
  align-self: end;
  max-width: 29rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(6, 9, 7, 0.74), rgba(6, 9, 7, 0.42)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 34%);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-stretch: 108%;
  color: var(--muted-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 720;
}

.hero-kicker::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 220, 67, 0.92), transparent);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-stretch: 122%;
  font-size: clamp(3.9rem, 7vw, 7.4rem);
  font-weight: 820;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-line {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.45rem, 0.9vw, 0.8rem);
}

.hero-line--status {
  padding-left: clamp(0.25rem, 0.8vw, 0.55rem);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0.35rem 0.8rem 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(158, 220, 67, 0.34);
  background: rgba(9, 13, 10, 0.82);
  color: var(--accent-strong);
  font-size: clamp(0.92rem, 1.15vw, 1.1rem);
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-status::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(158, 220, 67, 0.42);
}

.hero-intro {
  margin: 0;
  max-width: 24rem;
  color: var(--muted-strong);
  line-height: 1.55;
  font-weight: 470;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.hero-object {
  position: relative;
  z-index: 2;
  min-height: clamp(28rem, 68vh, 46rem);
  display: grid;
  place-items: center;
  justify-items: end;
  padding-right: clamp(0.25rem, 1.1vw, 0.9rem);
}

.object-shell {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 4 / 5;
  padding: clamp(0.85rem, 1.4vw, 1rem);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(24, 32, 28, 0.72), rgba(5, 8, 6, 0.38)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 26%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transform:
    perspective(1800px)
    rotateY(calc((var(--cursor-x, 0.5) - 0.5) * -8deg))
    rotateX(calc((var(--cursor-y, 0.5) - 0.5) * 4deg));
  transition: transform 0.35s ease;
}

.object-shell::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.object-shell::after {
  content: "";
  position: absolute;
  inset: auto 10% -12% 10%;
  height: 26%;
  background: radial-gradient(circle, rgba(158, 220, 67, 0.32), transparent 72%);
  filter: blur(42px);
  pointer-events: none;
}

.object-window {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(8, 11, 10, 0.12), rgba(4, 5, 5, 0.46));
}

.object-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 6, 4, 0.04), rgba(4, 6, 4, 0.46)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 26%);
  pointer-events: none;
}

.object-window::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 18%, transparent 72%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.object-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(1.03) contrast(1.08) brightness(0.9);
  transform: scale(calc(1.06 + (var(--hero-progress, 0) * 0.03)));
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 8, 0.62);
  backdrop-filter: blur(18px);
  color: var(--muted-strong);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.orbit-label--north {
  top: 1.2rem;
  left: -1rem;
}

.orbit-label--east {
  top: 6rem;
  right: -1.25rem;
}

.orbit-label--south {
  left: 1.5rem;
  bottom: 1.2rem;
}

.hero-side-note {
  position: absolute;
  right: clamp(1.1rem, 2vw, 1.7rem);
  bottom: clamp(1.1rem, 2vw, 1.7rem);
  z-index: 3;
  width: min(18rem, 28vw);
  padding: 1rem 1.05rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 8, 0.58);
  backdrop-filter: blur(18px);
}

.hero-side-note p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.home-thesis {
  padding-top: 1.25rem;
}

.thesis-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.3rem;
  align-items: center;
  padding: clamp(1.3rem, 2vw, 1.8rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(14, 20, 16, 0.94), rgba(5, 7, 6, 0.97));
}

.thesis-copy {
  display: grid;
  gap: 0.9rem;
}

.thesis-rails {
  display: grid;
  gap: 1rem;
}

.issue-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.issue-rail span {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.issue-rail--accent span {
  border-color: rgba(158, 220, 67, 0.2);
  background: rgba(158, 220, 67, 0.12);
  color: var(--text);
}

.thesis-note {
  margin: 0;
  max-width: 32rem;
  color: var(--muted-strong);
  font-family: var(--font-display);
  font-stretch: 108%;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.3;
}

.mode-rail {
  display: grid;
  gap: 1rem;
}

.mode-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
}

.mode-strip h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 760;
  font-size: 1.25rem;
}

.mode-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 40rem;
}

.hero-copy .lede {
  max-width: 34rem;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 42rem);
  transform: translateY(calc(var(--hero-progress, 0) * -18px));
}

.hero-card {
  padding: 1.25rem;
  min-height: 34rem;
}

.hero-card-head,
.capsule-metadata,
.scene-meta,
.city-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-capsule {
  position: relative;
  margin: 1rem 0 1.15rem;
  min-height: 24rem;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 52% 14%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.45), rgba(3, 4, 4, 0.95));
}

.hero-capsule img,
.stage-visual img,
.media-frame img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-capsule img {
  height: 100%;
  opacity: 0.95;
  filter: saturate(0.92) contrast(1.06) brightness(0.78);
  transform: scale(calc(1.02 + (var(--hero-progress, 0) * 0.03)));
}

.hero-capsule::before,
.hero-capsule::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-capsule::before {
  inset: auto 10% -34% 10%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 220, 67, 0.38), transparent 65%);
  filter: blur(42px);
}

.hero-capsule::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 4, 0.12), rgba(3, 5, 4, 0.72)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 25%);
}

.capsule-tag {
  position: absolute;
  z-index: 1;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 9, 0.58);
  backdrop-filter: blur(18px);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.capsule-tag--top {
  top: 1rem;
  right: 1rem;
}

.capsule-tag--bottom {
  left: 1rem;
  bottom: 1rem;
}

.hero-card-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 30rem;
}

.hero-card-copy p,
.city-note,
.contact-note,
.process-copy,
.list-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.scroll-cue {
  position: absolute;
  inset: auto 0 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  z-index: 1;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(158, 220, 67, 0), rgba(158, 220, 67, 0.78));
}

.noise-stack {
  display: grid;
  gap: 1rem;
}

.noise-card,
.city-card,
.support-card,
.principle-card,
.audience-card,
.contact-card,
.mode-card {
  padding: 1.35rem;
}

.noise-card h3,
.city-card h3,
.support-card h3,
.principle-card h3,
.audience-card h3,
.contact-card h3,
.mode-card h3,
.process-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.05;
}

.noise-card p,
.city-card p,
.support-card p,
.principle-card p,
.audience-card p,
.contact-card p,
.mode-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.clarity-card {
  padding: 1.5rem;
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.clarity-copy {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.media-frame,
.page-hero-media,
.stage-visual,
.signal-board,
.city-stage {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(10, 15, 12, 0.35), rgba(4, 7, 5, 0.98));
}

.media-frame {
  aspect-ratio: 16 / 10;
}

.media-frame::after,
.page-hero-media::after,
.stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 4, 0.08), rgba(3, 5, 4, 0.84)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.clarity-meta,
.list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.clarity-meta span,
.list-row span,
.inline-list span,
.scene-pill,
.metric-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.experience-stage {
  position: sticky;
  top: 6.5rem;
  padding: 1.4rem;
  min-height: 72vh;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.experience-stage::after {
  content: "";
  position: absolute;
  inset: auto 10% -10% 10%;
  height: 28%;
  background: radial-gradient(circle, rgba(158, 220, 67, 0.26), transparent 72%);
  filter: blur(36px);
  pointer-events: none;
}

.stage-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stage-topline span,
.city-tag,
.priority-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-visual {
  min-height: 26rem;
}

.stage-visual img {
  height: 100%;
  filter: saturate(0.95) contrast(1.08) brightness(0.8);
  transition: transform var(--transition), filter var(--transition);
}

.experience-stage[data-scene="quiet"] .stage-visual img {
  transform: scale(1.03);
}

.experience-stage[data-scene="format"] .stage-visual img {
  transform: scale(1.07) translateY(-10px);
  filter: saturate(1.08) contrast(1.02) brightness(0.88);
}

.experience-stage[data-scene="timing"] .stage-visual img {
  transform: scale(1.09);
  filter: saturate(0.78) contrast(1.15) brightness(0.7);
}

.experience-stage[data-scene="app"] .stage-visual img {
  transform: scale(1.04) translateX(8px);
  filter: saturate(1.02) contrast(1.08) brightness(0.74);
}

.scene-overlay {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.scene-overlay--format {
  inset: auto 1.2rem 1.2rem 1.2rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.scene-overlay--format span,
.scene-overlay--app span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 8, 0.65);
  backdrop-filter: blur(18px);
  color: var(--muted-strong);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scene-overlay--timing {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 24%),
    rgba(6, 9, 7, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 40px rgba(158, 220, 67, 0.28);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scene-overlay--app {
  inset: auto 1.2rem 1.2rem auto;
  display: grid;
  gap: 0.55rem;
  transform: translateY(8px);
}

.experience-stage[data-scene="format"] .scene-overlay--format,
.experience-stage[data-scene="timing"] .scene-overlay--timing,
.experience-stage[data-scene="app"] .scene-overlay--app {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.scene-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
  max-width: 28rem;
}

.scene-caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 760;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.scene-caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.story-index {
  color: var(--accent-strong);
}

.experience-steps {
  display: grid;
  gap: 1rem;
}

.story-step {
  padding: 1.45rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.story-step.is-active {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(22, 32, 25, 0.92), rgba(8, 12, 10, 0.82));
}

.story-step h3 {
  margin: 0.35rem 0 0.7rem;
  font-family: var(--font-display);
  font-stretch: 108%;
  font-weight: 750;
  font-size: 1.2rem;
}

.story-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mode-card {
  min-height: 17rem;
  display: grid;
  gap: 0.8rem;
  align-content: end;
}

.mode-index,
.timeline-index,
.phase-index {
  font-family: var(--font-display);
  font-stretch: 114%;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
}

.app-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.phone-shell {
  justify-self: center;
  width: min(100%, 360px);
  padding: 0.85rem;
  border-radius: 2.4rem;
  background:
    linear-gradient(180deg, rgba(28, 36, 31, 0.94), rgba(8, 11, 9, 0.92));
}

.phone-topbar {
  width: 34%;
  height: 0.4rem;
  margin: 0 auto 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.phone-screen {
  display: grid;
  gap: 1rem;
  min-height: 38rem;
  padding: 1rem;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at top, rgba(158, 220, 67, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(12, 18, 14, 0.95), rgba(6, 9, 7, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-chip,
.step-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-card,
.mini-card,
.step-card {
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.phone-card strong,
.step-card strong,
.mini-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.phone-card p,
.mini-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.steps-list {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  gap: 0.6rem;
}

.signal-board,
.city-stage {
  min-height: 24rem;
  padding: 1.3rem;
  display: flex;
  align-items: stretch;
}

.signal-grid {
  position: relative;
  flex: 1;
  min-height: 100%;
  border-radius: calc(var(--radius-xl) - 12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 18, 14, 0.95), rgba(5, 7, 6, 0.98));
  background-size: 56px 56px, 56px 56px, auto;
  overflow: hidden;
}

.signal-grid::before,
.signal-grid::after {
  content: "";
  position: absolute;
  inset: auto auto auto 0;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 220, 67, 0.18), transparent);
  transform-origin: left center;
}

.signal-grid::before {
  top: 26%;
  left: 14%;
  transform: rotate(12deg);
}

.signal-grid::after {
  top: 58%;
  left: 18%;
  transform: rotate(-16deg);
}

.city-node {
  position: absolute;
  display: grid;
  gap: 0.3rem;
  transform: translate(-50%, -50%);
}

.city-node--hyderabad {
  left: 27%;
  top: 64%;
}

.city-node--bengaluru {
  left: 33%;
  top: 52%;
}

.city-node--mumbai {
  left: 18%;
  top: 42%;
}

.city-node--delhi {
  left: 54%;
  top: 30%;
}

.city-node--delhi-wide {
  left: 55%;
  top: 30%;
}

.city-node--chennai {
  left: 41%;
  top: 68%;
}

.city-node--pune {
  left: 22%;
  top: 54%;
}

.city-node::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(158, 220, 67, 0.48);
}

.city-node strong {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.city-card {
  display: grid;
  gap: 0.8rem;
}

.city-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.city-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.cta-band {
  padding: clamp(1.4rem, 2vw, 2rem);
  display: grid;
  gap: 1.3rem;
}

.cta-band-head {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

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

.field {
  display: grid;
  gap: 0.55rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted-strong);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-trap-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.field select {
  appearance: none;
  color-scheme: dark;
  padding-right: 3.1rem;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.25 5.25L7 9L10.75 5.25' stroke='%239edc43' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, calc(100% - 1rem) 50%;
  background-size: auto, 14px 14px;
}

.field select option,
.field select optgroup {
  background: #0b100d;
  color: var(--text);
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.form-feedback {
  margin: 0;
  color: var(--accent-strong);
  line-height: 1.5;
}

.form-feedback[data-state="pending"] {
  color: var(--muted-strong);
}

.form-feedback[data-state="error"] {
  color: #ff9f9f;
}

.page-hero {
  position: relative;
  padding: 8.8rem 0 4rem;
}

.page-hero-grid {
  align-items: end;
}

.page-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.page-hero-media {
  min-height: 28rem;
  padding: 1.25rem;
  display: grid;
}

.page-hero-media img {
  height: 100%;
  border-radius: calc(var(--radius-xl) - 16px);
  filter: saturate(0.92) contrast(1.06) brightness(0.8);
}

.page-hero-stage {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
}

.page-hero-media > .signal-grid,
.page-hero-media > .page-hero-stage {
  min-height: 100%;
}

.page-stage-card,
.manifesto-card,
.support-card,
.principle-card,
.audience-card,
.contact-card,
.timeline-card,
.faq-strip {
  padding: 1.35rem;
}

.manifesto-card strong,
.support-card strong,
.principle-card strong,
.audience-card strong,
.contact-card strong,
.timeline-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.manifesto-card p,
.timeline-card p,
.faq-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  display: grid;
  gap: 0.65rem;
}

.location-grid,
.principles-grid,
.audience-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

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

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

.faq-list {
  max-width: 54rem;
}

.faq-item {
  padding: 0.4rem 1.2rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
}

.faq-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 1px;
  background: var(--muted-strong);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
  padding-bottom: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 14rem;
  padding-bottom: 1.1rem;
}

.support-card,
.process-card,
.contact-card {
  display: grid;
  gap: 0.8rem;
}

.process-card {
  padding: 1.4rem;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  padding: 1.35rem;
}

.footer {
  padding: 1.25rem 0 2rem;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  align-items: start;
}

.footer-panel {
  padding: 1.3rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-depth] {
  will-change: transform;
}

.muted-line {
  color: var(--muted);
}

.accent-line {
  color: var(--accent-strong);
}

.inline-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.inline-arrow::after {
  content: "→";
}

.utility-spacer {
  height: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.7rem) 0 auto auto;
    width: min(23rem, calc(100vw - (var(--page-gutter) * 2)));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 10, 8, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }

  .nav-list a {
    justify-content: flex-start;
    min-height: 3rem;
  }

  .hero-grid,
  .hero-frame,
  .thesis-band,
  .contrast-grid,
  .experience-grid,
  .app-grid,
  .split-grid,
  .network-grid,
  .page-hero-grid,
  .contact-grid,
  .footer-grid,
  .location-grid,
  .principles-grid,
  .audience-grid,
  .support-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 8.5rem;
    min-height: auto;
  }

  .hero-topband {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-frame {
    min-height: auto;
  }

  .hero-copy-rail {
    max-width: none;
  }

  .hero-side-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-visual {
    width: 100%;
  }

  .experience-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .page-hero {
    padding-top: 8.3rem;
  }

  .page-hero-media {
    min-height: 24rem;
  }
}

@media (max-width: 720px) {
  .header-shell {
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-tag {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-frame {
    gap: 1rem;
    padding: 1rem;
  }

  .hero-copy-rail {
    padding: 1rem;
    border-radius: 28px;
  }

  .hero-status {
    min-height: 2.2rem;
    padding-inline: 0.7rem;
    font-size: 0.84rem;
  }

  .hero-card,
  .clarity-card,
  .experience-stage,
  .contact-form,
  .cta-band,
  .footer-panel {
    padding: 1rem;
  }

  .hero-capsule,
  .stage-visual,
  .hero-object {
    min-height: 20rem;
  }

  .object-shell {
    width: 100%;
  }

  .orbit-label--north {
    top: 0.85rem;
    left: 0.85rem;
  }

  .orbit-label--east {
    top: 4.7rem;
    right: 0.85rem;
  }

  .orbit-label--south {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .phone-screen {
    min-height: 32rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }

  .hero-actions .button {
    width: auto;
  }

  .mode-strip {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}
