/* palette: bg=#FBFBFD fg=#17233F accent=#2B54C6 */
/* fonts: display="Sora" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FBFBFD;
  --bg-alt: #EFF2F7;
  --fg: #17233F;
  --fg-soft: #33405C;
  --muted: #6B7488;
  --accent: #2B54C6;
  --accent-deep: #1C3B9C;
  --border: rgba(23, 35, 63, 0.12);
  --border-soft: rgba(23, 35, 63, 0.07);
  --card: #FFFFFF;
  --serif: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex 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 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

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

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

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(60px, 8vw, 110px) 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(23, 35, 63, 0.06), 0 10px 30px -20px rgba(23, 35, 63, 0.4);
  border-bottom: 1px solid var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--fg);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.nav { display: none; align-items: center; gap: 34px; }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  transition: color 0.25s var(--ease);
}
.nav a:hover { color: var(--accent); }
.header__cta { display: none; }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fg);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-pill:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(43, 84, 198, 0.6); }
.btn-pill--accent { background: var(--accent); }
.btn-pill--accent:hover { background: var(--accent-deep); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-ghost .arw { transition: transform 0.3s var(--ease); }
.btn-ghost:hover { color: var(--accent); }
.btn-ghost:hover .arw { transform: translateX(5px); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 74px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--fg);
}
.mobile-menu .btn-pill { margin-top: 24px; justify-content: center; }
@media (min-width: 960px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 20, 43, 0.55) 0%, rgba(11, 20, 43, 0.2) 40%, rgba(11, 20, 43, 0.85) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(56px, 9vw, 110px); padding-top: 120px; }
.hero .eyebrow { color: #B9C6F0; }
.hero .eyebrow::before { background: #B9C6F0; }
.hero h1 {
  font-size: clamp(3.1rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 16ch;
  margin: 0 0 28px;
}
.hero h1 em { font-style: normal; color: #9FB6FF; }
.hero__lead {
  max-width: 46ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .btn-pill { background: #fff; color: var(--fg); }
.hero .btn-pill:hover { background: var(--accent); color: #fff; }
.hero .btn-ghost { color: #fff; }
.hero .btn-ghost:hover { color: #9FB6FF; }

/* floating welcome card */
.hero__card {
  display: none;
  position: absolute;
  right: 32px;
  bottom: clamp(56px, 9vw, 110px);
  z-index: 2;
  width: 320px;
  background: rgba(255,255,255,0.96);
  color: var(--fg);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 24px 60px -20px rgba(11, 20, 43, 0.6);
  backdrop-filter: blur(6px);
}
.hero__card .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.hero__card h3 { font-size: 1.15rem; margin: 8px 0 8px; letter-spacing: -0.02em; }
.hero__card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.hero__card .cardlink { margin-top: 14px; font-size: 13px; font-weight: 500; color: var(--accent); display: inline-flex; gap: 6px; }
@media (min-width: 1100px) { .hero__card { display: block; } }

/* ---------- Intro band ---------- */
.intro { background: var(--bg); }
.intro__grid { display: grid; gap: 40px; }
.intro__lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.intro__body p { color: var(--fg-soft); font-size: 17px; margin-bottom: 18px; max-width: 52ch; }
.intro__body p:last-child { margin-bottom: 0; }
@media (min-width: 900px) { .intro__grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }

/* ---------- Section head ---------- */
.sec-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }
.sec-head h2 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.sec-head p { margin-top: 22px; color: var(--fg-soft); font-size: 18px; max-width: 56ch; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; gap: 22px; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.svc {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 4px 24px -4px rgba(23, 35, 63, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(23, 35, 63, 0.16); border-color: var(--border); }
.svc__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.svc h3 { font-size: 1.5rem; margin: 18px 0 12px; letter-spacing: -0.02em; }
.svc p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }
.svc__tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc__tags span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 5px 12px;
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: 30px; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 44px; } }
.step { border-top: 1px solid var(--border); padding-top: 28px; }
.step__n {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 1.3rem; margin: 20px 0 12px; }
.step p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }

/* ---------- Manifesto (dark) ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}
.manifesto .quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  height: 46px;
}
.manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.6rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 24px auto 0;
}
.manifesto p em { font-style: normal; color: #9FB6FF; }
.manifesto .attr { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 40px; }

/* ---------- Stats ---------- */
.stats { display: grid; gap: 40px; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__v { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__v span { color: var(--accent); }
.stat__l { margin-top: 14px; color: var(--fg-soft); font-size: 14.5px; max-width: 24ch; }

/* ---------- Cases ---------- */
.cases { display: grid; gap: 26px; }
@media (min-width: 800px) { .cases { grid-template-columns: 1fr 1fr; } }
.case {
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 24px -4px rgba(23, 35, 63, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: 0 16px 44px -10px rgba(23, 35, 63, 0.2); }
.case__media { aspect-ratio: 16/10; overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.case:hover .case__media img { transform: scale(1.05); }
.case__body { padding: 28px 30px 32px; }
.case__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.case__body h3 { font-size: 1.55rem; margin: 14px 0 12px; letter-spacing: -0.02em; }
.case__body p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 24px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 4px 24px -6px rgba(23, 35, 63, 0.07);
}
.quote p { font-size: 16px; line-height: 1.7; color: var(--fg); }
.quote__foot { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.avatar--mono {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  flex: none;
}
.quote__foot .nm { font-weight: 600; font-size: 14.5px; }
.quote__foot .rl { font-size: 13px; color: var(--muted); }
.placeholder-note { font-family: var(--mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 34px; text-align: center; opacity: 0.7; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  letter-spacing: -0.02em;
}
.faq__q .ic { flex: none; width: 24px; height: 24px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after {
  content: ""; position: absolute; background: var(--accent);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq__q .ic::before { width: 16px; height: 2px; }
.faq__q .ic::after { width: 2px; height: 16px; }
.faq__item[data-open="true"] .ic::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { color: var(--fg-soft); font-size: 16px; line-height: 1.72; padding-bottom: 28px; max-width: 62ch; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  text-align: center;
  border-radius: 28px;
  padding: clamp(56px, 9vw, 110px) 24px;
}
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1.03; max-width: 18ch; margin: 0 auto 22px; }
.cta p { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 50ch; margin: 0 auto 36px; }
.cta .btn-pill { background: #fff; color: var(--accent-deep); }
.cta .btn-pill:hover { background: var(--fg); color: #fff; }

/* ---------- Form ---------- */
.form-wrap { display: grid; gap: 48px; }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; } }
.contact-info h3 { font-size: 1.35rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.contact-info .row { padding: 22px 0; border-bottom: 1px solid var(--border-soft); }
.contact-info .row:first-of-type { border-top: 1px solid var(--border-soft); }
.contact-info .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-info .v { font-size: 16px; color: var(--fg); }
.form { background: var(--card); border: 1px solid var(--border-soft); border-radius: 20px; padding: clamp(28px, 4vw, 44px); box-shadow: 0 8px 40px -12px rgba(23, 35, 63, 0.14); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 84, 198, 0.14);
}
.form .btn-pill { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 12.5px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* ---------- 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; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

/* ---------- Footer ---------- */
.footer { background: var(--fg); color: rgba(255,255,255,0.72); padding: clamp(60px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer .brand__name { color: #fff; }
.footer .brand__mark { background: #fff; color: var(--fg); }
.footer__blurb { margin-top: 22px; max-width: 34ch; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); font-weight: 400; margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: rgba(255,255,255,0.75); padding: 7px 0; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: #9FB6FF; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(50px, 8vw, 90px); background: var(--bg-alt); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1.02; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 26px; font-size: 19px; color: var(--fg-soft); max-width: 54ch; line-height: 1.7; }

/* ---------- Values / about grid ---------- */
.values { display: grid; gap: 24px; }
@media (min-width: 760px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { border-top: 2px solid var(--fg); padding-top: 24px; }
.value h3 { font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.value p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }

/* team text cards */
.team { display: grid; gap: 22px; }
@media (min-width: 700px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team { grid-template-columns: repeat(3, 1fr); } }
.person { background: var(--card); border: 1px solid var(--border-soft); border-radius: 18px; padding: 30px; box-shadow: 0 4px 24px -6px rgba(23, 35, 63, 0.07); }
.person .avatar--mono { width: 56px; height: 56px; font-size: 18px; margin-bottom: 22px; }
.person h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
.person .rl { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin: 6px 0 14px; }
.person p { color: var(--fg-soft); font-size: 14.5px; line-height: 1.68; }

/* prose legal */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin: 48px 0 16px; letter-spacing: -0.02em; font-weight: 400; }
.prose h3 { font-size: 1.15rem; margin: 30px 0 10px; }
.prose p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.78; margin-bottom: 18px; }
.prose ul { color: var(--fg-soft); font-size: 16.5px; line-height: 1.78; padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--fg); }

/* thanks */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 120px 20px 80px; }
.thanks .badge { width: 76px; height: 76px; border-radius: 20px; background: var(--accent); display: grid; place-items: center; margin: 0 auto 32px; color: #fff; }
.thanks h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 20px; }
.thanks p { color: var(--fg-soft); font-size: 18px; max-width: 48ch; margin: 0 auto 34px; }

/* ---------- 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(11,20,43,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; box-shadow: 0 30px 80px -20px rgba(11,20,43,0.6); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.cookie-popup__card h3 { font-size: 1.3rem; margin: 12px 0 12px; letter-spacing: -0.02em; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.68; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; }
.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; cursor: pointer; font-size: 14px; font-weight: 500; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.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); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero__media img { animation: none; }
}
