/* palette: bg=#EDEEF2 fg=#0C0D12 accent=#E5127D */
/* fonts: display="Orbitron" body="Inter" mono="Space Mono" */

:root {
  --bg: #EDEEF2;        /* cool silver-white canvas from reference */
  --bg-alt: #E2E4EB;    /* alternating section, cooler silver */
  --bg-deep: #0B0C11;   /* matrix-dark inverted band */
  --fg: #0C0D12;        /* near-black primary text */
  --fg-soft: #23252E;   /* softened heading tone */
  --muted: #6B6E7B;     /* secondary text */
  --muted-dark: #9FA3B4;/* muted on dark band */
  --accent: #E5127D;    /* magenta accent from CTA/holographic */
  --accent-deep: #A50D5B;
  --violet: #8A5CFF;    /* iridescent violet support */
  --cyan: #1FC7D6;      /* cyber cyan support */
  --border: rgba(12, 13, 18, 0.12);
  --border-soft: rgba(12, 13, 18, 0.07);
  --border-dark: rgba(255, 255, 255, 0.14);

  --chrome: linear-gradient(135deg, #ffffff 0%, #d6d9e2 28%, #a7abbc 48%, #eceef4 62%, #b6bac9 82%, #f4f5f9 100%);
  --chrome-soft: linear-gradient(135deg, #f6f7fb 0%, #d9dce6 45%, #b9bdcc 70%, #eef0f5 100%);
  --holo: linear-gradient(115deg, #ffd1ec 0%, #c7a3ff 26%, #9ad9ff 48%, #b6ffd8 66%, #fff4a3 86%, #ffb3d9 100%);

  --serif: 'Orbitron', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad: clamp(80px, 12vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  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; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

/* ---------- Typography helpers ---------- */
.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;
}
.eyebrow--dark { color: var(--accent); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--fg-soft);
}
.h1 { font-size: clamp(2.7rem, 8.4vw, 6.4rem); letter-spacing: -0.03em; line-height: 0.98; }
.h2 { font-size: clamp(2.1rem, 5.6vw, 4.4rem); letter-spacing: -0.02em; line-height: 1.02; }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; line-height: 1.1; }

.display em {
  font-style: normal;
  color: var(--accent);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--fg);
  color: var(--bg);
}
.btn--solid:hover { box-shadow: 0 14px 34px -12px rgba(12,13,18,0.6); }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--accent-deep); box-shadow: 0 14px 40px -12px rgba(229,18,125,0.55); }

.btn--chrome {
  background: var(--chrome);
  color: #14151b;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 6px 18px -8px rgba(12,13,18,0.35);
}
.btn--chrome:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 14px 34px -10px rgba(12,13,18,0.4); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--fg); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-dark);
}
.btn--ghost-light:hover { border-color: #fff; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.arrow-link .a { transition: transform .3s var(--ease); }
.arrow-link:hover { color: var(--accent); gap: 14px; }
.arrow-link:hover .a { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237, 238, 242, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border-soft), 0 10px 30px -20px rgba(12,13,18,0.4);
  border-bottom: 1px solid var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}
.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--chrome);
  color: #14151b;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.brand__name { color: var(--fg); }

.nav {
  display: none;
  gap: 34px;
}
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after { width: 100%; }

