/* palette: bg=#EFEFEF fg=#0A0A0A accent=#1B6FF5 */
/* fonts: display="Inter Tight" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #EFEFEF;
  --bg-alt: #FFFFFF;
  --bg-deep: #0A0A0A;
  --fg: #0A0A0A;
  --fg-soft: #1F1F22;
  --muted: #6E6E73;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.18);
  --accent: #1B6FF5;
  --accent-deep: #0E54C8;
  --accent-soft: rgba(27, 111, 245, 0.12);
  --pill: rgba(255, 255, 255, 0.7);
  --display: 'Inter Tight', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

*, *::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.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
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, h5 { margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -0.03em; line-height: 1.02; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ===== HEADER (centered pill nav) ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: padding 0.3s var(--ease);
}
.header > * { pointer-events: auto; }
.header[data-scrolled="true"] { padding-top: 12px; }

.nav-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 760px;
}
.nav-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--fg);
  opacity: 0.75;
  margin-bottom: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px 6px 18px;
  background: var(--pill);
  border: 1px solid var(--line);
  border-radius: 9999px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s var(--ease);
}
.header[data-scrolled="true"] .nav { box-shadow: 0 12px 32px -10px rgba(0,0,0,0.12); }

.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 9999px;
  background: var(--bg);
  margin-right: 14px;
  position: relative;
}
.nav-brand svg { width: 16px; height: 16px; display: block; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 9999px;
  color: var(--fg);
  transition: background 0.2s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(10,10,10,0.06); }

.nav-pill-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 18px;
  background: var(--pill);
  border: 1px solid var(--line);
  border-radius: 9999px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  font-size: 12px;
  color: var(--muted);
}
.nav-pill-secondary .dot {
  width: 22px; height: 22px;
  border-radius: 9999px;
  border: 1.5px solid var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.nav-pill-secondary .dot svg { width: 10px; height: 10px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 9999px;
  background: var(--pill);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--fg);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0; width: 18px; height: 1.5px;
  background: var(--fg);
  transition: transform 0.25s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 96px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-menu[data-open="true"] { transform: none; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 880px) {
  .nav, .nav-pill-secondary { display: none; }
  .header { justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .nav-brand-mobile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--pill);
    border: 1px solid var(--line);
    border-radius: 9999px;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    font-family: var(--display);
    font-size: 14px;
  }
  .nav-brand-mobile svg { width: 14px; height: 14px; }
}
@media (min-width: 881px) {
  .nav-brand-mobile { display: none; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 140px 0 56px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 80px 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero__media img {
  max-height: 78vh;
  width: auto;
  object-fit: contain;
  animation: heroZoom 9s var(--ease) both;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
}
@keyframes heroZoom {
  from { transform: scale(1.08); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 32px;
}
.hero__eyebrow {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 16ch;
}
.hero__title em { font-style: normal; color: var(--fg); }

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  justify-self: start;
}
.hero__cta .label {
  font-family: var(--display);
  font-size: 14px;
  color: var(--fg);
}
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--sans);
  background: transparent;
  border: 1.4px solid var(--accent);
  color: var(--accent);
  border-radius: 9999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.tag:hover { background: var(--accent); color: #fff; }
.tag sup { font-size: 9px; margin-right: 2px; vertical-align: super; }
.tag--filled { background: var(--accent); color: #fff; }
.tag--filled:hover { background: var(--accent-deep); }

.hero__corner {
  position: absolute;
  left: 32px; bottom: 56px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__corner .arrow {
  width: 28px; height: 28px;
  border-radius: 9999px;
  background: var(--fg);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__corner .arrow svg { width: 12px; height: 12px; }

@media (max-width: 880px) {
  .hero { min-height: 92vh; padding: 130px 0 40px; }
  .hero__media { inset: 70px 0 250px; }
  .hero__media img { max-height: 50vh; }
  .hero__content { grid-template-columns: 1fr; gap: 24px; }
  .hero__corner { left: 20px; bottom: 24px; }
}

/* ===== APPROACH (manifesto) ===== */
.approach {
  position: relative;
  padding: clamp(120px, 18vw, 220px) 0 clamp(80px, 12vw, 140px);
  background: var(--bg);
  overflow: hidden;
}
.approach__heading {
  text-align: center;
  font-family: var(--display);
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 36px;
}
.approach__title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 12vw, 10rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--accent);
  text-align: center;
  max-width: 14ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.approach__image {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 30vw, 380px);
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
}
.approach__chip {
  position: absolute;
  left: 6%; top: 50%;
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.approach__chip svg { width: 22px; height: 22px; color: #fff; }
.approach__foot {
  margin-top: clamp(80px, 12vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.approach__rd p:first-child {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 30ch;
}
.approach__rd p:last-child {
  font-size: 17px;
  margin-top: 8px;
  font-weight: 500;
}
.approach__explore { justify-self: end; text-align: right; }
.approach__explore .label { font-size: 14px; margin-bottom: 12px; }

@media (max-width: 720px) {
  .approach__chip { display: none; }
  .approach__foot { grid-template-columns: 1fr; gap: 32px; }
  .approach__explore { justify-self: start; text-align: left; }
}

/* ===== DARK BAND / MARQUEE ===== */
.band {
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(80px, 10vw, 120px) 0;
}
.band__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
}
.band__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.band__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #fff;
  max-width: 22ch;
}
.band__meta {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 38ch;
}
.band__meta strong { color: #fff; font-weight: 500; }

.marquee {
  margin-top: clamp(60px, 8vw, 100px);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 26px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.75);
}
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 720px) {
  .band__inner { grid-template-columns: 1fr; }
}

/* ===== MODULES GRID ===== */
.section { padding: clamp(100px, 14vw, 160px) 0; background: var(--bg); }
.section--alt { background: var(--bg-alt); }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.section-head__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 1;
  grid-column: 1 / -1;
  margin-top: 8px;
}
.section-head__title em { font-style: normal; color: var(--accent); }
.section-head__meta {
  grid-column: 1 / -1;
  max-width: 56ch;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 4px;
}

