﻿:root {
  color-scheme: dark;
  --bg: #030807;
  --bg-soft: #07110f;
  --panel: rgba(11, 24, 22, 0.82);
  --panel-strong: rgba(14, 31, 29, 0.94);
  --line: rgba(146, 255, 229, 0.18);
  --line-strong: rgba(146, 255, 229, 0.34);
  --text: #f6faf8;
  --muted: #b8c7c3;
  --soft: #7f918c;
  --accent: #63ead1;
  --accent-strong: #37c9b6;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --max: 1220px;
  --header-height: 76px;
  --header-bg-rgb: 3 8 7;
  --header-bg-opacity: 0.3;
  --header-bg-opacity-active: 0.42;
  --header-border-opacity: 0.08;
  --header-border-opacity-active: 0.2;
  --font-main: Helvetica, Arial, sans-serif;
  --font-copy: Helvetica, Arial, sans-serif;
  --label-weight: 700;
  --type-eyebrow-size: 0.78rem;
  --type-eyebrow-spacing: 0.055em;
  --type-h1-size: clamp(3.1rem, 5.6vw, 4rem);
  --type-h2-size: clamp(2.2rem, 8vw, 4.8rem);
  --type-h3-size: 1.18rem;
  --type-hero-copy-size: clamp(1.13rem, 3vw, 1.38rem);
  --type-section-copy-size: 1.06rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

html.is-scroll-restoring body {
  visibility: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 5%, rgba(55, 201, 182, 0.16), transparent 30rem),
    radial-gradient(circle at 5% 30%, rgba(36, 119, 115, 0.18), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

body,
button,
input,
textarea,
select,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
small,
strong,
figcaption,
blockquote,
span,
li {
  font-family: var(--font-main) !important;
}

p,
li,
figcaption,
blockquote,
.hero-lede,
.trust-note,
.section-heading p:not(.eyebrow),
.service-card p,
.process-list span,
.testimonial blockquote,
.final-cta-copy,
.about-intro p:not(.eyebrow),
.founder-preview p,
.cta-band p,
.contact-card p,
.prose-panel p,
.service-detail-list p,
.approach-grid p,
.approach-section .section-heading p:not(.eyebrow) {
  font-family: var(--font-copy) !important;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-kerning: normal;
  text-rendering: geometricPrecision;
}

h3,
.service-card h3,
.process-list strong,
.testimonial figcaption {
  font-family: var(--font-main) !important;
  font-weight: 700;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--accent);
  color: #03110e;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-main) !important;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-frame {
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(3, 8, 7, 0.96), rgba(3, 8, 7, 0.86) 40%, rgba(3, 8, 7, 0.98)),
    repeating-linear-gradient(120deg, rgba(99, 234, 209, 0.035) 0 1px, transparent 1px 42px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: var(--header-height);
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgb(255 255 255 / var(--header-border-opacity));
  background: rgb(var(--header-bg-rgb) / var(--header-bg-opacity));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(0);
  transition:
    transform 260ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

body.header-revealed .site-header,
body.nav-open .site-header {
  background: rgb(var(--header-bg-rgb) / var(--header-bg-opacity-active));
  border-color: rgba(99, 234, 209, var(--header-border-opacity-active));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 54px;
  aspect-ratio: 1.2;
  object-fit: contain;
}

.brand strong {
  display: block;
}

.brand strong {
  font-size: 1.28rem;
  line-height: 1;
  color: var(--text);
}

.brand-ai {
  color: var(--text);
}

.brand-way {
  color: var(--accent);
}

.site-nav {
  display: none;
  position: absolute;
  inset: var(--header-height) 1rem auto;
  padding: 0.8rem;
  border: 1px solid rgba(99, 234, 209, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(99, 234, 209, 0.08), rgba(7, 17, 15, 0) 40%),
    rgba(5, 14, 12, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-family: var(--font-main) !important;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.site-nav .nav-hidden {
  display: none !important;
}

.site-nav [data-preview-toggle] {
  display: none !important;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(99, 234, 209, 0.1);
}

.nav-cta {
  min-height: 52px !important;
  margin-top: 0.55rem;
  justify-content: center;
  border: 1px solid rgba(99, 234, 209, 0.68);
  border-radius: 999px !important;
  background: var(--accent-strong);
  color: #021311 !important;
  box-shadow: 0 16px 42px rgba(55, 201, 182, 0.18);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

@media (max-width: 767px) {
  .site-header {
    justify-content: space-between;
  }

  .brand {
    position: static;
    transform: none;
    gap: 0;
  }

  .brand img {
    position: relative;
    z-index: 2;
  }

  .brand > span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }

  .brand strong {
    font-size: clamp(1.34rem, 5.3vw, 1.55rem);
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    margin-left: auto;
  }

  body.has-scrolled-past-hero .nav-cta {
    border-color: rgba(99, 234, 209, 0.68);
    background: var(--accent);
    box-shadow: 0 12px 32px rgba(55, 201, 182, 0.14);
  }
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1.5px);
  border-color: rgba(99, 234, 209, 0.78);
  background: rgba(99, 234, 209, 0.08);
  color: var(--accent) !important;
  box-shadow:
    0 10px 24px rgba(55, 201, 182, 0.12),
    0 0 0 1px rgba(99, 234, 209, 0.045),
    0 0 16px rgba(99, 234, 209, 0.11);
}

.nav-toggle {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-main) !important;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(99, 234, 209, 0.5);
  background: rgba(99, 234, 209, 0.08);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.nav-toggle span {
  position: relative;
  color: transparent;
  font-size: 0;
}

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

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(99, 234, 209, 0.54);
  background: rgba(99, 234, 209, 0.1);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .site-nav a {
    color: var(--muted);
    background: transparent;
    font-family: var(--font-main) !important;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a:not(.nav-cta)[aria-current="page"],
  .site-nav a:not(.nav-cta)[aria-current="page"]:not(:hover):not(:focus-visible) {
    color: var(--accent) !important;
    background: transparent;
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta):focus-visible {
    color: var(--text) !important;
    background: transparent;
  }

  .site-nav .nav-cta {
    width: max-content;
    justify-self: start;
    margin-top: 0.55rem;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--accent) !important;
    box-shadow: none;
  }

  body.has-scrolled-past-hero .site-nav .nav-cta {
    border-color: var(--line-strong);
    background: transparent;
    box-shadow: none;
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible {
    color: var(--accent) !important;
  }
}

@media (max-width: 1023px) {
  .site-nav .nav-cta {
    width: max-content;
    justify-self: start;
  }
}

.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(2.8rem, 6vw, 5rem);
}

.hero {
  position: relative;
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.2rem);
  min-height: clamp(620px, 88svh, 760px);
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: contents;
}

.hero-line {
  display: block;
}

.hero .reveal-item {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  order: 1;
}

.hero-title {
  order: 2;
}

.hero-intro {
  order: 3;
}

.hero .button-row {
  order: 5;
  width: 100%;
  justify-content: center;
}

.hero .button.secondary {
  order: 1;
}

.hero .button.primary {
  order: 2;
}

.trust-note {
  order: 6;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.94) 0%, rgba(3, 8, 7, 0.76) 48%, rgba(3, 8, 7, 0.34) 100%),
    linear-gradient(180deg, rgba(3, 8, 7, 0.12) 0%, rgba(3, 8, 7, 0.24) 58%, rgba(3, 8, 7, 0.7) 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent) !important;
  text-transform: uppercase;
  font-size: var(--type-eyebrow-size);
  font-weight: var(--label-weight);
  letter-spacing: var(--type-eyebrow-spacing);
  font-family: var(--font-main) !important;
  line-height: 1.25;
}

