/* palette: bg=#000000 fg=#FFFFFF accent=#C6FF3D */
/* fonts: display="Orbitron" body="Inter" mono="Space Mono" */

:root {
  --bg: #000000;
  --bg-alt: #0A0A0A;
  --bg-card: #0F0F10;
  --fg: #FFFFFF;
  --fg-soft: #E8E8E8;
  --muted: #6B7178;
  --muted-soft: #3A3D42;
  --accent: #C6FF3D;
  --accent-deep: #9FD11A;
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.28);
  --display: 'Orbitron', ui-sans-serif, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::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);
  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; }

::selection { background: var(--accent); color: #000; }

/* ===== outer frame — rounded with corner notch (distinctive reference DNA) ===== */
.shell {
  position: relative;
  min-height: 100vh;
  padding: 16px;
}
.shell::before {
  content: "";
  position: fixed;
  inset: 16px;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  pointer-events: none;
  z-index: 80;
  clip-path: polygon(
    0 0,
    calc(100% - 110px) 0,
    calc(100% - 90px) 18px,
    100% 18px,
    100% 100%,
    0 100%
  );
}
@media (max-width: 720px) {
  .shell { padding: 10px; }
  .shell::before { inset: 10px; border-radius: 20px; clip-path: none; }
}

/* ===== right-edge vertical badge ===== */
.edge-badge {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  background: var(--fg);
  color: var(--bg);
  width: 38px;
  padding: 22px 0;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.edge-badge span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
}
.edge-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
@media (max-width: 900px) { .edge-badge { display: none; } }

/* ===== header (sticky) ===== */
.header {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 36px;
  margin: 0 28px;
  transition: padding .25s var(--ease);
}
.header[data-scrolled="true"] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand-mark {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--accent);
  display: inline-block;
  transform: rotate(45deg);
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
}
.nav-pill a {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-pill a:hover { color: var(--accent); }
.nav-pill a[aria-current="page"] {
  background: var(--fg);
  color: var(--bg);
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px; height: 1.5px;
  background: var(--fg);
  transition: transform .25s var(--ease), opacity .25s;
}
.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(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(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-menu a:hover { color: var(--accent); }
@media (max-width: 880px) {
  .nav-pill { display: none; }
  .menu-toggle { display: block; }
  .header { margin: 0 8px; padding: 14px 18px; }
}

/* ===== container ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) { .container { padding: 0 22px; } }

/* ===== hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 32px);
  padding: 48px 60px 60px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}
.hero__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hero__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 8.4vw, 8.6rem);
  letter-spacing: -0.005em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}
.hero__name em {
  font-style: normal;
  color: var(--accent);
}
.hero__role {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--fg-soft);
  letter-spacing: 0.04em;
}
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}
.orb {
  position: relative;
  width: clamp(280px, 38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 38%, rgba(255,255,255,0.04) 39%, transparent 41%),
    radial-gradient(circle at center, transparent 56%, rgba(255,255,255,0.08) 58%, transparent 62%);
  animation: orbSpin 28s linear infinite;
}
.orb::before, .orb::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  animation: orbSpin 18s linear infinite reverse;
}
.orb::after {
  inset: 18%;
  border-style: dotted;
  border-color: rgba(255,255,255,0.32);
  animation-duration: 36s;
}
.orb__core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.orb__core svg {
  width: 64px; height: 64px;
  filter: drop-shadow(0 0 16px rgba(198,255,61,0.45));
}
@keyframes orbSpin { to { transform: rotate(360deg); } }

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.hero__caption {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
  margin-left: auto;
  line-height: 1.6;
}
.hero__tagline {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 7vw, 6.5rem);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
.hero__tagline span {
  display: inline-block;
}
.hero__tagline em {
  font-style: normal;
  color: var(--accent);
}

@media (max-width: 720px) {
  .hero { padding: 32px 22px 40px; min-height: auto; }
  .hero__visual { min-height: 260px; margin: 32px 0; }
  .hero__caption { text-align: left; margin-left: 0; margin-bottom: 18px; }
  .hero__bottom { grid-template-columns: 1fr; }
}

/* ===== section base ===== */
section { position: relative; }
.section {
  padding: clamp(80px, 11vw, 150px) 0;
}
.section--tight { padding: clamp(60px, 8vw, 110px) 0; }
.section--alt { background: var(--bg-alt); }
.section--inverse { background: var(--fg); color: var(--bg); }
.section--inverse .eyebrow { color: var(--muted-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: currentColor;
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 620px;
}

/* ===== manifesto / pull quote ===== */
.manifesto {
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
}
.manifesto__quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.4vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 1000px;
  margin: 0 auto;
  text-transform: uppercase;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__attr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 36px;
}

/* ===== services grid ===== */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.service {
  background: var(--bg);
  padding: 48px 44px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  min-height: 360px;
  transition: background .35s var(--ease);
}
.service:hover { background: var(--bg-card); }
.service__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.service__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: -0.005em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
}
.service__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
}
@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; }
  .service { padding: 36px 26px; min-height: 0; }
}

