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

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
  line-height: 1.5;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body {
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: var(--text-base, 1rem);
  color: var(--color-text, #1a1a1a);
  background-color: var(--color-bg, #fff);
  -webkit-font-smoothing: antialiased;
  min-block-size: 100dvh;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p,
li,
blockquote {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;
  --text-6xl: 4.5rem;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  --tracking-tight: -0.05em;
  --tracking-normal: 0em;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 5%);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -2px rgb(0 0 0 / 10%);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w-content: 80rem;
  --max-w-wide: 96rem;
  --gutter: var(--space-4);
  --measure: 72ch;
  --color-bg: #f8fafc;
  --color-surface: #fff;
  --color-surface-raised: #fff;
  --color-surface-hover: #f1f5f9;
  --color-border: #e2e8f0;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-primary: #06c;
  --color-primary-dark: #004d99;
  --color-link: var(--color-primary);
  --color-link-hover: var(--color-primary-dark);
  --code-bg: #f1f5f9;
}

.display-xl {
  font-size: clamp(3rem, 5vw2rem, 6rem);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
}

.display-lg {
  font-size: clamp(2.5rem, 3.3333333333vw1.8333333333rem, 4.5rem);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
}

.display-md {
  font-size: clamp(2rem, 2.5vw1.5rem, 3.5rem);
  line-height: 1.15;
}

.display-sm {
  font-size: clamp(1.5rem, 1.6666666667vw1.1666666667rem, 2.5rem);
  line-height: 1.2;
}

.h1 {
  font-size: clamp(2rem, 2.5vw1.5rem, 3.5rem);
  line-height: var(--leading-tight);
}

.h2 {
  font-size: clamp(1.75rem, 2.0833333333vw1.3333333333rem, 3rem);
  line-height: var(--leading-tight);
}

.h3 {
  font-size: clamp(1.375rem, 1.4583333333vw1.0833333333rem, 2.25rem);
  line-height: var(--leading-snug);
}

.h4 {
  font-size: clamp(1.125rem, 1.0416666667vw0.9166666667rem, 1.75rem);
  line-height: var(--leading-snug);
}

.prose {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text, inherit);
  max-width: var(--measure);
}
.prose h1 {
  font-size: clamp(2rem, 1.6666666667vw1.6666666667rem, 3rem);
}
.prose h2 {
  font-size: clamp(1.5rem, 1.25vw1.25rem, 2.25rem);
}
.prose h3 {
  font-size: clamp(1.25rem, 0.8333333333vw1.0833333333rem, 1.75rem);
}
.prose h4 {
  font-size: clamp(1.125rem, 0.4166666667vw1.0416666667rem, 1.375rem);
}
.prose h5 {
  font-size: var(--text-lg);
}
.prose h6 {
  font-size: var(--text-md);
}
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  line-height: var(--leading-tight);
  font-weight: var(--font-weight-bold, 700);
  margin-block: var(--space-8) var(--space-3);
}
.prose h1:first-child, .prose h2:first-child, .prose h3:first-child, .prose h4:first-child, .prose h5:first-child, .prose h6:first-child {
  margin-block-start: 0;
}
.prose p {
  margin-block-end: var(--space-4);
}
.prose ul, .prose ol {
  padding-inline-start: var(--space-6);
  margin-block-end: var(--space-4);
  list-style: revert;
}
.prose li {
  margin-block-end: var(--space-1);
}
.prose a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--duration-fast) var(--ease-smooth);
}
.prose a:hover {
  color: var(--color-link-hover);
}
.prose blockquote {
  border-inline-start: 4px solid var(--color-border);
  padding-inline-start: var(--space-6);
  font-style: italic;
  color: var(--color-text-muted);
  margin-block: var(--space-6);
}
.prose code {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.875em;
  background: var(--code-bg);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
}
.prose pre {
  background: var(--code-bg);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-block: var(--space-6);
}
.prose pre code {
  background: none;
  padding: 0;
  font-size: var(--text-sm);
}
.prose img {
  border-radius: var(--radius-md);
  margin-block: var(--space-6);
}
.prose hr {
  border: none;
  border-block-start: 1px solid var(--color-border);
  margin-block: var(--space-8);
}
.prose strong {
  font-weight: var(--font-weight-semibold, 600);
}

.container {
  width: 100%;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide {
  max-width: var(--max-w-wide);
}
.container--narrow {
  max-width: 48rem;
}
.container--prose {
  max-width: var(--measure);
}

.grid {
  display: grid;
  gap: var(--grid-gap, var(--space-4));
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--auto {
  grid-template-columns: repeat(auto-fill, minmax(var(--grid-min, 15rem), 1fr));
}
@media (max-width: 47.9375em) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap, var(--space-4));
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cluster-gap, var(--space-3));
  align-items: var(--cluster-align, center);
  justify-content: var(--cluster-justify, flex-start);
}

.section {
  padding-block: var(--section-pad, var(--space-20));
}
.section--sm {
  --section-pad: var(--space-12);
}
.section--lg {
  --section-pad: 8rem;
}

.aspect--square {
  aspect-ratio: 1/1;
}
.aspect--video {
  aspect-ratio: 16/9;
}
.aspect--portrait {
  aspect-ratio: 3/4;
}
.aspect--landscape {
  aspect-ratio: 4/3;
}
.aspect--ultra {
  aspect-ratio: 21/9;
}

.sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sidebar-gap, var(--space-6));
}
.sidebar > :first-child {
  flex-basis: var(--sidebar-w, 16.25rem);
  flex-grow: 1;
}
.sidebar > :last-child {
  flex-basis: 0;
  flex-grow: 999;
  min-inline-size: var(--sidebar-threshold, 50%);
}

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

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-lead {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
}

.text-small {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.text-caption {
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-wide);
}

.text-muted {
  color: var(--color-text-muted);
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-inline {
  display: inline;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0;
}

.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100dvh;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-clip {
  overflow: clip;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
  top: 0;
}

.inset-0 {
  inset: 0;
}

.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.cursor-pointer {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .no-motion {
    animation: none !important;
    transition: none !important;
  }
}

:root {
  --green: #43b64b;
  --green-700: #2f8f36;
  --blue: #081c42;
  --blue-soft: #122d5e;
  --gray: #f1f2f2;
  --gray-2: #e3e4e5;
  --white: #ffffff;
  --ink: #081c42;
  --muted: rgb(8 28 66 / 0.58);
  --faint: rgb(8 28 66 / 0.06);
  --border: rgb(8 28 66 / 0.12);
  --color-bg: var(--gray);
  --color-surface: var(--white);
  --color-surface-raised: var(--white);
  --color-surface-hover: rgb(8 28 66 / 0.04);
  --color-border: var(--border);
  --color-text: var(--ink);
  --color-text-muted: var(--muted);
  --color-primary: var(--green);
  --color-primary-light: rgb(67 182 75 / 0.12);
  --color-primary-dark: var(--green-700);
  --color-link: var(--ink);
  --color-link-hover: var(--green);
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-mono: 'Poppins', 'Courier New', monospace;
  --site-pad: clamp(1.25rem, 5vw, 4rem);
  --section-v: clamp(4.5rem, 10vw, 9rem);
  --nav-h: 4.5rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--gray);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::-moz-selection {
  background: var(--green);
  color: var(--white);
}

::selection {
  background: var(--green);
  color: var(--white);
}

.progress-bar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: 2px;
  width: 0%;
  background: var(--green);
  z-index: 900;
  pointer-events: none;
}

#curtain {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
  pointer-events: none;
}
#curtain.wipe {
  clip-path: inset(0 0 100% 0);
}
#curtain.wipe .curtain-logo {
  opacity: 0;
}

.curtain-logo {
  display: block;
  width: clamp(180px, 22vw, 280px);
  height: auto;
  transition: opacity 0.4s ease 0.3s;
}

.section-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--site-pad);
}

.s-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-block-end: 1.5rem;
}
.s-label::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn .arrow {
  transition: transform 0.3s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1;
}

.word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.curtain-done .word-inner {
  transform: translateY(0);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding-block: 1.5rem;
  background: var(--gray);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__item {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee__item::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee--green {
  background: var(--green);
  border-block-color: transparent;
}
.marquee--green .marquee__item {
  color: var(--white);
}
.marquee--green .marquee__item::after {
  background: var(--white);
}
@media (min-width: 48em) {
  .marquee--green {
    padding-block: 1.05rem;
  }
  .marquee--green .marquee__track {
    gap: 2.1rem;
  }
  .marquee--green .marquee__item {
    font-size: clamp(0.7rem, 2.1vw, 1.4rem);
    gap: 2.1rem;
  }
  .marquee--green .marquee__item::after {
    width: 0.525rem;
    height: 0.525rem;
  }
}

.section {
  padding-block: var(--section-v);
  position: relative;
}
.section.has-wave {
  padding-block-end: calc(var(--section-v) + clamp(40px, 4vw, 60px));
}
.section--dark {
  background: var(--blue);
  color: var(--white);
}
.section--soft {
  background: var(--white);
}

.section__head {
  max-width: 56rem;
  margin-block-end: clamp(2.5rem, 5vw, 4.5rem);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}

.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 48rem;
}

.section--dark .section__lead {
  color: rgba(255, 255, 255, 0.7);
}

#mainNav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: 8.75rem;
  z-index: 800;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
@media (max-width: 61.9375em) {
  #mainNav {
    height: 7.25rem;
  }
}
#mainNav.solid {
  background: var(--blue);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
#mainNav.solid .nav__links a {
  color: var(--white);
}
#mainNav.solid .nav__hamburger span {
  background: var(--white);
}
#mainNav.solid .nav__logo .nav__logo-light {
  display: block;
}
#mainNav.solid .nav__logo .nav__logo-dark {
  display: none;
}
#mainNav.scrolled {
  background: var(--blue);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  height: 4rem;
}
@media (max-width: 61.9375em) {
  #mainNav.scrolled {
    height: 4.5rem;
  }
}
#mainNav.scrolled .nav__links a {
  color: var(--white);
}
#mainNav.scrolled .nav__hamburger span {
  background: var(--white);
}
#mainNav.scrolled .nav__logo .nav__logo-light {
  display: block;
}
#mainNav.scrolled .nav__logo .nav__logo-dark {
  display: none;
}

.nav__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--site-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 4rem;
  flex-shrink: 0;
  transition: height 0.3s ease;
}
@media (max-width: 61.9375em) {
  .nav__logo {
    height: 3rem;
  }
}
.nav__logo img {
  height: 100%;
  width: auto;
  display: block;
}
.nav__logo .nav__logo-dark {
  display: none;
}

#mainNav.scrolled .nav__logo {
  height: 2rem;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.25rem;
  margin: 0 0 0 auto;
  padding: 0;
}
@media (max-width: 61.9375em) {
  .nav__links {
    display: none;
  }
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-block-end: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover::after, .nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s;
}
@media (max-width: 47.9375em) {
  .nav__cta {
    display: none;
  }
}
.nav__cta:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-inline-start: auto;
  padding: 0;
}
@media (max-width: 61.9375em) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s;
}
.nav__hamburger.open span:first-child {
  transform: translateY(8px) rotate(45deg);
  background: var(--ink);
}
.nav__hamburger.open span:last-child {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--gray);
  z-index: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: var(--site-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 9vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}
.mobile-menu a:hover {
  color: var(--green);
  transform: translateX(0.5rem);
}
.mobile-menu__foot {
  margin-block-start: 3rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding-block: clamp(4rem, 8vw, 6rem) 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block-end: 3rem;
  border-block-end: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 48em) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__brand__logo {
  display: block;
  width: clamp(160px, 18vw, 220px);
  height: auto;
  margin: 0 0 1.25rem;
}
.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.footer__brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.75rem;
  max-width: 32ch;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.25rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}
.footer__col a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer__bottom {
  padding-block-start: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 48em) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-hero {
  background: var(--blue);
  color: var(--white);
  padding-block: calc(var(--nav-h) + 7.5rem) clamp(2.5rem, 5vw, 4rem);
  min-height: 460px;
  max-height: 460px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset-block-end: -40%;
  inset-inline-end: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 182, 75, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__wave {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  width: 100%;
  height: clamp(32px, 3.5vw, 54px);
  display: block;
  pointer-events: none;
  z-index: 2;
  -o-object-fit: fill;
     object-fit: fill;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.page-hero__label::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--green);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  max-width: 28ch;
}
.page-hero__lead {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 82ch;
}

#hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-block-start: var(--nav-h);
  padding-block-end: clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(67, 182, 75, 0.18) 0%, transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(67, 182, 75, 0.1) 0%, transparent 60%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__velo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__velo--verde {
  background: rgba(67, 182, 75, 0.2);
}
.hero__velo--azul {
  background: linear-gradient(270deg, rgba(8, 28, 66, 0.9) 0%, rgba(8, 28, 66, 0) 100%);
}
@media (max-width: 47.9375em) {
  .hero__velo--azul {
    background: linear-gradient(180deg, rgba(8, 28, 66, 0) 0%, rgba(8, 28, 66, 0.95) 100%);
  }
}
.hero__velo--circular {
  background: radial-gradient(circle at 85% 40%, rgba(67, 182, 75, 0.32) 0%, rgba(67, 182, 75, 0.08) 35%, transparent 55%);
  mix-blend-mode: screen;
}
@media (max-width: 47.9375em) {
  .hero__velo--circular {
    background: radial-gradient(circle at 50% 65%, rgba(67, 182, 75, 0.28) 0%, transparent 55%);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero__label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--green);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.75rem, 7vw, var(--size-hero, 6rem));
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 0;
  max-width: 18ch;
}

.hero__line {
  display: block;
}

#heroSubRow {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 56rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
#heroSubRow.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 62em) {
  #heroSubRow {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 44ch;
}

@media (min-width: 62em) and (max-height: 660px) {
  .hero__title {
    font-size: clamp(2.2rem, 5.6vw, 4.8rem);
  }
  #heroSubRow {
    max-width: 65rem;
  }
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  inset-block-end: 2rem;
  inset-inline-end: var(--site-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
@media (max-width: 47.9375em) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll span:first-child {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  animation: scrollLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
#pillars {
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
#pillars .section-inner {
  position: relative;
  z-index: 1;
}

.pillars__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pillars__deco-item {
  position: absolute;
  inset-block-end: 0;
  height: auto;
}
.pillars__deco-item--1 {
  inset-inline-start: 59.79%;
  width: 34.65%;
  inset-block-end: -2.23%;
}
.pillars__deco-item--2 {
  inset-inline-start: 82.29%;
  width: 22.01%;
  inset-block-end: -5px;
}
.pillars__deco-item--3 {
  inset-inline-start: 55.63%;
  width: 15%;
  inset-block-end: -5px;
}
.pillars__deco-item--4 {
  inset-inline-start: 71.67%;
  width: 16.74%;
  inset-block-end: -5px;
}
@media (max-width: 47.9375em) {
  .pillars__deco-item--1 {
    inset-inline-start: 45%;
    width: 55%;
    inset-block-end: -2%;
  }
  .pillars__deco-item--2 {
    inset-inline-start: 70%;
    width: 38%;
    inset-block-end: -5px;
  }
  .pillars__deco-item--3 {
    inset-inline-start: 2%;
    width: 28%;
    inset-block-end: -5px;
  }
  .pillars__deco-item--4 {
    inset-inline-start: 35%;
    width: 30%;
    inset-block-end: -5px;
  }
}

#pillars {
  --pillars-progress: 0;
}

.pillars__deco-item--2,
.pillars__deco-item--3,
.pillars__deco-item--4 {
  transform: translateY(calc((1 - var(--pillars-progress)) * 120%));
  transition: transform 0.08s linear;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .pillars__deco-item--2,
  .pillars__deco-item--3,
  .pillars__deco-item--4 {
    transform: none !important;
    transition: none !important;
  }
}
.pillars__deco-union {
  position: absolute;
  width: 21px;
  height: 21px;
  opacity: 0.7;
}
.pillars__deco-union--tr {
  inset-block-start: 2%;
  inset-inline-end: 2.5%;
}
.pillars__deco-union--bl {
  inset-block-end: 3%;
  inset-inline-start: 3%;
}
@media (max-width: 47.9375em) {
  .pillars__deco-union {
    width: 14px;
    height: 14px;
  }
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 48em) {
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 47.9375em) {
  .pillars__grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: calc((100% - min(82%, 18rem)) / 2);
    margin-inline: calc(var(--site-pad) * -1);
    padding-block: 0.5rem 1rem;
  }
  .pillars__grid::-webkit-scrollbar {
    display: none;
  }
  .pillars__grid > .pillar-card {
    flex: 0 0 min(82%, 18rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

.pillars__dots {
  display: none;
}
@media (max-width: 47.9375em) {
  .pillars__dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-block-start: 1.75rem;
  }
}

.pillars__dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.pillars__dot:hover {
  background: var(--muted);
}
.pillars__dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.pillar-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
}
.pillar-card--featured {
  border-color: var(--green);
  box-shadow: 0 20px 40px -20px rgba(8, 28, 66, 0.18);
}
.pillar-card--featured::before {
  width: 100% !important;
}
@media (max-width: 47.9375em) {
  .pillar-card {
    border-color: var(--green);
  }
}
.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 0%;
  height: 3px;
  background: var(--green);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(8, 28, 66, 0.18);
  border-color: var(--green);
}
.pillar-card:hover::before {
  width: 100%;
}
.pillar-card__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--green);
}
.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.pillar-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

#why-now {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#why-now::before {
  content: "";
  position: absolute;
  inset-block-start: -20%;
  inset-inline-start: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 182, 75, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.why-now__grid {
  display: grid;
  gap: 3rem;
  position: relative;
}
@media (min-width: 48em) {
  .why-now__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.why-now__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  max-width: 24ch;
  color: var(--white);
}
.why-now__quote .word {
  --word-fill: 0%;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to right, var(--green) var(--word-fill), var(--white) var(--word-fill));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: --word-fill 0.12s linear;
}

@media (prefers-reduced-motion: reduce) {
  .why-now__quote .word {
    --word-fill: 0%;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
    transition: none;
  }
}
@property --word-fill {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
.why-now__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-now__list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  padding-inline-start: 2.25rem;
  position: relative;
  min-height: 1.625rem;
}
.why-now__list li::before {
  content: "";
  position: absolute;
  inset-block-start: 0.1rem;
  inset-inline-start: 0;
  width: 1.625rem;
  height: 1.5625rem;
  background: url("../assets/why-arrow.svg") no-repeat center/contain;
}
@media (max-width: 47.9375em) {
  .why-now__list li::before {
    width: 16px;
    height: 16px;
    inset-block-start: 0.3rem;
  }
}
@media (max-width: 47.9375em) {
  .why-now__list li {
    padding-inline-start: 1.5rem;
  }
}

#different {
  background: var(--gray);
}

.diff__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 48em) {
  .diff__grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }
}

.diff__card {
  background: var(--blue);
  color: var(--white);
  border-radius: 1.5rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  position: relative;
  overflow: hidden;
}
.diff__card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--green);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-block-end: 1.5rem;
}
.diff__card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.diff__card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.diff__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.diff__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-block-end: 1px solid var(--border);
}
.diff__list li:last-child {
  border-block-end: none;
}
.diff__list li .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  flex-shrink: 0;
  padding-block-start: 0.2rem;
}
.diff__list li span:last-child {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

#cta-final {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}
#cta-final .section-inner {
  position: relative;
  z-index: 1;
}

.cta-final__wave,
.section-wave {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  width: 100%;
  height: clamp(40px, 4vw, 60px);
  z-index: 2;
  pointer-events: none;
  display: block;
  -o-object-fit: fill;
     object-fit: fill;
}

.cta-final__illustration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
  opacity: 1;
}

.cta-final__illustration--desktop {
  inset-inline-start: -7.47%;
  inset-block-end: -5px;
  width: 39.94%;
}
@media (max-width: 47.9375em) {
  .cta-final__illustration--desktop {
    display: none;
  }
}

.cta-final__illustration--mobile {
  inset-inline-start: -38.43%;
  inset-block-end: -5px;
  width: 95.94%;
}
@media (min-width: 48em) {
  .cta-final__illustration--mobile {
    display: none;
  }
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6.5vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  max-width: 18ch;
  margin-inline: auto;
}

.cta-final__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.5rem;
  max-width: 44ch;
  margin-inline: auto;
}

.cta-final__buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final__buttons .btn--primary {
  background: var(--blue);
}
.cta-final__buttons .btn--primary:hover {
  background: var(--ink);
}

.services-intro {
  background: var(--gray);
}

.services-extra {
  background: var(--white);
}
.services-extra__block {
  max-width: 60rem;
  margin-inline: auto;
}
.services-extra__block + .services-extra__block {
  margin-block-start: clamp(3rem, 6vw, 5rem);
}
.services-extra__head {
  margin-block-end: 2rem;
  padding-block-end: 1.25rem;
  border-block-end: 1px solid var(--border);
}
.services-extra__head .s-label {
  display: inline-block;
  margin-block-end: 0.6rem;
}
.services-extra__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.services-extra__lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 64ch;
}
.services-extra__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services-extra__list > li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  background: var(--gray);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
.services-extra__list > li:hover {
  border-color: var(--green);
  transform: translateX(4px);
}
.services-extra__list > li::before {
  content: "";
  position: absolute;
  inset-inline-start: 1.1rem;
  inset-block-start: 1.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
}
.services-extra__list > li strong {
  font-weight: 600;
  color: var(--ink);
  margin-inline-end: 0.35rem;
}
.services-extra__list > li span {
  color: var(--muted);
}
.services-extra__sublist {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.services-extra__sublist > li {
  position: relative;
  padding-inline-start: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}
.services-extra__sublist > li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.6rem;
  width: 0.4rem;
  height: 1px;
  background: var(--green);
}
.services-extra__sublist > li strong {
  color: var(--ink);
  font-weight: 600;
  margin-inline-end: 0.3rem;
}

.services-line {
  margin-block-end: 0;
}
.services-line__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block-end: 1.5rem;
  border-block-end: 1px solid var(--border);
  margin-block-end: 2.5rem;
}
@media (min-width: 48em) {
  .services-line__head {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}
.services-line__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.services-line__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.service-row {
  display: grid;
  gap: 1.5rem;
  padding-block: 2.25rem;
  border-block-end: 1px solid var(--border);
  transition: padding 0.4s ease;
}
@media (min-width: 48em) {
  .service-row {
    grid-template-columns: 0.6fr 1fr 1.4fr;
    align-items: start;
    gap: 2rem;
  }
}
.service-row:hover .service-row__title {
  color: var(--green);
  transform: translateX(0.5rem);
}
.service-row__index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.16em;
}
.service-row__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-row__body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.service-row__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.service-row__body li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  padding-inline-start: 1.5rem;
  position: relative;
}
.service-row__body li::before {
  content: "";
  position: absolute;
  inset-block-start: 0.55rem;
  inset-inline-start: 0;
  width: 0.5rem;
  height: 1px;
  background: var(--green);
}
.service-row__ideal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(67, 182, 75, 0.1);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
}

#greenticket {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#greenticket::before, #greenticket::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 182, 75, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
#greenticket::before {
  width: 60vw;
  height: 60vw;
  inset-block-start: -20%;
  inset-inline-start: -20%;
}
#greenticket::after {
  width: 50vw;
  height: 50vw;
  inset-block-end: -20%;
  inset-inline-end: -10%;
}

.greenticket__inner {
  position: relative;
  z-index: 1;
}

.greenticket__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--green);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  margin-block-end: 1.5rem;
}

.greenticket__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 1.5rem;
  color: var(--white);
}

.greenticket__lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
  margin: 0 auto 3rem;
}

.greenticket__flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-block-end: 3rem;
}

.greenticket__step {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
}
.greenticket__step::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
}

.about-block {
  background: var(--gray);
}
.about-block--white {
  background: var(--white);
}
.about-block--dark {
  background: var(--blue);
  color: var(--white);
}
.about-block--dark .section__lead {
  color: rgba(255, 255, 255, 0.7);
}

.about-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 48em) {
  .about-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: approach;
}

.approach-list li {
  counter-increment: approach;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.approach-list li:hover {
  border-color: var(--green);
  transform: translateX(4px);
}
.approach-list li::before {
  content: "0" counter(approach);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
}
.approach-list li h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.approach-list li p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.team-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 2.5rem 0 1.25rem;
  padding-block-end: 0.75rem;
  border-block-end: 1px solid var(--border);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-grid--featured {
  gap: 2rem;
  margin-block-end: 3rem;
}

.team-card--lead {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.team-card--lead:hover {
  transform: translateY(-6px);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 18px 40px rgba(8, 28, 66, 0.18);
}
.team-card--lead:hover h3 {
  color: var(--white);
}
.team-card--lead:hover p {
  color: rgba(255, 255, 255, 0.75);
}
.team-card--lead:hover .team-card__avatar {
  background: var(--green);
  color: var(--blue);
}
.team-card--lead .team-card__avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-block-end: 1.75rem;
  transition: background 0.4s, color 0.4s;
}
.team-card--lead .team-card__body {
  display: flex;
  flex-direction: column;
}
.team-card--lead h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--ink);
  transition: color 0.4s;
}
.team-card--lead .team-card__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.75rem;
}
.team-card--lead p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 0.85rem;
}
.team-card--lead p:last-child {
  margin-block-end: 0;
}

.team-card {
  background: var(--gray);
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  text-align: left;
  transition: transform 0.4s, background 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  background: var(--blue);
  color: var(--white);
}
.team-card:hover h4 {
  color: var(--white);
}
.team-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}
.team-card:hover .team-card__avatar {
  background: var(--green);
  color: var(--blue);
}
.team-card__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-block-end: 1.25rem;
  transition: background 0.4s, color 0.4s;
}
.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ink);
  transition: color 0.4s;
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1rem;
}
.team-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  transition: color 0.4s;
}

.territory {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 48em) {
  .territory {
    grid-template-columns: repeat(3, 1fr);
  }
}

.territory__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}
.territory__card:hover {
  background: rgba(67, 182, 75, 0.1);
  border-color: var(--green);
}
.territory__card__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-block-end: 0.75rem;
}
.territory__card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
}
.territory__card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 36em) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 62em) {
  .values-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.value-card {
  background: var(--white);
  padding: 1.75rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}
.value-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(67, 182, 75, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-block-end: 1rem;
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.value-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.sectors-block {
  background: var(--gray);
}

.sectors-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sector-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sector-card::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 4px;
  width: 0%;
  background: var(--green);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sector-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 24px 48px -24px rgba(8, 28, 66, 0.18);
}
.sector-card:hover::after {
  width: 100%;
}
.sector-card__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--green);
}
.sector-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.sector-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.sector-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.sector-card li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
  padding-inline-start: 1.5rem;
  position: relative;
}
.sector-card li::before {
  content: "";
  position: absolute;
  inset-block-start: 0.55rem;
  inset-inline-start: 0;
  width: 0.55rem;
  height: 1px;
  background: var(--green);
}

.contact-block {
  background: var(--gray);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 48em) {
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

.contact-form {
  background: var(--white);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--gray);
  border: 1px solid transparent;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.field-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 48em) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__group h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.6rem;
}
.contact-info__group p, .contact-info__group a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  transition: color 0.25s;
}
.contact-info__group a:hover {
  color: var(--green);
}

.calendly-card {
  background: var(--blue);
  color: var(--white);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
}
.calendly-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.calendly-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
}