:root {
  color-scheme: dark;
  --ink: #070a10;
  --ink-2: #0c1018;
  --ink-3: #121823;
  --paper: #f4f6f3;
  --white: #ffffff;
  --muted: #a9b1bd;
  --muted-dark: #59606a;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(7, 10, 16, 0.13);
  --lime: #b7ff3c;
  --lime-dark: #8dd51d;
  --cyan: #68e9ff;
  --blue: #466cff;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(7, 10, 16, 0.5);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 10, 16, 0.92);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: linear-gradient(145deg, #171e2c, #090c12);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-mark b {
  color: var(--lime);
  font-size: 20px;
  line-height: 1;
}

.brand-name {
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.brand-name strong {
  color: var(--lime);
  font-weight: inherit;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #cbd1da;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--lime);
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--lime);
}

.desktop-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(183, 255, 60, 0.16);
}

.button-primary:hover {
  border-color: #c7ff69;
  background: #c7ff69;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-self: end;
  width: 44px;
  height: 44px;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.menu-button span:not(.sr-only) {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-last-child(2) {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 78px 0 0;
  padding: 40px 20px;
  background: rgba(7, 10, 16, 0.98);
}

.mobile-nav:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.mobile-nav > a:not(.button) {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.45rem, 7vw, 2.2rem);
  font-weight: 750;
}

.mobile-nav .button {
  margin-top: 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 35%, rgba(70, 108, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #080b12, var(--ink));
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.042) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.glow-one {
  top: 14%;
  right: -7%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(104, 233, 255, 0.15);
  box-shadow: 0 0 140px rgba(70, 108, 255, 0.2), inset 0 0 120px rgba(104, 233, 255, 0.04);
}

.glow-two {
  left: -160px;
  bottom: 5%;
  width: 330px;
  height: 330px;
  background: rgba(183, 255, 60, 0.05);
  filter: blur(70px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  min-height: 720px;
  padding-block: 70px 84px;
  gap: 62px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.25rem);
  font-weight: 820;
  letter-spacing: -0.072em;
  line-height: 0.93;
}

.hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
  font-weight: inherit;
}

.hero-lede {
  max-width: 645px;
  margin: 30px 0 0;
  color: #b9c0ca;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: #e7eaf0;
  font-size: 15px;
  font-weight: 720;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
  gap: 18px 26px;
  color: #959eab;
  font-size: 14px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(183, 255, 60, 0.38);
  border-radius: 50%;
  color: var(--lime);
  font-size: 11px;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background: #0d1220;
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.visual-frame::before {
  position: absolute;
  z-index: 4;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.visual-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.02), rgba(7, 10, 16, 0.42));
}

.visual-label,
.signal-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 12, 19, 0.82);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.visual-label {
  padding: 11px 14px 11px 11px;
  border-radius: 16px;
  gap: 12px;
}

.visual-label > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.visual-label b,
.visual-label small {
  display: block;
  white-space: nowrap;
}

.visual-label b {
  font-size: 13px;
  line-height: 1.25;
}

.visual-label small {
  margin-top: 2px;
  color: #929aa6;
  font-size: 11px;
}

.label-top {
  top: 28px;
  right: 25px;
}

.label-bottom {
  right: 26px;
  bottom: 28px;
}

.signal-card {
  left: -28px;
  top: 51%;
  padding: 14px 17px;
  border-radius: 17px;
  gap: 12px;
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.signal-card div {
  min-width: 110px;
}

.signal-card small,
.signal-card b {
  display: block;
}

.signal-card small {
  color: #7f8997;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.signal-card b {
  margin-top: 2px;
  font-size: 13px;
}

.signal-card > span:last-child {
  color: var(--lime);
}

.service-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-top: 1px solid var(--line);
  color: #afb7c2;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.service-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(183, 255, 60, 0.55);
}

.section {
  padding-block: 120px;
}

.positioning {
  background: var(--paper);
  color: var(--ink);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.72fr 2fr;
  gap: 60px;
}

.section-kicker {
  color: #456900;
}

.section-kicker.light {
  color: var(--lime);
}

.split-intro h2,
.section-heading h2,
.method h2,
.standards h2,
.fit h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.split-intro h2 span {
  color: #747b84;
}

.split-intro > div > p {
  max-width: 720px;
  margin: 30px 0 0;
  color: #515861;
  font-size: 18px;
  line-height: 1.75;
}

.services {
  background: #eef0ed;
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  align-items: end;
  margin-bottom: 54px;
  gap: 60px;
}

.section-heading > p {
  margin: 0 0 6px;
  color: #646b73;
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f8f9f7;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 10, 16, 0.26);
  box-shadow: 0 22px 50px rgba(7, 10, 16, 0.09);
}

.service-card.featured {
  grid-column: span 6;
  background: var(--lime);
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 3;
}

