/* palette: bg=#0C0D0F fg=#E9EAEC accent=#18E6E0 */
/* fonts: display="Jersey 25" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #0c0d0f;
  --bg-alt: #18191c;
  --bg-grey: #34363b;
  --fg: #e9eaec;
  --fg-soft: #b9bbc0;
  --muted: #74777e;
  --accent: #18e6e0;
  --accent-deep: #0fb6b1;
  --magenta: #ff2d9b;
  --lime: #c4ff2d;
  --border: rgba(233, 234, 236, 0.14);
  --border-soft: rgba(233, 234, 236, 0.08);
  --serif: 'Jersey 25', ui-monospace, monospace;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* Global CRT scanline overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.045) 3px,
    rgba(0, 0, 0, 0) 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

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

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
[style*="--i:"] { transition-delay: calc(var(--i) * 80ms); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.4s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.brand b { color: var(--accent); font-weight: 400; }

.nav-pill {
  display: none;
  align-items: center;
  gap: 4px;
  background: rgba(233, 234, 236, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: 9999px;
  padding: 7px 8px;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.4);
}
.header[data-scrolled="true"] .nav-pill {
  box-shadow: 0 10px 34px -8px rgba(0, 0, 0, 0.55);
}
.nav-pill a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #16171a;
  padding: 7px 16px;
  border-radius: 9999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-pill a:hover { background: #16171a; color: var(--accent); }
.nav-pill a[aria-current="page"] { background: #16171a; color: var(--accent); }
@media (min-width: 880px) { .nav-pill { display: inline-flex; } }

.header__cta {
  display: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 11px 20px;
  border-radius: 9999px;
  color: var(--fg);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.header__cta:hover { border-color: var(--accent); color: var(--accent); }
@media (min-width: 880px) { .header__cta { display: inline-block; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0 12px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 880px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 11vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--fg);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__meta {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg-grey);
  margin-top: -76px;
  padding-top: 76px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(1) contrast(1.05) blur(2px);
  animation: heroZoom 9s var(--ease) both;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,13,15,0.5) 0%, rgba(52,54,59,0.1) 40%, rgba(12,13,15,0.85) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(24,230,224,0) 0, rgba(24,230,224,0) 5px, rgba(24,230,224,0.025) 6px);
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px 56px;
}
@media (min-width: 768px) { .hero__inner { padding: 0 32px 72px; } }

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: auto;
  padding-top: clamp(40px, 12vh, 120px);
}
.hero__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
  color: var(--fg-soft);
  line-height: 1.9;
  max-width: 230px;
}
.hero__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 14vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin: 18px 0 0;
  text-transform: uppercase;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  display: inline-block;
  text-shadow: 2px 0 var(--magenta), -2px 0 var(--accent);
  animation: rgbShift 4.5s steps(1) infinite;
}
@keyframes rgbShift {
  0%, 92%, 100% { text-shadow: 2px 0 var(--magenta), -2px 0 var(--accent); }
  94% { text-shadow: -3px 0 var(--magenta), 3px 0 var(--accent); transform: translateX(2px); }
  96% { text-shadow: 3px 0 var(--accent), -3px 0 var(--magenta); transform: translateX(-2px); }
}
.hero__sub {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}
.hero__desc {
  max-width: 440px;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.7;
}
.hero__scan {
  position: absolute;
  left: 20px;
  top: 50%;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 4rem);
  color: rgba(233,234,236,0.06);
  z-index: 2;
  user-select: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 9999px;
  background: var(--accent);
  color: #0a0a0b;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 0 0 rgba(24,230,224,0);
}
.btn:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -6px rgba(24,230,224,0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: transparent; border-color: var(--accent); color: var(--accent); box-shadow: none; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ---------- Section heads ---------- */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg);
}
.sec-head p { max-width: 540px; color: var(--fg-soft); font-size: 17px; }
@media (min-width: 880px) {
  .sec-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .sec-head--split h2 { flex: 1; }
  .sec-head--split p { margin-bottom: 6px; }
}

/* ---------- Manifesto / CRT band ---------- */
.manifesto {
  position: relative;
  background: #060708;
  overflow: hidden;
  text-align: center;
}
.manifesto__glow {
  position: absolute;
  left: 50%;
  bottom: -40%;
  transform: translateX(-50%);
  width: 140%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(24,230,224,0.55) 0%, rgba(24,230,224,0.12) 35%, rgba(24,230,224,0) 70%);
  filter: blur(8px);
  pointer-events: none;
}
.manifesto__glow::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 38%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 30px 6px var(--accent);
}
.manifesto .container { position: relative; z-index: 2; }
.manifesto blockquote {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.manifesto blockquote em { font-style: normal; color: var(--accent); }
.manifesto cite {
  display: block;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
.manifesto__hash {
  position: absolute;
  left: 24px;
  top: 48px;
  font-family: var(--serif);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
  z-index: 2;
}

/* ---------- Services grid ---------- */
.services { background: var(--bg-alt); }
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 640px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: 1fr 1fr 1fr; } }
.svc {
  background: var(--bg-alt);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.3s var(--ease);
}
.svc:hover { background: #1f2024; }
.svc__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.svc h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.svc p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.65; }
.svc ul {
  list-style: none;
  margin: auto 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--border-soft);
  border-radius: 9999px;
}

