:root {
  --ink: #081526;
  --ink-soft: #183047;
  --navy: #071a2c;
  --navy-2: #0b2940;
  --purple: #24107d;
  --purple-2: #4a2fb4;
  --blue: #1767d7;
  --cyan: #18a7b5;
  --lime: #d7f36b;
  --mint: #dff7e8;
  --paper: #f7f8f5;
  --cream: #f2efe6;
  --white: #ffffff;
  --muted: #607181;
  --line: rgba(8, 21, 38, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(4, 20, 34, 0.15);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 40px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid #6f52f5;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.shell {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 245, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 38px rgba(8, 21, 38, 0.07);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 162px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav a {
  position: relative;
  color: #334759;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 9px;
  background: var(--purple-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(8, 21, 38, 0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 9px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 178px 0 132px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(135deg, #061322 0%, #0b2036 58%, #17154e 100%);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(7, 26, 44, 0.7), transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-a {
  width: 510px;
  height: 510px;
  top: -210px;
  right: -80px;
  background: radial-gradient(circle, rgba(101, 75, 220, 0.45), transparent 67%);
}

.hero-glow-b {
  width: 420px;
  height: 420px;
  bottom: -240px;
  left: 8%;
  background: radial-gradient(circle, rgba(16, 176, 176, 0.28), transparent 67%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: var(--lime);
}

.eyebrow-dark {
  color: var(--purple-2);
}

.eyebrow-dark > span {
  background: var(--purple-2);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 750;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions,
.card-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(215, 243, 107, 0.16);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(3, 15, 27, 0.13);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 650;
}

.hero-proof span {
  margin-right: 6px;
  color: var(--lime);
}

.ecosystem {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 48%, rgba(91, 64, 206, 0.3), transparent 33%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.ecosystem-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000, transparent 76%);
}

.ecosystem::before,
.ecosystem::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(215, 243, 107, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ecosystem::before {
  width: 340px;
  height: 340px;
}

.ecosystem::after {
  width: 230px;
  height: 230px;
}

.ecosystem-center,
.ecosystem-node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 21, 38, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.ecosystem-center {
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  align-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ecosystem-center small {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ecosystem-center strong {
  margin: 4px 0;
  color: var(--white);
  font-size: 29px;
  letter-spacing: -0.04em;
}

.ecosystem-center span {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.ecosystem-node {
  min-width: 142px;
  padding: 15px 17px;
  border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ecosystem-node:hover {
  border-color: rgba(215, 243, 107, 0.7);
  transform: translateY(-3px);
}

.ecosystem-node strong {
  color: var(--white);
  font-size: 16px;
}

.ecosystem-node span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.node-geo { top: 52px; left: 39px; }
.node-sife { top: 72px; right: 34px; }
.node-card { bottom: 57px; left: 38px; }
.node-dst { right: 34px; bottom: 51px; }

.fact-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 50px rgba(8, 21, 38, 0.1);
}

.fact-grid p {
  margin: 0;
  padding: 23px 25px;
  border-right: 1px solid var(--line);
}

.fact-grid p:last-child {
  border-right: 0;
}

.fact-grid strong,
.fact-grid span {
  display: block;
}

.fact-grid strong {
  color: var(--purple);
  font-size: 24px;
  line-height: 1.1;
}

.fact-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.faq-intro h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
}

.section-heading > p,
.split-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 17px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: end;
}

.centered-heading {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading h2,
.centered-heading > p {
  margin-right: auto;
  margin-left: auto;
}

.products {
  background:
    radial-gradient(circle at 90% 22%, rgba(74, 47, 180, 0.09), transparent 25%),
    var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.product-geo,
.product-sife {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  min-height: 520px;
  padding: 42px;
}

.product-topline {
  position: absolute;
  top: 34px;
  right: 38px;
  left: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-mark {
  color: inherit;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.product-type {
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  opacity: 0.66;
  text-transform: uppercase;
}

.product-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 650px;
  padding-top: 85px;
}

.card-kicker {
  margin-bottom: 11px;
  color: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  opacity: 0.7;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 19px;
  font-size: clamp(34px, 4vw, 51px);
}

.product-copy > p:not(.card-kicker) {
  max-width: 650px;
  margin-bottom: 23px;
  font-size: 16px;
}

.product-geo {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 87% 20%, rgba(215, 243, 107, 0.2), transparent 24%),
    linear-gradient(135deg, #081729, #122d40 58%, #20382c);
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-geo .product-copy > p,
.product-geo .card-kicker {
  color: rgba(255, 255, 255, 0.69);
}

.tag-list,
.check-list {
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li,
.mini-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--purple-2);
  font-size: 14px;
  font-weight: 850;
}

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

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

.text-link-light {
  color: var(--white);
}

.geo-visual,
.invoice-visual {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 360px);
}

.geo-visual {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(2deg);
}

.geo-project {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
}

.geo-project small,
.geo-project strong {
  display: block;
}

.geo-project small {
  color: var(--muted);
  font-size: 11px;
}

.geo-project strong {
  margin-top: 5px;
  font-size: 21px;
}

.geo-progress {
  height: 8px;
  margin-top: 21px;
  overflow: hidden;
  border-radius: 10px;
  background: #e7ebe8;
}

.geo-progress i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #88c83e);
}

.geo-metrics {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.geo-metrics span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--white);
}

.geo-metrics b {
  font-size: 12px;
}

.geo-metrics i {
  color: var(--lime);
  font-size: 10px;
  font-style: normal;
}

.product-sife {
  background:
    radial-gradient(circle at 82% 26%, rgba(24, 167, 181, 0.17), transparent 28%),
    linear-gradient(135deg, #f2f7f3, #e7f3ef);
}

.product-sife .button-primary {
  background: var(--ink);
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #3c5466;
  font-size: 13px;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.invoice-visual {
  perspective: 800px;
}

.invoice-window {
  padding: 28px;
  border: 1px solid rgba(8, 21, 38, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 70px rgba(5, 31, 45, 0.14);
  transform: rotateY(-5deg) rotateZ(1.5deg);
}

.invoice-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.invoice-header span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--purple);
  color: var(--lime);
  font-weight: 900;
}

.invoice-header i {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.invoice-window > small,
.invoice-window > strong {
  display: block;
}

.invoice-window > small {
  color: var(--muted);
  font-size: 11px;
}

.invoice-window > strong {
  margin: 6px 0 21px;
  font-size: 30px;
}

.invoice-bars {
  display: flex;
  height: 92px;
  align-items: end;
  gap: 12px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
}

.invoice-bars i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--purple), var(--cyan));
}

.invoice-bars i:nth-child(1) { height: 39%; }
.invoice-bars i:nth-child(2) { height: 69%; }
.invoice-bars i:nth-child(3) { height: 52%; }
.invoice-bars i:nth-child(4) { height: 86%; }

.invoice-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #315247;
  font-size: 12px;
  font-weight: 800;
}

.invoice-status span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #167555;
}

.product-compact {
  min-height: 390px;
  padding: 38px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(8, 21, 38, 0.1);
}

.compact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 18px;
  background: var(--purple);
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.product-dst .compact-icon {
  background: #103e51;
  color: #9fe8db;
}

.product-compact h3 {
  margin-bottom: 13px;
  font-size: 36px;
}

.product-compact p:not(.card-kicker) {
  margin-bottom: 20px;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.mini-tags span {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink-soft);
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(74, 47, 180, 0.34), transparent 27%),
    linear-gradient(145deg, #071525, #0a263c 65%, #102b37);
  color: var(--white);
}

.services .section-heading > p,
.services .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

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

.service-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.service-number {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 50%;
  background: rgba(215, 243, 107, 0.13);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 17px;
  font-size: 24px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.service-card a {
  display: inline-flex;
  gap: 7px;
  margin-top: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.email-section {
  background: var(--cream);
}

.email-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.8fr);
  gap: 70px;
  align-items: center;
  padding: 60px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 10%, rgba(74, 47, 180, 0.26), transparent 27%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.email-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 58px);
}

.email-copy > p {
  color: rgba(255, 255, 255, 0.69);
}

.check-list-light li {
  color: rgba(255, 255, 255, 0.76);
}

.check-list-light li::before {
  color: var(--lime);
}

.email-plans {
  display: grid;
  gap: 10px;
}

.email-plans article {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 4px 15px;
  align-items: center;
  padding: 19px 21px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.email-plans article.featured {
  border-color: rgba(215, 243, 107, 0.48);
  background: rgba(215, 243, 107, 0.1);
}

.email-plans article > span {
  font-size: 13px;
  font-weight: 850;
}

.email-plans article strong {
  justify-self: end;
  color: var(--lime);
  font-size: 23px;
}

.email-plans article small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.email-plans article p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.email-plans .email-note {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

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

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-grid li {
  position: relative;
  min-height: 280px;
  padding: 29px 28px 25px 0;
  border-right: 1px solid var(--line);
}

.method-grid li:not(:first-child) {
  padding-left: 28px;
}

.method-grid li:last-child {
  border-right: 0;
}

.method-grid span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 900;
}

.method-grid h3 {
  margin-bottom: 13px;
  font-size: 25px;
}

.method-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
  gap: 80px;
}

.faq-intro p {
  max-width: 460px;
}

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

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

.faq-list summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--purple-2);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 38px 25px 0;
}

.final-cta {
  padding: 0 0 110px;
  background: var(--paper);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  padding: 55px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 5%, rgba(215, 243, 107, 0.24), transparent 27%),
    linear-gradient(135deg, #251279, #0b2940);
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 15px;
  font-size: clamp(37px, 4.6vw, 57px);
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.69);
}

.site-footer {
  padding: 72px 0 25px;
  background: #06111e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
  gap: 55px;
  padding-bottom: 56px;
}

.brand-footer img {
  width: 155px;
  filter: brightness(0) invert(1);
}

.footer-intro p {
  max-width: 360px;
  margin: 25px 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-intro > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

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

.footer-links strong,
.footer-contact strong {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a:not(.footer-button) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.footer-button {
  margin-top: 10px;
  padding: 10px 15px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

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

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

/* Contact and legal pages */
.page-hero {
  padding: 160px 0 76px;
  background:
    radial-gradient(circle at 80% 10%, rgba(74, 47, 180, 0.24), transparent 30%),
    linear-gradient(135deg, #071525, #102b43);
  color: var(--white);
}

.page-hero h1 {
  max-width: 830px;
  margin-bottom: 20px;
  font-size: clamp(45px, 6vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.contact-section {
  padding: 90px 0 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  align-items: start;
}

.contact-aside h2 {
  margin-bottom: 18px;
  font-size: 36px;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-option {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-option small,
.contact-option strong {
  display: block;
}

.contact-option small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-option strong {
  margin-top: 4px;
  font-size: 15px;
}

.contact-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 22px 65px rgba(8, 21, 38, 0.09);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(8, 21, 38, 0.16);
  border-radius: 14px;
  background: #fbfcfa;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(74, 47, 180, 0.1);
  outline: 0;
}

.consent {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  margin-top: 4px;
}

.consent a {
  color: var(--purple-2);
  font-weight: 700;
}

.submit-button {
  grid-column: 1 / -1;
  width: fit-content;
  cursor: pointer;
  border: 0;
  background: var(--ink);
  color: var(--white);
}

.form-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
}

.form-notice.success {
  background: #e2f6e9;
  color: #17623f;
}

.form-notice.error {
  background: #fff0ed;
  color: #9c372b;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.legal-main {
  padding: 150px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 70px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 9px;
}

.legal-index strong {
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
}

.legal-index a {
  color: var(--muted);
  font-size: 13px;
}

.legal-content h1 {
  margin-bottom: 13px;
  font-size: clamp(43px, 6vw, 66px);
}

.legal-updated {
  margin-bottom: 45px;
  font-size: 12px;
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 13px;
  font-size: 25px;
}

.legal-content p,
.legal-content li {
  color: #536779;
}

.legal-content a {
  color: var(--purple-2);
  font-weight: 700;
}

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

  .site-nav a {
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 36px;
  }

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

  .service-card {
    min-height: 300px;
  }

  .email-grid {
    gap: 42px;
    padding: 45px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 25px 24px 34px;
    border-top: 1px solid var(--line);
    background: rgba(247, 248, 245, 0.98);
    box-shadow: 0 30px 60px rgba(8, 21, 38, 0.14);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 7px 0;
    font-size: 16px;
  }

  .site-nav .nav-cta {
    justify-self: start;
    padding: 12px 18px;
  }

  .hero {
    padding: 146px 0 100px;
  }

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

  .ecosystem {
    min-height: 430px;
  }

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

  .fact-grid p:nth-child(2) {
    border-right: 0;
  }

  .fact-grid p:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split-heading,
  .product-geo,
  .product-sife,
  .email-grid,
  .faq-grid,
  .contact-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .product-geo,
  .product-sife {
    padding-top: 38px;
  }

  .product-copy {
    padding-top: 80px;
  }

  .geo-visual,
  .invoice-visual {
    justify-self: stretch;
    width: 100%;
    max-width: 520px;
    margin-top: 28px;
  }

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

  .method-grid li:nth-child(2) {
    border-right: 0;
  }

  .method-grid li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .method-grid li:nth-child(3) {
    padding-left: 0;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 32px), 1180px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 143px;
  }

  .site-nav {
    top: 74px;
    max-height: calc(100vh - 74px);
  }

  .hero {
    min-height: auto;
    padding: 128px 0 78px;
  }

  .hero h1 {
    font-size: 45px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .ecosystem {
    min-height: 405px;
    border-radius: 28px;
  }

  .ecosystem::before {
    width: 275px;
    height: 275px;
  }

  .ecosystem::after {
    width: 185px;
    height: 185px;
  }

  .ecosystem-center {
    width: 145px;
    height: 145px;
  }

  .ecosystem-center strong {
    font-size: 23px;
  }

  .ecosystem-node {
    min-width: 115px;
    padding: 11px 12px;
  }

  .ecosystem-node strong {
    font-size: 13px;
  }

  .node-geo { top: 38px; left: 14px; }
  .node-sife { top: 55px; right: 14px; }
  .node-card { bottom: 47px; left: 14px; }
  .node-dst { right: 14px; bottom: 36px; }

  .fact-strip {
    margin-top: 0;
    padding: 17px 0;
    background: var(--navy);
  }

  .fact-grid {
    border-radius: 20px;
  }

  .fact-grid p {
    padding: 18px;
  }

  .fact-grid strong {
    font-size: 20px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .faq-intro h2 {
    font-size: 38px;
  }

  .split-heading {
    gap: 18px;
  }

  .product-grid,
  .service-grid,
  .method-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-geo,
  .product-sife,
  .product-compact {
    padding: 28px;
    border-radius: 28px;
  }

  .product-topline {
    position: static;
    gap: 14px;
  }

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

  .product-copy {
    padding-top: 55px;
  }

  .product-copy h3 {
    font-size: 35px;
  }

  .product-compact {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 36px;
  }

  .email-grid {
    width: 100%;
    padding: 65px 24px;
    border-radius: 0;
  }

  .method-grid li,
  .method-grid li:not(:first-child),
  .method-grid li:nth-child(3) {
    min-height: auto;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid li:last-child {
    border-bottom: 0;
  }

  .method-grid span {
    margin-bottom: 24px;
  }

  .faq-grid {
    gap: 42px;
  }

  .final-cta {
    padding-bottom: 76px;
  }

  .final-cta-inner {
    padding: 35px 25px;
    border-radius: 28px;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    gap: 36px;
  }

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

  .page-hero {
    padding: 130px 0 58px;
  }

  .contact-section {
    padding: 65px 0 80px;
  }

  .contact-grid {
    gap: 38px;
  }

  .contact-card {
    padding: 25px;
    border-radius: 24px;
  }

  .field-full,
  .consent,
  .submit-button,
  .form-notice {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
  }

  .legal-main {
    padding: 125px 0 75px;
  }
}

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

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