.service-card:nth-child(4) {
  grid-column: span 4;
}

.service-card.wide {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column: span 8;
  min-height: 280px;
  column-gap: 22px;
}

.service-card.wide > a {
  align-self: end;
  grid-column: 2;
  width: max-content;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  font-weight: 750;
}

.card-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #737981;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.featured .card-number {
  color: rgba(7, 10, 16, 0.55);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 42px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-card.wide h3 {
  margin-top: 4px;
}

.service-card p {
  margin: 0;
  color: #5c626a;
}

.featured p,
.featured li {
  color: rgba(7, 10, 16, 0.72);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid rgba(7, 10, 16, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.method {
  background: var(--ink);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 100px;
}

.method-sticky {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-sticky > p:not(.section-kicker) {
  max-width: 480px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.process-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(183, 255, 60, 0.28);
  border-radius: 50%;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.process-list div > p:first-child {
  margin: 0 0 8px;
  color: #6e7885;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.035em;
}

.process-list div > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.standards {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: white;
}

.standards::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.standards-orb {
  position: absolute;
  top: -210px;
  left: -130px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(183, 255, 60, 0.17);
  border-radius: 50%;
}

.standards-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.standards-lede {
  max-width: 530px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.quality-panel {
  padding: 10px 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(6, 12, 35, 0.44);
  box-shadow: 0 28px 60px rgba(20, 28, 70, 0.26);
  backdrop-filter: blur(16px);
}

.quality-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  gap: 16px;
}

.quality-row:last-child {
  border: 0;
}

.quality-row > span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.quality-row h3 {
  margin: 0;
  font-size: 18px;
}

.quality-row p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.fit {
  background: var(--paper);
  color: var(--ink);
}

.fit-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 100px;
}

.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fit-tags span {
  padding: 14px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 720;
}

.fit-tags span:nth-child(2),
.fit-tags span:nth-child(5) {
  background: var(--lime);
}

.faq {
  background: #e8ebe7;
  color: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.accordion {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 27px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 760;
}

.faq-item button span {
  color: #5c636c;
  font-size: 24px;
  font-weight: 400;
}

.faq-answer {
  padding: 0 50px 26px 0;
}

.faq-answer p {
  margin: 0;
  color: #596069;
}

.contact {
  background: var(--paper);
  color: var(--ink);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--ink-2);
  color: white;
  box-shadow: 0 36px 70px rgba(7, 10, 16, 0.18);
}

.contact-card::after {
  position: absolute;
  left: -90px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(183, 255, 60, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-copy,
.call-form {
  position: relative;
  z-index: 1;
  padding: 62px;
}

.contact-copy {
  border-right: 1px solid var(--line);
}

.contact-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.contact-copy > p:not(.section-kicker) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  margin-top: 44px;
  gap: 14px;
}

.contact-note > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.contact-note p {
  margin: 0;
  color: #99a2af;
  font-size: 14px;
}

.contact-note b {
  color: white;
}

.call-form {
  display: flex;
  flex-direction: column;
  background: #111720;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.call-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #cfd5dc;
  font-size: 14px;
  font-weight: 670;
}

.call-form input,
.call-form select,
.call-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  font-size: 16px;
  transition: border-color 160ms ease, background 160ms ease;
}

.call-form input,
.call-form select {
  min-height: 52px;
  padding: 0 15px;
}

.call-form textarea {
  min-height: 115px;
  padding: 13px 15px;
  resize: vertical;
}

.call-form input::placeholder,
.call-form textarea::placeholder {
  color: #727c89;
}

.call-form input:focus,
.call-form select:focus,
.call-form textarea:focus {
  outline: 0;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.call-form option {
  background: var(--ink-3);
}

.call-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  color: #9ca5b1;
  font-weight: 500;
  gap: 10px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--lime);
}

.form-submit {
  align-self: stretch;
  margin-top: 2px;
}

.form-helper,
.form-status {
  margin: -7px 0 0;
  color: #7f8996;
  text-align: center;
  font-size: 12px;
}

.form-status {
  margin: 0;
  color: var(--lime);
  font-size: 14px;
}

.site-footer {
  padding: 74px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 62px;
  gap: 80px;
}

.footer-top > div:first-child > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links p {
  margin: 0 0 9px;
  color: #68717e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.footer-links a {
  color: #c6ccd5;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  color: #6f7885;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-fab {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: #25d366;
  color: #06150b;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  background: #35e477;
}

.whatsapp-fab svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.proof-preview {
  background: #e8ebe7;
  color: var(--ink);
}

.proof-preview-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 96px;
}

.proof-preview h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.65rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-preview-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 28px 0 32px;
  color: #596069;
  font-size: 17px;
}

.proof-button {
  border-color: var(--ink);
  background: var(--ink);
}

