:root {
  --ink: #10272d;
  --ink-soft: #4f656b;
  --paper: #f3f1e9;
  --paper-deep: #e8e5da;
  --white: #fffef9;
  --forest: #0b2529;
  --forest-soft: #12383c;
  --teal: #0b7778;
  --teal-bright: #19a3a0;
  --lime: #d6ff62;
  --lime-soft: #e9ffac;
  --line: rgba(16, 39, 45, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(11, 37, 41, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--lime);
  color: var(--forest);
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(11, 119, 120, 0.34);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-weight: 580;
}

h1 em,
h2 em {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.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: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.ambient,
.noise {
  position: fixed;
  z-index: -2;
  pointer-events: none;
}

.ambient {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
}

.ambient-one {
  top: -220px;
  right: -150px;
  background: #8de0d6;
}

.ambient-two {
  bottom: 5%;
  left: -300px;
  background: #d7ff6d;
  opacity: 0.13;
}

.noise {
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-color: rgba(16, 39, 45, 0.08);
  background: rgba(243, 241, 233, 0.86);
  box-shadow: 0 10px 30px rgba(11, 37, 41, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--lime);
  stroke: var(--forest);
  stroke-width: 1.5;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu > a:not(.button) {
  position: relative;
  color: #42585e;
  font-size: 14px;
  font-weight: 600;
}

.nav-menu > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--teal);
  transition: transform 0.25s ease;
}

.nav-menu > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: white;
  transition: transform 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 12px 30px rgba(11, 37, 41, 0.16);
}

.button-primary:hover {
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(11, 119, 120, 0.2);
}

.button-ghost {
  border-color: rgba(16, 39, 45, 0.22);
  background: transparent;
  color: var(--forest);
}

.button-ghost:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.button-small {
  min-height: 40px;
  padding: 0 19px;
  font-size: 13px;
}

.button-link {
  min-height: auto;
  padding: 10px 0;
  border-radius: 0;
  color: var(--forest);
}

.button-link:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  padding: 145px 0 90px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(215, 255, 98, 0.05));
  border-left: 1px solid rgba(16, 39, 45, 0.05);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--teal);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 27px;
  font-size: clamp(54px, 6vw, 84px);
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 42px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  color: #536970;
  font-size: 12px;
  font-weight: 650;
}

.hero-signals div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(25, 163, 160, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 555px;
  perspective: 1100px;
}

.product-frame {
  position: absolute;
  z-index: 4;
  top: 52%;
  left: 48%;
  width: 700px;
  overflow: hidden;
  transform: translate(-50%, -50%) rotateY(-8deg) rotateX(3deg);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 45px 110px rgba(7, 38, 40, 0.2), 0 12px 28px rgba(7, 38, 40, 0.1);
  backdrop-filter: blur(16px);
}

.product-topbar {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px 0 20px;
  border-bottom: 1px solid rgba(12, 56, 60, 0.08);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 750;
}

.mini-brand span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--forest);
  box-shadow: inset 8px 0 0 var(--lime);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-actions i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdd8d8;
}

.topbar-actions b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 9px;
}

.product-layout {
  display: grid;
  min-height: 405px;
  grid-template-columns: 54px 1fr;
}

.product-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 23px;
  padding-top: 25px;
  background: var(--forest);
}

.product-sidebar i {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.product-sidebar i.active {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(214, 255, 98, 0.1);
}

.product-content {
  padding: 26px;
  background: #f4f7f5;
}

.product-heading,
.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-heading small {
  display: block;
  margin-bottom: 4px;
  color: #8ca0a2;
  font-size: 8px;
  text-transform: uppercase;
}

.product-heading strong {
  display: block;
  color: var(--forest);
  font-size: 16px;
}

.product-heading button {
  height: 30px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  font-size: 8px;
}

.metric-row {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(18, 56, 60, 0.08);
  border-radius: 12px;
  background: white;
}

.metric-row span,
.metric-row small {
  display: block;
  color: #859698;
  font-size: 7px;
}

.metric-row strong {
  display: block;
  margin: 7px 0 4px;
  color: var(--forest);
  font-size: 19px;
  letter-spacing: -0.04em;
}

.metric-row .accent-card {
  border-color: transparent;
  background: var(--forest);
}

.metric-row .accent-card span,
.metric-row .accent-card small {
  color: rgba(255, 255, 255, 0.55);
}

.metric-row .accent-card strong {
  color: var(--lime);
  font-size: 15px;
}

.dashboard-row {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.dashboard-row article {
  min-height: 165px;
  padding: 15px;
  border: 1px solid rgba(18, 56, 60, 0.08);
  border-radius: 12px;
  background: white;
}

.card-title strong {
  color: var(--forest);
  font-size: 10px;
}

.card-title span {
  color: #8fa0a3;
  font-size: 7px;
}

.chart {
  position: relative;
  height: 90px;
  margin-top: 10px;
  overflow: hidden;
  border-bottom: 1px solid #dfe7e4;
  background-image: linear-gradient(rgba(12, 56, 60, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 56, 60, 0.04) 1px, transparent 1px);
  background-size: 100% 28px, 46px 100%;
}

.chart-line {
  position: absolute;
  right: 12px;
  bottom: 20px;
  left: 10px;
  height: 2px;
  transform: rotate(-9deg);
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 -15px 25px rgba(11, 119, 120, 0.1);
}

.chart i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}

.chart .p1 { bottom: 15px; left: 12px; }
.chart .p2 { bottom: 25px; left: 27%; }
.chart .p3 { bottom: 35px; left: 48%; }
.chart .p4 { bottom: 48px; left: 69%; }
.chart .p5 { right: 13px; bottom: 59px; }

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: #a0acad;
  font-size: 6px;
}

.people-card .task {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
}

.task-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 8px;
  background: #dff5ef;
  color: #23786e;
  font-size: 7px;
}

.task-icon.second {
  background: #eef0d7;
  color: #777b36;
}

.task-icon.third {
  background: #e2e7f5;
  color: #4f6091;
}

.task div {
  min-width: 0;
  flex: 1;
}

.task strong,
.task small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task strong {
  color: #355258;
  font-size: 7px;
}

.task small {
  color: #a4b0b1;
  font-size: 6px;
}

.task > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(214, 255, 98, 0.25);
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(11, 119, 120, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 610px;
  height: 610px;
}

.orbit-two {
  width: 460px;
  height: 460px;
  border-style: dashed;
  animation: rotate 28s linear infinite;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 45px rgba(11, 37, 41, 0.14);
  color: #355258;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.floating-chip span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
}

.chip-one {
  top: 45px;
  right: 1px;
}

.chip-two {
  bottom: 36px;
  left: -15px;
  animation-delay: -2.5s;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: #7d8d90;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 35px;
  overflow: hidden;
  background: rgba(16, 39, 45, 0.17);
}

.hero-scroll span::after {
  position: absolute;
  top: -35px;
  left: 0;
  width: 1px;
  height: 35px;
  content: "";
  background: var(--teal);
  animation: scrollLine 2s ease-in-out infinite;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #6d7d81;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 9px;
}

.statement {
  background: var(--white);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 70px;
}

.statement-content h2,
.section-heading h2,
.process-copy h2,
.contact-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(43px, 5.3vw, 72px);
}

.statement-content p {
  max-width: 720px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

.pillars-grid {
  display: grid;
  margin-top: 85px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f6f5ef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.pillar-card > span {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #97a3a4;
  font-size: 10px;
  font-weight: 700;
}

.pillar-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 30px rgba(11, 37, 41, 0.08);
}

.pillar-icon svg {
  width: 36px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  margin-bottom: 17px;
  font-size: 30px;
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.pillar-card.featured {
  border-color: transparent;
  background: var(--forest);
  color: white;
}

.pillar-card.featured::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(214, 255, 98, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(214, 255, 98, 0.04), 0 0 0 70px rgba(214, 255, 98, 0.025);
}

.pillar-card.featured .pillar-icon {
  background: var(--lime);
}

.pillar-card.featured .pillar-icon svg {
  stroke: var(--forest);
}

.pillar-card.featured h3 {
  color: var(--lime);
}

.pillar-card.featured p,
.pillar-card.featured > span {
  color: rgba(255, 255, 255, 0.65);
}

.capabilities {
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.capabilities::before {
  position: absolute;
  top: -350px;
  right: -240px;
  width: 650px;
  height: 650px;
  content: "";
  border: 1px solid rgba(214, 255, 98, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(214, 255, 98, 0.015), 0 0 0 140px rgba(214, 255, 98, 0.012);
}

.section-heading {
  display: grid;
  align-items: start;
  margin-bottom: 70px;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 70px;
}

.section-heading h2 {
  color: white;
}

.section-heading h2 em {
  color: var(--lime);
}

.section-heading > div:last-child > p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.8;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.5);
}

.section-label.light span {
  border-color: var(--line-light);
  color: var(--lime);
}

.capability-list {
  border-top: 1px solid var(--line-light);
}

.capability-row {
  display: grid;
  min-height: 190px;
  align-items: center;
  padding: 35px 20px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 0.22fr 1.28fr 0.5fr;
  gap: 30px;
  transition: background 0.3s ease, padding 0.3s ease;
}

.capability-row:hover {
  padding-right: 30px;
  padding-left: 30px;
  background: rgba(255, 255, 255, 0.035);
}

.capability-number {
  align-self: start;
  padding-top: 5px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 18px;
}

.capability-row h3 {
  margin-bottom: 13px;
  color: white;
  font-size: clamp(28px, 3vw, 40px);
}

.capability-row p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

.capability-visual {
  position: relative;
  justify-self: end;
  width: 150px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.mini-calendar {
  display: grid;
  padding: 20px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-calendar i {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.13);
}

.mini-calendar i.wide {
  grid-column: span 2;
}

.mini-calendar b {
  position: absolute;
  top: 39px;
  right: 23px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 8px 20px rgba(214, 255, 98, 0.2);
}

.mini-people i {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 3px solid var(--forest);
  border-radius: 50%;
  background: #76a7a1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.mini-people i:nth-child(1) { top: 33px; left: 26px; }
.mini-people i:nth-child(2) { top: 22px; left: 56px; background: var(--lime); }
.mini-people i:nth-child(3) { top: 36px; right: 26px; background: #d2e4df; }
.mini-people span {
  position: absolute;
  right: 17px;
  bottom: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.mini-network i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: var(--lime);
}

.mini-network i:nth-child(1) { top: 19px; left: 65px; }
.mini-network i:nth-child(2) { top: 47px; left: 30px; }
.mini-network i:nth-child(3) { top: 60px; left: 79px; }
.mini-network i:nth-child(4) { top: 35px; right: 24px; }
.mini-network span {
  position: absolute;
  top: 27px;
  left: 40px;
  width: 76px;
  height: 40px;
  transform: rotate(-2deg);
  border: 1px solid rgba(214, 255, 98, 0.42);
  border-width: 1px 0 1px 1px;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  padding: 18px 18px 16px;
}

.mini-chart i {
  width: 13px;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.16);
}

.mini-chart i:nth-child(1) { height: 26px; }
.mini-chart i:nth-child(2) { height: 42px; }
.mini-chart i:nth-child(3) { height: 57px; background: var(--lime); }
.mini-chart i:nth-child(4) { height: 69px; background: rgba(214, 255, 98, 0.55); }
.mini-chart span {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 120px;
}

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

.process-copy .section-label {
  margin-bottom: 45px;
}

.process-copy p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 25px 0 40px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
}

.process-steps li:first-child {
  border-top: 1px solid var(--line);
}

.process-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 13px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.process-steps li:hover > span {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--lime);
}

.process-steps h3 {
  margin-bottom: 14px;
  font-size: 38px;
}

.process-steps p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.vision {
  padding-top: 40px;
  background: var(--paper);
}

.vision-card {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  padding: 75px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0b2529 0%, #0d3135 65%, #0d4041 100%);
  color: white;
  grid-template-columns: 0.78fr 1.22fr;
}

.vision-copy {
  position: relative;
  z-index: 3;
  grid-column: 2;
}

.vision-kicker {
  display: block;
  margin-bottom: 35px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vision-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(39px, 4.5vw, 61px);
}

.vision-copy h2 em {
  color: var(--lime);
}

.vision-copy p {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.8;
}

.vision-orb {
  position: absolute;
  top: 50%;
  left: 19%;
  width: 270px;
  height: 270px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(214, 255, 98, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(214, 255, 98, 0.05), 0 0 90px rgba(25, 163, 160, 0.08);
}

.vision-orb::before,
.vision-orb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border: 1px solid rgba(214, 255, 98, 0.18);
  border-radius: 50%;
}

.vision-orb::before {
  width: 175px;
  height: 175px;
}

.vision-orb::after {
  width: 70px;
  height: 70px;
  border: 0;
  background: radial-gradient(circle at 35% 30%, var(--lime), #70aaa0 55%, #0b3e40 100%);
  box-shadow: 0 0 60px rgba(214, 255, 98, 0.22);
}

.vision-orb i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
}

.vision-orb i:nth-child(1) { top: 14px; left: 79px; }
.vision-orb i:nth-child(2) { right: -4px; bottom: 91px; }
.vision-orb i:nth-child(3) { bottom: 16px; left: 50px; }

.vision-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.vision-lines span {
  position: absolute;
  left: -7%;
  width: 58%;
  height: 1px;
  transform: rotate(-23deg);
  background: linear-gradient(90deg, transparent, rgba(214, 255, 98, 0.35), transparent);
}

.vision-lines span:nth-child(1) { top: 25%; }
.vision-lines span:nth-child(2) { top: 40%; }
.vision-lines span:nth-child(3) { top: 55%; }
.vision-lines span:nth-child(4) { top: 70%; }

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}

.contact-copy .section-label {
  margin-bottom: 45px;
}

.contact-copy p {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.contact-note {
  display: flex;
  max-width: 410px;
  align-items: flex-start;
  gap: 16px;
  margin-top: 45px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.contact-note svg {
  width: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.contact-note span {
  color: #6b7d82;
  font-size: 13px;
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f6f5ef;
  box-shadow: 0 20px 70px rgba(11, 37, 41, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: #2a444a;
  font-size: 12px;
  font-weight: 750;
}

.field label span {
  color: #899698;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(16, 39, 45, 0.16);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 145px;
  padding: 14px 15px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #62757a 50%), linear-gradient(135deg, #62757a 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 119, 120, 0.09);
  background: white;
}

.field input.invalid,
.field textarea.invalid,
.field select.invalid {
  border-color: #bb3e4b;
  box-shadow: 0 0 0 4px rgba(187, 62, 75, 0.08);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #a82f3c;
  font-size: 11px;
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.field-meta > small:last-child {
  margin-top: 5px;
  color: #8b999b;
  font-size: 10px;
}

.check-field {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #5c7075;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.55;
}

.check-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-box {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 1px;
  border: 1px solid rgba(16, 39, 45, 0.28);
  border-radius: 5px;
  background: white;
}

.check-field input:checked + .check-box {
  border-color: var(--teal);
  background: var(--teal);
}

.check-field input:checked + .check-box::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  content: "";
  transform: rotate(45deg);
  border: solid white;
  border-width: 0 2px 2px 0;
}

.check-field input:focus-visible + .check-box {
  outline: 3px solid rgba(11, 119, 120, 0.24);
  outline-offset: 3px;
}

.consent-error {
  margin-left: 30px;
}

.honeypot {
  position: absolute !important;
  top: auto !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  position: relative;
  min-width: 180px;
  margin-top: 22px;
}

.form-submit.loading {
  cursor: wait;
  opacity: 0.78;
}

.form-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

.form-submit.loading svg {
  display: none;
}

.form-submit.loading .spinner {
  display: block;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(36, 125, 91, 0.18);
  background: rgba(36, 125, 91, 0.08);
  color: #1c684c;
}

.form-status.error {
  border: 1px solid rgba(168, 47, 60, 0.18);
  background: rgba(168, 47, 60, 0.07);
  color: #8e2934;
}

.site-footer {
  padding: 80px 0 25px;
  background: #071f23;
  color: white;
}

.brand-light {
  color: white;
}

.brand-light .brand-mark path {
  stroke: var(--lime);
}

.brand-light .brand-mark circle {
  fill: white;
  stroke: var(--forest);
}

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

.footer-main > div:first-child > p {
  max-width: 360px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
}

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

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

.footer-links strong {
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 1500;
  right: 22px;
  bottom: 22px;
  max-width: 340px;
  padding: 14px 17px;
  transform: translateY(130%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: var(--forest);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.22);
  color: white;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.75s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

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

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 20px;
  place-items: center;
  background: radial-gradient(circle at 75% 20%, rgba(25, 163, 160, 0.15), transparent 30%), var(--paper);
}

.error-card {
  max-width: 580px;
  padding: 58px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-card .brand {
  justify-content: center;
  margin-bottom: 42px;
}

.error-code {
  display: block;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 18px;
}

.error-card h1 {
  margin: 13px 0 20px;
  font-size: 49px;
}

.error-card p {
  margin-bottom: 30px;
  color: var(--ink-soft);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  70%, 100% { transform: translateY(70px); }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
  }

  .product-frame {
    width: 620px;
  }

  .orbit-one { width: 540px; height: 540px; }
  .orbit-two { width: 410px; height: 410px; }

  .process-grid {
    gap: 80px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 100px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 22px;
    transform: translateY(-15px) scale(0.97);
    transform-origin: top;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    background: rgba(255, 254, 249, 0.96);
    box-shadow: 0 25px 70px rgba(11, 37, 41, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    backdrop-filter: blur(18px);
  }

  .nav-menu.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu > a:not(.button) {
    padding: 14px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-menu .button {
    margin-top: 18px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.25px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 135px 0 105px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .hero h1 em {
    display: inline;
  }

  .hero-visual {
    min-height: 525px;
  }

  .product-frame {
    left: 50%;
    width: min(760px, 92vw);
    transform: translate(-50%, -50%) rotateY(-3deg) rotateX(2deg);
  }

  .chip-one { right: 5%; }
  .chip-two { left: 4%; }

  .hero-scroll {
    display: none;
  }

  .statement-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .statement-content p {
    margin-left: 0;
  }

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

  .pillar-card:last-child {
    grid-column: 1 / -1;
  }

  .capability-row {
    grid-template-columns: 70px 1fr 170px;
  }

  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .process-copy {
    position: static;
  }

  .vision-card {
    min-height: 720px;
    padding: 60px;
    grid-template-columns: 1fr;
  }

  .vision-copy {
    grid-column: 1;
    align-self: end;
  }

  .vision-orb {
    top: 25%;
    left: 50%;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-menu {
    top: 68px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 115px 0 75px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button-link {
    justify-content: flex-start;
  }

  .hero-signals {
    flex-direction: column;
    gap: 9px;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 10px;
  }

  .product-frame {
    width: 650px;
    transform: translate(-50%, -50%) scale(0.58) rotateY(-3deg) rotateX(2deg);
  }

  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 280px; height: 280px; }

  .floating-chip {
    font-size: 9px;
  }

  .chip-one { top: 4px; right: -5px; }
  .chip-two { bottom: 0; left: -4px; }

  .statement-content h2,
  .section-heading h2,
  .process-copy h2,
  .contact-copy h2 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .pillars-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .pillar-card:last-child {
    grid-column: auto;
  }

  .pillar-card {
    min-height: 330px;
  }

  .pillar-icon {
    margin-bottom: 50px;
  }

  .capability-row {
    min-height: auto;
    padding: 35px 5px;
    grid-template-columns: 55px 1fr;
    gap: 16px;
  }

  .capability-row:hover {
    padding-right: 5px;
    padding-left: 5px;
  }

  .capability-visual {
    display: none;
  }

  .process-steps li {
    min-height: 170px;
    grid-template-columns: 72px 1fr;
  }

  .process-steps h3 {
    font-size: 31px;
  }

  .vision {
    padding-top: 10px;
  }

  .vision-card {
    width: calc(100% - 28px);
    min-height: 680px;
    padding: 38px 28px;
    border-radius: 26px;
  }

  .vision-orb {
    width: 230px;
    height: 230px;
  }

  .vision-copy h2 {
    font-size: 39px;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit {
    width: 100%;
  }

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

  .footer-main {
    padding-bottom: 50px;
  }

  .footer-links {
    gap: 30px;
  }

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

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .error-card {
    padding: 42px 25px;
  }

  .error-card h1 {
    font-size: 40px;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 350px;
  }

  .product-frame {
    transform: translate(-50%, -50%) scale(0.49) rotateY(-3deg) rotateX(2deg);
  }

  .floating-chip {
    display: none;
  }

  .vision-card {
    min-height: 710px;
  }
}

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

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

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

/* Cloudflare Turnstile is displayed only when configured by the server. */
.turnstile-field {
  min-height: 65px;
  margin-top: 4px;
}

.turnstile-field[hidden] {
  display: none;
}
