:root {
  color: #07101f;
  background: #f7f7f4;
  font-family: "Nimbus Sans", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #061126;
  --ink-deep: #030a18;
  --navy: #061328;
  --navy-soft: #0a1a31;
  --paper: #f7f7f4;
  --paper-soft: #efefea;
  --teal: #00c6bd;
  --teal-bright: #55eee6;
  --teal-deep: #069e99;
  --white: #f8fbff;
  --muted: #a9b6ca;
  --line-dark: rgba(179, 206, 229, 0.2);
  --line-light: #ccd5dc;
  --max: 1380px;
  --shadow: 0 30px 80px rgba(3, 10, 24, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.48; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, blockquote, dl, dd { margin-top: 0; }
h1:focus { outline: none; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--ink-deep);
  background: var(--teal-bright);
}
.skip-link:focus { top: 18px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 150;
  pointer-events: none;
  background: linear-gradient(90deg, var(--teal-bright) var(--scroll-progress), transparent var(--scroll-progress));
}

.site-shell { min-height: 100vh; background: var(--paper); }
.site-header {
  width: 100%;
  min-height: 96px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(3, 10, 24, 0.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  width: 188px;
  height: 60px;
  display: block;
  overflow: hidden;
  border-radius: 2px;
}
.brand-crop {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../images/exenis-approved-hero.png");
  background-size: 1486px 1058px;
  background-position: -34px -19px;
  background-repeat: no-repeat;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.3vw, 52px);
  font-size: 16px;
}
.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #edf4fd;
  transition: color 180ms ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--teal);
  transition: right 180ms ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] { color: var(--teal-bright); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after { right: 0; }

.header-cta,
.menu-toggle {
  min-height: 50px;
  padding: 0 30px;
  border: 1px solid #d8e1eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.header-cta:hover,
.header-cta:focus-visible { color: var(--ink-deep); background: var(--white); }
.menu-toggle { display: none; }

.page-enter { animation: pageEnter 420ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes pageEnter { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

[data-reveal] {
  opacity: 1;
  transform: none;
}
.page-enter [data-reveal] { animation: contentEnter 620ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes contentEnter { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero {
  min-height: 690px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  background: var(--ink-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 10, 24, 0.96) 0%, rgba(3, 10, 24, 0.72) 43%, rgba(3, 10, 24, 0.16) 100%);
}
.hero-grid {
  width: min(calc(100% - 64px), var(--max));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(450px, 0.86fr) minmax(610px, 1.24fr);
  align-items: center;
  gap: 22px;
  position: relative;
}
.hero-copy {
  padding: 72px 0 110px 12px;
  position: relative;
  z-index: 8;
}

.eyebrow {
  margin-bottom: 23px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #057f7b; }
.hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #f8fbff;
  font-size: clamp(49px, 4.25vw, 72px);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.047em;
}
.hero h1 em,
.section-heading h2 em { color: var(--teal); font-style: normal; }
.hero-intro {
  max-width: 540px;
  margin-bottom: 40px;
  color: #e6edf8;
  font-size: 20px;
  font-weight: 350;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.centered-actions { justify-content: center; }
.button {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #f6ffff; background: var(--teal-deep); border-color: var(--teal-deep); }
.button-primary:hover,
.button-primary:focus-visible { color: #051423; background: var(--teal-bright); border-color: var(--teal-bright); }
.button-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-dark:hover,
.button-dark:focus-visible { color: var(--ink); background: var(--teal-bright); border-color: var(--teal-bright); }
.button-outline { color: var(--white); border-color: #6f8199; background: transparent; }
.button-outline:hover,
.button-outline:focus-visible { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-outline-dark { color: var(--ink); border-color: #738095; background: transparent; }
.button-outline-dark:hover,
.button-outline-dark:focus-visible { color: var(--white); background: var(--ink); border-color: var(--ink); }
.text-link,
.card-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--teal);
  color: #f4f8fe;
  font-weight: 650;
}
.text-link:hover,
.text-link:focus-visible,
.card-link:hover,
.card-link:focus-visible { color: var(--teal-bright); }
.dark-link,
.card-link { color: #066e6b; }
.dark-link:hover,
.dark-link:focus-visible,
.card-link:hover,
.card-link:focus-visible { color: var(--ink); }
.price-note {
  margin: 40px 0 0;
  display: flex;
  gap: 13px;
  align-items: center;
  color: #eaf2fc;
  font-size: 16px;
}
.price-note span { padding-left: 22px; border-left: 2px solid var(--teal); }
.price-note strong { color: var(--teal); }

.gateway-scene {
  width: 100%;
  max-width: 790px;
  aspect-ratio: 780 / 650;
  position: relative;
  align-self: center;
  z-index: 2;
}
.gateway-stage {
  --gateway-x: 0px;
  --gateway-y: 0px;
  --gateway-rotate-x: 0deg;
  --gateway-rotate-y: 0deg;
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--gateway-x), var(--gateway-y), 0) perspective(1200px) rotateX(var(--gateway-rotate-x)) rotateY(var(--gateway-rotate-y));
  transform-style: preserve-3d;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gateway-layer {
  position: absolute;
  inset: -2%;
  display: block;
  background-image: url("../images/exenis-approved-hero.png");
  background-repeat: no-repeat;
  background-size: 176% auto;
  background-position: 100% -83px;
  transform-origin: 46% 43%;
  will-change: transform, filter, opacity;
}
.gateway-base {
  z-index: 1;
  opacity: 0.9;
  filter: saturate(1.12) contrast(1.05);
  animation: gatewayBreath 6s ease-in-out infinite;
}
.gateway-outer,
.gateway-middle,
.gateway-inner,
.gateway-signal { z-index: 2; bottom: auto; height: 86%; }
.gateway-outer {
  opacity: 0.92;
  -webkit-mask-image: radial-gradient(circle at 46% 43%, transparent 0 33%, #000 36% 50%, transparent 53%);
  mask-image: radial-gradient(circle at 46% 43%, transparent 0 33%, #000 36% 50%, transparent 53%);
  animation: outerSpin 22s linear infinite;
}
.gateway-middle {
  opacity: 0.86;
  -webkit-mask-image: radial-gradient(circle at 46% 43%, transparent 0 25%, #000 27% 39%, transparent 42%);
  mask-image: radial-gradient(circle at 46% 43%, transparent 0 25%, #000 27% 39%, transparent 42%);
  animation: middleSpin 15s linear infinite;
}
.gateway-inner {
  z-index: 3;
  opacity: 0.96;
  -webkit-mask-image: radial-gradient(circle at 46% 43%, transparent 0 17%, #000 19% 30%, transparent 33%);
  mask-image: radial-gradient(circle at 46% 43%, transparent 0 17%, #000 19% 30%, transparent 33%);
  animation: innerSpin 11s linear infinite reverse;
}
.gateway-core {
  z-index: 4;
  -webkit-mask-image: radial-gradient(circle at 46% 43%, #000 0 20%, transparent 23%);
  mask-image: radial-gradient(circle at 46% 43%, #000 0 20%, transparent 23%);
  animation: corePulse 2.4s ease-in-out infinite;
}
.gateway-signal {
  z-index: 5;
  opacity: 0.56;
  -webkit-mask-image: radial-gradient(circle at 46% 43%, transparent 0 51%, #000 54% 66%, transparent 70%);
  mask-image: radial-gradient(circle at 46% 43%, transparent 0 51%, #000 54% 66%, transparent 70%);
  animation: signalOrbit 8s linear infinite;
}
.gateway-stage.is-paused .gateway-layer { animation-play-state: paused; }
.gateway-status {
  position: absolute;
  left: 18px;
  bottom: 20px;
  z-index: 10;
  min-width: 230px;
  padding: 11px 14px;
  border-left: 2px solid var(--teal);
  color: #c9d9ea;
  background: rgba(3, 10, 24, 0.8);
  backdrop-filter: blur(10px);
}
.gateway-status span,
.gateway-status strong { display: block; }
.gateway-status span {
  margin-bottom: 5px;
  color: #82b7c3;
  font-family: "DejaVu Sans Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gateway-status strong { color: #bafffb; font-size: 14px; }
.motion-control {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 10;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(85, 238, 230, 0.5);
  color: #c8fffc;
  background: rgba(3, 10, 24, 0.78);
}
.motion-control:hover,
.motion-control:focus-visible { color: var(--ink-deep); background: var(--teal-bright); }

@keyframes gatewayBreath {
  0%, 100% { transform: scale(1.01) translate3d(0, 0, 0); filter: brightness(0.91) saturate(1.06); }
  50% { transform: scale(1.045) translate3d(-6px, -4px, 0); filter: brightness(1.14) saturate(1.2); }
}
@keyframes outerSpin {
  0% { transform: rotate(0deg) scale(1.015); filter: brightness(0.9); }
  50% { filter: brightness(1.28) saturate(1.18); }
  100% { transform: rotate(360deg) scale(1.015); filter: brightness(0.9); }
}
@keyframes middleSpin {
  0% { transform: rotate(0deg) scale(1.005); }
  100% { transform: rotate(-360deg) scale(1.025); }
}
@keyframes innerSpin {
  0% { transform: rotate(0deg) scale(1.015); filter: brightness(1.05); }
  100% { transform: rotate(360deg) scale(0.99); filter: brightness(1.32); }
}
@keyframes corePulse {
  0%, 100% { transform: scale(0.95); filter: brightness(0.85) saturate(1.02); }
  50% { transform: scale(1.09); filter: brightness(1.55) saturate(1.45); }
}
@keyframes signalOrbit {
  0% { transform: rotate(0deg) scale(0.99); opacity: 0.26; }
  50% { opacity: 0.72; }
  100% { transform: rotate(360deg) scale(1.035); opacity: 0.26; }
}

.section { padding: 112px max(32px, calc((100vw - var(--max)) / 2)); }
.section-heading { max-width: 920px; margin-bottom: 64px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2,
.page-hero h1,
.story-lead h2,
.case-copy h2,
.resource-card h2,
.contact-sidebar h2,
.contact-success h2,
.legal-content h2,
.not-found h1,
.final-cta h2 {
  margin-bottom: 22px;
  font-family: "Bitstream Charter", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.037em;
}
.section-heading h2 { font-size: clamp(46px, 5vw, 72px); line-height: 1.05; }
.section-heading > p:last-child {
  max-width: 720px;
  color: #405069;
  font-size: 19px;
  line-height: 1.68;
}
.section-heading.centered > p:last-child { margin-left: auto; margin-right: auto; }
.section-action { margin-top: 44px; text-align: center; }

.purpose { padding-top: 78px; background: var(--paper); }
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.path-card {
  min-height: 260px;
  padding: 34px 32px 36px;
  border-right: 1px solid var(--line-light);
}
.path-card:last-child { border-right: 0; }
.path-card > span,
.process-grid article > span {
  color: var(--teal-deep);
  font-family: "DejaVu Sans Mono", monospace;
  font-size: 13px;
}
.path-card h3 { margin: 46px 0 14px; font-size: 23px; }
.path-card p { color: #536074; line-height: 1.6; }

.services-overview { color: var(--white); background: var(--navy); }
.services-overview .section-heading > p:last-child { color: #becada; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  min-height: 390px;
  padding: 42px 38px;
  border: 1px solid rgba(85, 219, 212, 0.32);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #0a1a31;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--teal); background: #0c203b; }
.card-kicker {
  margin-bottom: 20px;
  color: var(--teal-deep);
  font-family: "DejaVu Sans Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer-card .card-kicker { color: var(--teal); }
.offer-card h3 { margin: 0 0 18px; font-family: "Bitstream Charter", Georgia, serif; font-size: 38px; font-weight: 400; line-height: 1.08; }
.offer-card > p:not(.card-kicker) { flex: 1; color: #c4cfde; line-height: 1.65; }

.work-preview { background: #f2f2ed; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  overflow: hidden;
  background: #fcfcf9;
  border: 1px solid #d6dde2;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.project-card:hover { transform: translateY(-6px); border-color: #80c7c3; box-shadow: var(--shadow); }
.project-image-wrap { aspect-ratio: 16 / 10; overflow: hidden; background: #0b1729; }
.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover img { transform: scale(1.035); }
.project-meta { padding: 28px 28px 34px; }
.project-meta span {
  color: #078d88;
  font-family: "DejaVu Sans Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.project-meta h3 { margin: 20px 0 10px; font-family: "Bitstream Charter", Georgia, serif; font-size: 30px; font-weight: 400; }
.project-meta p { margin: 0; color: #5a6575; line-height: 1.55; }

.process { color: var(--white); background: #041022; }
.light-heading { max-width: 1040px; }
.light-heading h2 { color: var(--white); }
.light-heading > p:last-child { color: #bcc8d8; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.process-grid article { min-height: 310px; padding: 38px 34px; border-right: 1px solid var(--line-dark); }
.process-grid article:last-child { border-right: 0; }
.process-grid h3 { margin: 70px 0 14px; font-size: 24px; }
.process-grid p { margin: 0; color: #b7c3d4; line-height: 1.65; }

.standards { background: #79ddd7; }
.standards .section-heading > p:last-child { color: #17494b; }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(2, 51, 53, 0.28); }
.standards-grid article { padding: 35px 36px 8px; border-right: 1px solid rgba(2, 51, 53, 0.28); }
.standards-grid article:last-child { border-right: 0; }
.standards-grid h3 { font-size: 22px; }
.standards-grid p { color: #17494b; line-height: 1.6; }

.faq-section { background: #f8f8f4; }
.faq-section > .section-heading { display: grid; grid-template-columns: 0.7fr 1.3fr; column-gap: 90px; max-width: none; }
.faq-section > .section-heading .eyebrow { grid-column: 1; }
.faq-section > .section-heading h2 { grid-column: 1; }
.faq-section > .section-heading > p:last-child { grid-column: 2; grid-row: 1 / span 2; align-self: end; }
.faq-list { margin-left: min(34%, 470px); border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { padding: 25px 8px; cursor: pointer; font-size: 19px; font-weight: 750; }
.faq-list details[open] summary { color: #057f7b; }
.faq-list p { max-width: 760px; padding: 0 36px 28px 8px; color: #536074; line-height: 1.7; }

.final-cta { text-align: center; color: var(--white); background: var(--navy); }
.final-cta h2 { max-width: 940px; margin-left: auto; margin-right: auto; font-size: clamp(45px, 4.4vw, 68px); line-height: 1.05; }
.final-cta > p:not(.eyebrow) { max-width: 720px; margin: 0 auto 36px; color: #bcc8d8; font-size: 19px; line-height: 1.65; }

.page-hero {
  padding: 100px max(32px, calc((100vw - var(--max)) / 2)) 96px;
  color: var(--white);
  background: var(--ink-deep);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 90px;
  align-items: end;
}
.page-hero h1 { max-width: 940px; font-size: clamp(56px, 6vw, 86px); line-height: 0.99; }
.page-hero-grid > div:first-child > p:last-child { max-width: 760px; margin: 0; color: #c5d0de; font-size: 20px; line-height: 1.7; }
.page-hero-aside {
  padding: 28px 0 4px 30px;
  border-left: 1px solid rgba(85, 238, 230, 0.52);
}
.page-hero-aside span,
.page-hero-aside strong { display: block; }
.page-hero-aside strong { margin-bottom: 12px; color: var(--white); font-family: "Bitstream Charter", Georgia, serif; font-size: 30px; font-weight: 400; }
.page-hero-aside span { color: #b9c5d5; line-height: 1.55; }
.aside-label { margin-bottom: 14px; color: var(--teal); font-family: "DejaVu Sans Mono", monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.pricing-shell { background: var(--paper); }
.pricing-switcher {
  margin: -80px 0 90px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
  z-index: 5;
  border: 1px solid #cbd6dc;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.pricing-switcher button {
  min-height: 56px;
  border: 1px solid transparent;
  color: #435168;
  background: transparent;
  font-weight: 700;
}
.pricing-switcher button:hover,
.pricing-switcher button:focus-visible { border-color: #98aaa9; }
.pricing-switcher button.active { color: var(--white); background: var(--ink); }

.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.plan-card {
  min-height: 100%;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--white);
  background: var(--navy-soft);
  border: 1px solid #2b4862;
}
.plan-card.recommended {
  border-color: var(--teal);
  box-shadow: 0 24px 70px rgba(2, 46, 55, 0.22);
}
.plan-label {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 8px 12px;
  color: var(--ink-deep);
  background: var(--teal-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-card .card-kicker { min-height: 57px; padding-right: 70px; color: #91c7d0; }
.plan-card h3 { max-width: 360px; margin: 0 0 20px; font-family: "Bitstream Charter", Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1.07; }
.plan-price { margin-bottom: 24px; display: flex; align-items: baseline; gap: 10px; }
.plan-price strong { color: var(--teal-bright); font-size: 35px; letter-spacing: -0.035em; }
.plan-price span { color: #aab7c8; font-size: 13px; }
.plan-summary { color: #c4cfde; line-height: 1.6; }
.plan-facts { margin: 8px 0 22px; display: grid; border-top: 1px solid var(--line-dark); }
.plan-facts span { padding: 11px 0; border-bottom: 1px solid var(--line-dark); color: #d8e2ed; font-size: 13px; }
.plan-card ul { flex: 1; margin: 0 0 28px; padding-left: 18px; color: #e9f1fa; }
.plan-card li { margin-bottom: 11px; line-height: 1.5; }
.plan-details { margin-top: 20px; border-top: 1px solid var(--line-dark); color: #c2cddd; }
.plan-details summary { padding: 18px 0 8px; cursor: pointer; color: var(--teal-bright); font-weight: 700; }
.plan-details p { font-size: 13px; line-height: 1.55; }

.comparison-wrap { margin-top: 64px; overflow-x: auto; border: 1px solid #cbd6dc; background: #fff; }
.comparison-table { width: 100%; min-width: 880px; border-collapse: collapse; }
.comparison-table caption { padding: 24px 26px; text-align: left; color: var(--ink); font-family: "Bitstream Charter", Georgia, serif; font-size: 28px; }
.comparison-table th,
.comparison-table td { padding: 17px 20px; border-top: 1px solid #dbe2e7; text-align: left; vertical-align: top; }
.comparison-table thead th { color: var(--white); background: var(--ink); }
.comparison-table tbody th { width: 25%; color: #314057; background: #f1f3f2; }
.comparison-table tbody td { color: #4f5d70; }

.filter-row { margin-bottom: 32px; display: flex; gap: 9px; flex-wrap: wrap; }
.filter-row button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #9faeb9;
  color: #3e4c60;
  background: transparent;
}
.filter-row button.active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.growth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.growth-card {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #ccd6dc;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.growth-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.growth-card h3 { margin: 0 0 16px; font-family: "Bitstream Charter", Georgia, serif; font-size: 32px; font-weight: 400; line-height: 1.08; }
.growth-card .plan-price strong { color: #057f7b; }
.growth-card > p:not(.card-kicker):not(.plan-price) { flex: 1; color: #586477; line-height: 1.6; }

.payment-section { color: var(--white); background: var(--ink); }
.payment-section .section-heading > p:last-child { color: #bdc8d8; }
.payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.payment-grid article { padding: 32px 28px; border-right: 1px solid var(--line-dark); }
.payment-grid article:last-child { border-right: 0; }
.payment-grid h3 { font-size: 18px; }
.payment-grid p { margin: 0; color: #b9c4d4; line-height: 1.6; }

.case-study-list { background: #f2f2ed; }
.case-study {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  border: 1px solid #ced8de;
  background: #fff;
}
.case-study:last-child { margin-bottom: 0; }
.case-study:nth-child(even) .case-image { order: 2; }
.case-image { min-height: 610px; overflow: hidden; background: #071326; }
.case-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.case-copy { padding: 62px 54px; align-self: center; }
.case-copy h2 { font-size: clamp(42px, 4vw, 60px); line-height: 1.03; }
.case-copy dl { margin: 34px 0; }
.case-copy dl div { padding: 17px 0; border-top: 1px solid #d7dfe4; }
.case-copy dt { margin-bottom: 7px; color: #057f7b; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.case-copy dd { color: #536074; line-height: 1.6; }

.story-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 110px; background: var(--paper); }
.story-lead h2 { max-width: 600px; font-size: clamp(46px, 5vw, 70px); line-height: 1.05; }
.story-copy { padding-top: 48px; }
.story-copy p { color: #4f5d70; font-size: 19px; line-height: 1.8; }
.values-section { color: var(--white); background: var(--navy); }
.values-section .section-heading > p:last-child { color: #bdc8d8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.values-grid article { min-height: 230px; padding: 36px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.values-grid h3 { font-size: 23px; }
.values-grid p { margin: 0; color: #b9c5d5; line-height: 1.65; }

.resource-section { background: #f2f2ed; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.resource-card { min-height: 440px; padding: 40px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid #ccd6dc; background: #fff; }
.resource-card h2 { font-size: 38px; line-height: 1.08; }
.resource-card > p:not(.card-kicker) { flex: 1; color: #536074; line-height: 1.7; }

.contact-section { display: grid; grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr); gap: 90px; background: #f3f3ee; }
.contact-sidebar { padding-right: 32px; }
.contact-sidebar h2 { font-size: 44px; line-height: 1.06; }
.contact-sidebar ul { margin: 28px 0 40px; padding-left: 20px; color: #4e5b6d; }
.contact-sidebar li { margin-bottom: 14px; line-height: 1.5; }
.contact-sidebar a { color: #057f7b; border-bottom: 1px solid #057f7b; }
.contact-form,
.contact-success { min-height: 600px; padding: 48px; background: #fff; border: 1px solid #ccd6dc; box-shadow: var(--shadow); }
.form-progress { margin-bottom: 40px; display: grid; grid-template-columns: repeat(2, 1fr); }
.form-progress span { padding: 14px 0; border-bottom: 2px solid #ced8de; color: #7a8797; font-size: 13px; font-weight: 700; }
.form-progress span.active { border-color: var(--teal-deep); color: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.contact-form label { display: grid; gap: 9px; color: #26354a; font-weight: 750; }
.contact-form label span { color: #6b7789; font-weight: 400; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #aab6c0;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}
.contact-form input,
.contact-form select { min-height: 50px; padding: 0 14px; }
.contact-form textarea { padding: 13px 14px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--teal-deep); outline: 2px solid rgba(0, 198, 189, 0.18); outline-offset: 1px; }
.full-field { grid-column: 1 / -1; }
.form-action-row { display: flex; justify-content: space-between; gap: 18px; }
.contact-success h2 { max-width: 650px; font-size: 52px; line-height: 1.04; }
.contact-success > p:not(.eyebrow) { max-width: 680px; color: #536074; font-size: 18px; line-height: 1.65; }
.contact-success a { color: #057f7b; border-bottom: 1px solid #057f7b; }

.contact-notice {
  margin-bottom: 18px;
  padding: 18px 20px;
  display: grid;
  gap: 5px;
  border-left: 3px solid var(--teal-deep);
  color: #24344b;
  background: #e9f7f5;
}
.contact-notice-error { border-color: #b64d4d; background: #fff0ef; }
.contact-notice-notice { border-color: #a6832c; background: #fff8e4; }
.exenis-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent-field { display: grid !important; grid-template-columns: 22px 1fr; align-items: start; gap: 11px !important; font-weight: 400 !important; line-height: 1.5; }
.consent-field input { width: 18px; min-height: 18px; margin-top: 2px; }
.consent-field a { color: #057f7b; border-bottom: 1px solid #057f7b; }

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

.legal-content { max-width: 980px; margin: 0 auto; background: #fff; }
.legal-content h2 { margin-top: 52px; font-size: 35px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #4d5b70; font-size: 18px; line-height: 1.78; }
.legal-content a { color: #057f7b; border-bottom: 1px solid #057f7b; }
.legal-note { margin-top: 58px; padding: 24px; border-left: 3px solid var(--teal-deep); background: #eef3f1; }

.not-found { min-height: 70vh; padding: 120px 32px; display: grid; place-content: center; text-align: center; color: var(--white); background: var(--ink-deep); }
.not-found h1 { max-width: 820px; font-size: clamp(54px, 6vw, 82px); line-height: 1; }
.not-found > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 36px; color: #bdc8d8; font-size: 19px; line-height: 1.6; }

.site-footer {
  padding: 72px max(32px, calc((100vw - var(--max)) / 2)) 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 70px;
  color: #bcc8d8;
  background: #030a18;
  border-top: 1px solid var(--line-dark);
}
.footer-brand p { max-width: 410px; margin: 18px 0 0; line-height: 1.6; }
.footer-label { color: var(--white); font-weight: 750; }
.site-footer nav { display: grid; gap: 11px; }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--teal-bright); }
.site-footer > div:nth-child(3) > p:last-child { color: #8492a8; line-height: 1.6; }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: #8492a8;
}
.footer-bottom nav { display: flex; flex-direction: row; gap: 25px; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 200px 1fr auto; }
  .hero-grid { grid-template-columns: minmax(400px, 0.9fr) minmax(520px, 1.1fr); }
  .gateway-scene { margin-left: -30px; }
  .path-card { padding-left: 24px; padding-right: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card .card-kicker { min-height: auto; }
  .plan-card { min-height: 0; }
  .growth-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid article:nth-child(2) { border-right: 0; }
  .payment-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 84px;
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: 1fr auto;
  }
  .brand { width: 164px; }
  .brand-crop { transform: scale(0.9); transform-origin: left center; }
  .menu-toggle { display: inline-flex; min-height: 44px; padding: 0 17px; }
  .header-cta { display: none; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 83px;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line-dark);
    background: #071326;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 10px; }
  .primary-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero::before { background: linear-gradient(180deg, rgba(3, 10, 24, 0.98), rgba(3, 10, 24, 0.62)); }
  .hero-grid { width: min(calc(100% - 40px), var(--max)); min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 68px 0 10px; }
  .gateway-scene { width: min(100%, 740px); margin: 0 auto 28px; }
  .section { padding: 88px 28px; }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .path-card:nth-child(2) { border-right: 0; }
  .path-card:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .offer-grid,
  .project-grid,
  .standards-grid,
  .resource-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 320px; }
  .project-card { display: grid; grid-template-columns: 1.1fr 0.9fr; }
  .standards-grid article { border-right: 0; border-bottom: 1px solid rgba(2, 51, 53, 0.28); }
  .faq-section > .section-heading { display: block; }
  .faq-list { margin-left: 0; }
  .page-hero { padding: 80px 28px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-aside { max-width: 620px; }
  .pricing-switcher { margin-top: -65px; }
  .case-study { grid-template-columns: 1fr; }
  .case-study:nth-child(even) .case-image { order: 0; }
  .case-image { min-height: 420px; }
  .story-section,
  .contact-section { grid-template-columns: 1fr; gap: 55px; }
  .story-copy { padding-top: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .hero-grid { width: calc(100% - 32px); }
  .hero-copy { padding-top: 52px; }
  .eyebrow { font-size: 11px; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .hero-intro { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .centered-actions { align-items: center; }
  .text-link { justify-content: center; }
  .price-note { align-items: flex-start; flex-direction: column; }
  .gateway-scene { width: 128%; margin-left: -14%; }
  .gateway-status { left: 12%; bottom: 8px; transform: scale(0.86); transform-origin: left bottom; }
  .motion-control { right: 12%; top: 8px; }
  .section { padding: 72px 20px; }
  .section-heading h2,
  .final-cta h2 { font-size: 41px; }
  .section-heading > p:last-child { font-size: 17px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card,
  .path-card:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .path-card h3 { margin-top: 28px; }
  .project-card { display: block; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article,
  .process-grid article:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process-grid h3 { margin-top: 36px; }
  .page-hero { padding: 64px 20px; }
  .page-hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .page-hero-grid > div:first-child > p:last-child { font-size: 18px; }
  .pricing-switcher { margin: -52px 0 70px; padding: 7px; grid-template-columns: 1fr; }
  .plan-card { padding: 34px 22px; }
  .plan-card h3 { font-size: 33px; }
  .growth-grid,
  .payment-grid,
  .values-grid { grid-template-columns: 1fr; }
  .payment-grid article,
  .payment-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .case-study { margin-bottom: 44px; }
  .case-image { min-height: 300px; }
  .case-copy { padding: 34px 22px; }
  .case-copy h2 { font-size: 42px; }
  .values-grid article { min-height: 0; }
  .resource-card { min-height: 0; padding: 32px 24px; }
  .resource-card h2 { font-size: 34px; }
  .contact-form,
  .contact-success { min-height: 0; padding: 34px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: 1; }
  .form-action-row { flex-direction: column-reverse; }
  .contact-success h2 { font-size: 42px; }
  .site-footer { padding: 60px 20px 30px; grid-template-columns: 1fr; }
  .footer-brand,
  .footer-bottom { grid-column: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .gateway-stage { transform: none !important; }
}
