/* palette: bg=#FFFFFF fg=#1D1D1F accent=#0071E3 */
/* fonts: display="Sora" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F5F7;
  --bg-tint: #EEF2F8;
  --fg: #1D1D1F;
  --fg-soft: #37373A;
  --muted: #6E6E73;
  --accent: #0071E3;
  --accent-deep: #0058B8;
  --dark: #16171B;
  --dark-soft: #22242A;
  --border: rgba(0, 0, 0, 0.10);
  --border-soft: rgba(0, 0, 0, 0.06);
  --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);
  --container: 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;
  -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; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
p { margin: 0; }

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

.section { padding: clamp(72px, 11vw, 150px) 0; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 20px;
  display: inline-block;
}
.eyebrow--muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.45); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--fg); }
.btn--light { background: #fff; color: var(--fg); }
.btn--light:hover { transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.arrow-link:hover { gap: 12px; }
.arrow-link svg { transition: transform 0.3s var(--ease); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 1px 24px -12px rgba(0,0,0,0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--accent);
  display: inline-block;
  transform: rotate(45deg);
}
.nav { display: none; gap: 34px; }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a[aria-current="page"] { color: var(--fg); }
.header__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.25s 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: 66px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: -0.02em;
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #FBFCFE 0%, #F5F5F7 100%);
}
.hero__inner { text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2.7rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0 0 26px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__visual {
  margin-top: clamp(48px, 7vw, 84px);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: 0;
  box-shadow: 0 -10px 60px -30px rgba(0,0,0,0.3);
}
.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  animation: heroZoom 8s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* ---------- trust strip ---------- */
.trust {
  padding: 34px 0;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}
.trust__label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  justify-content: center;
  align-items: center;
}
.trust__row span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  letter-spacing: -0.02em;
  color: #9497a0;
}

/* ---------- section head ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.section-head p { font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--muted); line-height: 1.6; }

/* ---------- feature row ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 34px;
}
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.feature h3 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-weight: 500;
}
.feature p { color: var(--muted); font-size: 15.5px; line-height: 1.66; }
.feature { padding-top: 24px; border-top: 1px solid var(--border); }

/* ---------- dark band ---------- */
.band {
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.band__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}
@media (min-width: 900px) { .band__grid { grid-template-columns: 1.05fr 0.95fr; } }
.band__text { padding: clamp(56px, 9vw, 120px) 0; }
@media (min-width: 900px) { .band__text { padding-right: 60px; } }
.band .eyebrow { color: #5FA8FF; }
.band h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.band p { color: rgba(255,255,255,0.66); font-size: 1.06rem; line-height: 1.7; margin-bottom: 18px; }
.band__list { list-style: none; padding: 0; margin: 30px 0 34px; }
.band__list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 15.5px;
}
.band__list li::before { content: "→"; color: #5FA8FF; }
.band__media { min-height: 320px; position: relative; }
.band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .band__media { min-height: 300px; } }

