/* palette: bg=#EEEDF5 fg=#1B26A3 accent=#FF2E9A */
/* fonts: display="Space Grotesk" body="Inter" mono="Orbitron" */

:root {
  --bg: #EEEDF5;
  --bg-alt: #FFFFFF;
  --bg-deep: #0E1140;
  --fg: #1B26A3;
  --fg-soft: #3142D6;
  --fg-ink: #0E1140;
  --muted: #6573B5;
  --accent: #FF2E9A;
  --accent-deep: #C71F77;
  --chrome-1: #C8CDE5;
  --chrome-2: #9BA3C8;
  --mint: #18C49A;
  --border: rgba(27, 38, 163, 0.12);
  --border-strong: rgba(27, 38, 163, 0.22);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Orbitron', ui-monospace, 'SF Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --chrome-grad: linear-gradient(180deg, #F4F5FB 0%, #C8CDE5 50%, #9BA3C8 100%);
  --magenta-grad: linear-gradient(135deg, #FF2E9A 0%, #B23DFF 100%);
}

*, *::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.75;
  color: var(--fg-ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ───── containers & rhythm ───── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.eyebrow--chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(27, 38, 163, 0.04), inset 0 1px 0 rgba(255,255,255,0.6);
}
.eyebrow--chip::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--magenta-grad);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.5), 0 0 0 1px rgba(255,46,154,0.25);
}
.eyebrow--chip .star { color: var(--accent); font-size: 10px; }

/* ───── header ───── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(238, 237, 245, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(27, 38, 163, 0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--magenta-grad);
  border-radius: 8px;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 2px 8px rgba(255, 46, 154, 0.25);
}
.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; gap: 36px; }
  .nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-ink);
    opacity: 0.78;
    transition: opacity .2s ease, color .2s ease;
  }
  .nav a:hover { opacity: 1; color: var(--fg); }
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 16px;
  background: var(--bg-deep);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 14px rgba(14, 17, 64, 0.25);
  transition: transform .2s var(--ease), box-shadow .2s ease;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(14, 17, 64, 0.32); }
.cta-btn__icon {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  font-family: var(--mono);
  font-size: 11px;
}
.cta-btn__sub { font-size: 10px; opacity: 0.7; display: block; line-height: 1; font-weight: 400; }
.cta-btn__main { display: block; line-height: 1.1; margin-top: 2px; }
.cta-btn--inline { padding: 14px 26px; }
.cta-btn--inline .cta-btn__main { margin: 0; }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-alt);
}
.menu-toggle span { width: 14px; height: 1.5px; background: var(--fg); display: block; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* ───── mobile menu ───── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--fg);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ───── hero ───── */
.hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% 30%;
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(255, 46, 154, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 60%, rgba(91, 92, 224, 0.20), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero__badge { margin: 0 auto 32px; display: inline-flex; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin: 0 auto 20px;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  background: var(--magenta-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 17px;
  color: var(--fg-soft);
  margin: 0 auto 40px;
  max-width: 540px;
}
.hero__visual {
  margin-top: 60px;
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(14, 17, 64, 0.35), 0 0 0 1px var(--border);
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  animation: heroZoom 8s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14, 17, 64, 0.78) 100%);
  display: flex; align-items: flex-end;
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
}
.hero__visual-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__visual-headline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  max-width: 28ch;
}