.proof-button:hover {
  border-color: #222a36;
  background: #222a36;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.proof-metrics article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 215px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--ink-2);
  color: white;
  box-shadow: 0 20px 45px rgba(7, 10, 16, 0.12);
}

.proof-metrics strong {
  color: var(--lime);
  font-size: clamp(3.3rem, 6vw, 5.6rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.proof-metrics p {
  max-width: 250px;
  margin: 30px 0 0;
  color: #bec5ce;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.proof-metrics .proof-metric-wide {
  grid-column: 1 / -1;
  min-height: 190px;
  background: var(--blue);
}

.proof-metric-wide {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 34px;
}

.proof-metric-wide p {
  justify-self: end;
  margin: 0;
  color: white;
  text-align: right;
}

.team-page {
  background: var(--paper);
}

.team-hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  isolation: isolate;
  background:
    radial-gradient(circle at 83% 40%, rgba(70, 108, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #080b12, var(--ink));
}

.team-hero-orbit {
  position: absolute;
  z-index: -2;
  top: 90px;
  right: -170px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(104, 233, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(70, 108, 255, 0.05), 0 0 120px rgba(70, 108, 255, 0.08);
}

.team-hero-orbit::after {
  position: absolute;
  top: 28%;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px var(--lime);
  content: "";
}

.team-hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: center;
  min-height: 650px;
  padding-block: 105px 92px;
  gap: 92px;
}

.team-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 6.3vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.072em;
  line-height: 0.95;
}

.team-hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.team-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px 0 0;
  color: #b9c0ca;
  font-size: 18px;
}

.team-signal-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(14, 19, 30, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.team-signal-panel > p {
  margin: 0;
  color: #697383;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.team-signal-main {
  display: flex;
  align-items: flex-end;
  padding: 38px 0;
  gap: 17px;
}

.team-signal-main strong {
  color: var(--lime);
  font-size: clamp(4.7rem, 8vw, 7rem);
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.team-signal-main span {
  color: #d7dce3;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.team-signal-rows {
  border-top: 1px solid var(--line);
}

.team-signal-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.team-signal-rows span {
  color: #8f99a6;
  font-size: 13px;
}

.team-signal-rows b {
  color: white;
  font-size: 14px;
}

.founder-section {
  background: var(--paper);
  color: var(--ink);
}

.founder-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  margin-bottom: 52px;
  gap: 65px;
}

.founder-heading h2,
.story-heading h2,
.team-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.founder-heading > div > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #596069;
  font-size: 17px;
}

.founder-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--ink-2);
  color: white;
  box-shadow: 0 32px 68px rgba(7, 10, 16, 0.18);
}

.founder-identity {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #080d17;
}

.founder-identity::after {
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, rgba(7, 10, 16, 0.85));
  pointer-events: none;
  content: "";
}

.founder-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

.founder-index {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.founder-index b {
  color: var(--lime);
  font-size: 13px;
}

.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.founder-content h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.65rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.founder-content > p:not(.section-kicker) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
}

.founder-content .founder-lede {
  color: white !important;
  font-size: 18px;
  line-height: 1.65;
}

.founder-specialties {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 8px;
}

.founder-specialties span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c4cbd4;
  font-size: 12px;
  font-weight: 700;
}

.founder-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 22px;
}

.story-section {
  background: #e8ebe7;
  color: var(--ink);
}

.story-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  margin-bottom: 52px;
  gap: 70px;
}

.story-heading > p {
  margin: 0 0 5px;
  color: #596069;
  font-size: 17px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f8f9f7;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(7, 10, 16, 0.09);
}

.story-card.story-highlight {
  background: var(--lime);
}

.story-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 14px;
}

.story-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
}

