:root {
  --bg: #f5f5f1;
  --paper: #ffffff;
  --ink: #111417;
  --muted: #6f7478;
  --line: #d9dcda;
  --dark: #0a0d0f;
  --dark-2: #121619;
  --acid: #d9ff43;
  --max: 1440px;
  --pad: clamp(24px, 5vw, 76px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .3s ease, color .3s ease, height .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(245,245,241,.92);
  border-color: rgba(17,20,23,.12);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  letter-spacing: .12em;
  font-weight: 500;
  white-space: nowrap;
}
.brand b { font-weight: 700; }
.brand-mark {
  width: 21px;
  height: 21px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%,-50%) rotate(-36deg);
}
.brand-mark::before { width: 1.5px; height: 27px; }
.brand-mark::after { width: 27px; height: 1.5px; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
.nav a { opacity: .78; transition: opacity .2s ease; }
.nav a:hover { opacity: 1; }
.nav .nav-cta {
  opacity: 1;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 11px 17px;
}
.menu-button { display: none; background: none; border: 0; padding: 10px; color: inherit; }
.menu-button span { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px 0; }

.section-dark { color: #fff; background: var(--dark); }
.section-pad { padding: clamp(92px, 11vw, 170px) var(--pad); }
.eyebrow {
  margin: 0 0 24px;
  color: #73797c;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow-light { color: rgba(255,255,255,.58); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-weight: 500; letter-spacing: -.04em; }
h2 { max-width: 1100px; margin-bottom: 0; font-size: clamp(42px, 6vw, 92px); line-height: .99; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 150px var(--pad) 54px;
  background: #090c0e;
}
.hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(122deg, transparent 0 58%, rgba(255,255,255,.055) 58.2% 58.5%, transparent 58.7%),
    radial-gradient(circle at 74% 45%, rgba(217,255,67,.14), transparent 18%),
    radial-gradient(circle at 76% 46%, rgba(255,255,255,.12), transparent 1.2%),
    linear-gradient(to bottom, rgba(255,255,255,.02), transparent 30%),
    url("assets/hero-grid.svg") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,8,.95) 0%, rgba(5,7,8,.76) 45%, rgba(5,7,8,.08) 85%), linear-gradient(0deg, rgba(5,7,8,.9) 0%, transparent 42%);
}
.hero-content { position: relative; z-index: 2; width: min(970px, 78vw); padding-bottom: 120px; }
.hero h1 { margin: 0; font-size: clamp(56px, 8.1vw, 126px); line-height: .89; }
.hero-copy { max-width: 760px; margin: 38px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.6vw, 24px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: #0b0e10; background: #fff; }
.button-light:hover { background: var(--acid); }
.button-dark { color: #fff; background: var(--dark); }
.text-link { display: inline-flex; gap: 9px; align-items: center; font-size: 13px; font-weight: 700; }
.text-link span { font-size: 18px; }
.text-link-light { color: rgba(255,255,255,.82); }
.hero-meta {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 55px;
  width: min(560px, 45vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-meta div { padding: 18px 16px 0 0; }
.hero-meta span { display: block; margin-bottom: 12px; color: rgba(255,255,255,.36); font-size: 10px; }
.hero-meta strong { display: block; color: rgba(255,255,255,.82); font-size: 11px; line-height: 1.45; letter-spacing: .03em; font-weight: 600; }

.intro { display: grid; grid-template-columns: 1.65fr .75fr; gap: clamp(50px, 10vw, 170px); background: var(--paper); }
.intro-copy { align-self: end; }
.intro-copy p { color: #4d5356; font-size: 17px; line-height: 1.7; }
.intro-copy p:last-child { margin-bottom: 0; }

.services { background: var(--bg); }
.split-heading { display: grid; grid-template-columns: 1.6fr .65fr; gap: 80px; align-items: end; }
.split-heading > p { max-width: 480px; margin-bottom: 5px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 78px; }
.service-card {
  min-height: 540px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid #e6e7e4;
}
.service-card-dark { color: #fff; background: var(--dark-2); border-color: var(--dark-2); }
.service-number { color: #8b9092; font-size: 11px; }
.service-card h3 { margin: auto 0 22px; font-size: clamp(30px, 3vw, 47px); line-height: 1.02; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card-dark p { color: rgba(255,255,255,.58); }
.service-card ul { padding: 20px 0 0; margin: 10px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card-dark ul { border-color: rgba(255,255,255,.14); }
.service-card li { position: relative; padding: 8px 0 8px 18px; color: #4f5558; font-size: 12px; }
.service-card-dark li { color: rgba(255,255,255,.7); }
.service-card li::before { content: ""; position: absolute; left: 0; top: 15px; width: 5px; height: 5px; border-radius: 50%; background: var(--acid); }

.ready-sites {
  min-height: 850px;
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) var(--pad);
  display: flex;
  align-items: center;
}
.ready-art { position: absolute; inset: 0; background: url("assets/ready-site.svg") center/cover no-repeat; }
.ready-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,10,.98) 0%, rgba(7,9,10,.72) 50%, rgba(7,9,10,.08) 100%); }
.ready-content { position: relative; z-index: 2; max-width: 760px; }
.ready-content h2 { font-size: clamp(58px, 8vw, 118px); }
.ready-content > p:not(.eyebrow) { max-width: 690px; margin: 34px 0; color: rgba(255,255,255,.66); font-size: 19px; line-height: 1.65; }
.ready-list { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 1px; margin: 34px 0; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.2); }
.ready-list span { padding: 17px 18px; background: rgba(10,13,15,.75); font-size: 12px; }
.ready-note { position: absolute; z-index: 2; right: var(--pad); bottom: 56px; width: 300px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 14px; }
.ready-note span { color: var(--acid); font-size: 10px; letter-spacing: .12em; }
.ready-note p { margin: 13px 0 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }

.process { background: var(--paper); }
.process-list { margin: 80px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 100px 1fr; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: #959a9d; font-size: 11px; }
.process-list div { display: grid; grid-template-columns: .85fr 1.4fr; gap: 80px; align-items: baseline; }
.process-list h3 { margin: 0; font-size: 37px; }
.process-list p { max-width: 650px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.model { display: grid; grid-template-columns: .9fr 1.3fr; gap: clamp(70px, 9vw, 150px); align-items: center; background: #e8e8e2; }
.model-visual { aspect-ratio: 1; position: relative; display: grid; place-items: center; }
.model-ring { position: absolute; border: 1px solid rgba(17,20,23,.18); border-radius: 50%; }
.model-ring-one { inset: 7%; }
.model-ring-two { inset: 24%; border-style: dashed; animation: spin 32s linear infinite; }
.model-ring-one::before, .model-ring-one::after { content: ""; position: absolute; border-radius: 50%; background: var(--dark); }
.model-ring-one::before { width: 13px; height: 13px; top: 8%; left: 23%; }
.model-ring-one::after { width: 7px; height: 7px; right: 8%; bottom: 27%; background: var(--acid); }
.model-core { width: 150px; height: 150px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--dark); color: #fff; font-size: 13px; line-height: 1.55; letter-spacing: .12em; }
@keyframes spin { to { transform: rotate(360deg); } }
.model-content h2 { font-size: clamp(44px, 5.5vw, 79px); }
.roadmap { margin-top: 60px; }
.roadmap > div { display: grid; grid-template-columns: 90px 1fr 1.2fr; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(17,20,23,.18); }
.roadmap span { color: #767b7d; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.roadmap strong { font-size: 14px; }
.roadmap p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.clients { background: var(--paper); }
.client-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 68px; }
.client-tags span { padding: 17px 22px; border: 1px solid #cfd2cf; border-radius: 999px; font-size: 13px; }

.geography { position: relative; min-height: 760px; overflow: hidden; padding: clamp(110px, 12vw, 180px) var(--pad); }
.map-lines { position: absolute; inset: 0; background: url("assets/map-lines.svg") center/cover no-repeat; opacity: .78; }
.geography-content { position: relative; z-index: 2; }
.geography h2 { max-width: 1200px; }
.countries { width: min(820px, 100%); margin-top: 72px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.countries div { padding: 20px 14px 0 0; }
.countries span { display: block; color: rgba(255,255,255,.36); font-size: 10px; margin-bottom: 12px; }
.countries strong { font-size: 13px; }
.geography-note { margin-top: 55px; color: rgba(255,255,255,.52); font-size: 13px; }

.contact { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(70px, 12vw, 190px); background: var(--bg); }
.contact-copy h2 { font-size: clamp(48px, 6vw, 88px); }
.contact-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.contact-email { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 26px; align-self: end; }
.contact-form label span { display: block; margin-bottom: 9px; color: #73787b; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0 0 14px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid #bec2bf; outline: none; resize: vertical; font-size: 15px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form .button { align-self: flex-start; margin-top: 8px; }
.form-note { max-width: 440px; margin: -10px 0 0; color: #8a8f91; font-size: 10px; line-height: 1.5; }

.footer { min-height: 150px; padding: 40px var(--pad); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 25px; color: rgba(255,255,255,.63); background: var(--dark); font-size: 11px; }
.footer p { margin: 0; text-align: center; }
.footer > span { text-align: right; }
.brand-footer { color: #fff; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .site-header { height: 70px; }
  .menu-button { display: block; }
  .nav { position: fixed; inset: 70px 0 auto; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 20px var(--pad) 28px; color: var(--ink); background: rgba(245,245,241,.98); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { margin-top: 14px; width: auto; padding: 11px 17px; border: 1px solid var(--ink); }
  .hero { min-height: 930px; align-items: center; padding-top: 120px; }
  .hero-content { width: 100%; padding-bottom: 170px; }
  .hero-meta { left: var(--pad); right: var(--pad); width: auto; }
  .intro, .split-heading, .model, .contact { grid-template-columns: 1fr; }
  .intro-copy { max-width: 720px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 420px; }
  .ready-note { display: none; }
  .model-visual { width: min(520px, 100%); margin: auto; }
  .countries { grid-template-columns: repeat(2, 1fr); row-gap: 25px; }
  .footer { grid-template-columns: 1fr; align-items: start; }
  .footer p, .footer > span { text-align: left; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  h2 { font-size: 42px; }
  .hero { min-height: 900px; padding-bottom: 35px; }
  .hero h1 { font-size: 55px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-meta { grid-template-columns: 1fr; gap: 12px; bottom: 26px; }
  .hero-meta div { padding-top: 10px; }
  .hero-meta div:nth-child(n+2) { display: none; }
  .intro { gap: 45px; }
  .service-grid { margin-top: 45px; }
  .service-card { min-height: 400px; padding: 24px; }
  .ready-sites { min-height: 780px; }
  .ready-list { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 50px 1fr; }
  .process-list div { grid-template-columns: 1fr; gap: 12px; }
  .roadmap > div { grid-template-columns: 65px 1fr; }
  .roadmap p { grid-column: 2; }
  .countries { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* SEO/content update: accessibility, FAQ and form controls */
.skip-link {
  position: fixed;
  z-index: 100;
  left: 18px;
  top: -70px;
  padding: 12px 16px;
  color: #fff;
  background: var(--dark);
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.faq { background: var(--paper); }
.faq-list { margin-top: 72px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 30px 58px 30px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.25;
  letter-spacing: -.025em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 27px;
  color: #777d80;
  font-size: 28px;
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  max-width: 880px;
  margin: -5px 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-form select {
  width: 100%;
  padding: 0 0 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bec2bf;
  border-radius: 0;
  outline: none;
  font-size: 15px;
}
.contact-form select:focus { border-color: var(--ink); }
.form-note a { border-bottom: 1px solid currentColor; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

@media (max-width: 640px) {
  .faq-list { margin-top: 48px; }
  .faq-list summary { padding: 24px 42px 24px 0; font-size: 21px; }
  .faq-list summary::after { top: 21px; }
}

/* Desktop compact layout — tuned for common laptop/desktop viewports */
@media (min-width: 981px) {
  .section-pad {
    padding-top: clamp(68px, 7.2vw, 108px);
    padding-bottom: clamp(68px, 7.2vw, 108px);
  }

  h2 {
    font-size: clamp(40px, 4.8vw, 72px);
    line-height: .98;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 34px;
    align-items: center;
  }

  .hero-content {
    width: min(900px, 72vw);
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(52px, 6.65vw, 102px);
    line-height: .91;
  }

  .hero-copy {
    max-width: 700px;
    margin-top: 26px;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-meta {
    bottom: 30px;
    width: min(500px, 40vw);
  }

  .hero-meta div {
    padding-top: 14px;
  }

  .intro {
    grid-template-columns: 1.5fr .72fr;
    gap: clamp(64px, 8vw, 120px);
  }

  .intro-copy p,
  .split-heading > p,
  .contact-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .service-grid {
    margin-top: 48px;
  }

  .service-card {
    min-height: 410px;
    padding: 28px;
  }

  .service-card h3 {
    margin-bottom: 18px;
    font-size: clamp(27px, 2.35vw, 38px);
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .service-card ul {
    padding-top: 14px;
    margin-top: 8px;
  }

  .service-card li {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 11px;
  }

  .ready-sites {
    min-height: 650px;
    padding-top: clamp(76px, 7vw, 104px);
    padding-bottom: clamp(76px, 7vw, 104px);
  }

  .ready-content {
    max-width: 680px;
  }

  .ready-content h2 {
    font-size: clamp(52px, 6.4vw, 92px);
  }

  .ready-content > p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .ready-list {
    margin: 24px 0;
  }

  .ready-list span {
    padding: 13px 15px;
    font-size: 11px;
  }

  .ready-note {
    bottom: 34px;
  }

  .process-list {
    margin-top: 48px;
  }

  .process-list li {
    padding: 24px 0;
  }

  .process-list div {
    gap: 56px;
  }

  .process-list h3 {
    font-size: 29px;
  }

  .process-list p {
    font-size: 14px;
    line-height: 1.55;
  }

  .client-tags {
    margin-top: 42px;
  }

  .client-tags span {
    padding: 13px 18px;
    font-size: 12px;
  }

  .geography {
    min-height: 620px;
    padding-top: clamp(76px, 7vw, 108px);
    padding-bottom: clamp(76px, 7vw, 108px);
  }

  .countries {
    margin-top: 48px;
  }

  .geography-note {
    margin-top: 36px;
  }

  .contact-copy h2 {
    font-size: clamp(42px, 4.8vw, 70px);
  }

  .contact {
    gap: clamp(64px, 9vw, 130px);
  }

  .contact-form {
    gap: 21px;
  }

  .faq-list {
    margin-top: 46px;
  }

  .faq-list summary {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: clamp(18px, 1.75vw, 25px);
  }

  .faq-list summary::after {
    top: 19px;
  }

  .faq-list details p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Extra tightening for 13–15 inch laptop screens */
@media (min-width: 981px) and (max-height: 850px) {
  .site-header { height: 68px; }
  .hero { padding-top: 96px; }
  .hero-content { padding-bottom: 38px; }
  .hero h1 { font-size: clamp(48px, 6.1vw, 88px); }
  .hero-copy { margin-top: 20px; font-size: 16px; }
  .hero-actions { margin-top: 22px; }
  .section-pad { padding-top: 62px; padding-bottom: 62px; }
  h2 { font-size: clamp(38px, 4.4vw, 64px); }
  .service-grid { margin-top: 38px; }
  .service-card { min-height: 360px; }
  .ready-sites { min-height: 590px; padding-top: 66px; padding-bottom: 66px; }
  .process-list { margin-top: 38px; }
  .process-list li { padding: 20px 0; }
  .faq-list { margin-top: 38px; }
}

/* =========================================================
   Full-page section snapping — desktop
   Each mouse-wheel gesture moves the visitor to the next
   complete content screen. Mobile keeps natural scrolling.
   ========================================================= */
@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    overscroll-behavior-y: none;
    scrollbar-gutter: stable;
  }

  main > section {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .intro {
    align-items: center;
  }

  .services,
  .process,
  .clients,
  .faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ready-sites,
  .geography,
  .model,
  .contact {
    min-height: 100svh;
  }

  .footer {
    scroll-snap-align: end;
    scroll-snap-stop: always;
  }
}

/* =========================================================
   Trust, portfolio, team and project qualification sections
   ========================================================= */
.pipeline { background: #ecece7; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(17,20,23,.2);
  border-bottom: 1px solid rgba(17,20,23,.2);
}
.metrics-grid > div { padding: 18px 24px 18px 0; }
.metrics-grid > div + div { padding-left: 24px; border-left: 1px solid rgba(17,20,23,.14); }
.metrics-grid strong { display: block; font-size: clamp(27px, 2.6vw, 42px); font-weight: 500; letter-spacing: -.045em; }
.metrics-grid span { display: block; max-width: 220px; margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.project-card {
  min-height: 285px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid #dedfdb;
}
.project-card-dark { color: #fff; background: var(--dark-2); border-color: var(--dark-2); }
.project-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #7b8082; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.project-card-top b { padding: 6px 9px; color: var(--ink); background: var(--acid); border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.project-card h3 { margin: auto 0 15px; font-size: clamp(24px, 2.15vw, 34px); line-height: 1.02; }
.project-card p { margin-bottom: 18px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.project-card-dark p { color: rgba(255,255,255,.58); }
.project-meta { display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 10px; }
.project-card-dark .project-meta { border-color: rgba(255,255,255,.14); }
.project-meta span { color: #8a8f91; text-transform: uppercase; letter-spacing: .08em; }
.project-meta strong { text-align: right; font-size: 10px; letter-spacing: .02em; }
.section-disclaimer { max-width: 1040px; margin: 18px 0 0; color: #7a7f81; font-size: 10px; line-height: 1.5; }

.team { background: var(--paper); }
.team-layout { display: grid; grid-template-columns: .8fr 1.45fr; gap: 14px; margin-top: 42px; }
.founder-card { padding: 34px; color: #fff; background: var(--dark); display: flex; flex-direction: column; min-height: 410px; }
.role-label { display: inline-block; color: #7d8386; font-size: 9px; line-height: 1.2; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; }
.role-label-light { color: rgba(255,255,255,.48); }
.founder-card h3 { margin: auto 0 20px; font-size: clamp(34px, 3.5vw, 54px); }
.founder-card p { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }
.founder-card .text-link { margin-top: 10px; color: rgba(255,255,255,.84); }
.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.delivery-grid article { min-height: 132px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.delivery-grid article > span { color: #929799; font-size: 9px; }
.delivery-grid h3 { margin: 19px 0 7px; font-size: 20px; line-height: 1.1; }
.delivery-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.48; }

.technology { position: relative; min-height: 100svh; padding: clamp(72px, 7vw, 108px) var(--pad); overflow: hidden; }
.technology::before { content: ""; position: absolute; width: 44vw; height: 44vw; right: -12vw; top: -18vw; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 9vw rgba(255,255,255,.015), 0 0 0 18vw rgba(255,255,255,.012); }
.technology-inner { position: relative; z-index: 1; width: 100%; }
.technology .split-heading > p { color: rgba(255,255,255,.54); }
.brand-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 42px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.brand-groups article { min-height: 185px; padding: 22px; background: rgba(10,13,15,.92); }
.brand-groups article > span { color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.brand-groups article div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.brand-groups b { padding: 8px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 10px; font-weight: 500; }
.partner-policy { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: end; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.partner-policy h3 { max-width: 560px; margin: 15px 0 0; font-size: clamp(28px, 3.2vw, 46px); line-height: 1.03; }
.partner-policy p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.6; }
.technology-note { margin: 18px 0 0; color: rgba(255,255,255,.35); font-size: 9px; line-height: 1.5; }

.country-status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 42px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.country-status-grid article { min-height: 190px; padding: 22px; background: rgba(10,13,15,.83); }
.country-status-grid span { color: var(--acid); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.country-status-grid h3 { margin: 50px 0 12px; font-size: 27px; }
.country-status-grid p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.52; }
.legal-panel { display: grid; grid-template-columns: .85fr 1.4fr; gap: 80px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.legal-panel h3 { max-width: 530px; margin: 0; font-size: clamp(28px, 3.1vw, 46px); line-height: 1.04; }
.legal-copy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.legal-copy p { margin: 0; color: rgba(255,255,255,.5); font-size: 10px; line-height: 1.55; }

.response { background: #e8e8e2; }
.response-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 44px; background: rgba(17,20,23,.16); border: 1px solid rgba(17,20,23,.16); }
.response-grid article { min-height: 245px; padding: 24px; display: flex; flex-direction: column; background: #efefe9; }
.response-grid article:nth-child(2) { color: #fff; background: var(--dark-2); }
.response-grid > article > span { color: #8b9092; font-size: 9px; }
.response-grid h3 { margin: auto 0 14px; font-size: clamp(23px, 2.1vw, 32px); line-height: 1.04; }
.response-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.response-grid article:nth-child(2) p { color: rgba(255,255,255,.58); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer a { border-bottom: 1px solid rgba(255,255,255,.35); }
.footer .brand { border-bottom: 0; }

@media (min-width: 981px) {
  .pipeline, .team, .response { padding-top: 62px; padding-bottom: 62px; }
  .pipeline h2, .team h2, .technology h2, .response h2, .geography h2 { font-size: clamp(38px, 4.25vw, 64px); }
  .pipeline .split-heading, .team .split-heading, .technology .split-heading, .response .split-heading { gap: 58px; }
  .pipeline .split-heading > p, .team .split-heading > p, .technology .split-heading > p, .response .split-heading > p { font-size: 13px; line-height: 1.55; }
  .geography { padding-top: 72px; padding-bottom: 58px; }
}

@media (max-width: 980px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid > div:nth-child(3) { border-left: 0; }
  .metrics-grid > div:nth-child(n+3) { border-top: 1px solid rgba(17,20,23,.14); }
  .project-grid, .team-layout, .partner-policy, .legal-panel { grid-template-columns: 1fr; }
  .brand-groups, .country-status-grid, .response-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-card { min-height: 360px; }
  .legal-copy { grid-template-columns: 1fr; }
  .technology { padding-top: 100px; padding-bottom: 100px; }
}

@media (max-width: 640px) {
  .metrics-grid, .project-grid, .delivery-grid, .brand-groups, .country-status-grid, .response-grid, .form-row { grid-template-columns: 1fr; }
  .metrics-grid > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(17,20,23,.14); }
  .project-card { min-height: 320px; }
  .team-layout { margin-top: 34px; }
  .founder-card { min-height: 430px; padding: 26px; }
  .delivery-grid article { min-height: 145px; }
  .brand-groups article { min-height: 150px; }
  .country-status-grid article { min-height: 165px; }
  .country-status-grid h3 { margin-top: 35px; }
  .response-grid article { min-height: 210px; }
}

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  .pipeline, .team, .technology, .response {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
