:root {
  --teal: #008ba3;
  --teal-bright: #3d87a6;
  --teal-deep: #06697a;
  --btn-fill: #3d87a6;
  --btn-line: #3d89a1;
  --btn-label: #7eb8c8;
  --mint: #e5f3f6;
  --mint-2: #d7ecef;
  --green: #7dce8a;
  --green-hover: #6bbf79;
  --green-brand: #5cb487;
  --ink: #171717;
  --ink-2: #3d4a4e;
  --ink-3: #5a6a70;
  --paper: #f4f8f9;
  --white: #ffffff;
  --hero: #0b1216;
  --header: #10181c;
  --charcoal: #17191d;
  --deep: #02242a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(2, 36, 42, 0.18);
  --radius: 10px;
  --radius-pill: 999px;
  --header-h: 84px;
  --max: 1120px;
  --font: Avenir, "Avenir Next", "Nunito Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--ink-2);
  background: var(--hero);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--teal);
  color: #fff;
  padding: 8px 14px;
  z-index: 10000;
}

.skip-link:focus {
  left: 8px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0.42) 0%, rgba(8, 14, 18, 0) 100%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.45s ease, background 0.45s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 24, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled::before,
body.nav-open .site-header::before {
  opacity: 1;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.brand-icon {
  width: 58px;
  height: 32px;
}

.brand-word {
  font-size: 21px;
  font-weight: 100;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d8dcde;
  white-space: nowrap;
}

.brand-word span {
  color: #f2f4f5;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  color: #c5c7c8;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0 10px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-connect {
  background: #1b3e50;
  color: #eef7f9;
  border: 1.5px solid #4db8cc;
  border-radius: var(--radius-pill);
  padding: 12px 14px 12px 26px;
  min-height: 48px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(77, 184, 204, 0.18);
}

.btn-connect:hover {
  background: #245066;
  color: #fff;
  border-color: #6ecfe0;
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(77, 184, 204, 0.28);
}

.btn-connect:focus-visible {
  outline: 2px solid #6ecfe0;
  outline-offset: 3px;
}

.btn-connect .btn-ico {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid currentColor;
}

.btn-connect .btn-ico svg {
  width: 13px;
  height: 13px;
}

.btn-pill {
  background: var(--btn-fill);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
}

.btn-pill:has(.btn-ico) {
  padding: 10px 10px 10px 28px;
  gap: 16px;
}

.btn-pill:hover {
  background: #347890;
  transform: translateY(-1px);
}

.btn-pill:hover .btn-ico {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

.btn-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}

.btn-green {
  background: var(--green);
  color: #16341c;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.btn-green .btn-ico {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: rgba(22, 52, 28, 0.12);
}

.btn-green .btn-ico svg {
  width: 14px;
  height: 14px;
}

.btn-green:hover .btn-ico {
  background: rgba(22, 52, 28, 0.18);
}

.btn-green:hover {
  background: var(--green-hover);
}

.btn-green:disabled {
  opacity: 0.7;
  cursor: wait;
}

.nav-connect { display: none; }

.nav a.btn-connect {
  color: #eef7f9;
  padding: 12px 14px 12px 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.nav a.btn-connect::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  flex: 0 0 44px;
  margin-left: auto;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  margin: 0 auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--hero);
}

.hero-bg {
  position: absolute;
  inset: -14%;
  background: url("../assets/images/hero-bg-hi.jpg") center / cover no-repeat;
  animation: hero-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0.52) 0%, rgba(8, 14, 18, 0.7) 70%, rgba(8, 14, 18, 0.94) 100%);
  pointer-events: none;
  z-index: 0;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(-2.4%, 1.2%, 0); }
  to { transform: scale(1.18) translate3d(3.2%, -2.4%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    inset: 0;
    transform: none;
  }

}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 24px 176px;
  max-width: 920px;
  width: 100%;
  min-width: 0;
}

.hero-mark {
  width: min(340px, 72vw);
  margin: 0 auto 36px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  font-size: clamp(20px, 3.2vw, 44px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9d0d4;
  margin-bottom: 18px;
  line-height: 1.3;
  padding: 0 8px;
}

.hero .lede {
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300;
  color: #f3f6f7;
  margin-bottom: 36px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero.about {
  background:
    linear-gradient(180deg, rgba(8, 14, 18, 0.55), rgba(8, 14, 18, 0.82)),
    url("../assets/images/about-bg.jpg") center / cover no-repeat;
}

.page-hero.scope {
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.5), rgba(6, 10, 14, 0.86)),
    url("../assets/images/scope-waves.jpg") center / cover no-repeat;
}