/* ---------- manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.3rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 960px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.24;
  display: block;
  margin-bottom: 10px;
}
.manifesto__cite {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- cards / case studies ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.06);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px -16px rgba(0,0,0,0.16); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.card__body h3 { font-size: 1.32rem; letter-spacing: -0.015em; font-weight: 500; line-height: 1.2; }
.card__body p { color: var(--muted); font-size: 15px; line-height: 1.62; }
.card__foot { margin-top: auto; padding-top: 8px; }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
}
.stat__num span { color: var(--accent); }
.stat__label { color: var(--muted); font-size: 14.5px; margin-top: 12px; line-height: 1.5; }

/* ---------- process / steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 2px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--bg); padding: 38px 32px; }
.step__n { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { font-size: 1.24rem; font-weight: 500; margin: 16px 0 12px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.64; }

/* ---------- value list (about) ---------- */
.values { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 860px) { .values { grid-template-columns: repeat(2, 1fr); column-gap: 60px; } }
.value { padding: 30px 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 40px 1fr; gap: 20px; }
.value__idx { font-family: var(--mono); font-size: 13px; color: var(--accent); padding-top: 6px; }
.value h3 { font-size: 1.32rem; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
.value p { color: var(--muted); font-size: 15.5px; line-height: 1.66; }

/* ---------- team (monograms, no faces) ---------- */
.team { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  background: var(--bg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.member:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -18px rgba(0,0,0,0.16); }
.avatar {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.member h3 { font-size: 1.18rem; font-weight: 500; letter-spacing: -0.01em; }
.member__role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin: 6px 0 14px; }
.member p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- testimonial ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 34px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-card blockquote { margin: 0; font-family: var(--serif); font-weight: 300; font-size: 1.32rem; line-height: 1.4; letter-spacing: -0.01em; }
.quote-card__by { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card__by .avatar { width: 44px; height: 44px; font-size: 15px; margin: 0; border-radius: 11px; }
.quote-card__meta strong { display: block; font-size: 15px; font-weight: 600; }
.quote-card__meta span { font-size: 13px; color: var(--muted); }
.placeholder-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #b7bac2; }

/* ---------- 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%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2.4vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq__q .ico { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform 0.4s var(--ease); }
.faq__q .ico::before, .faq__q .ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq__q .ico::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq__q .ico::after { left: 10px; top: 0; width: 2px; height: 22px; transition: transform 0.4s var(--ease); }
.faq__item[data-open="true"] .ico::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { padding: 0 0 26px; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 680px; }

/* ---------- cta band ---------- */
.cta {
  background: var(--dark);
  color: #fff;
  text-align: center;
  border-radius: 24px;
  padding: clamp(56px, 9vw, 108px) 24px;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(0,113,227,0.4), transparent 60%);
  pointer-events: none;
}
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 20px; position: relative; }
.cta p { color: rgba(255,255,255,0.66); max-width: 520px; margin: 0 auto 34px; font-size: 1.08rem; position: relative; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.contact-info h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; }
.contact-info dl { margin: 0; }
.contact-block { padding: 22px 0; border-top: 1px solid var(--border); }
.contact-block dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 8px; }
.contact-block dd { margin: 0; font-size: 16px; line-height: 1.55; }
.contact-block dd a:hover { color: var(--accent); }

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 500; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  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.3s var(--ease), box-shadow 0.3s 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 4px rgba(0,113,227,0.12);
}
.field input::placeholder, .field textarea::placeholder { color: #a4a6ad; }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.5; }
.form__consent input { margin-top: 3px; }
.form__consent a { color: var(--accent); }
.form button[type="submit"] { justify-self: start; margin-top: 4px; }

/* ---------- rich text (legal) ---------- */
.rich { max-width: 780px; margin: 0 auto; }
.rich h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.rich .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 48px; text-transform: uppercase; }
.rich h2 { font-size: 1.5rem; letter-spacing: -0.015em; margin: 44px 0 16px; font-weight: 500; }
.rich p { color: var(--fg-soft); margin-bottom: 16px; font-size: 16.5px; line-height: 1.76; }
.rich ul { color: var(--fg-soft); padding-left: 20px; margin-bottom: 16px; line-height: 1.76; }
.rich li { margin-bottom: 8px; }
.rich a { color: var(--accent); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(80px, 12vw, 150px) 0 clamp(40px, 6vw, 72px); background: linear-gradient(180deg, #FBFCFE, var(--bg)); }
.page-hero__inner { max-width: 840px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.03; letter-spacing: -0.035em; margin-bottom: 24px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 620px; line-height: 1.6; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: clamp(64px, 9vw, 100px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 780px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer__brand .brand { color: #fff; font-size: 22px; margin-bottom: 18px; }
.footer__brand p { max-width: 320px; font-size: 14.5px; line-height: 1.65; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); margin-bottom: 18px; font-weight: 400; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color 0.25s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__visual img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 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);
  -webkit-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: 30px 34px;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
}
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; }
.cookie-popup__card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 24px; border: 1px solid var(--border); border-radius: 9999px;
  font-size: 14px; font-weight: 500; transition: transform 0.3s var(--ease), background 0.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); }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.lead { font-size: clamp(1.2rem, 3vw, 1.7rem); line-height: 1.5; letter-spacing: -0.01em; color: var(--fg-soft); font-family: var(--serif); font-weight: 300; max-width: 820px; }
.prose-cols { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
@media (min-width: 780px) { .prose-cols { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.prose-cols p { color: var(--muted); font-size: 16px; line-height: 1.72; }