.founder-preview .eyebrow,
.cta-band .eyebrow {
  margin: 0 0 1rem;
  color: var(--accent) !important;
  text-transform: uppercase;
  font-size: var(--type-eyebrow-size);
  font-weight: var(--label-weight);
  letter-spacing: var(--type-eyebrow-spacing);
  font-family: var(--font-main) !important;
  line-height: 1.25;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 12ch;
  font-weight: 780;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: var(--type-h1-size);
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(3.1rem, 5.6vw, 4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: var(--type-h2-size);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: var(--type-h3-size);
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-lede {
  max-width: 38rem;
  color: #dce6e2;
  font-size: var(--type-hero-copy-size);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero .button-row {
  margin-top: 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-family: var(--font-main) !important;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1.5px);
}

.js-motion-enabled .button.reveal.is-visible:hover,
.js-motion-enabled .button.reveal.is-visible:focus-visible {
  transform: translateY(-1.5px);
}

.button.primary {
  border-color: rgba(99, 234, 209, 0.42);
  background: var(--accent-strong);
  color: #021311;
  box-shadow: 0 18px 45px rgba(55, 201, 182, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: rgba(99, 234, 209, 0.68);
  background: var(--accent);
  color: #010a09;
  box-shadow:
    0 14px 32px rgba(55, 201, 182, 0.2),
    0 0 0 1px rgba(99, 234, 209, 0.05),
    0 0 18px rgba(99, 234, 209, 0.14);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(99, 234, 209, 0.62);
  background: rgba(99, 234, 209, 0.045);
  box-shadow:
    0 10px 26px rgba(99, 234, 209, 0.09),
    0 0 0 1px rgba(99, 234, 209, 0.04),
    0 0 17px rgba(99, 234, 209, 0.12);
}

.trust-note {
  margin-top: 1.65rem;
  max-width: 34rem;
  color: #d6e5e0;
}

.hero-visual {
  position: relative;
  order: 4;
  z-index: 1;
  display: block;
  width: min(93.5%, 420px);
  margin: -3rem auto -2rem;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.hero-media-video {
  position: static;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: 58% center;
  opacity: 1;
}

.orbital-lines,
.footer-wave {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    radial-gradient(circle at 70% 40%, rgba(99, 234, 209, 0.32), transparent 15rem),
    repeating-radial-gradient(ellipse at 70% 72%, transparent 0 15px, rgba(99, 234, 209, 0.12) 16px 17px);
  transform: rotate(-7deg) scale(1.2);
}

.footer-wave {
  display: none;
}

.video-band {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: clamp(2.5rem, 5vw, 4.2rem);
}

.section-heading {
  max-width: 46rem;
}

.section-heading.centred {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centred h2 {
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  font-size: var(--type-section-copy-size);
}

.video-card {
  margin: 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.video-card figcaption {
  padding: 0.75rem 0.35rem 0.2rem;
  color: var(--soft);
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.4rem, 4vw, 2.4rem);
  margin-top: clamp(1.8rem, 4vw, 2.45rem);
}

.service-card,
.testimonial,
.quote-panel,
.founder-card,
.contact-card,
.prose-panel,
.approach-grid article,
.service-detail-list article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(1rem, 2vw, 1.35rem);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
}

.service-card::before {
  content: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(4.55rem, 12vw, 5.35rem);
  height: clamp(4.55rem, 12vw, 5.35rem);
  flex: none;
  color: var(--accent);
  border: 1px solid rgba(99, 234, 209, 0.56);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(99, 234, 209, 0.1), transparent 62%),
    rgba(4, 16, 14, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(99, 234, 209, 0.08),
    0 0 20px rgba(99, 234, 209, 0.14);
  filter: drop-shadow(0 0 12px rgba(99, 234, 209, 0.16));
}

.service-icon::before,
.service-icon::after {
  content: none;
}

.service-icon svg {
  width: 60%;
  height: 60%;
  display: block;
  fill: currentColor;
}

.service-icon-productivity svg,
.service-icon-branding svg,
.service-icon-implementation svg {
  width: 63%;
  height: 63%;
}

.service-icon-app svg {
  width: 65%;
  height: 65%;
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.03rem, 1.7vw, 1.18rem);
  line-height: 1.22;
  transition: color 180ms ease;
}

.service-card p {
  margin: 0;
  color: #c7d7d3;
  font-size: clamp(0.98rem, 1.5vw, 1.04rem);
  line-height: 1.55;
}

.service-card,
.testimonial,
.quote-panel,
.founder-preview,
.final-cta-inner,
.approach-grid article,
.service-detail-list article,
.contact-card,
.prose-panel {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  outline: none;
}

.service-card:hover h3,
.service-card:focus-visible h3 {
  color: var(--accent);
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  border-color: rgba(99, 234, 209, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(99, 234, 209, 0.14),
    0 0 24px rgba(99, 234, 209, 0.18);
}

.approach-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 234, 209, 0.38);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(99, 234, 209, 0.05),
    0 0 34px rgba(55, 201, 182, 0.06);
}

.card-mark {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--accent);
  font-weight: var(--label-weight);
  font-size: 0.85rem;
  font-family: var(--font-main) !important;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: clamp(2.5rem, 5vw, 4.2rem);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  grid-row: 1 / span 2;
  color: var(--accent);
  font-weight: var(--label-weight);
  font-family: var(--font-main) !important;
}

.process-toggle,
.process-list span {
  grid-column: 2;
  display: block;
}

.process-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
}