.page-hero.legal {
  background: #14181b;
  min-height: 280px;
  align-items: flex-end;
  padding-bottom: 48px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 24px 156px;
  max-width: 820px;
}

.eyebrow {
  color: var(--teal-bright);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.page-hero.scope h1 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(36px, 4.6vw, 52px);
}

.page-hero p {
  font-size: 20px;
  font-weight: 300;
  color: #d7dee2;
}

.swoosh,
.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 168px;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.swoosh-fill {
  fill: var(--mint);
}

.swoosh-lip {
  fill: rgba(229, 243, 246, 0.42);
}

.swoosh.is-dark .swoosh-fill {
  fill: #1a242a;
}

.swoosh.is-dark .swoosh-lip {
  fill: rgba(26, 36, 42, 0.5);
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 24px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.mint {
  background: var(--mint);
  color: var(--ink-2);
}

.mint-2 { background: var(--mint-2); }
.paper { background: var(--paper); }
.dark {
  background: #1b2428;
  color: #e8eef0;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 18px;
}

.section-head h2,
.h-section {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a3a40;
}

.dark .h-section,
.dark .section-head h2 {
  color: #eef3f5;
}

.link-inline {
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
}

.link-inline:hover { text-decoration: underline; }

.intro {
  max-width: 720px;
  font-size: 17px;
  margin-bottom: 48px;
  color: var(--ink-3);
}

.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
}

.card h3 {
  font-size: 26px;
  font-weight: 400;
  color: #2f4148;
  margin: 18px 0 8px;
}

.card p {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 460px;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.split-band {
  position: relative;
  background: linear-gradient(180deg, var(--mint) 42%, #d5e4e8 42%);
  padding: 0 24px 72px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 36px;
}

.stat {
  text-align: left;
}

.stat strong {
  display: block;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.9;
  font-weight: 300;
  color: #2c3c42;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.stat h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2c3c42;
  margin-bottom: 10px;
}

.stat p {
  color: var(--ink-3);
  max-width: 460px;
}

.stat a {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 600;
}

.quote {
  margin-top: 72px;
  max-width: 820px;
}

.quote p {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #314248;
  line-height: 1.55;
}

.quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-weight: 600;
  color: #2c3c42;
}

.quote cite span {
  display: block;
  font-weight: 400;
  color: var(--ink-3);
}

.logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 32px 96px;
  align-items: center;
  margin-top: 40px;
}

