:root {
  --bg: #050b14;
  --bg-secondary: #081522;
  --surface: #0a1726;
  --card: #0d1d2e;
  --card-strong: #132235;
  --border: #1a3148;
  --border-strong: #2b4561;
  --primary: #2f6fe4;
  --primary-hover: #4d8bff;
  --ice: #89b7d8;
  --accent: #c3dfef;
  --white: #f7f9fc;
  --text: #f1f5f9;
  --secondary: #b2c1d1;
  --muted: #8897a8;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  --container: 1180px;
  --header-height: 78px;
  --ease: 250ms ease;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  font-weight: 720;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  font-weight: 700;
}
h3 {
  margin-bottom: 14px;
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}
p {
  color: var(--secondary);
}
strong {
  color: var(--white);
}
ul {
  padding-left: 1.2rem;
}
li::marker {
  color: var(--ice);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  color: var(--bg);
  padding: 10px 16px;
  font-weight: 700;
  transition: transform var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: clamp(78px, 9vw, 120px) 0;
}
.section--tight {
  padding: clamp(54px, 7vw, 80px) 0;
}
.section--surface {
  background: var(--bg-secondary);
  border-block: 1px solid rgba(43, 69, 97, 0.48);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.52fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading p {
  max-width: 570px;
  margin: 0;
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--ice);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--ice);
  content: "";
}
.microcopy {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(43, 69, 97, 0.55);
  background: rgba(5, 11, 20, 0.84);
  backdrop-filter: blur(16px);
}
.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 168px;
  height: 42px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}
.main-nav a,
.language-switch a {
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--ease);
}
.main-nav a:hover,
.language-switch a:hover {
  color: var(--white);
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--border);
  padding-left: 18px;
}
.language-switch .active {
  color: var(--white);
}
.language-switch span {
  color: var(--muted);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.menu-button svg {
  width: 21px;
}
.mobile-nav {
  position: fixed;
  z-index: 150;
  inset: 0;
  opacity: 0;
  background: rgba(2, 7, 13, 0.74);
  backdrop-filter: blur(8px);
  transition: opacity 220ms ease;
}
.mobile-nav.is-open {
  opacity: 1;
}
.mobile-panel {
  width: min(88vw, 390px);
  height: 100%;
  margin-left: auto;
  transform: translateX(100%);
  border-left: 1px solid var(--border);
  background: var(--surface);
  padding: 24px;
  transition: transform 220ms ease;
}
.mobile-nav.is-open .mobile-panel {
  transform: translateX(0);
}
.mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-panel nav {
  display: grid;
  gap: 8px;
}
.mobile-panel nav a {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 650;
}
.mobile-panel .language-switch {
  margin-top: 26px;
  border-left: 0;
  padding-left: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    transform var(--ease);
}
.button:hover {
  transform: translateY(-1px);
}
.button--primary {
  background: var(--primary);
  color: #fff;
}
.button--primary:hover {
  background: var(--primary-hover);
}
.button--secondary {
  border-color: #355272;
  background: transparent;
  color: var(--white);
}
.button--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}
.button--small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.84rem;
}
.button svg {
  width: 18px;
  height: 18px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 94px) 0 80px;
}
.hero::before {
  position: absolute;
  width: 760px;
  height: 760px;
  top: -480px;
  right: -260px;
  border: 1px solid rgba(137, 183, 216, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 120px rgba(47, 111, 228, 0.025),
    0 0 0 240px rgba(47, 111, 228, 0.018);
  content: "";
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.78fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
}
.hero-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--primary);
  color: var(--muted) !important;
  font-size: 0.92rem !important;
}
.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    150deg,
    rgba(19, 34, 53, 0.92),
    rgba(10, 23, 38, 0.88)
  );
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(137, 183, 216, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 183, 216, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}
.panel-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}
.panel-top strong {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ice);
  content: "";
}
.ops-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.ops-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(43, 69, 97, 0.7);
  border-radius: 15px;
  background: rgba(5, 11, 20, 0.48);
  padding: 15px;
}
.ops-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(137, 183, 216, 0.27);
  border-radius: 12px;
  background: rgba(47, 111, 228, 0.09);
  color: var(--ice);
}
.ops-icon svg {
  width: 20px;
  height: 20px;
}
.ops-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.ops-item small {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
}
.flow-mark {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.signal {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}
.signal strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.83rem;
}

.capability-strip {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-secondary);
}
.capability-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  padding: 20px 0;
}
.capability-track span {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  white-space: nowrap;
}
.capability-track span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  transition:
    border-color var(--ease),
    background var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--card-strong);
}
.card__number {
  display: block;
  margin-bottom: 28px;
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}
.card h3 {
  padding-top: 17px;
  border-top: 1px solid var(--border);
}
.card p {
  margin-bottom: 18px;
  font-size: 0.93rem;
}
.card details {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.card summary {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}
.card details ul {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.market-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.market-code {
  color: var(--ice);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.market-card p {
  margin: 0;
}
.disclaimer {
  margin-top: 22px;
  border-left: 2px solid var(--ice);
  background: rgba(137, 183, 216, 0.055);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 70px;
}
.approach-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}
.engagements {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.tag {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  padding: 7px 11px;
  color: var(--secondary);
  font-size: 0.74rem;
}
.steps {
  position: relative;
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 0 0 34px;
}
.step:last-child {
  padding-bottom: 0;
}
.step-index {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ice);
  font-size: 0.76rem;
  font-weight: 750;
}
.step:not(:last-child) .step-index::after {
  position: absolute;
  width: 1px;
  height: 50px;
  top: 44px;
  left: 50%;
  background: var(--border);
  content: "";
}
.step p {
  margin: 0;
  font-size: 0.94rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 100px);
}
.profile-card {
  align-self: start;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--card-strong), var(--surface));
  padding: 30px;
}
.monogram-large {
  display: grid;
  width: 104px;
  height: 90px;
  place-items: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(137, 183, 216, 0.28);
  border-radius: 18px;
  background: var(--bg);
  overflow: hidden;
}