.header__actions { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header__actions { display: flex; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform .35s var(--ease), opacity .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: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 99;
  background: rgba(237, 238, 242, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 34px 28px;
}
.mobile-menu__nav a {
  font-family: var(--serif);
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--fg);
}
.mobile-menu__nav .btn { margin-top: 22px; align-self: flex-start; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 960px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 30px; }
.hero .lead { margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__meta {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero__meta .stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.hero__meta .stat span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* chrome / holographic decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
}
.blob--chrome {
  width: 340px; height: 340px;
  right: -80px; top: 12%;
  background: var(--chrome);
  border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  box-shadow: inset 0 8px 30px rgba(255,255,255,0.9), inset 0 -20px 40px rgba(120,124,140,0.5), 0 30px 80px -30px rgba(12,13,18,0.3);
  animation: floaty 11s var(--ease) infinite alternate;
}
.blob--holo {
  width: 200px; height: 200px;
  right: 14%; bottom: 12%;
  background: var(--holo);
  border-radius: 58% 42% 46% 54% / 42% 56% 44% 58%;
  opacity: 0.85;
  filter: blur(6px);
  animation: floaty 9s var(--ease) infinite alternate-reverse;
}
.blob--mag {
  width: 150px; height: 150px;
  left: -50px; bottom: 22%;
  background: radial-gradient(circle at 32% 30%, #ff5bb0, var(--accent) 55%, var(--accent-deep));
  filter: blur(14px);
  opacity: 0.55;
  animation: floaty 13s var(--ease) infinite alternate;
}
.hero__sticker {
  position: absolute;
  right: 6%;
  top: 30%;
  z-index: 3;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  transform: rotate(-11deg);
  background: var(--holo);
  color: #16121c;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 12px;
  box-shadow: 0 20px 50px -18px rgba(138,92,255,0.6);
  animation: floaty 7s var(--ease) infinite alternate;
}
@keyframes floaty {
  from { transform: translateY(0) rotate(-11deg); }
  to   { transform: translateY(-22px) rotate(-6deg); }
}
.blob--chrome, .blob--holo, .blob--mag { animation-name: floatplain; }
@keyframes floatplain {
  from { transform: translateY(0); }
  to   { transform: translateY(-26px); }
}
@media (max-width: 767px) {
  .hero__sticker { display: none; }
  .blob--chrome { width: 220px; height: 220px; right: -90px; }
  .blob--holo { display: none; }
}

/* ---------- Section scaffolding ---------- */
.section { padding: var(--pad) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section__head {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 86px);
  max-width: 780px;
}
.section__head .lead { margin-top: 4px; }
.section__head--split {
  max-width: none;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .section__head--split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
  .section__head--split .lead { justify-self: end; }
}

/* ---------- Marquee / ticker ---------- */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg);
}
.ticker__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scrollx 34s linear infinite;
}
.ticker__track span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.ticker__track span::after { content: "◈"; color: var(--accent); font-size: 0.8rem; }
@keyframes scrollx {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Media showcase ---------- */
.showcase__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px -40px rgba(12,13,18,0.4);
}
.showcase__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.showcase__bar {
  position: absolute;
  left: 18px; top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 16px;
  border-radius: 9999px;
  background: rgba(11,12,17,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.showcase__bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.showcase__tag {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: #14151b;
  font-family: var(--mono);
  font-size: 11px;
}
.showcase__tag .av {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--chrome);
  display: grid; place-items: center;
  font-size: 10px; color: #14151b;
}

/* ---------- Card grid (services / showcase cards) ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(12,13,18,0.06);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -18px rgba(12,13,18,0.18);
  border-color: rgba(229,18,125,0.35);
}
.card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 22px;
  display: block;
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: var(--chrome-soft);
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 20px;
}
.card h3 { margin-bottom: 12px; color: var(--fg); }
.card p { color: var(--muted); font-size: 0.98rem; line-height: 1.68; }
.card__foot { margin-top: 24px; }
.card--media { padding: 0; }
.card--media .card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card--media .card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card--media:hover .card__img img { transform: scale(1.05); }
.card--media .card__body { padding: 24px 26px 28px; }
.card--media .card__body h3 { font-size: 1.2rem; }
.card__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}

/* holographic edge accent on some cards */
.card--holo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--holo);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.card--holo:hover::before { opacity: 1; }