.logos a {
  display: grid;
  place-items: center;
  min-height: 88px;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logos a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.logos img {
  max-height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-item {
  background: #fff;
  border: 1px solid #d5e4e8;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  color: #24353b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-item button svg {
  flex: 0 0 20px;
  transition: transform 0.2s ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-item .faq-body {
  display: none;
  padding: 0 20px 18px;
  color: var(--ink-3);
}

.faq-item.is-open .faq-body {
  display: block;
}

.faq-body a {
  color: var(--teal);
  font-weight: 600;
}

/* ---------- Contact band / form ---------- */
.contact-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 140px 24px 96px;
  background:
    radial-gradient(ellipse 90% 70% at 12% 18%, rgba(150, 210, 200, 0.26), transparent 58%),
    radial-gradient(ellipse 80% 65% at 92% 88%, rgba(0, 139, 163, 0.2), transparent 55%),
    linear-gradient(165deg, #1a2d32 0%, #203c42 48%, #274b50 100%);
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: url("../assets/images/green-pattern.jpg") center / cover no-repeat;
  opacity: 0.07;
  filter: blur(28px);
  pointer-events: none;
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-copy p {
  font-size: 18px;
  color: #e4eef0;
  max-width: 480px;
}

.form-card {
  background: rgba(12, 38, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px 24px;
  backdrop-filter: blur(8px);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  color: #c9d7db;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  background: #16333a;
  border: 0;
  color: #fff;
  padding: 12px 12px;
  font-size: 15px;
  border-radius: 2px;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8aa3aa;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  display: none;
  margin-top: 12px;
  font-size: 14px;
}

.form-status.is-success {
  display: block;
  color: var(--green);
}

.form-status.is-error {
  display: block;
  color: #ffb4a8;
}

/* ---------- About ---------- */
.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.bio img {
  width: 100%;
  height: auto;
}

.bio-name {
  margin-top: 12px;
  font-weight: 700;
  color: var(--ink);
}

.bio-role {
  font-size: 14px;
  color: var(--ink-3);
}

.bio-copy p {
  margin-bottom: 18px;
}

.bio-copy blockquote {
  font-style: italic;
  color: #314248;
  margin: 8px 0 18px;
}

.bio-copy .attr {
  font-style: italic;
  color: var(--ink-3);
  margin-top: -8px;
  margin-bottom: 22px;
}

/* ---------- Scope ---------- */
.scope-lead {
  background: linear-gradient(180deg, #1a242a 0%, #1c3338 42%, #2a6468 100%);
  color: #fff;
  text-align: center;
  padding: 88px 24px 64px;
  position: relative;
  overflow: hidden;
}

.scope-lead .mark {
  width: 72px;
  margin: 0 auto 36px;
  opacity: 0.85;
}

.scope-lead h2 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto 64px;
  line-height: 1.2;
}

.service-block {
  max-width: 900px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  text-align: left;
  align-items: start;
}

.service-block img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-block img.is-illustration {
  object-fit: contain;
  background: transparent;
}

.service-block h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-block p,
.service-block li {
  color: #d5e0e4;
  font-size: 16px;
}

.service-block a {
  color: #9fe0ea;
  text-decoration: underline;
}

.other-services {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: left;
}

.other-services h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.other-services ul {
  padding-left: 20px;
  color: #d5e0e4;
}

.other-services li { margin: 6px 0; }

.process {
  background: var(--mint);
  padding: 88px 24px;
}

.process h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  color: #2a3a40;
  margin-bottom: 48px;
}

.process-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-card {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 24px;
}

.process-card h3 {
  color: var(--teal-deep);
  font-size: 20px;
  margin-bottom: 8px;
}

.scope-cta {
  background: #1b2428;
  text-align: center;
  padding: 80px 24px;
  color: #fff;
}

.scope-cta h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 24px;
}

/* ---------- Legal ---------- */
.legal {
  background: #14181b;
  color: #d4dce0;
  padding: 24px 24px 96px;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal h1,
.legal-hero-title {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.legal h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 28px 0 10px;
}

.legal p, .legal li {
  margin-bottom: 10px;
}

.legal ul {
  padding-left: 20px;
}

.legal a { color: var(--teal-bright); }

.rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 18px 0 36px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--mint);
  color: #2c3c42;
  padding: 48px 24px 28px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-word {
  color: #1c262a;
}

.footer-brand .brand-word span {
  color: #1c262a;
  font-weight: 600;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  color: #4a5c62;
  display: block;
  margin: 4px 0;
}

.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid #c5d6da;
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #5a6a70;
}

/* ---------- Cookie ---------- */
.cookie {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  bottom: 16px;
  z-index: 2000;
  background: #10181c;
  color: #e8eef0;
  border-radius: 12px;
  padding: 16px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
  width: min(720px, calc(100% - 24px));
  overflow-wrap: anywhere;
}

.cookie.is-on { display: flex; }

.cookie button {
  background: var(--teal-bright);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  width: 50%;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .header-inner {
    padding: 0 16px;
    min-height: 72px;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    transform: none;
    background: #10181c;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 8px;
    display: none;
    z-index: 20;
  }

  body.nav-open .nav { display: flex; }

  .header-cta { display: none; }

  .nav-connect {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 30;
  }

  .cards-2,
  .stats,
  .contact-grid,
  .bio,
  .service-block,
  .process-grid,
  .footer-grid,
  .logos {
    grid-template-columns: 1fr;
  }

  .logos { grid-template-columns: 1fr 1fr; }

  .hero-inner { padding: 108px 16px 132px; }
  .swoosh,
  .wave { height: 112px; }
  .hero h1 { letter-spacing: 0.04em; font-size: 20px; max-width: 100%; }
  .hero .lede { font-size: 16px; padding: 0 4px; }
  .hero-mark { width: min(220px, 70vw); }
  .brand-word { font-size: 15px; }
  .brand-icon { width: 48px; height: 26px; }
  .card img { height: 200px; }
  .bio { max-width: 420px; }
  .cookie { flex-direction: column; align-items: stretch; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