.process-toggle strong {
  display: block;
}

.process-list span {
  color: var(--muted);
}

@media (max-width: 767px) {
  .process-toggle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.5rem;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
  }

  .process-toggle::after {
    content: "+";
    color: var(--accent);
    font-family: var(--font-main) !important;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    text-align: right;
  }

  .process-toggle:focus-visible {
    outline: 1px solid rgba(99, 234, 209, 0.64);
    outline-offset: 0.35rem;
  }

  .process-list li.is-open .process-toggle::after {
    content: "-";
  }

  .process-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      margin-top 180ms ease;
  }

  .process-list li.is-open .process-panel {
    max-height: 8rem;
    margin-top: 0.35rem;
    opacity: 1;
  }
}

.testimonial-grid {
  display: grid;
  gap: clamp(1.7rem, 4vw, 2.4rem);
  margin-top: clamp(1.8rem, 4vw, 2.4rem);
}

.testimonial {
  margin: 0;
  padding: 0;
  background: transparent;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  color: #d2dfdc;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
}

.testimonial figcaption {
  padding-top: 0;
  border-top: 0;
  color: var(--accent);
  font-weight: var(--label-weight);
  font-family: var(--font-main) !important;
}

.testimonial blockquote::before {
  content: open-quote;
}

.testimonial blockquote::after {
  content: close-quote;
}

.testimonial blockquote {
  quotes: "\201C" "\201D";
}

.testimonial figcaption::before {
  content: "- ";
}

.client-logo,
.supported-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  text-decoration: none;
}

.client-logo {
  display: flex;
  width: fit-content;
  margin-right: 0;
  margin-left: 0.72rem;
}

.client-logo img,
.supported-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.client-logo img[src$=".svg"] {
  width: min(180px, 100%);
  height: auto;
}

.supported-logo img {
  max-width: 260px;
  max-height: 72px;
}

.client-logo:hover img,
.client-logo:focus-visible img,
.supported-logo:hover img,
.supported-logo:focus-visible img {
  opacity: 1;
  transform: translateY(-1px);
}

.supported-organisations {
  margin-top: 64px;
  text-align: center;
}

.supported-organisations .eyebrow {
  margin-bottom: 0.8rem;
}

.supported-organisations h3 {
  margin: 0 0 24px;
  font-size: clamp(1.28rem, 2.4vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.supported-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
}

.prevent-logo-text {
  flex-direction: column;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  line-height: 1.05;
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.prevent-logo-text:hover,
.prevent-logo-text:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.prevent-logo-text .prevent-title {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.prevent-logo-text .prevent-subtitle {
  display: grid;
  gap: 2px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-preview,
.cta-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.4rem, 5vw, 2.2rem);
  background:
    linear-gradient(120deg, rgba(99, 234, 209, 0.11), transparent 38%),
    var(--panel-strong);
  margin-block: clamp(1.5rem, 4vw, 3rem);
}

.founder-preview {
  position: relative;
  overflow: hidden;
  gap: clamp(1.35rem, 4vw, 2.4rem);
  --founder-preview-pad: clamp(1.15rem, 3.5vw, 1.6rem);
  --founder-preview-pad-right: var(--founder-preview-pad);
  padding: var(--founder-preview-pad);
}

.founder-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 22%, rgba(99, 234, 209, 0.12), transparent 17rem),
    linear-gradient(135deg, rgba(99, 234, 209, 0.065), transparent 34%);
}

.founder-preview-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  padding: clamp(0.4rem, 2.5vw, 1.1rem);
}

.founder-preview-copy p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 1.35rem;
  color: #d2dfdc;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
}

