/* palette: bg=#0A1826 fg=#EAF2FB accent=#2E9BE6 */
/* fonts: display="Sora" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #0A1826;
  --bg-alt: #0F2233;
  --bg-deep: #06111C;
  --fg: #EAF2FB;
  --fg-soft: #C3D3E2;
  --muted: #8195AB;
  --accent: #2E9BE6;
  --accent-deep: #1B7CC2;
  --accent-2: #E8843C;
  --card: #0F2233;
  --card-hi: #152C42;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 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;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.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; }
::selection { background: var(--accent); color: #04121F; }

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

section { position: relative; }
.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); }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
h2.h-section {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 16ch;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 60ch;
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--accent);
  color: #04121F;
  box-shadow: 0 10px 30px -10px rgba(46, 155, 230, 0.6);
}
.btn--primary:hover { background: #46abf0; transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(46, 155, 230, 0.7); }
.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: #55b0ee; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 24, 38, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  background: rgba(8, 19, 31, 0.9);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.7);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav { display: none; align-items: center; gap: 38px; }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a[aria-current="page"] { color: var(--accent); }
.header__cta { display: none; }
@media (min-width: 1024px) {
  .nav, .header__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.menu-toggle span {
  width: 22px;
  height: 1.6px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-deep);
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: -0.02em;
  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: 26px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 70px;
}
.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.1); }
  to { transform: scale(1); }
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 38, 0.62) 0%, rgba(10, 24, 38, 0.78) 55%, rgba(10, 24, 38, 0.96) 100%),
    radial-gradient(120% 80% at 15% 20%, rgba(46, 155, 230, 0.22), transparent 55%);
}
.hero__inner { position: relative; z-index: 1; max-width: 900px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8.4vw, 6.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 26px 0 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { max-width: 54ch; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 20px;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  max-width: 640px;
}
@media (min-width: 768px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--fg);
}
.stat__label {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ---------- Section head ---------- */
.section-head { max-width: var(--container); margin-bottom: clamp(44px, 6vw, 76px); }
.section-head .lede { margin-top: 22px; }
.section-head--split {
  display: grid;
  gap: 28px;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.3fr 0.9fr; }
  .section-head--split .lede { margin-top: 0; }
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 30px 32px;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.35);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: var(--card-hi);
  box-shadow: 0 22px 50px -14px rgba(0, 0, 0, 0.6);
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(46, 155, 230, 0.12);
  color: var(--accent);
  margin-bottom: 22px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.card p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.68; margin: 0 0 20px; }
.card .link-arrow { font-size: 12px; }
.card__index {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ---------- Dashboard showcase ---------- */
.showcase {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) { .showcase { grid-template-columns: 1fr 1.05fr; gap: 64px; } }
.showcase__list { list-style: none; margin: 30px 0 0; padding: 0; }
.showcase__list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.showcase__list li:last-child { border-bottom: 1px solid var(--border); }
.showcase__list b { display: block; font-weight: 500; font-size: 16px; margin-bottom: 3px; }
.showcase__list span { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.showcase__list .num { font-family: var(--mono); font-size: 12px; color: var(--accent); flex: none; padding-top: 4px; }

.panel {
  background: linear-gradient(160deg, #12293D, #0B1B2A);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.75);
}
.panel__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.panel__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--muted); opacity: 0.5; }
.panel__dot:first-child { background: var(--accent-2); opacity: 0.9; }
.panel__title {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
}
.panel__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--fg-soft);
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #3ad29a; }
.chip.chip--warn::before { background: var(--accent-2); }
.panel__bars { display: flex; align-items: flex-end; gap: 10px; height: 118px; padding: 4px 4px 0; }
.panel__bars .bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent), rgba(46, 155, 230, 0.25));
  opacity: 0.9;
}
.panel__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.tile { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 10px; padding: 14px 14px 12px; }
.tile b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.02em; display: block; }
.tile span { font-size: 11px; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- Manifesto ---------- */
.manifesto {
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(46, 155, 230, 0.14), transparent 60%),
    var(--bg-deep);
  text-align: center;
  padding: clamp(90px, 14vw, 180px) 0;
}
.manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.4vw, 3.4rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto;
}
.manifesto p em { font-style: normal; color: var(--accent); }
.manifesto .quote-mark {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.4;
  color: var(--accent);
  opacity: 0.35;
  display: block;
  margin-bottom: 8px;
}
.manifesto cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 40px;
}

/* ---------- Process / steps ---------- */
.steps { display: grid; gap: 4px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.step {
  padding: 34px 0 30px;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  .step { padding: 40px 26px 44px; border-top: none; border-left: 1px solid var(--border); }
  .step:first-child { padding-left: 0; border-left: none; }
}
.step__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; }
.step p { color: var(--fg-soft); font-size: 15px; line-height: 1.66; margin: 0; }

