/* palette: bg=#FFFFFF fg=#1D1D1F accent=#2D5BD9 */
/* fonts: display="Space Grotesk" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F5F7;
  --bg-deep: #0B1228;
  --fg: #1D1D1F;
  --fg-soft: #2C2C2E;
  --muted: #6E6E73;
  --line: #E5E5EA;
  --accent: #2D5BD9;
  --accent-deep: #1B3FA8;
  --accent-soft: #EAF0FF;
  --border: rgba(29, 29, 31, 0.10);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease); }
a:hover { opacity: 0.7; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
p { margin: 0 0 1.2em; color: var(--fg-soft); }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-block;
}
.eyebrow--muted { color: var(--muted); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.6em;
}
.h-display {
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.h-display em {
  font-style: normal;
  color: var(--accent);
  font-weight: 400;
}
h2.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-deep);
  opacity: 1;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--fg);
  opacity: 1;
}
.btn--invert {
  background: #fff;
  color: var(--bg-deep);
}
.btn--invert:hover { background: var(--accent-soft); opacity: 1; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
}
.text-link .arrow { transition: transform .3s var(--ease); }
.text-link:hover { opacity: 1; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 720px) { .header__inner { padding: 14px 20px; } }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, var(--accent), #6FA1FF 50%, var(--accent));
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute; inset: 7px;
  border-radius: 50%;
  background: var(--bg);
}
.brand__mark::before {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  top: 11px; left: 11px;
  z-index: 1;
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  font-size: 14.5px;
  font-weight: 450;
  color: var(--fg-soft);
}
.nav a[aria-current="page"] { color: var(--accent); }
.header__cta { display: inline-flex; }
.header__cta .btn { padding: 10px 18px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  width: 20px; height: 1.5px;
  background: var(--fg);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 40px 24px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FB 60%, #EAF0FF 100%);
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 80px);
}
@media (max-width: 720px) { .hero__inner { padding: 0 20px; } }
.hero__copy { max-width: 920px; }
.hero h1 {
  margin: 24px 0 28px;
}
.hero__lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero__visual {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  margin-top: 24px;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__brandmark {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(45, 91, 217, 0.05);
  letter-spacing: -0.04em;
  bottom: -60px;
  left: -20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ---------- Hero metrics strip ---------- */
