@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunitosans/v19/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5Xs1Ul.woff2") format("woff2");
}

:root {
  --ink: #f4f8f1;
  --muted: #b9cfca;
  --subtle: #88a8a4;
  --night: #104247;
  --night-soft: #185b60;
  --teal: #28bdbc;
  --teal-dark: #1b8587;
  --lime: #c9e85d;
  --line: rgba(235, 250, 244, 0.14);
  --line-strong: rgba(235, 250, 244, 0.24);
  --glass: rgba(23, 87, 90, 0.7);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --display: "Nunito Sans", "Arial Rounded MT Bold", "Segoe UI", sans-serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --mono: Consolas, "Courier New", monospace;
  --container: min(1320px, calc(100% - 56px));
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --title-size: clamp(2.6rem, 3.6vw, 4.15rem);
  --shadow: 0 36px 100px rgba(0, 12, 14, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgba(54, 211, 207, 0.2), transparent 31rem),
    radial-gradient(circle at 14% 28%, rgba(39, 160, 163, 0.2), transparent 34rem),
    linear-gradient(180deg, #237276 0%, var(--night-soft) 42%, var(--night) 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

main,
section,
.hero-content,
.hero-visual,
.about-content,
.section-heading,
.method-intro,
.service-card,
.process-step,
.footer-main > * {
  min-width: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

button,
summary {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  isolation: isolate;
}

.grid-texture {
  position: absolute;
  z-index: -3;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  animation: ambient-drift 12s ease-in-out infinite alternate;
}

.ambient-one {
  top: 260px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: rgba(40, 189, 188, 0.21);
}

.ambient-two {
  top: 1260px;
  left: -300px;
  width: 720px;
  height: 720px;
  background: rgba(201, 232, 93, 0.09);
  animation-delay: -5s;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 51, 54, 0.92);
  box-shadow: 0 12px 36px rgba(1, 15, 17, 0.12);
  backdrop-filter: blur(22px) saturate(130%);
}

.header-inner {
  width: var(--container);
  min-height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: 360px;
  height: 109px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 20px rgba(0, 15, 17, 0.24));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dce9e5;
  font-size: 1.075rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-cta {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8f1;
  font-size: 1rem;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 232, 93, 0.64);
  background: rgba(201, 232, 93, 0.09);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  min-height: 43px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 0.72rem;
  font-weight: 750;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary i,
.mobile-menu summary i::before,
.mobile-menu summary i::after {
  width: 14px;
  height: 1px;
  display: block;
  background: currentColor;
}

.mobile-menu summary i {
  position: relative;
}

.mobile-menu summary i::before,
.mobile-menu summary i::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu summary i::before {
  top: -5px;
}

.mobile-menu summary i::after {
  top: 5px;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(280px, calc(100vw - 28px));
  padding: 10px;
  display: grid;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(13, 60, 63, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.mobile-nav a {
  padding: 13px 14px;
  border-radius: 10px;
  color: #dce9e5;
  font-size: 0.82rem;
  font-weight: 650;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(40, 189, 188, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  width: var(--container);
  min-height: calc(100svh - 138px);
  margin: 34px auto 0;
  padding: clamp(62px, 6vw, 88px) clamp(38px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
  overflow: hidden;
  border: 1px solid rgba(224, 248, 240, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 83% 32%, rgba(54, 219, 210, 0.2), transparent 28rem),
    radial-gradient(circle at 8% 3%, rgba(201, 232, 93, 0.1), transparent 22rem),
    linear-gradient(135deg, rgba(7, 49, 53, 0.98), rgba(16, 88, 90, 0.95));
  box-shadow:
    0 38px 95px rgba(1, 22, 25, 0.38),
    0 12px 28px rgba(1, 22, 25, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.055), transparent 26%),
    linear-gradient(90deg, transparent 48%, rgba(40, 189, 188, 0.055) 48%, rgba(40, 189, 188, 0.055) 48.15%, transparent 48.15%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -15%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(100, 226, 218, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 183, 179, 0.1), transparent 66%);
  transform: translateY(-50%);
  pointer-events: none;
}

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

.eyebrow,
.section-kicker,
.section-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d6e5df;
  font-size: 0.76rem;
  transform: translateY(-42px);
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(201, 232, 93, 0.1), 0 0 20px rgba(201, 232, 93, 0.6);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  max-width: 680px;
  margin-bottom: 0;
  margin-top: 26px;
  font-size: var(--title-size);
  line-height: 0.96;
  letter-spacing: -0.048em;
}

h1 em,
.about h2 em,
.section-heading h2 em,
.method h2 em,
.contact-section h2 em {
  color: #daf186;
  font-style: normal;
  font-weight: 700;
}

.hero-copy {
  max-width: 610px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 1.55vw, 1.36rem);
  line-height: 1.72;
}

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

.button {
  min-height: 53px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-actions .button {
  min-height: 62px;
  padding: 0 32px;
  gap: 12px;
  font-size: 1rem;
}

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

.button-primary {
  background: var(--lime);
  box-shadow: 0 18px 45px rgba(201, 232, 93, 0.2);
  color: #0a201d;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 23px 56px rgba(201, 232, 93, 0.32);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(40, 189, 188, 0.11);
}

.hero-proof {
  margin-top: 42px;
  padding-top: 24px;
  width: calc(100% + clamp(54px, 6vw, 84px));
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 42px);
  border-top: 1px solid var(--line);
}

.hero-proof div {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero-proof div:last-child {
  margin-left: auto;
}

.hero-proof strong {
  color: #e9f4e9;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.hero-proof span {
  max-width: none;
  color: var(--subtle);
  font-size: 1.12rem;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-gif {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1;
  opacity: 0.65;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.capability-strip {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(224, 248, 240, 0.16);
  border-radius: 20px;
  background: rgba(10, 55, 59, 0.94);
  box-shadow: 0 22px 54px rgba(1, 22, 25, 0.28);
  backdrop-filter: blur(18px) saturate(125%);
}

.capability-strip > span {
  min-height: 88px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ccdbd6;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.capability-strip > span + span {
  border-left: 1px solid var(--line);
}

.capability-strip i {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 800;
  font-style: normal;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 118px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #a9c0ba;
}

.section-label i {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.about {
  margin: 46px auto 0;
  padding: 0;
}

.about-content {
  position: relative;
  isolation: isolate;
  margin-top: 24px;
  padding: clamp(66px, 6vw, 92px) clamp(40px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 232, 93, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 20%, rgba(40, 189, 188, 0.16), transparent 28rem),
    linear-gradient(120deg, rgba(18, 88, 90, 0.94), rgba(13, 64, 61, 0.97));
  box-shadow:
    0 34px 86px rgba(1, 22, 25, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.about-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -210px;
  left: 24%;
  width: 620px;
  height: 430px;
  border-radius: 50%;
  background: rgba(40, 189, 188, 0.14);
  filter: blur(90px);
  pointer-events: none;
}

.about-content > * {
  position: relative;
  z-index: 1;
}

.about-content .section-label {
  margin-bottom: 32px;
  transform: translateY(-34px);
}

.about h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: var(--title-size);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.about-copy {
  max-width: 1120px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.about-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.18vw, 1.2rem);
  line-height: 1.72;
}

.about-copy p + p {
  margin-top: 20px;
}

.services {
  position: relative;
  isolation: isolate;
  margin: 46px auto 0;
  padding: clamp(48px, 4.5vw, 64px) clamp(38px, 5.5vw, 78px) clamp(70px, 7vw, 100px);
  overflow: hidden;
  border: 1px solid rgba(224, 248, 240, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 82%, rgba(201, 232, 93, 0.08), transparent 28rem),
    radial-gradient(circle at 12% 8%, rgba(40, 189, 188, 0.15), transparent 30rem),
    linear-gradient(135deg, rgba(8, 52, 57, 0.98), rgba(15, 76, 79, 0.95));
  box-shadow:
    0 34px 86px rgba(1, 22, 25, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.services::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -240px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(201, 232, 93, 0.07);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 189, 188, 0.08), transparent 68%);
  pointer-events: none;
}

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

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: #a9c0ba;
}

.services .section-kicker {
  transform: translateY(-28px);
}

.section-heading h2,
.method h2,
.contact-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: var(--title-size);
  line-height: 1.02;
  letter-spacing: -0.042em;
}

.section-heading h2 {
  max-width: none;
}

.section-heading > p {
  max-width: none;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (min-width: 1261px) {
  .section-heading > p {
    white-space: nowrap;
  }
}

.service-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(12, 58, 62, 0.86);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 189, 188, 0.17), transparent 68%);
  transition: transform 350ms ease;
}

.featured-card::before {
  background: radial-gradient(circle, rgba(201, 232, 93, 0.2), transparent 68%);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(40, 189, 188, 0.45);
  background: rgba(19, 73, 77, 0.9);
}

.service-card:hover::before {
  transform: scale(1.28) translate(-12px, -8px);
}

.service-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #7f9e99;
  font-family: var(--mono);
  font-size: 0.61rem;
}

.service-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 232, 93, 0.34);
  border-radius: 14px;
  background: rgba(201, 232, 93, 0.08);
  color: #dff28f;
  font-size: 1.25rem;
}