.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.module:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.15);
  border-color: var(--line-strong);
}
.module__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.module__name {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.module__name em { font-style: normal; color: var(--accent); }
.module__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.module__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.module__foot .tag { padding: 6px 12px; font-size: 11.5px; }

@media (max-width: 980px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .modules { grid-template-columns: 1fr; } .section-head { grid-template-columns: 1fr; } }

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--fg);
}
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  max-width: 22ch;
  line-height: 1.5;
}
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* ===== PROCESS ===== */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.process__list { display: flex; flex-direction: column; }
.process__item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
}
.process__item:last-child { border-bottom: 0; }
.process__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.process__title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.process__desc { font-size: 16px; color: var(--muted); line-height: 1.6; }

.process__side {
  background: var(--bg-deep);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 120px;
}
.process__side h3 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: #fff;
}
.process__side h3 em { font-style: normal; color: var(--accent); }
.process__side p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.process__side .tag { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #fff; }
.process__side .tag:hover { background: var(--accent); border-color: var(--accent); }

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr; gap: 40px; }
  .process__side { position: static; }
}

/* ===== PRICING / PLANS ===== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plan--feature {
  background: var(--bg-deep);
  color: #fff;
  border-color: transparent;
}
.plan--feature .plan__name, .plan--feature .plan__price { color: #fff; }
.plan--feature .plan__desc, .plan--feature li { color: rgba(255,255,255,0.7); }
.plan__name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.plan__price {
  font-family: var(--display);
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan__price small { font-size: 14px; color: var(--muted); letter-spacing: 0; }
.plan--feature .plan__price small { color: rgba(255,255,255,0.55); }
.plan__desc { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.plan ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--fg-soft); }
.plan li { padding-left: 22px; position: relative; line-height: 1.5; }
.plan li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: var(--accent);
}
.plan__cta {
  margin-top: auto;
  padding: 14px 22px;
  border-radius: 9999px;
  border: 1px solid var(--line-strong);
  text-align: center;
  font-size: 14px;
  transition: all 0.2s var(--ease);
}
.plan--feature .plan__cta { background: var(--accent); border-color: var(--accent); color: #fff; }
.plan__cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.plan--feature .plan__cta:hover { background: #fff; color: var(--bg-deep); border-color: #fff; }

@media (max-width: 880px) { .plans { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__num { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.faq__q {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.faq__a { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 60ch; }

/* ===== TESTIMONIALS ===== */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quote {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote__mark {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.5;
  color: var(--accent);
}
.quote__text {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.32;
  color: var(--fg);
}
.quote__who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.quote__who div { display: flex; flex-direction: column; }
.quote__who strong { font-weight: 500; font-size: 15px; }
.quote__who span { font-size: 13px; color: var(--muted); }
@media (max-width: 880px) { .quotes { grid-template-columns: 1fr; } }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: #fff;
  max-width: 16ch;
}
.cta-band__title em { font-style: normal; color: var(--accent); }
.cta-band__row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__row p { color: rgba(255,255,255,0.6); max-width: 40ch; font-size: 15px; line-height: 1.6; }
.cta-band__row .tag-row .tag { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band__row .tag-row .tag:hover { background: var(--accent); border-color: var(--accent); }

/* ===== FORM ===== */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
}
.form .field--wide { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  font: inherit;
  font-size: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--fg);
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { min-height: 140px; resize: vertical; }
.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 9999px;
  font-size: 15px;
  justify-self: start;
  transition: background 0.2s var(--ease);
}
.form__submit:hover { background: var(--accent); }
.form__legal { font-size: 13px; color: var(--muted); line-height: 1.55; }
.form__legal a { color: var(--fg); text-decoration: underline; }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* ===== CONTACT LAYOUT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-block h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 400;
}
.contact-block p {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.contact-block a:hover { color: var(--accent); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== TEAM (text-only monogram) ===== */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.member {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}
.member__avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}
.member__name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.member__role { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 4px; }
.member__bio { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-top: 4px; }
@media (max-width: 980px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.7);
  padding: clamp(80px, 10vw, 120px) 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__brand .mark {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.025em;
  color: #fff;
}
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 32ch; }
.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* ===== 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);
  padding: 32px 36px;
  max-width: 480px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cookie-popup p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 12px 22px;
  border-radius: 9999px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.cookie-popup__actions button:hover { background: rgba(0,0,0,0.04); }
.cookie-popup__actions button:last-child {
  background: var(--fg); color: var(--bg); border-color: var(--fg);
}
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  .marquee__track { animation: none; }
}

/* ===== LEGAL PAGE ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 180px 32px 120px;
}
.legal h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.legal h2 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 40px 0 14px;
}
.legal p, .legal li { font-size: 16px; color: var(--fg-soft); line-height: 1.7; }
.legal ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin: 10px 0; }
.legal .lead { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 28px; }

/* ===== PAGE INTRO ===== */
.page-intro {
  padding: 180px 0 80px;
  background: var(--bg);
}
.page-intro__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 24px;
}
.page-intro__title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 18ch;
}
.page-intro__title em { font-style: normal; color: var(--accent); }
.page-intro__meta {
  margin-top: 32px;
  max-width: 56ch;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}