/* ---------- Work / case grid ---------- */
.work-grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work:hover { transform: translateY(-5px); box-shadow: 0 24px 54px -16px rgba(0, 0, 0, 0.6); }
.work__img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.work__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.work:hover .work__img img { transform: scale(1.06); }
.work__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 24, 38, 0.1), rgba(10, 24, 38, 0.65)); }
.work__body { padding: 24px 24px 26px; }
.work__tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.work h3 { font-size: 1.28rem; font-weight: 500; margin: 12px 0 10px; letter-spacing: -0.01em; }
.work p { color: var(--fg-soft); font-size: 15px; line-height: 1.62; margin: 0; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 24px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 32px;
}
.quote p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.28rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 26px;
}
.quote__by { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: #04121F;
  flex: none;
}
.quote__by b { display: block; font-weight: 500; font-size: 15px; }
.quote__by span { color: var(--muted); font-size: 13px; }

/* ---------- 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: 24px;
  text-align: left;
  padding: 26px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq__q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .plus::before, .faq__q .plus::after {
  content: ""; position: absolute; background: var(--accent);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq__q .plus::before { width: 15px; height: 1.6px; }
.faq__q .plus::after { width: 1.6px; height: 15px; }
.faq__item[data-open="true"] .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__a-inner { padding: 0 0 28px; color: var(--fg-soft); font-size: 16px; line-height: 1.72; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(80% 140% at 80% 20%, rgba(46, 155, 230, 0.2), transparent 55%),
    linear-gradient(140deg, #0E2437, #081521);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(48px, 8vw, 88px) clamp(28px, 6vw, 72px);
  text-align: center;
}
.cta-band h2 {
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 20ch;
  margin: 22px auto 20px;
}
.cta-band .lede { margin: 0 auto 36px; text-align: center; }
.cta-band .hero__actions { justify-content: center; margin-top: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-info dl { margin: 30px 0 0; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-info dd { margin: 0 0 26px; font-size: 17px; color: var(--fg-soft); }
.contact-info dd a:hover { color: var(--accent); }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13.5px; color: var(--fg-soft); letter-spacing: 0.01em; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15.5px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #5f7186; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(46, 155, 230, 0.06);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.form__note a { color: var(--accent); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h1 { font-weight: 300; font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.prose .updated { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 48px; text-transform: uppercase; }
.prose h2 { font-weight: 400; font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-weight: 500; font-size: 1.2rem; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16.5px; line-height: 1.78; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose strong { color: var(--fg); font-weight: 600; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(120px, 18vw, 200px) 0 clamp(40px, 7vw, 90px);
  background:
    radial-gradient(70% 110% at 85% 10%, rgba(46, 155, 230, 0.16), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 24px 0 26px;
  max-width: 18ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lede { max-width: 62ch; }

/* ---------- Value / about rows ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split--reverse .split__media { order: -1; }
@media (min-width: 940px) { .split--reverse .split__media { order: 1; } }
.split__media { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 5 / 4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-weight: 300; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 22px; }
.split p { color: var(--fg-soft); margin: 0 0 18px; }
.split p:last-child { margin-bottom: 0; }

.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
@media (min-width: 720px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric { background: var(--bg-alt); padding: 32px 24px; }
.metric b { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; display: block; }
.metric span { color: var(--muted); font-size: 13px; margin-top: 4px; display: block; }

/* ---------- Principles list (about, no faces) ---------- */
.principles { display: grid; gap: 4px; }
@media (min-width: 800px) { .principles { grid-template-columns: repeat(2, 1fr); gap: 0; } }
.principle {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 20px;
}
@media (min-width: 800px) {
  .principle { padding: 40px 34px; border-left: 1px solid var(--border); }
  .principle:nth-child(odd) { padding-left: 0; border-left: none; }
}
.principle__n { font-family: var(--mono); font-size: 12px; color: var(--accent); flex: none; padding-top: 5px; letter-spacing: 0.08em; }
.principle h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
.principle p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.66; margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: clamp(64px, 9vw, 110px) 0 40px;
}
.footer__top {
  display: grid;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 34ch; line-height: 1.6; }
.footer__col h4 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer__col a { display: block; color: var(--fg-soft); font-size: 15px; padding: 7px 0; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}
.footer__bottom p { color: var(--muted); font-size: 13px; margin: 0; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { color: var(--muted); font-size: 13px; }
.footer__legal a:hover { color: var(--fg-soft); }

/* ---------- 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; }
  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.5);
  -webkit-backdrop-filter: blur(4px);
  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(--card);
  border: 1px solid var(--border-strong);
  padding: 30px 32px;
  max-width: 460px;
  border-radius: 14px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.8);
}
.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: 10px; letter-spacing: -0.01em; }
.cookie-popup__card p { color: var(--fg-soft); font-size: 14px; line-height: 1.62; margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  font-size: 14px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cookie-popup__actions button:first-child { color: var(--fg-soft); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg-soft); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #04121F; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: #46abf0; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 20px; }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #04121F; padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