/* ───── tickerstrip ───── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.ticker__inner {
  display: flex;
  gap: clamp(40px, 6vw, 90px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker__item { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.ticker__item::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 46, 154, 0.18);
}

/* ───── manifesto ───── */
.manifesto {
  background: var(--bg-deep);
  color: #FFFFFF;
}
.manifesto__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.manifesto__quote {
  font-family: var(--mono);
  font-size: 48px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 12px;
  display: inline-block;
}
.manifesto__text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto;
}
.manifesto__text em {
  font-style: normal;
  background: var(--magenta-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.manifesto__sig {
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ───── section header ───── */
.s-head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 56px;
  max-width: 720px;
}
.s-head--center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.s-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
}
.s-head h2 em {
  font-style: normal;
  background: var(--magenta-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.s-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}

/* ───── services ───── */
.services { background: var(--bg-alt); }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  position: relative;
  padding: 28px 26px 30px;
  background: var(--bg);
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px -8px rgba(27, 38, 163, 0.14);
}
.service-card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--chrome-grad);
  border: 1px solid rgba(155,163,200,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 2px rgba(27,38,163,0.08);
  color: var(--fg);
}
.service-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  position: absolute; top: 22px; right: 22px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--fg);
  margin: 0;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.service-card ul {
  list-style: none;
  margin: auto 0 0; padding: 12px 0 0;
  border-top: 1px dashed var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.service-card ul li::before { content: "→ "; color: var(--accent); }

/* ───── work ───── */
.work__grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 900px) { .work__grid { grid-template-columns: 1.4fr 1fr; grid-auto-rows: minmax(420px, auto); } }
.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  min-height: 420px;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px -16px rgba(27,38,163,0.22); }
.work-card__media {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.work-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__chip {
  position: absolute; top: 18px; left: 18px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg);
}
.work-card__chip--mint { background: rgba(24,196,154,0.95); color: #fff; }
.work-card__body {
  padding: 24px 26px 26px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.work-card__meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--muted);
  text-transform: uppercase;
}
.work-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  color: var(--fg);
}
.work-card p { font-size: 14.5px; color: var(--muted); margin: 4px 0 0; }
.work-card__link {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.work-card__link::after { content: "→"; }

/* ───── process (chat-bubble inspired) ───── */
.process { background: var(--bg-alt); }
.process__grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  max-width: 880px; margin: 0 auto;
}
.process-step {
  display: flex; gap: 18px;
  padding: 24px 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  position: relative;
}
.process-step--right {
  background: var(--fg);
  color: #fff;
  border-color: transparent;
  margin-left: auto;
  max-width: 80%;
}
.process-step--right h3 { color: #fff; }
.process-step--right p { color: rgba(255,255,255,0.78); }
.process-step__num {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 13px; font-weight: 700;
  background: var(--chrome-grad);
  color: var(--fg);
  border: 1px solid rgba(155,163,200,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.process-step--right .process-step__num {
  background: var(--magenta-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.process-step__body { flex: 1; }
.process-step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 2px 0 6px;
  color: var(--fg);
}
.process-step p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ───── team / monogram avatars ───── */
.team__grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 720px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 28px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 16px 50px -12px rgba(27,38,163,0.16); }
.avatar {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 18px -6px rgba(27,38,163,0.30);
}
.avatar--magenta { background: var(--magenta-grad); }
.avatar--indigo  { background: linear-gradient(135deg, #5B5CE0 0%, #1B26A3 100%); }
.avatar--chrome  { background: var(--chrome-grad); color: var(--fg); }
.team-card__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.team-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  color: var(--fg);
}
.team-card p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.65; }
.team-card__list {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.team-card__list li {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-soft);
}

/* ───── CTA / contact form ───── */
.cta {
  background: var(--bg-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 46, 154, 0.30), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(91, 92, 224, 0.30), transparent 35%);
  filter: blur(40px);
  pointer-events: none;
}
.cta__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 960px) { .cta__inner { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; } }
.cta__text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #fff;
}
.cta__text h2 em {
  font-style: normal;
  background: var(--magenta-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta__text p { color: rgba(255,255,255,0.72); margin: 0 0 24px; max-width: 44ch; }
.cta__meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.cta__meta dt {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px;
}
.cta__meta dd { font-size: 15px; color: #fff; margin: 0; }

.form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 32px;
}
.form__row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form__row--two { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .form__row--two { grid-template-columns: 1fr 1fr; } }
.form label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  transition: border-color .25s ease;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.32); }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--accent); }
.form textarea { resize: vertical; min-height: 90px; }
.form__submit {
  margin-top: 14px;
  width: 100%;
  padding: 16px 28px;
  background: var(--magenta-grad);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 22px rgba(255,46,154,0.30);
  transition: transform .2s var(--ease), box-shadow .2s ease;
}
.form__submit:hover { transform: translateY(-1px); }
.form__submit::after { content: "→"; font-family: var(--mono); }
.form__note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.form__note a { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.3); }

/* ───── footer ───── */
.footer {
  background: var(--bg-alt);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 800px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--fg-ink); font-size: 15px; opacity: 0.78; transition: opacity .2s; }
.footer a:hover { opacity: 1; color: var(--fg); }
.footer__sig { font-size: 14px; color: var(--muted); margin-top: 14px; max-width: 30ch; line-height: 1.6; }
.footer__bottom {
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom a { font-size: 11px; }

/* ───── reveal ───── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ───── cookie popup ───── */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px;
  background: rgba(14, 17, 64, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 28px 30px;
  max-width: 480px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(14, 17, 64, 0.4);
}
.cookie-popup__label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.cookie-popup h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0 0 10px; color: var(--fg);
}
.cookie-popup p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 10px; margin-top: 22px; }
.cookie-popup__actions button {
  flex: 1;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  transition: background .2s ease, color .2s ease;
}
.cookie-popup__actions button:hover { background: var(--bg); }
.cookie-popup__actions button:last-child {
  background: var(--bg-deep);
  color: #fff;
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.cookie-popup__actions button:last-child:hover { background: var(--fg); }

/* ───── inner page hero ───── */
.page-hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(40px, 6vw, 80px);
  position: relative;
}
.page-hero__eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0;
  color: var(--fg);
  max-width: 18ch;
}
.page-hero h1 em { font-style: normal; background: var(--magenta-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p {
  margin-top: 24px;
  font-size: 18px;
  color: var(--fg-soft);
  max-width: 56ch;
}

/* ───── prose pages ───── */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-ink);
}
.prose h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 56px 0 18px;
  color: var(--fg);
}
.prose h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin: 32px 0 12px; color: var(--fg); }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 48px 0; }

/* ───── about page values ───── */
.values { background: var(--bg-alt); }
.values__grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 720px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values__grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg);
}
.value-card__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent);
}
.value-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: -0.018em; margin: 16px 0 10px; color: var(--fg);
}
.value-card p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ───── pricing/services detail rows ───── */
.svc-rows { display: flex; flex-direction: column; gap: 14px; max-width: 980px; margin: 0 auto; }
.svc-row {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  padding: 32px 30px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
@media (min-width: 760px) { .svc-row { grid-template-columns: 1fr 2fr 1fr; gap: 36px; align-items: start; } }
.svc-row:hover { transform: translateY(-3px); box-shadow: 0 16px 50px -12px rgba(27,38,163,0.16); }
.svc-row__num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; color: var(--muted);
}
.svc-row__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  color: var(--fg);
}
.svc-row__desc { color: var(--muted); margin: 8px 0 0; font-size: 15px; }
.svc-row__tags { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.svc-row__tags li {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-soft);
}
.svc-row__tags li::before { content: "● "; color: var(--accent); }

/* ───── contact page ───── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block h3 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 8px; font-weight: 500;
}
.contact-block p, .contact-block a { font-size: 17px; color: var(--fg); margin: 0; line-height: 1.6; }
.contact-form { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 22px; padding: 32px; }
.contact-form .form__row label { color: var(--muted); }
.contact-form input, .contact-form textarea, .contact-form select {
  border-bottom: 1px solid var(--border);
  color: var(--fg-ink);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(27,38,163,0.30); }