.service-card-header {
  position: relative;
  z-index: 2;
  padding-right: 46px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-card h3 {
  max-width: none;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.55vw, 1.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-card p {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #cbdad5;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-link i {
  color: var(--lime);
  font-size: 1rem;
  font-style: normal;
}

.method {
  position: relative;
  isolation: isolate;
  margin: 46px auto 0;
  padding: clamp(48px, 4.5vw, 64px) clamp(38px, 5.5vw, 78px) clamp(70px, 7vw, 96px);
  overflow: hidden;
  border: 1px solid rgba(224, 248, 240, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(40, 189, 188, 0.15), transparent 27rem),
    radial-gradient(circle at 92% 76%, rgba(201, 232, 93, 0.08), transparent 30rem),
    linear-gradient(135deg, rgba(8, 51, 56, 0.98), rgba(14, 73, 76, 0.95));
  box-shadow:
    0 34px 86px rgba(1, 22, 25, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.method::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  right: 16%;
  width: 600px;
  height: 430px;
  border-radius: 50%;
  background: rgba(40, 189, 188, 0.12);
  filter: blur(90px);
  pointer-events: none;
}

.method-intro {
  position: relative;
  z-index: 2;
}

.method .section-kicker {
  transform: translateY(-28px);
}

.method h2 {
  max-width: none;
  font-size: var(--title-size);
  line-height: 1.08;
}

.method-intro > p:last-child {
  max-width: none;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (min-width: 1261px) {
  .method-intro > p:last-child {
    white-space: nowrap;
  }
}

.process-list {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 232, 93, 0.54), transparent);
}

.process-step {
  position: relative;
  min-height: 335px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(11, 58, 62, 0.88);
  box-shadow: 0 18px 44px rgba(1, 22, 25, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-step::after {
  content: "↗";
  position: absolute;
  top: 31px;
  right: 24px;
  color: rgba(201, 232, 93, 0.8);
  font-size: 1rem;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 232, 93, 0.34);
  background: rgba(18, 72, 75, 0.92);
}

.process-step-header {
  position: relative;
  z-index: 2;
  padding-right: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-step-header > span {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 232, 93, 0.34);
  border-radius: 50%;
  background: rgba(201, 232, 93, 0.08);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(201, 232, 93, 0.035);
}

.process-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.process-step p {
  max-width: none;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.contact-section {
  position: relative;
  width: var(--container);
  margin: 46px auto 110px;
  padding: 82px clamp(28px, 7vw, 95px);
  overflow: hidden;
  border: 1px solid rgba(201, 232, 93, 0.26);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(40, 189, 188, 0.18), rgba(201, 232, 93, 0.1)),
    rgba(10, 54, 58, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 620px;
  height: 390px;
  border-radius: 50%;
  background: rgba(40, 189, 188, 0.18);
  filter: blur(90px);
  transform: translateX(-50%);
}

.contact-section > *:not(.contact-glow) {
  position: relative;
  z-index: 2;
}

.contact-section .section-kicker {
  color: #b6d0c9;
}

.contact-section h2 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  font-size: var(--title-size);
}

.contact-section > p:not(.section-kicker) {
  max-width: 700px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-section .button {
  margin-top: 31px;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  width: min(560px, calc(100% - 28px));
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.contact-modal::backdrop {
  background: rgba(2, 24, 27, 0.78);
  backdrop-filter: blur(12px);
}

.contact-modal-card {
  position: relative;
  max-height: calc(100dvh - 32px);
  padding: 22px 24px 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(201, 232, 93, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(40, 189, 188, 0.15), transparent 22rem),
    linear-gradient(145deg, #0b3a3e, #105256);
  box-shadow: 0 38px 110px rgba(1, 18, 21, 0.62);
}

.contact-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  border-color: rgba(201, 232, 93, 0.5);
  background: rgba(201, 232, 93, 0.1);
  transform: rotate(4deg);
}

.contact-modal-logo {
  width: 190px;
  height: 76px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.contact-form {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field > span {
  color: #eaf3ef;
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(224, 248, 240, 0.18);
  border-radius: 11px;
  outline: 0;
  background: rgba(3, 34, 38, 0.48);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-field input {
  min-height: 43px;
  padding: 0 12px;
}

.contact-field textarea {
  min-height: 60px;
  height: 60px;
  padding: 8px 12px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(201, 232, 93, 0.62);
  background: rgba(3, 34, 38, 0.68);
  box-shadow: 0 0 0 4px rgba(201, 232, 93, 0.08);
}

.contact-form-actions {
  display: flex;
  justify-content: center;
}

.contact-form-actions .button {
  min-height: 47px;
  padding: 0 21px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
}

.contact-form-actions .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.contact-form-status {
  min-height: 0;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.contact-form-status:empty {
  display: none;
}

.contact-form-status.is-sending {
  color: #dce9e5;
}

.contact-form-status.is-success {
  color: #dff28f;
}

.contact-form-status.is-error {
  color: #ffb4ab;
}

.contact-qr-section {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line-strong);
}

.contact-qr-section > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.contact-qr-grid {
  width: min(330px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-qr-card {
  margin: 0;
  padding: 9px 9px 8px;
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid rgba(224, 248, 240, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-qr-card img {
  width: 100%;
  max-width: 118px;
  height: auto;
  border-radius: 8px;
  background: transparent;
}

.contact-qr-card strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .contact-modal {
    width: calc(100% - 16px);
  }

  .contact-modal-card {
    max-height: calc(100dvh - 16px);
    padding: 18px 14px 18px;
    border-radius: 20px;
  }

  .contact-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .contact-modal-logo {
    width: 170px;
    height: 68px;
  }

  .contact-form {
    margin-top: 8px;
    gap: 10px;
  }

  .contact-form-actions .button {
    width: 100%;
  }

  .contact-qr-grid {
    width: min(270px, 100%);
    gap: 12px;
  }

  .contact-qr-card {
    padding: 7px 7px 8px;
    border-radius: 12px;
  }

  .contact-qr-card img {
    max-width: 94px;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 43, 47, 0.88);
}

.footer-main {
  width: var(--container);
  margin: 0 auto;
  padding: 68px 0 56px;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr 1fr;
  gap: clamp(34px, 5vw, 80px);
}

.footer-brand img {
  width: 250px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 330px;
  margin: 21px 0 0;
  color: var(--subtle);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: #9eb6b0;
  font-size: 0.84rem;
}

.footer-column h2 {
  margin-bottom: 7px;
  color: #e5eee9;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--lime);
}

.footer-contact > a:first-of-type {
  color: #d5e3de;
}

.footer-button {
  margin-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(201, 232, 93, 0.42);
  color: var(--lime) !important;
  font-weight: 750;
}

.footer-bottom {
  width: var(--container);
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #728f8a;
  font-size: 0.75rem;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

@keyframes ambient-drift {
  from {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(0.94);
  }
  to {
    opacity: 0.9;
    transform: translate3d(34px, -22px, 0) scale(1.08);
  }
}

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

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

@media (max-width: 1260px) {
  :root {
    --container: min(920px, calc(100% - 40px));
  }

  .header-inner {
    gap: 14px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    margin-top: 28px;
    padding: 70px clamp(34px, 6vw, 62px);
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-proof {
    width: min(700px, 100%);
  }

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

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-strip > span + span {
    border-left: 0;
  }

  .capability-strip > span:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .capability-strip > span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-content,
  .section-heading,
  .method {
    grid-template-columns: 1fr;
  }

  .about-content {
    gap: 0;
  }

  .about-copy {
    max-width: 1120px;
  }

  .section-heading {
    gap: 0;
  }

  .method {
    display: block;
  }

  .method-intro {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list::before {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 28px);
    --radius-xl: 26px;
    --radius-lg: 21px;
    --title-size: clamp(2.2rem, 9vw, 3.1rem);
  }

  html {
    scroll-padding-top: 86px;
  }

  .header-inner {
    min-height: 92px;
    gap: 10px;
  }

  .brand img {
    width: 270px;
    height: 82px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu summary {
    min-height: 40px;
  }

  .hero {
    margin-top: 18px;
    padding: 48px 22px 32px;
    gap: 0;
    border-radius: 24px;
  }

  .hero-visual {
    width: min(68vw, 320px);
    margin: -64px auto -56px;
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    transform: translateY(-22px);
  }

  h1 {
    margin-top: 22px;
    font-size: var(--title-size);
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .hero-proof div:last-child {
    margin-left: 0;
  }

  .capability-strip {
    width: var(--container);
    margin-top: 22px;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }

  .capability-strip > span {
    min-height: 74px;
    padding: 0 10px;
    justify-content: flex-start;
    font-size: 0.9rem;
  }

  .capability-strip > span + span {
    border-left: 0;
  }

  .capability-strip > span:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .capability-strip > span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 84px 0;
  }

  .about {
    margin-top: 30px;
    padding: 0;
  }

  .services {
    margin-top: 30px;
    padding: 58px 22px;
    border-radius: 24px;
  }

  .method {
    margin-top: 30px;
    padding: 58px 22px;
    border-radius: 24px;
  }

  .method .section-kicker {
    transform: translateY(-20px);
  }

  .about-content {
    margin-top: 20px;
    padding: 52px 24px;
    border-radius: 24px;
  }

  .about-content .section-label {
    margin-bottom: 26px;
    transform: translateY(-22px);
  }

  .services .section-kicker {
    transform: translateY(-20px);
  }

  .section-heading h2,
  .method h2,
  .contact-section h2 {
    width: 100%;
    max-width: none;
    font-size: var(--title-size);
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .contact-section h2 {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .about h2 {
    width: 100%;
    max-width: none;
    font-size: var(--title-size);
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .method h2 {
    font-size: var(--title-size);
  }

  .about-copy {
    margin-top: 28px;
    padding-top: 24px;
  }

  .service-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 340px;
    padding: 24px;
  }

  .service-number {
    top: 24px;
    right: 24px;
  }

  .service-card-header {
    padding-right: 36px;
    gap: 14px;
  }

  .process-step {
    min-height: 305px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin-bottom: 78px;
    padding: 58px 22px;
  }

  .footer-main {
    padding: 52px 0 44px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: calc(100% - 20px);
    --radius-xl: 22px;
    --radius-lg: 18px;
    --title-size: clamp(1.85rem, 8.6vw, 2.4rem);
  }

  .header-inner {
    gap: 6px;
  }

  .brand img {
    width: 245px;
    height: 74px;
  }

  .mobile-nav {
    width: calc(100vw - 20px);
  }

  .hero {
    padding: 44px 18px 18px;
    gap: 0;
    border-radius: 20px;
  }

  .hero-visual {
    width: min(68vw, 270px);
    margin: -78px auto -68px;
  }

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

  .hero-copy {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .hero-actions .button {
    min-height: 56px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .hero-proof div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    white-space: normal;
  }

  .hero-proof span {
    white-space: normal;
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .capability-strip > span {
    min-height: 68px;
    padding: 0 18px;
  }

  .capability-strip > span:nth-child(even) {
    border-left: 0;
  }

  .capability-strip > span:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .about-content,
  .services,
  .method {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-heading h2,
  .method h2,
  .contact-section h2,
  .about h2 {
    width: 100%;
    max-width: none;
    font-size: var(--title-size);
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-number {
    top: 20px;
    right: 20px;
  }

  .service-card-header {
    padding-right: 32px;
    gap: 12px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-link {
    margin-top: 28px;
  }

  .process-step {
    min-height: auto;
    padding: 22px;
  }

  .process-step-header {
    padding-right: 20px;
    gap: 13px;
  }

  .process-step h3 {
    font-size: 1.25rem;
  }

  .process-step::after {
    right: 20px;
  }

  .contact-section {
    margin-bottom: 60px;
    padding: 48px 18px;
  }

  .contact-section .button {
    min-height: 56px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-brand img {
    width: 220px;
    height: 67px;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 220px;
    height: 67px;
  }

  .mobile-menu summary span {
    display: none;
  }

  .mobile-menu summary {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .hero-proof strong {
    font-size: 1.5rem;
  }

  .hero-proof span {
    font-size: 0.95rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}