.founder-preview-copy .button {
  margin-top: 0.15rem;
}

.founder-preview h2,
.cta-band h2 {
  font-size: var(--type-h1-size);
}

.founder-preview h2 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 5.8vw, 4rem);
}

.founder-preview-media {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(146, 255, 229, 0.24);
  border-radius: 16px;
  background: #050b0a;
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(99, 234, 209, 0.035);
}

.founder-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 8, 7, 0.02), rgba(3, 8, 7, 0.2)),
    linear-gradient(90deg, rgba(3, 8, 7, 0.08), transparent 38%);
}

.founder-preview-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.9) contrast(1.03);
}

.final-cta {
  padding-top: clamp(2.3rem, 5vw, 4rem);
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 2.6vw, 1.35rem);
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 115%, rgba(99, 234, 209, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(99, 234, 209, 0.1), transparent 36%),
    rgba(8, 19, 17, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.final-cta-inner::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% -12%;
  height: 58%;
  pointer-events: none;
  background: repeating-radial-gradient(ellipse at center, rgba(99, 234, 209, 0.24) 0 1px, transparent 1px 13px);
  opacity: 0.13;
}

.final-cta-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--accent);
  font-family: var(--font-main) !important;
  font-size: var(--type-eyebrow-size);
  font-weight: var(--label-weight);
  letter-spacing: var(--type-eyebrow-spacing);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.8rem);
  line-height: 0.98;
}

.final-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
}

.final-cta .button {
  position: relative;
  z-index: 1;
  margin-top: clamp(0.35rem, 2vw, 1rem);
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-main) !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.site-footer {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 2.1rem 1rem 1.65rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 234, 209, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(7, 17, 15, 0.96), rgba(3, 8, 7, 1));
}

.footer-logo,
.social-links,
.site-footer p {
  position: relative;
}

.footer-logo {
  width: 118px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: #07110f;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-main) !important;
  overflow: hidden;
}