.monogram-large img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transform: translateY(-7px);
}
.profile-card h3 {
  font-size: 1.55rem;
}
.profile-title {
  margin-bottom: 24px;
  color: var(--ice);
  font-size: 0.9rem;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.profile-copy > p {
  max-width: 760px;
}
.timeline {
  margin-top: 44px;
  border-top: 1px solid var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.timeline-date {
  color: var(--ice);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}
.timeline-item h3 {
  margin-bottom: 6px;
}
.timeline-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}
.timeline-item ul {
  columns: 2;
  column-gap: 32px;
  margin: 0;
  color: var(--secondary);
  font-size: 0.86rem;
}
.timeline-item li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.development-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
}
.language-list {
  display: grid;
  gap: 12px;
}
.language-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.language-row span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.contributions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contribution {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
}
.contribution__icon {
  color: var(--ice);
}
.contribution__icon svg {
  width: 22px;
  height: 22px;
}
.contribution p {
  margin: 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--card-strong), var(--surface));
  padding: clamp(30px, 5vw, 64px);
  box-shadow: var(--shadow);
}
.contact-panel::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -150px;
  border: 1px solid rgba(137, 183, 216, 0.14);
  border-radius: 50%;
  content: "";
}
.contact-panel h2 {
  max-width: 760px;
}
.contact-panel p {
  max-width: 680px;
  margin: 0;
}
.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}
.footer-brand img {
  width: 180px;
  height: 45px;
}
.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 0.82rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
  align-content: start;
}
.footer-links a,
.footer-links button {
  border: 0;
  background: none;
  padding: 0;
  color: var(--secondary);
  font-size: 0.82rem;
  cursor: pointer;
  text-align: left;
}
.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-main {
  min-height: 70vh;
}
.legal-hero {
  padding: 72px 0 42px;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  max-width: 900px;
}
.legal-content {
  max-width: 820px;
  padding: 64px 0 100px;
}
.legal-content h2 {
  margin-top: 50px;
  font-size: 1.5rem;
}
.legal-content h3 {
  margin-top: 28px;
  font-size: 1.05rem;
}
.legal-content p,
.legal-content li {
  color: var(--secondary);
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  z-index: 180;
  right: 22px;
  bottom: 22px;
  width: min(460px, calc(100% - 32px));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #0b1827;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}
.cookie-banner h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.cookie-banner p {
  margin-bottom: 18px;
  font-size: 0.82rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.cookie-actions .button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.76rem;
}
.cookie-modal {
  position: fixed;
  z-index: 190;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 7, 13, 0.78);
  padding: 20px;
  backdrop-filter: blur(8px);
}
.cookie-dialog {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow);
}
.dialog-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.dialog-top h2 {
  font-size: 1.5rem;
}
.icon-button {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.cookie-category p {
  margin: 5px 0 0;
  font-size: 0.8rem;
}
.toggle {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 26px;
}
.toggle input {
  position: absolute;
  opacity: 0;
}
.toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #26394e;
  transition: background var(--ease);
}
.toggle span::after {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transition: transform var(--ease);
}
.toggle input:checked + span {
  background: var(--primary);
}
.toggle input:checked + span::after {
  transform: translateX(22px);
}
.toggle input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.always-on {
  color: var(--ice);
  font-size: 0.75rem;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .menu-button {
    display: grid;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    gap: 46px;
  }
  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }
  .hero {
    padding-top: 54px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-panel {
    max-width: 590px;
  }
  .expertise-grid,
  .markets-grid,
  .development-grid {
    grid-template-columns: 1fr;
  }
  .market-card {
    min-height: 210px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-intro {
    position: static;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-card {
    max-width: 520px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .timeline-item ul {
    columns: 1;
  }
  .contributions-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 150px;
    height: 38px;
  }
  .hero-signals {
    grid-template-columns: 1fr;
  }
  .button-row .button {
    width: 100%;
  }
  .hero-panel {
    padding: 18px;
  }
  .ops-item {
    grid-template-columns: 40px 1fr;
  }
  .flow-mark {
    display: none;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 23px;
  }
  .step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .contact-actions {
    display: grid;
    width: 100%;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .cookie-banner,
  .cookie-modal,
  .button-row {
    display: none !important;
  }
  body {
    background: white;
    color: #111827;
  }
  p,
  .secondary {
    color: #374151;
  }
  .section,
  .hero {
    padding: 32px 0;
  }
  .card,
  .profile-card,
  .contact-panel {
    break-inside: avoid;
    border-color: #cbd5e1;
    background: white;
    box-shadow: none;
  }
}