/* ---------- Work / cases ---------- */
.work { background: var(--bg); }
.cases { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 880px) { .cases { grid-template-columns: 1fr 1fr; gap: 32px; } }
.case {
  position: relative;
  border: 1px solid var(--border-soft);
  background: var(--bg-alt);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.case:hover { border-color: var(--magenta); transform: translateY(-4px); }
.case__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.case__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.7s var(--ease);
}
.case:hover .case__media img { transform: scale(1.05); }
.case__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,45,155,0.08), rgba(12,13,15,0.55));
  mix-blend-mode: screen;
}
.case__body { padding: 24px 26px 30px; }
.case__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
}
.case h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 12px 0 10px;
}
.case p { color: var(--fg-soft); font-size: 15.5px; margin-bottom: 18px; }
.case__meta {
  display: flex;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

/* ---------- Process ---------- */
.process { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--bg-alt);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.step__n {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
}
.step h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.step p { color: var(--fg-soft); font-size: 15px; line-height: 1.65; }

/* ---------- Stats ---------- */
.stats { background: var(--accent); color: #07100f; }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__n {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.stat__l {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 10px;
  color: rgba(7,16,15,0.72);
}

/* ---------- CTA / form ---------- */
.cta { background: #060708; position: relative; overflow: hidden; }
.cta::before {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,45,155,0.18), rgba(255,45,155,0) 65%);
  pointer-events: none;
}
.cta__grid { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 2; }
@media (min-width: 940px) { .cta__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}
.cta__lead { margin: 24px 0; color: var(--fg-soft); font-size: 17px; max-width: 420px; }
.cta__info { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.cta__info div { display: flex; flex-direction: column; gap: 3px; }
.cta__info span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cta__info a, .cta__info p { color: var(--fg); font-size: 16px; }

.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: rgba(233,234,236,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(24,230,224,0.05);
}
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { align-self: flex-start; margin-top: 6px; }
.form__consent { font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__consent a { color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border-soft); padding: clamp(56px, 8vw, 96px) 0 36px; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; } }
.footer__brand { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4rem); text-transform: uppercase; line-height: 0.9; }
.footer__brand b { color: var(--accent); font-weight: 400; }
.footer__brand + p { margin-top: 18px; max-width: 360px; color: var(--fg-soft); font-size: 15px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col a, .footer__col p { display: block; color: var(--fg-soft); font-size: 15px; padding: 5px 0; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom a:hover { color: var(--accent); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(120px, 18vh, 200px) 0 clamp(56px, 8vw, 96px);
  background: var(--bg-grey);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(24,230,224,0) 0, rgba(24,230,224,0) 5px, rgba(24,230,224,0.03) 6px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 18px 0 0;
}
.page-hero h1 em { font-style: normal; color: var(--accent); text-shadow: 2px 0 var(--magenta), -2px 0 var(--accent); }
.page-hero p { margin-top: 26px; max-width: 560px; color: var(--fg-soft); font-size: 18px; }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; margin: 48px 0 16px; }
.prose h3 { font-family: var(--sans); font-weight: 600; font-size: 19px; margin: 32px 0 10px; }
.prose p { color: var(--fg-soft); margin-bottom: 16px; font-size: 16.5px; line-height: 1.78; }
.prose ul { color: var(--fg-soft); padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose strong { color: var(--fg); }

/* ---------- About specifics ---------- */
.values { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 768px) { .values { grid-template-columns: 1fr 1fr; } }
.value { background: var(--bg); padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 12px; }
.value__k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--magenta); text-transform: uppercase; }
.value h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); text-transform: uppercase; }
.value p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.65; }

.team { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 640px) { .team { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team { grid-template-columns: 1fr 1fr 1fr; } }
.member { background: var(--bg-alt); padding: clamp(28px, 3vw, 36px); display: flex; flex-direction: column; gap: 16px; }
.avatar {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 26px; color: #0a0a0b;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.member h3 { font-family: var(--sans); font-weight: 600; font-size: 18px; }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-top: -8px; }
.member p { color: var(--fg-soft); font-size: 14.5px; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-soft); }
.faq details { border-bottom: 1px solid var(--border-soft); padding: 22px 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 24px; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 14px; color: var(--fg-soft); font-size: 16px; line-height: 1.72; max-width: 720px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 880px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote { border: 1px solid var(--border-soft); padding: clamp(28px, 4vw, 40px); background: var(--bg-alt); display: flex; flex-direction: column; gap: 20px; }
.quote__mark { font-family: var(--serif); font-size: 52px; color: var(--accent); line-height: 0.6; }
.quote blockquote { margin: 0; font-size: 18px; line-height: 1.6; color: var(--fg); }
.quote__by { margin-top: auto; }
.quote__by strong { display: block; font-size: 15px; }
.quote__by span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* ---------- Contact details grid ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); margin-top: 40px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-cell { background: var(--bg); padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column; gap: 8px; }
.contact-cell span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.contact-cell p, .contact-cell a { color: var(--fg-soft); font-size: 16px; line-height: 1.6; }

/* ---------- Thanks ---------- */
.thanks { min-height: 80vh; display: flex; align-items: center; text-align: center; }
.thanks h1 { font-family: var(--serif); font-size: clamp(3rem, 12vw, 8rem); text-transform: uppercase; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { max-width: 480px; margin: 24px auto 32px; color: var(--fg-soft); font-size: 18px; }

/* ---------- Cookie popup ---------- */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 30px 32px;
  max-width: 460px;
  border-radius: 6px;
}
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.cookie-popup__card h3 { font-family: var(--serif); font-size: 28px; text-transform: uppercase; margin: 12px 0 10px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.65; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 24px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.cookie-popup__actions button:first-child:hover { border-color: var(--fg-soft); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #0a0a0b; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