.social-links img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.site-footer p {
  max-width: calc(100% - 2rem);
  margin: 0;
  color: #f1f7f4;
  text-align: center;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .testimonial-grid {
    gap: 3.6rem;
  }

  .site-footer {
    gap: 0.85rem;
    padding: 1.75rem 1rem 1.45rem;
  }

  .footer-logo {
    width: 104px;
  }

  .social-links {
    gap: 0.6rem;
  }

  .social-links a,
  .social-links img {
    width: 42px;
    height: 42px;
  }

  .hero.section-shell {
    padding-top: clamp(1.15rem, 4vw, 1.55rem);
    padding-bottom: clamp(1.5rem, 5vw, 2.1rem);
  }

  .hero {
    min-height: auto;
    gap: 0.75rem;
    align-content: start;
  }

  .hero .eyebrow {
    margin-bottom: 0.35rem;
  }

  .hero h1 {
    margin-bottom: 0.55rem;
    font-size: clamp(2.12rem, 10.4vw, 2.55rem);
    line-height: 0.94;
  }

  .hero-intro {
    max-width: 23rem;
    margin-bottom: 0;
    font-size: clamp(0.98rem, 1.5vw, 1.04rem);
    line-height: 1.55;
  }

  .hero-intro .hero-line {
    display: inline;
  }

  .hero .button-row {
    gap: 0.65rem;
    margin-top: 0.75rem;
  }

  .hero .button {
    min-height: 46px;
    padding: 0.72rem 1.05rem;
  }

  .trust-note {
    margin-top: 0.75rem;
    font-size: clamp(0.98rem, 1.5vw, 1.04rem);
    line-height: 1.55;
    text-align: center;
  }

  .hero-visual {
    width: min(100%, 450px);
    margin: -1.2rem auto -1.1rem;
  }

  .founder-preview {
    display: none;
  }

  .community-hero,
  .community-section,
  .directory-page {
    width: min(100% - 2rem, 420px);
    max-width: calc(100vw - 2rem);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .community-card,
  .community-card-copy,
  .directory-copy {
    width: 100%;
    max-width: 100%;
  }

  .community-card h3,
  .community-card p,
  .directory-copy h1,
  .directory-copy p,
  .community-hero p,
  .community-section h2 {
    width: 320px;
    max-width: calc(100vw - 3rem);
  }

  .community-section h2,
  .directory-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 1;
  }

  .directory-copy h1 {
    max-width: 10ch;
  }

  .community-card-media img {
    width: min(100%, 240px);
    max-height: 210px;
  }

  .directory-graphic {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .directory-graphic img {
    width: min(100%, 280px);
  }

  .community-card h3,
  .community-card p {
    width: 100%;
    max-width: 100%;
  }

  .site-footer p {
    width: 100%;
    max-width: calc(100vw - 1.5rem);
    font-size: 0.78rem;
    line-height: 1.35;
    white-space: nowrap;
  }

  .site-footer {
    background-size: auto, min(100%, 520px) auto;
    background-position: center, center top;
    background-repeat: no-repeat;
  }

  .footer-wave {
    opacity: 0.42;
    transform: rotate(-7deg) scale(0.82);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-motion-enabled .hero .reveal-item {
  opacity: 0;
  transform: translateY(14px);
  animation-name: heroReveal;
  animation-duration: 650ms;
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-out);
}

.js-motion-enabled .hero .hero-reveal-strapline {
  animation-duration: 450ms;
  animation-delay: 0ms;
}

.js-motion-enabled .hero .hero-reveal-title-1,
.js-motion-enabled .hero .hero-reveal-title-2 {
  animation-duration: 850ms;
}

.js-motion-enabled .hero .hero-reveal-title-1 {
  animation-delay: 180ms;
}

.js-motion-enabled .hero .hero-reveal-title-2 {
  animation-delay: 760ms;
}

.js-motion-enabled .hero .hero-reveal-copy-1 {
  animation-delay: 1380ms;
}

.js-motion-enabled .hero .hero-reveal-copy-2 {
  animation-delay: 1560ms;
}

.js-motion-enabled .hero .hero-reveal-copy-3 {
  animation-delay: 1740ms;
}

.js-motion-enabled .hero .hero-reveal-actions {
  animation-duration: 520ms;
  animation-delay: 2050ms;
}

.js-motion-enabled .hero .hero-reveal-support {
  animation-duration: 540ms;
  animation-delay: 2310ms;
}

.below-hero-hidden .hero + section {
  opacity: 0;
  transform: none;
  transition: none;
}

.below-hero-ready .hero + section {
  transition:
    opacity 260ms var(--ease-out);
}

.below-hero-visible .hero + section {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .below-hero-ready .hero + section {
    transition: none;
  }
}

.js-motion-enabled .reveal {
  opacity: 0.98;
  transform: translateY(6px);
  transition:
    opacity 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.js-motion-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-motion-enabled .button.reveal.is-visible:hover,
.js-motion-enabled .button.reveal.is-visible:focus-visible {
  transform: translateY(-1.5px);
}

.mobile-contact-prompt {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 30000;
  display: none;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.55rem 0.55rem 0.55rem 0.9rem;
  border: 1px solid rgba(99, 234, 209, 0.32);
  border-radius: 999px;
  background: rgba(4, 13, 11, 0.9);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

@media (max-width: 767px) {
  .mobile-contact-prompt {
    display: none !important;
  }
}

.mobile-contact-prompt span {
  flex: 1;
  min-width: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-contact-prompt a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(99, 234, 209, 0.42);
  border-radius: 999px;
  background: var(--accent-strong);
  color: #021311;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(55, 201, 182, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.mobile-contact-prompt a:hover,
.mobile-contact-prompt a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(99, 234, 209, 0.68);
  background: var(--accent);
  box-shadow:
    0 10px 25px rgba(55, 201, 182, 0.18),
    0 0 15px rgba(99, 234, 209, 0.12);
}

.mobile-contact-dismiss {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
}

body.show-mobile-contact .mobile-contact-prompt {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.about-hero,
.contact-page {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-intro h1 {
  margin-bottom: 1.6rem;
  max-width: none;
  white-space: nowrap;
}

.about-intro p:not(.hero-lede) {
  max-width: 38rem;
  color: var(--muted);
}

.about-support-image {
  width: min(100%, 38rem);
  margin: clamp(1.6rem, 4vw, 2.2rem) 0 clamp(1.8rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(146, 255, 229, 0.24);
  border-radius: 16px;
  background: #050b0a;
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(99, 234, 209, 0.035);
}

.about-support-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.9) contrast(1.03);
}

.about-intro h2 {
  display: inline-block;
  max-width: none;
  margin: clamp(1.8rem, 4vw, 2.6rem) 0 0.7rem;
  color: var(--accent);
  font-family: var(--font-main) !important;
  font-size: var(--type-eyebrow-size);
  font-weight: var(--label-weight);
  letter-spacing: var(--type-eyebrow-spacing);
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.founder-aside {
  display: grid;
  justify-items: center;
  width: min(100%, 38rem);
  margin-inline: auto;
}

.founder-aside-desktop {
  display: none;
}

.founder-aside-mobile {
  margin: clamp(1.8rem, 6vw, 2.6rem) auto clamp(2rem, 7vw, 3rem);
}

.founder-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-color: rgba(146, 255, 229, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 90%, rgba(99, 234, 209, 0.06), transparent 16rem),
    #06100e;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.founder-portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #050b0a;
}

.founder-portrait-wrap img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.02);
}

.founder-portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 8, 7, 0.22) 70%, rgba(3, 8, 7, 0.9) 100%),
    linear-gradient(90deg, rgba(3, 8, 7, 0.08), transparent 45%);
}

.founder-identity {
  position: absolute;
  left: clamp(1.3rem, 6vw, 2rem);
  right: clamp(1.3rem, 6vw, 2rem);
  bottom: clamp(1.5rem, 7vw, 2.2rem);
  z-index: 1;
}

.founder-identity p {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.founder-identity span {
  color: var(--accent);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--label-weight);
  letter-spacing: var(--type-eyebrow-spacing);
  line-height: 1.25;
}

.quote-panel,
.contact-card,
.prose-panel {
  padding: clamp(1.4rem, 5vw, 2rem);
}

.image-quote {
  position: absolute;
  left: clamp(1rem, 4vw, 1.25rem);
  right: clamp(1rem, 4vw, 1.25rem);
  bottom: clamp(1rem, 4vw, 1.25rem);
  z-index: 1;
  border: 1px solid rgba(146, 255, 229, 0.2);
  border-radius: 12px;
  background: rgba(3, 8, 7, 0.78);
  backdrop-filter: blur(14px);
  padding: clamp(1rem, 3vw, 1.25rem);
}