/* ===== work / case studies ===== */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.work-grid--3 { grid-template-columns: repeat(3, 1fr); }
.case {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.case:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.case__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.case__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  filter: grayscale(0.3) contrast(1.05);
}
.case:hover .case__image img { transform: scale(1.05); filter: none; }
.case__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
  pointer-events: none;
}
.case__body { padding: 26px 28px 30px; }
.case__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.case__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.case__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 880px) {
  .work-grid, .work-grid--3 { grid-template-columns: 1fr; }
}

/* ===== process / steps ===== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.step__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
}
.step__body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
  .step { border-right: 0; }
}

/* ===== team (monogram, no faces) ===== */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.member {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 340px;
}
.avatar {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bg);
}
.avatar--a { background: var(--accent); }
.avatar--b { background: #fff; }
.avatar--c { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }
.avatar--d { background: #FF7A45; color: #fff; }
.avatar--e { background: #4DC3FF; color: #051a2b; }
.member__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0;
}
.member__role {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.member__bio {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  margin-top: auto;
}
@media (max-width: 880px) { .team { grid-template-columns: 1fr; } }

/* ===== stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 80px 0;
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat__value {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg);
  display: block;
  margin-bottom: 14px;
}
.stat__value 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);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ===== FAQ ===== */
.faq {
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}
.faq__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.faq__q {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.2;
}
.faq__a {
  font-size: 15.5px;
  color: var(--fg-soft);
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
}
@media (max-width: 720px) {
  .faq__item { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== big CTA band ===== */
.cta-band {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  background: var(--accent);
  color: #000;
  position: relative;
  overflow: hidden;
}
.cta-band__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.7;
}
.cta-band__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 auto 36px;
  max-width: 14ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #000;
  color: #fff;
  transition: transform .25s var(--ease), background .25s;
}
.btn:hover { transform: translateY(-2px); background: #1a1a1a; }
.btn--outline {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.btn--outline:hover { background: var(--fg); color: var(--bg); }
.btn__arrow { font-size: 16px; }

/* ===== contact / form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-block__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-block__value {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  line-height: 1.5;
}
.contact-block__value a:hover { color: var(--accent); }
form.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-bottom-color: var(--accent);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-actions { display: flex; gap: 16px; align-items: center; margin-top: 8px; }
.form-actions .btn { background: var(--accent); color: #000; }
.form-actions .btn:hover { background: var(--fg); }
.form-fine {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.form-fine a { text-decoration: underline; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }

/* ===== marquee / ticker ===== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 56px;
  animation: tickerScroll 38s linear infinite;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 56px; }
.ticker__track span::after { content: "◆"; color: var(--accent); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== footer ===== */
.footer {
  background: var(--bg);
  padding: 80px 60px 32px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 18px;
}
.footer__tag {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
}
.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; transition: color .25s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .footer { padding: 60px 22px 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { 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(0, 0, 0, 0.55);
  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);
  border: 1px solid var(--border-strong);
  padding: 32px 34px;
  max-width: 520px;
  width: 100%;
  border-radius: 16px;
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-popup__card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.cookie-popup__card p {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.6;
  margin: 0;
}
.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fg);
  transition: background .2s, color .2s;
}
.cookie-popup__actions button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-popup__actions button:last-child {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.cookie-popup__actions button:last-child:hover { background: var(--fg); color: #000; border-color: var(--fg); }

/* ===== legal page utility ===== */
.legal {
  padding: 120px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 48px 0 14px;
}
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--fg-soft); }
.legal ul { padding-left: 20px; }
.legal__date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ===== about page hero variant ===== */
.page-hero {
  padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
  margin: 0;
  max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero__lede {
  margin-top: 36px;
  font-size: 19px;
  color: var(--fg-soft);
  max-width: 640px;
  line-height: 1.6;
}

/* about — split text */
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.split p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--fg-soft);
  margin: 0 0 18px;
  max-width: 60ch;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.value {
  background: var(--bg);
  padding: 40px 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.value__title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0;
}
.value__body { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin: 0; }
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