.story-meta {
  color: #757c84;
  text-align: right;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.story-highlight .story-meta {
  color: rgba(7, 10, 16, 0.62);
}

.story-card h3 {
  margin: 36px 0 3px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.story-person {
  min-height: 44px;
  margin: 4px 0 26px;
  color: #656c74;
  font-size: 14px;
  font-weight: 650;
}

.story-highlight .story-person,
.story-highlight .story-block p {
  color: rgba(7, 10, 16, 0.68);
}

.story-block {
  padding: 17px 0;
  border-top: 1px solid var(--line-dark);
}

.story-block small {
  color: #606870;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.story-block p {
  margin: 6px 0 0;
  color: #555c64;
  font-size: 14px;
  line-height: 1.55;
}

.story-stat {
  display: flex;
  align-items: flex-end;
  margin: -6px 0 18px;
  gap: 11px;
}

.story-stat strong {
  font-size: 44px;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.story-stat span {
  max-width: 90px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

.story-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  gap: 8px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 780;
}

.team-cta {
  background: var(--paper);
  color: white;
}

.team-cta-card {
  position: relative;
  overflow: hidden;
  padding: 76px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 35%, rgba(70, 108, 255, 0.34), transparent 28%),
    var(--ink-2);
  box-shadow: 0 30px 68px rgba(7, 10, 16, 0.16);
}

.team-cta-card::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(183, 255, 60, 0.08);
  border-radius: 50%;
  content: "";
}

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

.team-cta h2 {
  max-width: 920px;
}

.team-cta-card > p:not(.section-kicker) {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.team-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 38px;
  }

  .visual-label {
    transform: scale(0.9);
  }

  .signal-card {
    left: -16px;
  }

  .method-layout,
  .standards-layout,
  .faq-layout {
    gap: 60px;
  }

  .contact-copy,
  .call-form {
    padding: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: flex;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-block: 74px 70px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 610px);
    margin: 14px auto 0;
  }

  .visual-frame {
    aspect-ratio: 1.15 / 1;
    transform: none;
  }

  .signal-card {
    left: 24px;
  }

  .service-strip {
    overflow: hidden;
    gap: 24px;
    white-space: nowrap;
  }

  .service-strip span:nth-of-type(n + 4),
  .service-strip i:nth-of-type(n + 4) {
    display: none;
  }

  .section {
    padding-block: 90px;
  }

  .split-intro,
  .section-heading,
  .method-layout,
  .standards-layout,
  .fit-layout,
  .faq-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .split-intro,
  .section-heading,
  .method-layout,
  .standards-layout,
  .fit-layout,
  .faq-layout {
    gap: 42px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .service-card,
  .service-card.featured,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    grid-column: span 6;
  }

  .service-card.wide {
    grid-column: span 12;
  }

  .method-sticky {
    position: static;
  }

  .fit-copy h2 {
    max-width: 650px;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-top {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-name {
    font-size: 15px;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button-primary {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .visual-frame {
    aspect-ratio: 0.95 / 1;
    border-radius: 24px;
  }

  .visual-frame::before {
    inset: 8px;
    border-radius: 18px;
  }

  .visual-label {
    transform: scale(0.82);
    transform-origin: right top;
  }

  .label-top {
    top: 18px;
    right: 15px;
  }

  .label-bottom {
    right: 15px;
    bottom: 18px;
    transform-origin: right bottom;
  }

  .signal-card {
    left: 15px;
    transform: scale(0.84);
    transform-origin: left center;
  }

  .service-strip {
    justify-content: flex-start;
  }

  .service-strip span:nth-of-type(n + 3),
  .service-strip i:nth-of-type(n + 3) {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .split-intro,
  .section-heading,
  .method-layout,
  .standards-layout,
  .fit-layout,
  .faq-layout {
    gap: 32px;
  }

  .service-card,
  .service-card.featured,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card.wide {
    display: flex;
    grid-column: span 12;
    min-height: 330px;
  }

  .service-card.wide > a {
    grid-column: auto;
    margin-top: auto;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    gap: 10px;
  }

  .quality-panel {
    padding-inline: 22px;
  }

  .quality-row {
    grid-template-columns: 36px 1fr;
  }

  .contact-card {
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .contact-copy,
  .call-form {
    padding: 34px 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 1060px) {
  .proof-preview-layout,
  .team-hero-layout {
    gap: 54px;
  }

  .founder-content {
    padding: 48px;
  }

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

@media (max-width: 900px) {
  .proof-preview-layout,
  .team-hero-layout,
  .founder-heading,
  .founder-card,
  .story-heading {
    grid-template-columns: 1fr;
  }

  .proof-preview-layout,
  .team-hero-layout,
  .founder-heading,
  .story-heading {
    gap: 40px;
  }

  .team-hero-layout {
    padding-block: 86px 78px;
  }

  .team-signal-panel {
    width: min(100%, 600px);
  }

  .founder-identity {
    height: clamp(440px, 80vw, 620px);
    min-height: 0;
  }

  .story-heading > p {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-height: 54px;
    padding: 0;
  }

  .whatsapp-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .proof-preview-layout,
  .team-hero-layout,
  .founder-heading,
  .story-heading {
    gap: 31px;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-metrics .proof-metric-wide {
    display: flex !important;
    grid-column: auto;
    align-items: flex-start;
  }

  .proof-metric-wide p {
    margin-top: 28px;
    text-align: left;
  }

  .team-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .team-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .team-signal-panel {
    padding: 23px;
  }

  .team-signal-main {
    padding-block: 34px;
  }

  .team-signal-main strong {
    font-size: 5.2rem;
  }

  .founder-identity {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .founder-content {
    padding: 42px 24px;
  }

  .founder-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-links .text-link {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .story-card {
    min-height: 535px;
  }

  .team-cta-card {
    padding: 48px 24px;
    border-radius: 24px;
  }

  .team-cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