.quote-panel p {
  color: var(--text);
  font-size: clamp(1.02rem, 2.7vw, 1.18rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

.quote-panel small {
  color: var(--accent);
  font-weight: var(--label-weight);
  font-family: var(--font-main) !important;
}

.founder-background {
  padding: 0;
  border: 0;
  background: transparent;
}

.approach-section .section-heading {
  display: grid;
  gap: 1rem;
  max-width: 54rem;
}

.approach-section .button {
  justify-self: start;
  margin-bottom: 0.5rem;
}

.approach-section h2 {
  max-width: 14ch;
}

.approach-grid {
  display: grid;
  gap: 1rem;
}

.approach-grid article {
  padding: 1.2rem;
}

.page-hero,
.placeholder-page {
  min-height: 58svh;
  display: grid;
  align-content: center;
  justify-items: start;
}

.placeholder-page .button {
  justify-self: start;
  width: auto;
}

.service-detail-list {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  padding-top: 0;
}

.service-detail-list article {
  padding: 0;
  border: 0;
  background: transparent;
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.service-detail-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.15rem);
  margin-bottom: 1rem;
}

.service-detail-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
}

.service-detail-heading .service-icon {
  width: clamp(3.65rem, 10vw, 4.5rem);
  height: clamp(3.65rem, 10vw, 4.5rem);
}

.service-detail-list h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.2;
}

.service-detail-list p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .service-detail-list {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .service-detail-list article {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .service-detail-toggle {
    grid-template-columns: auto minmax(0, 1fr) 1.5rem;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
  }

  .service-detail-toggle::after {
    content: "+";
    color: var(--accent);
    font-family: var(--font-main) !important;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    text-align: right;
  }

  .service-detail-toggle:focus-visible {
    outline: 1px solid rgba(99, 234, 209, 0.64);
    outline-offset: 0.35rem;
  }

  .service-detail-list article.is-open .service-detail-toggle::after {
    content: "-";
  }

  .service-detail-list article.is-open h2 {
    color: var(--accent);
  }

  .service-detail-list article.is-open .service-icon {
    border-color: rgba(99, 234, 209, 0.86);
    box-shadow:
      inset 0 0 0 1px rgba(99, 234, 209, 0.14),
      0 0 24px rgba(99, 234, 209, 0.18);
  }

  .service-detail-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
      max-height 240ms ease,
      opacity 190ms ease,
      margin-top 190ms ease;
  }

  .service-detail-list article.is-open .service-detail-panel {
    margin-top: 0.85rem;
    opacity: 1;
  }
}

.community-hero {
  min-height: auto;
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.community-section {
  padding-top: 0;
}

.community-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

.community-card,
.directory-graphic {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 12%, rgba(99, 234, 209, 0.075), transparent 13rem),
    linear-gradient(145deg, rgba(13, 30, 27, 0.82), rgba(4, 14, 12, 0.91));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 48px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(99, 234, 209, 0.025);
}

.community-card {
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.7rem);
  min-width: 0;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.community-card-media,
.directory-graphic {
  margin: 0;
  overflow: hidden;
}

.community-card-media {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 1.45rem);
  border: 1px solid rgba(146, 255, 229, 0.18);
  border-radius: 12px;
  background: rgba(2, 13, 27, 0.88);
}

.community-card-media img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.community-card-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  min-width: 0;
}

.community-card h3 {
  max-width: 100%;
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  overflow-wrap: anywhere;
}

.community-card p {
  max-width: 42rem;
  margin-bottom: 1.3rem;
  color: #c7d7d3;
  overflow-wrap: break-word;
}

.directory-page {
  display: grid;
  gap: clamp(1.6rem, 5vw, 3rem);
  align-items: center;
  min-height: 64svh;
}

.directory-copy p:not(.eyebrow) {
  max-width: 42rem;
}

.directory-title-logo {
  display: none;
}

.directory-graphic {
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 50% 18%, rgba(22, 94, 255, 0.12), transparent 17rem),
    rgba(2, 13, 27, 0.9);
}

.directory-graphic img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.service-card,
.testimonial,
.quote-panel,
.founder-card,
.contact-card,
.prose-panel,
.approach-grid article,
.service-detail-list article,
.founder-preview,
.cta-band,
.final-cta-inner,
.founder-preview-media,
.about-support-image,
.community-card,
.directory-graphic,
.video-card,
.video-card video {
  border-radius: 0;
}

.testimonial,
.service-detail-list article {
  transition: none;
}

.testimonial:hover,
.service-detail-list article:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.community-card-media {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.community-card-media img {
  width: min(100%, 260px);
  max-height: none;
}

.directory-graphic {
  justify-self: center;
  width: min(100%, 420px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.directory-graphic img {
  width: 100%;
}

.service-card,
.testimonial,
.quote-panel,
.founder-card,
.contact-card,
.prose-panel,
.approach-grid article,
.service-detail-list article,
.founder-preview,
.cta-band,
.final-cta-inner,
.founder-preview-media,
.about-support-image,
.community-card,
.community-card-media,
.directory-graphic,
.video-card,
.video-card video {
  border: 0;
}

.site-footer {
  border-top: 0;
}

.community-card {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.final-cta-inner,
.founder-card,
.founder-preview-media,
.about-support-image,
.video-card {
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
}

.testimonial,
.service-detail-list article {
  box-shadow: none;
}

.community-section .community-grid {
  width: min(100%, 860px);
  margin-right: auto;
}

.community-section .community-card {
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 1.55rem);
  padding: clamp(1rem, 2.5vw, 1.25rem);
  background: transparent;
  box-shadow: none;
}

.community-section .community-card-media {
  justify-items: start;
}

.community-section .community-card-media img {
  width: min(100%, 240px);
}

.directory-page {
  align-items: center;
}

.directory-page .directory-graphic {
  align-self: center;
}

@media (max-width: 767px) {
  .community-section .community-grid {
    width: 100%;
  }

  .community-section .community-card {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .community-section .community-card-media {
    justify-items: center;
    order: 3;
  }

  .community-section .community-card-media img {
    width: min(100%, 338px);
  }

  .community-section .community-card-copy {
    display: contents;
  }

  .community-section .community-card-copy h3 {
    order: 1;
  }

  .community-section .community-card-copy p {
    order: 2;
    margin-bottom: 0;
  }

  .community-section .community-card-copy .button {
    order: 4;
    align-self: center;
    margin-top: 0.25rem;
  }

  .directory-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(5.8rem, 28vw, 7rem);
    align-items: end;
    gap: 0.9rem;
    width: 320px;
    max-width: calc(100vw - 3rem);
  }

  .directory-title-logo {
    display: block;
    width: 100%;
    height: auto;
    align-self: end;
    margin-top: 0;
    margin-bottom: 1.35rem;
  }

  .directory-title-row .eyebrow,
  .directory-title-row h1 {
    width: auto;
    max-width: 100%;
  }

  .directory-page > .directory-graphic {
    display: none;
  }
}

.contact-card a {
  color: var(--accent);
  font-size: var(--type-h3-size);
  font-weight: 700;
  font-family: var(--font-main) !important;
  word-break: break-word;
}

/* TEMP MOBILE PREVIEW TOGGLE - remove before launch */
.mobile-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.mobile-preview-overlay[hidden] {
  display: none;
}

.mobile-preview-shell {
  width: 390px;
  max-width: calc(100vw - 32px);
  height: 844px;
  max-height: calc(100vh - 48px);
  transform: translateY(50px);
  overflow: hidden;
  border: 1px solid rgba(124, 211, 194, 0.35);
  border-radius: 32px;
  background: var(--bg-soft);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.mobile-preview-shell.is-tablet {
  width: 770px;
  height: 1026px;
  max-width: none;
  max-height: none;
  transform: translateY(-95px) scale(0.78);
  border-radius: 28px;
  transform-origin: center;
}

.mobile-preview-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--bg-soft);
}

body.preview-active .site-header {
  z-index: 30000;
}

@media (min-width: 768px) {
  .mobile-contact-prompt {
    display: none !important;
  }

  .headline-nowrap {
    white-space: nowrap;
  }

  .service-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    display: flex;
    position: static;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav a {
    padding-inline: 0.85rem;
    color: var(--muted);
    background: transparent;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta):focus-visible {
    color: var(--text) !important;
    background: transparent;
  }

  .site-nav a:not(.nav-cta)[aria-current="page"] {
    color: var(--accent) !important;
    background: transparent;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.35rem;
    padding-inline: 1.2rem !important;
    border: 1px solid var(--line-strong);
    border-radius: 999px !important;
    background: transparent;
    color: var(--accent) !important;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 620px;
    align-items: start;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 8, 7, 0.96) 0%, rgba(3, 8, 7, 0.78) 34%, rgba(3, 8, 7, 0.08) 58%, rgba(3, 8, 7, 0) 100%),
      linear-gradient(180deg, rgba(3, 8, 7, 0.02) 0%, rgba(3, 8, 7, 0.04) 58%, rgba(3, 8, 7, 0.1) 100%);
  }

  .hero-copy {
    display: block;
    max-width: 49rem;
  }

  .hero .button-row {
    margin-top: 2rem;
    width: auto;
    justify-content: flex-start;
  }

  .hero .button.primary,
  .hero .button.secondary {
    order: initial;
  }

  .hero-visual {
    position: absolute;
    order: initial;
    top: clamp(3rem, 6vw, 4rem);
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 0;
    width: min(54vw, 760px);
    margin: 0;
    aspect-ratio: 16 / 9;
    min-height: 0;
    pointer-events: none;
  }

  .hero-visual::after {
    background: none;
  }

  .hero-media-video {
    position: static;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: center center;
    opacity: 1;
  }

  .video-band,
  .split-section,
  .about-hero,
  .contact-page {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }

  .image-quote {
    bottom: 0.75rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-card,
  .directory-page {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .community-card-media {
    min-height: 0;
  }

  .founder-preview,
  .cta-band {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }

  .founder-preview {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.86fr);
    gap: clamp(1.1rem, 3vw, 2rem);
    --founder-preview-pad-right: clamp(0.75rem, 2vw, 1.15rem);
    padding-right: var(--founder-preview-pad-right);
  }

  .founder-preview-media {
    align-self: stretch;
    width: calc(100% + var(--founder-preview-pad-right));
    min-height: clamp(270px, 30vw, 420px);
    isolation: isolate;
    margin: calc(var(--founder-preview-pad) * -1) calc(var(--founder-preview-pad-right) * -1) calc(var(--founder-preview-pad) * -1) 0;
  }

  .founder-preview-media::before {
    content: "";
    position: absolute;
    inset: -6% auto -6% -34%;
    width: 48%;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(circle at 78% 48%, rgba(99, 234, 209, 0.18), transparent 58%),
      linear-gradient(90deg, rgba(5, 15, 13, 0.92), rgba(5, 15, 13, 0.34) 62%, transparent);
    filter: blur(18px);
  }

  .founder-preview-media::after {
    z-index: 2;
    background:
      linear-gradient(90deg, rgba(5, 15, 13, 0.08) 0%, transparent 18%, transparent 100%),
      linear-gradient(180deg, rgba(5, 15, 13, 0.16) 0%, transparent 24%, transparent 74%, rgba(5, 15, 13, 0.28) 100%),
      rgba(31, 185, 164, 0.12);
    mix-blend-mode: screen;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .founder-preview-media img {
    height: 100%;
    min-height: clamp(270px, 30vw, 420px);
    aspect-ratio: auto;
    object-position: 54% center;
    filter: sepia(0.14) saturate(0.72) hue-rotate(118deg) contrast(1.04) brightness(0.82);
    transform: scale(1.08);
  }

  .cta-band .button {
    justify-self: start;
  }

  .approach-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sticky-heading {
    position: sticky;
    top: 108px;
    align-self: start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 720px;
    align-items: center;
    align-content: center;
    padding-top: clamp(3.2rem, 7vw, 4.4rem);
    padding-bottom: clamp(3rem, 7vw, 4.2rem);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 8, 7, 0.96) 0%, rgba(3, 8, 7, 0.8) 36%, rgba(3, 8, 7, 0.14) 63%, rgba(3, 8, 7, 0) 100%),
      linear-gradient(180deg, rgba(3, 8, 7, 0.02) 0%, rgba(3, 8, 7, 0.04) 58%, rgba(3, 8, 7, 0.1) 100%);
  }

  .hero-copy {
    display: block;
    max-width: 30.5rem;
  }

  .hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(4.15rem, 7.6vw, 4.65rem);
    line-height: 0.94;
  }

  .hero-intro {
    max-width: 30rem;
    margin-bottom: 0;
    font-size: clamp(1.18rem, 2.2vw, 1.34rem);
    line-height: 1.58;
  }

  .hero-intro .hero-line {
    display: block;
  }

  .hero .button-row {
    width: auto;
    margin-top: 1.2rem;
    justify-content: flex-start;
  }

  .hero .button.primary,
  .hero .button.secondary {
    order: initial;
  }

  .trust-note {
    max-width: 30rem;
    margin-top: 1.05rem;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    line-height: 1.55;
    text-align: left;
  }

  .hero-visual {
    position: absolute;
    order: initial;
    top: calc(50% + 3.95rem);
    right: clamp(-9rem, -11vw, -5.5rem);
    bottom: auto;
    left: auto;
    z-index: 0;
    width: min(74vw, 640px);
    margin: 0;
    aspect-ratio: 16 / 9;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .hero-media-video {
    object-position: center center;
  }

  .about-hero {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(2rem, 5vw, 3.2rem);
    row-gap: clamp(2.4rem, 5vw, 3.4rem);
  }

  .about-intro {
    display: contents;
  }

  .about-opening {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    grid-row: 1;
    column-gap: inherit;
    row-gap: 0;
  }

  .about-opening .eyebrow,
  .about-opening h1,
  .about-opening .hero-lede {
    grid-column: 1 / -1;
  }

  .about-opening p:not(.eyebrow):not(.hero-lede) {
    grid-column: 1;
  }

  .about-support-image {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    width: 100%;
    margin-top: clamp(16.2rem, 33.8vw, 17.7rem);
  }

  .founder-aside-desktop {
    display: grid;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    width: min(92%, 300px);
    margin-inline: auto;
    padding-top: clamp(2.2rem, 5vw, 4rem);
  }

  .founder-aside-mobile {
    display: none;
  }

  .about-main-copy {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .about-main-copy h2:first-child {
    margin-top: clamp(0.4rem, 1.6vw, 1rem);
  }

  .about-main-copy p {
    max-width: 40rem;
  }

  .founder-identity {
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.25rem;
  }

  .founder-identity p {
    font-size: clamp(1.45rem, 3.2vw, 1.8rem);
  }

  .split-section .sticky-heading h2 {
    font-size: clamp(2.45rem, 5.4vw, 3.15rem);
    max-width: 10.5ch;
  }

  .founder-preview {
    grid-template-columns: minmax(0, 0.84fr) minmax(330px, 0.92fr);
  }

  .founder-preview-media {
    justify-self: end;
    width: calc(100% + var(--founder-preview-pad-right));
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: var(--header-height) 1rem auto;
    padding: 0.8rem;
    border: 1px solid rgba(99, 234, 209, 0.24);
    border-radius: 20px;
    background:
      linear-gradient(145deg, rgba(99, 234, 209, 0.08), rgba(7, 17, 15, 0) 40%),
      rgba(5, 14, 12, 0.98);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-toggle {
    display: inline-grid;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding-inline: clamp(2rem, 5vw, 4.5rem);
  }

  .site-nav {
    gap: 0.75rem;
  }

  .about-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(3rem, 7vw, 5.8rem);
    row-gap: clamp(2.8rem, 6vw, 4.5rem);
  }

  .about-intro {
    display: contents;
  }

  .about-opening {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .about-support-image {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    width: min(100%, 40rem);
    margin: 0 0 0.15rem;
  }

  .founder-aside {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    width: min(88%, 420px);
    margin-inline: auto;
    padding-top: clamp(3.2rem, 7vw, 6.4rem);
  }

  .founder-aside-desktop {
    display: grid;
  }

  .founder-aside-mobile {
    display: none;
  }

  .about-main-copy {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .about-main-copy h2:first-child {
    margin-top: clamp(0.7rem, 2vw, 1.4rem);
  }

  .about-main-copy p {
    max-width: 40rem;
  }

}

@media (min-width: 1280px) {
  .section-shell {
    width: min(var(--max), calc(100% - 4rem));
  }
}

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

  .hero-media-video {
    display: none;
  }

  .hero-visual {
    background-image: url("assets/aiway-hero-poster.png");
    background-size: cover;
    background-position: center;
  }

  .reveal,
  .js-motion-enabled .reveal,
  .js-motion-enabled .hero .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 46px;
  }

  .brand strong {
    font-size: 1.28rem;
  }

  h1 {
    font-size: var(--type-h1-size);
  }
}

