/* palette: bg=#FFFFFF fg=#0A0E1A accent=#1B29FF */
/* fonts: display="Sora" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F3F4F8;
  --bg-deep: #0A0E1A;
  --fg: #0A0E1A;
  --fg-soft: #1E2637;
  --muted: #5B6577;
  --accent: #1B29FF;
  --accent-deep: #121CC7;
  --accent-soft: #ECEEFF;
  --border: rgba(10, 14, 26, 0.10);
  --border-strong: rgba(10, 14, 26, 0.18);
  --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;
  --radius: 22px;
}

*, *::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: 500; margin: 0; letter-spacing: -0.02em; line-height: 1.06; }
p { margin: 0; }

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

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: #F4F5FA; }

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

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}
.section--deep .lede { color: #B8BED6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(27, 41, 255, 0.55);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(27, 41, 255, 0.6); }
.btn--ghost { border: 1px solid var(--border-strong); background: transparent; }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--bg-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(0,0,0,0.4); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.textlink .arrow { transition: transform 0.3s var(--ease); }
.textlink:hover { gap: 12px; }
.textlink:hover .arrow { transform: translateX(4px); }

/* ---------- 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), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 8px 30px -18px rgba(10, 14, 26, 0.35);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.brand__mark svg { width: 17px; height: 17px; }

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: 34px; }
}
.nav a {
  font-size: 14.5px;
  color: var(--fg-soft);
  font-weight: 450;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  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); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 74px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 32px 24px 48px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-soft);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,20,0.55) 0%, rgba(6,9,20,0.28) 38%, rgba(6,9,20,0.82) 100%),
    linear-gradient(90deg, rgba(6,9,20,0.55) 0%, rgba(6,9,20,0.05) 60%);
}
.hero__curve {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero__curve path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(27,41,255,0.7));
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawCurve 2.6s var(--ease) 0.4s forwards;
}
@keyframes drawCurve { to { stroke-dashoffset: 0; } }
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(48px, 8vw, 96px);
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9CEFF;
  margin: 0 0 22px;
}
.hero__over {
  max-width: 40ch;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.65;
  color: #E7E9F5;
  margin: 0 0 auto;
}
.hero__headline {
  font-size: clamp(3.4rem, 10vw, 8.6rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: clamp(40px, 9vw, 90px) 0 0;
  max-width: 15ch;
}
.hero__headline em { font-style: normal; color: #6E7BFF; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
}
.hero__badge {
  display: inline-flex;
  flex-direction: column;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__badge b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.hero__badge span { font-size: 12.5px; color: #C9CEFF; letter-spacing: 0.02em; }

/* ---------- Statement / manifesto band ---------- */
.statement {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 900px) {
  .statement { grid-template-columns: 1fr auto 1fr; }
}
.statement__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.statement__text--right { text-align: left; }
@media (min-width: 900px) { .statement__text--right { text-align: right; } }
.statement__text b { font-weight: 500; color: var(--accent); }
.statement__glyph {
  width: min(280px, 60vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.statement__glyph svg { width: 100%; height: 100%; }

/* ---------- Comparison cards ---------- */
.compare {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .compare { grid-template-columns: 1.05fr 1fr 1fr; } }
.compare__card {
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 44px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.compare__intro { background: var(--bg-alt); }
.compare__intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.compare__intro p { color: var(--muted); font-size: 16.5px; }
.compare__neg { background: #fff; border: 1px solid var(--border); }
.compare__pos { background: var(--accent); color: #fff; }
.compare__label {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.compare__pos .compare__label { color: #fff; }
.compare__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.compare__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.55;
}
.compare__neg .compare__list li { color: var(--muted); }
.compare__list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 5px;
}
.compare__neg .compare__list li::before {
  background: transparent;
  border: 1.5px solid var(--border-strong);
}
.compare__pos .compare__list li::before {
  background: rgba(255,255,255,0.18);
}
.compare__pos .compare__list li::after {
  content: "";
  position: absolute; left: 4px; top: 10px;
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Services grid ---------- */
.grid-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (min-width: 900px) {
  .grid-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .grid-head .lede { text-align: right; }
}
.grid-head h2 { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 300; letter-spacing: -0.03em; max-width: 14ch; }

.services {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 640px) { .services { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.35s var(--ease);
}
.service:hover { background: var(--bg-alt); }
.service__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.service h3 { font-size: 1.4rem; font-weight: 500; letter-spacing: -0.02em; }
.service p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  gap: 40px 24px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.stat b .u { color: #6E7BFF; }
.stat span { display: block; margin-top: 14px; color: #B8BED6; font-size: 14.5px; line-height: 1.5; max-width: 22ch; }

/* ---------- Case cards ---------- */
.cases {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .cases { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.case {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.case:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(10,14,26,0.28); }
.case__media { aspect-ratio: 4 / 3; 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: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case__tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.case h3 { font-size: 1.3rem; font-weight: 500; letter-spacing: -0.02em; }
.case p { color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }
.case .textlink { margin-top: 6px; font-size: 14px; }

/* ---------- Pull quote ---------- */
.quote {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.quote__mark {
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: 0.6;
  color: #6E7BFF;
  opacity: 0.4;
  display: block;
  margin-bottom: -0.2em;
}
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.1rem);
  letter-spacing: -0.025em;
  line-height: 1.16;
  color: #F4F5FA;
}
.quote blockquote b { color: #fff; font-weight: 500; }
.quote cite { display: block; margin-top: 34px; font-style: normal; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #7C86FF; }

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

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: clamp(20px, 3vw, 34px);
  background: var(--accent);
  color: #fff;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
  top: -180px; right: -120px;
}
.cta-band h2 {
  position: relative;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0 auto 22px;
}
.cta-band p { position: relative; color: #D6DAFF; max-width: 52ch; margin: 0 auto 38px; font-size: 1.05rem; }
.cta-band .btn--light { position: relative; }

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 940px) { .form-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-block h3 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 10px; }
.contact-block p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.6; }
.contact-block a:hover { color: var(--accent); }

.form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 4px 24px -4px rgba(10,14,26,0.06);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
  color: var(--fg-soft);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--fg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #98A0B0; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,41,255,0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; gap: 22px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { margin-top: 16px; font-size: 12.5px; color: var(--muted); text-align: center; line-height: 1.55; }
.form__note a { color: var(--accent); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  color: #B8BED6;
  padding: clamp(64px, 9vw, 110px) 0 40px;
}
.footer__top {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { color: #fff; font-size: 22px; margin-bottom: 20px; }
.footer__brand p { max-width: 34ch; font-size: 15px; line-height: 1.7; color: #9099B8; }
.footer__brand .footer__tax { margin-top: 20px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: #6E7690; }
.footer__col h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #6E7690; font-weight: 500; margin-bottom: 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 15px; color: #B8BED6; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: #6E7690;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__bottom a:hover { color: #fff; }

/* ---------- 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); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  .hero__curve path { animation: none; stroke-dashoffset: 0; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 190px) 0 clamp(48px, 8vw, 90px); position: relative; }
.page-hero .eyebrow { margin-bottom: 26px; }
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.0;
  max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lede { margin-top: 30px; }

/* prose (legal + about) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 400; letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-size: 1.2rem; font-weight: 500; margin: 32px 0 10px; }
.prose p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.8; margin-bottom: 18px; }
.prose ul { color: var(--fg-soft); font-size: 16.5px; line-height: 1.8; padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose .meta { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 40px; }

/* values grid (about) */
.values { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .values { grid-template-columns: 1fr 1fr; } }
.value { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); }
.value .n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); }
.value h3 { font-size: 1.4rem; font-weight: 500; letter-spacing: -0.02em; margin: 14px 0 12px; }
.value p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* team (monograms, no faces) */
.team { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .team { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.avatar {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.member h3 { font-size: 1.2rem; font-weight: 500; }
.member .role { color: var(--accent); font-size: 13px; font-family: var(--mono); letter-spacing: 0.04em; margin: 6px 0 12px; }
.member p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- Cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-end; padding: 24px; background: rgba(6,9,20,0.42); 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: 30px 34px; max-width: 460px; border-radius: 18px; box-shadow: 0 30px 70px -20px rgba(6,9,20,0.5); border: 1px solid var(--border); }
.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; letter-spacing: -0.02em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.cookie-popup__card p a { color: var(--accent); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 22px; border: 1px solid var(--border-strong); cursor: pointer; font-size: 14px; border-radius: 9999px; font-weight: 500; transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); flex: 1; }
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* misc */
.divider-note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--fg); color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