.hero__strip {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.hero__strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__strip-inner span strong {
  color: var(--fg);
  font-weight: 500;
  margin-right: 6px;
}

/* ---------- Section base ---------- */
section {
  padding: clamp(80px, 12vw, 160px) 0;
}
section.tight { padding: clamp(64px, 9vw, 120px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 64px;
  max-width: var(--container);
}
@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
}
.section-head p { max-width: 48ch; }

/* ---------- Manifesto / quote ---------- */
.manifesto {
  background: var(--bg-deep);
  color: #fff;
  text-align: center;
}
.manifesto .container { max-width: 960px; }
.manifesto .eyebrow { color: #6FA1FF; }
.manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #F5F5F7;
  margin: 24px 0 0;
}
.manifesto__sig {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9CA4B7;
}

/* ---------- Services grid ---------- */
.services {
  background: var(--bg-alt);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: var(--bg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background .3s var(--ease);
}
.service-card:hover { background: #FAFAFC; }
.service-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
}
.service-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  margin: 0;
}
.service-card p { font-size: 15.5px; line-height: 1.65; }
.service-card .text-link { margin-top: auto; padding-top: 16px; }

/* ---------- Featured project ---------- */
.featured {
  background: var(--bg);
}
.featured__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-deep);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 480px;
}
@media (min-width: 900px) {
  .featured__card { grid-template-columns: 1fr 1.1fr; }
}
.featured__copy {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.featured__copy .eyebrow { color: #6FA1FF; }
.featured__copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
.featured__copy p { color: #C7CCDA; }
.featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9CA4B7;
  margin-top: 8px;
}
.featured__meta strong { color: #fff; font-weight: 500; margin-right: 6px; }
.featured__visual {
  position: relative;
  background: linear-gradient(140deg, #1A2B5C 0%, #2D5BD9 100%);
  overflow: hidden;
  min-height: 320px;
}
.featured__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: luminosity;
}

/* ---------- Capabilities / process ---------- */
.process {
  background: var(--bg);
}
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process__grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step:last-child { border-right: 0; }
@media (max-width: 1023px) {
  .process-step:nth-child(even) { border-right: 0; }
}
@media (max-width: 759px) {
  .process-step { border-right: 0; padding-right: 0; }
}
.process-step__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.process-step h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 24px 0 10px;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--bg-alt);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 760px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Team / principals ---------- */
.team {
  background: var(--bg);
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }
.person {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.person:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(45, 91, 217, 0.25);
}
.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #fff;
}
.avatar--a { background: linear-gradient(135deg, #2D5BD9, #6FA1FF); }
.avatar--b { background: linear-gradient(135deg, #0B1228, #2D5BD9); }
.avatar--c { background: linear-gradient(135deg, #1B3FA8, #4F7DE6); }
.avatar--d { background: linear-gradient(135deg, #6FA1FF, #2D5BD9); }
.person h3 { font-size: 1.1rem; margin: 0; }
.person__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.person p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------- Logos strip ---------- */
.logos {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}
.logos__row span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--muted);
  opacity: 0.7;
}

/* ---------- CTA section ---------- */
.cta {
  background: var(--bg-deep);
  color: #fff;
  text-align: center;
}
.cta h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 16px auto 24px;
  max-width: 18ch;
}
.cta .eyebrow { color: #6FA1FF; }
.cta p { color: #C7CCDA; max-width: 52ch; margin: 0 auto 36px; }
.cta__row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact form ---------- */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 640px;
}
@media (min-width: 720px) {
  .contact-form { grid-template-columns: 1fr 1fr; }
  .contact-form .full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--fg);
  transition: border .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  grid-column: 1 / -1;
}
.form-foot small { color: var(--muted); font-size: 12.5px; max-width: 46ch; }

/* ---------- Contact layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
}
.contact-meta { display: flex; flex-direction: column; gap: 28px; }
.contact-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.contact-block h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  font-weight: 500;
}
.contact-block p, .contact-block address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0;
}

/* ---------- About / values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
}
.value h3 { font-size: 1.15rem; font-weight: 500; margin: 16px 0 12px; }
.value p { font-size: 14.5px; line-height: 1.6; margin: 0; color: var(--muted); }
.value__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-family: var(--serif); font-weight: 500;
}

/* ---------- About hero ---------- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #FFFFFF, #F5F7FB);
}
.page-hero__inner { max-width: 980px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--fg-soft); max-width: 56ch; }

/* ---------- About story / image+text ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split--reverse > *:first-child { order: 2; }
}
.split__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.015em;
  color: var(--fg);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 60px 28px 0;
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Service detail rows ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .svc-row { grid-template-columns: 0.7fr 1.3fr; gap: 80px; }
}
.svc-row__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-row h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.svc-row__points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.svc-row__points li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.6;
}
.svc-row__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
  font-size: 14.5px;
  color: var(--muted);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 820px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { color: var(--fg-soft); font-size: 14.5px; }
.footer__brand p { color: var(--muted); margin-top: 18px; max-width: 36ch; font-size: 14px; line-height: 1.55; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__visual img { transition: none; animation: none; opacity: 1; transform: none; }
}

/* ---------- Cookie popup ---------- */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(11, 18, 40, 0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 28px 30px;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 20px 60px -10px rgba(11, 18, 40, 0.3);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.cookie-popup h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 10px;
}
.cookie-popup p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }
.cookie-popup__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cookie-popup__actions button {
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cookie-popup__actions button:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }
