/* ============================================================
   Market Wave Solutions — design tokens
   ============================================================ */
:root {
  --ink: #0D1A1F;
  --deep: #0A2A36;
  --deep-2: #124A5B;
  --deep-3: #06232C;
  --teal: #1FBAD8;
  --teal-bright: #38CFE8;
  --teal-ink: #12849D;
  --muted: #4E656E;
  --muted-2: #5B717A;
  --frost: #90A7B0;
  --frost-2: #B7CBD2;
  --surface: #F6F8F9;
  --surface-2: #F0F5F7;
  --surface-3: #EDF3F5;
  --line: #DCE7EB;
  --line-2: #D7E2E7;
  --line-3: #E1EAEE;
  --tint: #E7F6FA;
  --tint-2: #EAF6F9;
  --tint-line: #BFE3EC;
  --tint-line-2: #D3E9EF;

  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --container: 1220px;
  --radius-card: 18px;
  --radius-panel: 20px;
  --radius-band: 24px;

  --dur-fast: 200ms;
  --dur-normal: 300ms;
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.6;
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--teal); color: var(--deep-3); }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

@keyframes mwflow { to { stroke-dashoffset: -56; } }
@keyframes mwpulse {
  70% { box-shadow: 0 0 0 9px rgba(56, 207, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 207, 232, 0); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Utilities
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding-left: 26px; padding-right: 26px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-ink);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.eyebrow--bright { color: var(--teal-bright); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-weight: 600;
  font-size: 1rem;
  padding: .9em 1.55em;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform var(--dur-fast), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.btn--primary { background: var(--teal); color: var(--deep-3); }
.btn--primary:hover { background: var(--deep); color: #fff; transform: translateY(-2px); }
.btn--primary.btn--glow { box-shadow: 0 12px 26px -12px rgba(18, 143, 171, .6); }
.btn--outline { background: #fff; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--outline:hover { border-color: var(--teal-ink); transform: translateY(-2px); }
.btn--dark { background: var(--deep); color: #fff; font-size: .95rem; padding: .7em 1.35em; }
.btn--dark:hover { background: var(--teal-ink); transform: translateY(-2px); }
.btn--band { background: var(--teal); color: var(--deep-3); }
.btn--band:hover { background: #fff; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 248, 249, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-3);
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 26px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: .01em;
}
.nav-links a { opacity: .8; transition: opacity var(--dur-fast), color var(--dur-fast); }
.nav-links a:hover, .nav-links a.is-active { opacity: 1; color: var(--teal-ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  border: 1.5px solid var(--line-2);
  background: #fff;
  border-radius: 100px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ink);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.lang-toggle:hover { border-color: var(--teal-ink); color: var(--teal-ink); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ============================================================
   Home hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% -6%, rgba(31, 186, 216, .10), transparent 62%),
    linear-gradient(180deg, #FFFFFF 0%, #F0F5F7 100%);
}
.hero .container { padding-top: 76px; padding-bottom: 92px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
  font-size: clamp(2.5rem, 5.2vw, 4.25rem);
  margin: .42em 0 .1em;
}
.hero h1 .underlined { position: relative; display: inline-block; }
.hero h1 .underlined::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .05em;
  height: .12em;
  background: var(--teal);
  border-radius: 3px;
  opacity: .85;
}
.hero-lead {
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
  margin: 26px 0 32px;
}
.hero-ctas { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-marks { display: flex; gap: 10px 26px; flex-wrap: wrap; font-size: .88rem; color: var(--muted); }
.hero-marks span { display: inline-flex; align-items: center; gap: .5em; }
.hero-marks span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
}

/* Live panel */
.live-panel {
  background: var(--deep);
  border: 1px solid rgba(56, 207, 232, .22);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 44px 90px -46px rgba(10, 42, 54, .65);
  position: relative;
  overflow: hidden;
}
.live-panel::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 186, 216, .28), transparent 70%);
  pointer-events: none;
}
.live-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
}
.live-panel-head .label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--frost);
}
.live-indicator {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--teal-bright);
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.live-indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 0 rgba(56, 207, 232, .6);
  animation: mwpulse 2s infinite;
}
.live-panel ul { list-style: none; position: relative; }
.live-panel li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(147, 167, 198, .16);
  color: #fff;
  font-weight: 600;
  font-size: 1.04rem;
}
.live-panel .code {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 400;
  color: var(--teal-bright);
  width: 38px;
  letter-spacing: .04em;
}
.badge-live-dark {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  color: var(--teal-bright);
  border: 1px solid rgba(56, 207, 232, .45);
  border-radius: 6px;
  padding: 3px 7px;
}
.live-panel-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(147, 167, 198, .2);
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--frost);
  letter-spacing: .08em;
}
.live-panel-foot .arrow { color: var(--teal); }

/* ============================================================
   Stats band
   ============================================================ */
.stats-band { background: var(--deep); color: #fff; }
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-number {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  color: var(--teal-bright);
  line-height: 1;
}
.stat-label { color: var(--frost); font-size: .92rem; margin-top: 6px; }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 90px 0; }
.section--tinted { background: var(--surface-3); }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: .4em 0 .35em;
}
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* Page hero (subpages) */
.page-hero {
  background:
    radial-gradient(760px 380px at 84% -10%, rgba(31, 186, 216, .12), transparent 64%),
    var(--surface);
  padding: 70px 0 40px;
}
.page-hero .container { max-width: 820px; margin: 0; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -.02em;
  line-height: 1.04;
  margin: .35em 0 .3em;
}
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 58ch; }

/* ============================================================
   Cards (home portfolio grid)
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.venture-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal);
}
.venture-card:hover {
  border-color: var(--teal);
  box-shadow: 0 26px 50px -30px rgba(10, 42, 54, .35);
}
.venture-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.venture-card .code { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; color: var(--teal-ink); }
.venture-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.venture-card p { color: var(--muted); font-size: .96rem; }
.badge-live {
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--teal-ink);
  border: 1px solid var(--tint-line);
  background: var(--tint);
  border-radius: 6px;
  padding: 3px 7px;
}

/* ============================================================
   Portfolio page rows
   ============================================================ */
.service-list { display: grid; gap: 18px; }
.service-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 34px 36px;
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal);
}
.service-row:hover {
  border-color: var(--teal);
  box-shadow: 0 26px 50px -32px rgba(10, 42, 54, .32);
}
.service-row .code { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; color: var(--teal-ink); margin-bottom: 8px; }
.service-row .kind {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--frost);
}
.service-row h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-row h3 .badge-live { font-size: .58rem; }
.service-row p { color: var(--muted); font-size: 1rem; max-width: 60ch; }
.btn--enquire {
  white-space: nowrap;
  font-size: .95rem;
  padding: .7em 1.3em;
  background: var(--surface-2);
  color: var(--deep);
  border: 1.5px solid var(--line);
}
.btn--enquire:hover { background: var(--deep); color: #fff; border-color: var(--deep); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  color: #fff;
  border-radius: var(--radius-band);
  padding: 44px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cta-band h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #fff;
  margin-bottom: 6px;
}
.cta-band p { color: var(--frost-2); font-size: 1.02rem; max-width: 52ch; }

/* ============================================================
   Approach page
   ============================================================ */
.approach-dark {
  background:
    radial-gradient(700px 420px at 82% 12%, rgba(31, 186, 216, .16), transparent 66%),
    var(--deep);
  color: #fff;
  padding: 80px 0;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.approach-grid h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -.02em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 22px;
}
.why-list { list-style: none; display: grid; gap: 14px; }
.why-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-weight: 500;
  color: #E7EFF2;
}
.why-list .tick {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(56, 207, 232, .14);
  color: var(--teal-bright);
  display: grid;
  place-items: center;
  margin-top: 1px;
  font-size: .9rem;
}
.network-visual {
  position: relative;
  border-radius: var(--radius-band);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 32% 30%, var(--deep-2), #08222C);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .6);
  display: grid;
  place-items: center;
}
.network-visual svg path { animation: mwflow 3s linear infinite; }
.network-visual .coords {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--frost);
  letter-spacing: .1em;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.step-card .step-n {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
  background: var(--teal-ink);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: .94rem; }

/* ============================================================
   Clients page
   ============================================================ */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 34px 30px;
  transition: border-color var(--dur-normal);
}
.who-card:hover { border-color: var(--teal); }
.who-card .code { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; color: var(--teal-ink); }
.who-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  margin: 12px 0;
}
.who-card p { color: var(--muted); font-size: .98rem; margin-bottom: 20px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--teal-ink);
  background: var(--tint-2);
  border: 1px solid var(--tint-line-2);
  border-radius: 7px;
  padding: 5px 9px;
}

/* ============================================================
   Group page
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 32px 30px;
}
.value-card .code { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; color: var(--teal-ink); margin-bottom: 14px; }
.value-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.value-card p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-band {
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  color: #fff;
  border-radius: 28px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 186, 216, .34), transparent 70%);
  pointer-events: none;
}
.contact-band-copy { position: relative; }
.contact-band h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  letter-spacing: -.02em;
  line-height: 1.06;
  color: #fff;
  margin: .4em 0;
}
.contact-band-copy p { color: var(--frost-2); font-size: 1.06rem; max-width: 42ch; }
.contact-form {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-panel);
  padding: 26px;
  position: relative;
}
.contact-form label {
  display: block;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--frost);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 14px;
  font-family: inherit;
  font-size: .95rem;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
}
.contact-form input:last-of-type { margin-bottom: 16px; }
.contact-form .btn { width: 100%; justify-content: center; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.contact-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.contact-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--tint);
  color: var(--teal-ink);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.contact-card small { display: block; color: var(--muted-2); font-size: .8rem; }
.contact-card strong { font-family: var(--serif); font-size: 1.04rem; }
.payment-note {
  max-width: 680px;
  margin: 28px auto 0;
  text-align: center;
  font-family: var(--mono);
  font-size: .8rem;
  line-height: 1.7;
  color: var(--muted-2);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--deep); color: var(--frost); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-grid img { height: 52px; width: auto; display: block; margin-bottom: 16px; }
.footer-grid p { max-width: 40ch; font-size: .95rem; }
.footer-grid h4 {
  color: #fff;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  padding: 5px 0;
  font-size: .94rem;
  opacity: .82;
  transition: opacity var(--dur-fast), color var(--dur-fast);
}
.footer-grid a:hover { opacity: 1; color: var(--teal-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: .85rem;
  opacity: .7;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .site-header nav { padding: 10px 18px; }
  .nav-logo img { height: 42px; }
  .menu-toggle { display: block; }
  .nav-links { display: none; }
  .site-header.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    gap: 14px;
    box-shadow: 0 20px 44px -22px rgba(10, 42, 54, .35);
  }
  .hero .container { padding-top: 58px; padding-bottom: 58px; }
  .hero-grid, .approach-grid, .contact-band { grid-template-columns: 1fr; }
  .card-grid, .steps-grid, .who-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .page-hero { padding: 58px 0 32px; }
  .approach-dark { padding: 58px 0; }
  .service-row { grid-template-columns: 1fr; gap: 14px; padding: 26px 24px; }
  .site-footer { padding: 48px 0 26px; }
}

@media (max-width: 640px) {
  .site-header nav { padding: 9px 16px; gap: 10px; }
  .nav-cta { display: none; }
  .hero .container { padding-top: 44px; padding-bottom: 44px; }
  .container { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 2.15rem; line-height: 1.06; }
  .section { padding: 44px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .steps-grid, .who-grid, .values-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 28px; }
  .contact-band { padding: 34px 24px; }
}

@media (max-width: 400px) {
  .nav-logo img { height: 36px; }
}

/* ============================================================
   Two-audience split
   ============================================================ */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.split-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-band);
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal), transform var(--dur-normal);
}
.split-card:hover { border-color: var(--teal); box-shadow: 0 30px 60px -34px rgba(10, 42, 54, .32); transform: translateY(-3px); }
.split-card--dark {
  background: radial-gradient(560px 380px at 82% -10%, rgba(31, 186, 216, .18), transparent 64%), var(--deep);
  border-color: rgba(56, 207, 232, .22);
  color: #fff;
}
.split-card--dark:hover { border-color: rgba(56, 207, 232, .5); }
.split-card .kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-ink);
}
.split-card--dark .kicker { color: var(--teal-bright); }
.split-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -.01em;
  margin: 12px 0 12px;
  line-height: 1.1;
}
.split-card > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 22px; max-width: 44ch; }
.split-card--dark > p { color: var(--frost-2); }
.split-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.split-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.split-card--dark li { color: #E7EFF2; }
.split-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .5em;
  border-radius: 50%;
  background: var(--teal);
}
.split-link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  font-size: .96rem;
  color: var(--teal-ink);
  transition: gap var(--dur-fast), color var(--dur-fast);
}
.split-card--dark .split-link { color: var(--teal-bright); }
.split-link:hover { gap: .85em; }

/* ============================================================
   Capability / trust chips
   ============================================================ */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 16px;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.section--tinted .chip { background: #fff; }

/* ============================================================
   Feature band (dark, icon list)
   ============================================================ */
.feature-band {
  background: radial-gradient(680px 400px at 15% 0%, rgba(31, 186, 216, .16), transparent 62%), var(--deep);
  color: #fff;
}
.feature-band .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}
.feature-item .feature-ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(56, 207, 232, .14);
  color: var(--teal-bright);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature-item h3 { font-family: var(--serif); font-weight: 600; font-size: 1.24rem; margin-bottom: 8px; color: #fff; }
.feature-item p { color: var(--frost-2); font-size: .98rem; }

/* ============================================================
   Timeline
   ============================================================ */
.timeline { display: grid; gap: 0; border-left: 2px solid var(--line); margin-left: 8px; }
.timeline-item { position: relative; padding: 0 0 34px 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -9px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--surface);
}
.timeline-item .yr { font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; color: var(--teal-ink); margin-bottom: 6px; }
.timeline-item h3 { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; margin-bottom: 6px; }
.timeline-item p { color: var(--muted); font-size: .98rem; max-width: 56ch; }

/* ============================================================
   Testimonial / quote
   ============================================================ */
.quote-band {
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  color: #fff;
  border-radius: var(--radius-band);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "\201C";
  position: absolute;
  top: -30px; left: 26px;
  font-family: var(--serif);
  font-size: 12rem;
  color: rgba(56, 207, 232, .18);
  line-height: 1;
}
.quote-band blockquote {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.4;
  letter-spacing: -.01em;
  max-width: 40ch;
  margin-bottom: 22px;
}
.quote-band cite { position: relative; font-style: normal; display: flex; flex-direction: column; gap: 2px; }
.quote-band cite strong { font-weight: 600; }
.quote-band cite span { color: var(--frost); font-size: .92rem; font-family: var(--mono); letter-spacing: .04em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 24px;
  transition: border-color var(--dur-fast);
}
.faq-item[open] { border-color: var(--teal); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--teal-ink);
  transition: transform var(--dur-fast);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 1rem; padding: 0 0 22px; max-width: 68ch; }

/* Responsive additions */
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; }
  .feature-band .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split-card { padding: 32px; }
  .quote-band { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .feature-band .feature-grid { grid-template-columns: 1fr; }
  .split-card { padding: 28px 24px; }
  .quote-band { padding: 32px 24px; }
  .quote-band::before { font-size: 8rem; top: -14px; }
}