/* ---------- Manifesto (dark inverted / matrix band) ---------- */
.manifesto {
  position: relative;
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(96px, 15vw, 200px) 0;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(229,18,125,0.22), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(138,92,255,0.20), transparent 42%);
  pointer-events: none;
}
.manifesto__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 78%);
}
.manifesto__inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.manifesto .eyebrow { justify-content: center; margin-bottom: 34px; }
.manifesto blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.manifesto blockquote em { font-style: normal; color: var(--accent); }
.manifesto .chrome-text {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifesto__quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.manifesto__by {
  margin-top: 42px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- Timeline / progression ---------- */
.timeline { position: relative; }
.timeline__list { display: grid; gap: 0; }
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 34px 0 34px 44px;
  border-top: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: 1px solid var(--border); }
.tl-item::before {
  content: "";
  position: absolute;
  left: 13px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.tl-item::after {
  content: "";
  position: absolute;
  left: 7px; top: 42px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.tl-item:hover::after { background: var(--accent); box-shadow: 0 0 0 4px var(--bg), 0 0 16px rgba(229,18,125,0.5); }
.tl-item__step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.tl-item h3 { color: var(--fg); font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
.tl-item p { color: var(--muted); max-width: 62ch; }
.tl-item__aside {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
@media (min-width: 900px) {
  .tl-item {
    grid-template-columns: 150px 1fr 180px;
    gap: 40px;
    align-items: start;
    padding: 46px 0 46px 44px;
  }
  .tl-item h3 { margin-bottom: 10px; }
  .tl-item__aside { text-align: right; }
}

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  background: var(--bg);
  padding: 34px 28px;
}
.stat-cell b {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-cell span { font-size: 0.92rem; color: var(--muted); }

/* ---------- Team / principles (text + monogram) ---------- */
.people { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  background: var(--bg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.person:hover { transform: translateY(-5px); box-shadow: 0 20px 46px -18px rgba(12,13,18,0.16); }
.avatar {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.person h3 { color: var(--fg); font-size: 1.18rem; margin-bottom: 4px; }
.person .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.person p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq__icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--fg);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 12px; }
.faq__item[data-open="true"] .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__item[data-open="true"] .faq__icon::before,
.faq__item[data-open="true"] .faq__icon::after { background: #fff; }
.faq__item[data-open="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s var(--ease);
}
.faq__a p {
  color: var(--muted);
  padding: 0 44px 30px 0;
  font-size: 1rem;
  line-height: 1.72;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--bg-deep);
  color: #fff;
  border-radius: 24px;
  padding: clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(229,18,125,0.28), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(138,92,255,0.24), transparent 45%);
}
.cta__inner { position: relative; z-index: 2; max-width: 720px; }
.cta h2 { color: #fff; margin-bottom: 22px; }
.cta p { color: var(--muted-dark); margin-bottom: 36px; font-size: 1.1rem; }
.cta .btn--chrome { color: #14151b; }

/* ---------- Form ---------- */
.form { display: grid; gap: 20px; }
.form__row { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229,18,125,0.14);
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}
.form__consent input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--accent); }
.form__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* contact split */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; } }
.contact-info { display: grid; gap: 30px; align-content: start; }
.contact-info__block { display: grid; gap: 6px; }
.contact-info__block .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-info__block .v { color: var(--fg); font-size: 1.05rem; }
.contact-info__block .v span { display: block; color: var(--muted); font-size: 0.95rem; }

/* ---------- Split feature (text + image) ---------- */
.split { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } .split--rev .split__media { order: -1; } }
.split__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -34px rgba(12,13,18,0.4);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body .eyebrow { margin-bottom: 22px; }
.split__body h2 { margin-bottom: 22px; }
.split__body p + p { margin-top: 18px; }
.split__body .lead { margin-bottom: 18px; }
.split__list { margin-top: 28px; display: grid; gap: 14px; }
.split__list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--fg-soft); font-size: 1rem;
}
.split__list li::before {
  content: "◈"; color: var(--accent); font-size: 0.7rem; margin-top: 6px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(64px, 9vw, 110px) 0 40px;
}
.footer__top {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer__brand .brand__name { color: #fff; }
.footer__brand p {
  color: var(--muted-dark);
  margin-top: 22px;
  max-width: 34ch;
  font-size: 0.98rem;
}
.footer__brand .brand { margin-bottom: 0; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 20px;
}
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: #d7d9e2; font-size: 0.98rem; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 32px;
  color: var(--muted-dark);
  font-size: 0.82rem;
}
.footer__bottom .cnpj { font-family: var(--mono); letter-spacing: 0.04em; }
@media (min-width: 700px) {
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Legal pages ---------- */
.legal { padding: 140px 0 var(--pad); }
.legal__inner { max-width: 780px; margin: 0 auto; }
.legal h1 { margin-bottom: 18px; }
.legal .updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
  display: block;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 44px 0 16px;
}
.legal p, .legal li { color: var(--fg-soft); font-size: 1rem; line-height: 1.78; }
.legal p + p { margin-top: 16px; }
.legal ul { margin: 16px 0; padding-left: 22px; list-style: disc; display: grid; gap: 10px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* thank-you */
.thanks {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 0 var(--pad);
}
.thanks__inner { max-width: 640px; }
.thanks__mark {
  width: 84px; height: 84px;
  margin: 0 auto 34px;
  border-radius: 22px;
  background: var(--chrome);
  display: grid; place-items: center;
  font-size: 34px; color: #14151b;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.9), 0 20px 50px -20px rgba(12,13,18,0.4);
}
.thanks h1 { margin-bottom: 20px; }
.thanks p { color: var(--muted); margin-bottom: 36px; }

/* ---------- Cookie popup ---------- */
.cookie-popup { position:fixed;inset:0;z-index:9999;display:flex;align-items:flex-end;justify-content:center;padding:24px;background:rgba(11,12,17,0.5);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity .3s var(--ease); }
.cookie-popup[data-open="true"] { opacity:1;pointer-events:all; }
.cookie-popup__card { background:var(--bg);padding:32px 34px;max-width:480px;border-radius:18px;border:1px solid var(--border);box-shadow:0 30px 80px -30px rgba(12,13,18,0.6);transform:translateY(16px);transition:transform .4s var(--ease); }
.cookie-popup[data-open="true"] .cookie-popup__card { transform:none; }
.cookie-popup__label { font-family:var(--mono);font-size:10px;letter-spacing:0.16em;text-transform:uppercase;color:var(--accent);margin-bottom:12px; }
.cookie-popup__card h3 { font-family:var(--serif);font-weight:500;font-size:1.3rem;letter-spacing:-0.01em;color:var(--fg);margin-bottom:12px; }
.cookie-popup__card p { color:var(--muted);font-size:0.92rem;line-height:1.6; }
.cookie-popup__card p a { color:var(--accent);text-decoration:underline;text-underline-offset:2px; }
.cookie-popup__actions { display:flex;gap:12px;margin-top:22px; }
.cookie-popup__actions button { padding:12px 22px;border:1px solid var(--border);border-radius:9999px;cursor:pointer;font-family:var(--mono);font-size:11px;letter-spacing:0.1em;text-transform:uppercase;transition:transform .3s var(--ease),background .3s var(--ease); }
.cookie-popup__actions button:hover { transform:translateY(-2px); }
.cookie-popup__actions button:last-child { background:var(--fg);color:var(--bg);border-color:var(--fg); }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* utility */
.center { text-align: center; }
.mt-s { margin-top: 22px; }
.mt-m { margin-top: 40px; }
.nowrap { white-space: nowrap; }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
