:root {
  --forest: #123827;
  --forest-2: #1f5b3b;
  --moss: #2d5539;
  --lime: #72f846;
  --lime-2: #21a43a;
  --mint: #e8fbdf;
  --canvas: #f7faef;
  --stone: #dbe7d0;
  --olive: #687463;
  --ink: #203026;
  --white: #ffffff;
  --cyan: #18c8d5;
  --coral: #ff815f;
  --sky: #dff7ff;
  --sun: #fff2bf;
  --shadow-soft: 0 24px 80px rgba(18, 56, 39, 0.12);
  --shadow-dark: 0 26px 90px rgba(18, 56, 39, 0.2);
  --radius-card: 8px;
  --radius-container: 16px;
  --radius-button: 28px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(114, 248, 70, 0.18), transparent 30vw),
    radial-gradient(circle at 88% 6%, rgba(24, 200, 213, 0.16), transparent 28vw),
    linear-gradient(180deg, #fcfff9 0%, var(--white) 44%, #f8fff2 100%);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(114, 248, 70, 0.18), rgba(24, 200, 213, 0.1) 42%, transparent 70%);
  mix-blend-mode: multiply;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 240ms ease;
}

.cursor-glow.is-visible {
  opacity: 1;
}

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

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--forest);
  padding: 10px 14px;
  border-radius: var(--radius-button);
  font-weight: 800;
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-marquee {
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #050805;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  animation: marqueeMove 24s linear infinite;
}

.top-marquee span,
.top-marquee i {
  display: inline-flex;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 850;
}

.top-marquee i {
  color: var(--lime);
  font-style: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 30px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(18, 56, 39, 0.1);
  box-shadow: 0 10px 34px rgba(18, 56, 39, 0.08);
  backdrop-filter: blur(22px) saturate(1.25);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(18, 35, 20, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.brand-logo {
  width: 104px;
  height: 70px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(18, 56, 39, 0.1));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(18, 56, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 42px rgba(18, 56, 39, 0.08);
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(18, 56, 39, 0.74);
  font-size: 14px;
  font-weight: 700;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(18, 56, 39, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  padding: 0 20px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 44%),
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.55), transparent 36%);
  opacity: 0.88;
  transition: opacity 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transition: opacity 260ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  opacity: 0.7;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--forest);
  border-color: rgba(18, 56, 39, 0.12);
  background:
    linear-gradient(135deg, #8dff62, var(--lime));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 18px 36px rgba(104, 239, 63, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #7bff55;
  box-shadow: 0 20px 44px rgba(104, 239, 63, 0.34);
}

.button-ghost {
  color: var(--forest);
  border-color: rgba(18, 56, 39, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 36px rgba(18, 56, 39, 0.08);
  backdrop-filter: blur(14px);
}

.button-ghost-dark {
  color: var(--forest);
  border-color: rgba(39, 63, 43, 0.22);
  background: rgba(255, 255, 255, 0.75);
}

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

.header-cta {
  min-width: 142px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  color: var(--forest);
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 239, 0.96) 38%, rgba(232, 251, 223, 0.9) 100%),
    conic-gradient(from 160deg at 72% 36%, rgba(24, 200, 213, 0.42), rgba(114, 248, 70, 0.52), rgba(255, 242, 191, 0.48), rgba(255, 129, 95, 0.22), rgba(24, 200, 213, 0.42));
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: -1;
  background:
    conic-gradient(from 30deg at 50% 50%, rgba(114, 248, 70, 0.22), rgba(24, 200, 213, 0.2), rgba(255, 129, 95, 0.16), rgba(255, 255, 255, 0.1), rgba(114, 248, 70, 0.22));
  filter: blur(38px);
  animation: shaderDrift 22s linear infinite;
}

.hero-cinematic {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  overflow: hidden;
}

.hero-cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.22);
  transform: scale(1.08);
  animation: cinematicBreath 12s ease-in-out infinite alternate;
}

.hero-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(232, 251, 223, 0.2) 100%),
    radial-gradient(circle at 70% 46%, rgba(114, 248, 70, 0.5), transparent 34%);
}

.hero-giant-type {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  z-index: 0;
  display: flex;
  width: max-content;
  color: rgba(18, 56, 39, 0.07);
  font-size: min(18vw, 260px);
  line-height: 0.8;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%);
  animation: heroTypeDrift 30s linear infinite;
}

.hero-giant-type span {
  display: block;
  padding-right: 7vw;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(18, 56, 39, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 56, 39, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 28px;
  min-height: calc(100vh - var(--header-height));
  padding: 74px 0 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime-2);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.dark-section .eyebrow,
.dark-page-hero .eyebrow,
.final-cta .eyebrow {
  color: var(--lime);
}

.hero .eyebrow {
  color: var(--lime-2);
}

.hero h1,
.page-hero h1,
.final-cta h2 {
  margin: 0;
  font-size: 76px;
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--forest);
}

.hero-lede,
.hero-copy p,
.page-hero p,
.section-heading p,
.contact-copy p {
  color: rgba(48, 50, 42, 0.72);
  font-size: 18px;
}

.hero .hero-lede,
.hero .hero-copy p {
  max-width: 620px;
  color: rgba(32, 48, 38, 0.78);
}

.registration-line {
  max-width: 780px;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(18, 56, 39, 0.12);
  border-radius: var(--radius-card);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 34px rgba(18, 56, 39, 0.07);
  backdrop-filter: blur(12px);
}

.registration-line span,
.registration-line strong {
  display: block;
}

.registration-line div {
  min-height: 74px;
  padding: 12px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(232, 251, 223, 0.42));
}

.registration-line strong {
  color: var(--lime-2);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
}

.registration-line span {
  margin-top: 6px;
  color: var(--forest);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}

.hero-actions,
.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(32, 48, 38, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.scroll-hint span {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(18, 56, 39, 0.24);
  border-radius: 999px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-2);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.scroll-hint p {
  margin: 0 !important;
  color: inherit !important;
  font-size: 13px !important;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  margin-right: -46px;
  transform-style: preserve-3d;
}

.three-canvas {
  width: 100%;
  height: 650px;
}

.scene-caption {
  position: absolute;
  width: 230px;
  padding: 16px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-dark);
  animation: floatY 5.5s ease-in-out infinite;
}

.hero-finance-card {
  position: absolute;
  z-index: 2;
  width: 220px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(18, 56, 39, 0.14);
  border-radius: var(--radius-card);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  animation: floatY 6s ease-in-out infinite;
}

.hero-finance-card p {
  margin: 0 0 9px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-finance-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.hero-finance-card small {
  display: block;
  margin-top: 7px;
  color: var(--olive);
  font-weight: 800;
}

.hero-finance-card div {
  display: flex;
  gap: 7px;
  margin-top: 17px;
}

.hero-finance-card div span {
  flex: 1;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.hero-finance-card-one {
  left: 3%;
  bottom: 18%;
}

.hero-finance-card-two {
  right: 4%;
  top: 22%;
  width: 172px;
  animation-delay: -1.9s;
}

.hero-finance-card-two strong {
  font-size: 44px;
  line-height: 0.95;
}

.scene-caption span {
  display: block;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.scene-caption strong {
  display: block;
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.2;
}

.scene-caption-one {
  left: 12%;
  top: 18%;
}

.scene-caption-two {
  right: 7%;
  bottom: 14%;
  animation-delay: -1.4s;
}

.proof-strip {
  background:
    linear-gradient(135deg, #123827, #1d6541);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-grid article {
  min-height: 150px;
  padding: 30px;
  background: rgba(18, 56, 39, 0.88);
}

.proof-grid strong {
  display: block;
  color: var(--lime);
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.proof-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.kinetic-gallery {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faef 100%);
}

.gallery-word {
  position: absolute;
  left: -3vw;
  right: 0;
  top: 6vh;
  color: rgba(18, 56, 39, 0.06);
  font-size: min(17vw, 230px);
  line-height: 0.84;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(calc(var(--gallery-progress, 0) * -18vw));
  pointer-events: none;
}

.gallery-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 54px;
  padding: 96px 0;
}

.gallery-copy h2 {
  margin: 0;
  color: var(--forest);
  font-size: 54px;
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-copy p {
  color: rgba(32, 48, 38, 0.72);
  font-size: 18px;
}

.gallery-stack {
  position: relative;
  min-height: 680px;
  perspective: 1200px;
}

.gallery-frame {
  position: absolute;
  margin: 0;
  width: min(380px, 46vw);
  border: 1px solid rgba(18, 56, 39, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform:
    translateY(calc(var(--gallery-offset, 0px) + var(--parallax-y, 0px)))
    rotate(var(--frame-rotate, 0deg));
  transition: transform 120ms linear;
}

.gallery-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.gallery-frame figcaption {
  padding: 16px 18px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 950;
}

.frame-one {
  left: 0;
  top: 18px;
  --frame-rotate: -4deg;
}

.frame-two {
  right: 14%;
  top: 110px;
  --frame-rotate: 5deg;
}

.frame-three {
  left: 18%;
  bottom: 16px;
  --frame-rotate: -1deg;
}

.section-block {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  isolation: isolate;
}

.section-block::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -260px;
  top: -220px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(114, 248, 70, 0.2), rgba(24, 200, 213, 0.1) 46%, transparent 70%);
  filter: blur(10px);
  transform: translate3d(0, calc((var(--section-progress, 0) - 0.5) * 90px), 0);
  pointer-events: none;
}

.section-block:nth-of-type(odd)::before {
  left: -260px;
  right: auto;
  background:
    radial-gradient(circle, rgba(24, 200, 213, 0.18), rgba(255, 242, 191, 0.14) 46%, transparent 70%);
}

.light-section {
  background: var(--canvas);
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(114, 248, 70, 0.2), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(24, 200, 213, 0.16), transparent 28%),
    linear-gradient(135deg, #123827 0%, #1d6541 58%, #25854c 100%);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-heading h2,
.mission-panel h3,
.compare-column h2,
.detail-row h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.05;
  font-weight: 930;
  letter-spacing: 0;
}

.dark-section .section-heading h2,
.dark-section .detail-row h2 {
  color: var(--white);
}

.section-heading p {
  max-width: 690px;
  margin: 20px 0 0;
}

.section-heading.center {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

.mission-panel,
.quote-panel,
.profile-stat-panel,
.mini-3d-panel,
.comparison-capsule,
.privacy-band,
.contact-form,
.thank-you-panel {
  border-radius: var(--radius-card);
  border: 1px solid rgba(39, 63, 43, 0.12);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mission-panel,
.quote-panel,
.profile-stat-panel,
.mini-3d-panel,
.comparison-capsule,
.privacy-band,
.contact-form,
.thank-you-panel,
.tool-card,
.team-card,
.workflow-grid article,
.outcome-grid article,
.detail-row {
  transform:
    perspective(1000px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.mission-panel:hover,
.quote-panel:hover,
.profile-stat-panel:hover,
.mini-3d-panel:hover,
.comparison-capsule:hover,
.privacy-band:hover,
.contact-form:hover,
.thank-you-panel:hover,
.tool-card:hover,
.team-card:hover,
.workflow-grid article:hover,
.outcome-grid article:hover {
  border-color: rgba(114, 248, 70, 0.46);
  box-shadow: 0 30px 90px rgba(18, 56, 39, 0.14);
}

.mission-panel {
  padding: 42px;
}

.panel-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--lime);
  font-weight: 950;
}

.mission-panel p,
.quote-panel p,
.long-copy p {
  color: rgba(48, 50, 42, 0.76);
  font-size: 18px;
}

.scroll-story {
  height: 250vh;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4ffe9 48%, #e9fbff 100%);
}

.story-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 42px;
}

.story-copy {
  transform: translateY(calc(var(--story-progress, 0) * -74px));
  transition: transform 120ms linear;
}

.story-copy h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

.story-copy p {
  color: rgba(32, 48, 38, 0.72);
  font-size: 18px;
}

.story-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.story-progress span {
  height: 8px;
  border-radius: 999px;
  background: rgba(18, 56, 39, 0.12);
  overflow: hidden;
}

.story-progress i {
  display: block;
  height: 100%;
  width: calc(var(--story-progress, 0) * 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.story-progress strong {
  color: var(--forest);
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.story-stage {
  position: relative;
  height: 640px;
  perspective: 1400px;
}

.scroll-device {
  position: absolute;
  inset: 56px 18px 22px;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(22deg - var(--story-progress, 0) * 22deg))
    rotateY(calc(-18deg + var(--story-progress, 0) * 18deg))
    translateY(calc(58px - var(--story-progress, 0) * 98px))
    scale(calc(0.72 + var(--story-progress, 0) * 0.28));
  transition: transform 120ms linear;
}

.device-shell {
  height: 100%;
  padding: 12px;
  border: 5px solid #2b302c;
  border-radius: 30px;
  background: #111814;
  box-shadow:
    0 24px 40px rgba(18, 56, 39, 0.18),
    0 72px 120px rgba(18, 56, 39, 0.24);
}

.device-toolbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.74);
}

.device-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.device-toolbar span:nth-child(2) {
  background: var(--sun);
}

.device-toolbar span:nth-child(3) {
  background: var(--lime);
}

.device-toolbar strong {
  margin-left: 8px;
  font-size: 13px;
}

.device-screen {
  height: calc(100% - 44px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr 150px;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 251, 223, 0.88)),
    conic-gradient(from 220deg at 70% 30%, rgba(24, 200, 213, 0.32), rgba(114, 248, 70, 0.36), rgba(255, 242, 191, 0.4), rgba(255, 255, 255, 0));
  overflow: hidden;
}

.screen-hero-card,
.screen-grid article,
.screen-chart {
  border: 1px solid rgba(18, 56, 39, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(18, 56, 39, 0.08);
}

.screen-hero-card {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transform: translateY(calc(42px - var(--story-progress, 0) * 42px));
}

.screen-hero-card p,
.screen-hero-card span {
  margin: 0;
  color: var(--olive);
  font-weight: 800;
}

.screen-hero-card strong {
  display: block;
  margin: 10px 0;
  color: var(--forest);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

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

.screen-grid article {
  padding: 16px;
  transform: translateX(calc((1 - var(--story-progress, 0)) * 46px));
}

.screen-grid article:nth-child(even) {
  transform: translateX(calc((1 - var(--story-progress, 0)) * -46px));
}

.screen-grid span {
  display: block;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1;
}

.screen-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 18px;
}

.screen-chart i {
  flex: 1;
  height: calc(30% + var(--story-progress, 0) * var(--h));
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--cyan));
}

.screen-chart i:nth-child(1) { --h: 28%; }
.screen-chart i:nth-child(2) { --h: 54%; }
.screen-chart i:nth-child(3) { --h: 36%; }
.screen-chart i:nth-child(4) { --h: 62%; }
.screen-chart i:nth-child(5) { --h: 44%; }
.screen-chart i:nth-child(6) { --h: 70%; }

.scroll-cue-card {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 132px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 56, 39, 0.12);
  box-shadow: var(--shadow-soft);
  font-weight: 950;
  transform:
    translateY(calc((1 - var(--story-progress, 0)) * 38px))
    scale(calc(0.9 + var(--story-progress, 0) * 0.1));
}

.cue-one {
  left: 0;
  top: 16%;
}

.cue-two {
  right: 0;
  top: 42%;
  background: var(--lime);
}

.cue-three {
  left: 8%;
  bottom: 12%;
  background: var(--sky);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(38, 162, 0, 0.34);
  border-radius: 999px;
  animation: spin 14s linear infinite;
}

.orbit-ring-one {
  inset: 90px 80px;
}

.orbit-ring-two {
  inset: 150px 140px;
  animation-duration: 20s;
  animation-direction: reverse;
  border-color: rgba(59, 217, 217, 0.34);
}

.horizontal-journey {
  height: 280vh;
  background:
    linear-gradient(180deg, #e9fbff 0%, #ffffff 42%, #f7faef 100%);
}

.journey-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.journey-header {
  width: min(780px, 100%);
  margin-bottom: 38px;
}

.journey-header h2 {
  margin: 0;
  color: var(--forest);
  font-size: 50px;
  line-height: 1.04;
  font-weight: 950;
  text-transform: uppercase;
}

.journey-viewport {
  overflow: visible;
}

.journey-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transform: translateX(var(--journey-x, 0px));
  transition: transform 120ms linear;
}

.journey-card {
  width: min(380px, calc(100vw - 56px));
  min-height: 340px;
  padding: 30px;
  border: 1px solid rgba(18, 56, 39, 0.12);
  border-radius: var(--radius-card);
  background:
    radial-gradient(260px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(114, 248, 70, 0.2), transparent 64%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
}

.journey-card:nth-child(2n) {
  background:
    radial-gradient(260px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(24, 200, 213, 0.18), transparent 64%),
    rgba(255, 255, 255, 0.8);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(34px);
}

.journey-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  font-weight: 950;
}

.journey-card h3 {
  margin: 74px 0 0;
  color: var(--forest);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 950;
}

.journey-card p {
  margin: 16px 0 0;
  color: rgba(32, 48, 38, 0.72);
}

.journey-progress {
  height: 8px;
  margin-top: 58px;
  border-radius: 999px;
  background: rgba(18, 56, 39, 0.12);
  overflow: hidden;
}

.journey-progress span {
  display: block;
  width: calc(var(--journey-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--coral));
}

.service-home-section {
  background: var(--white);
}

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

.service-grid-home {
  grid-template-columns: repeat(7, minmax(210px, 1fr));
  overflow-x: auto;
  padding: 6px 2px 22px;
  scroll-snap-type: x mandatory;
}

.service-card,
.tool-card,
.workflow-grid article,
.outcome-grid article,
.team-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(39, 63, 43, 0.12);
  border-radius: var(--radius-card);
  background:
    radial-gradient(260px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(114, 248, 70, 0.18), transparent 64%),
    var(--canvas);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(0);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
  scroll-snap-align: start;
  overflow: hidden;
}

.service-card:hover,
.tool-card:hover,
.workflow-grid article:hover,
.outcome-grid article:hover,
.team-card:hover {
  border-color: rgba(104, 239, 63, 0.7);
  background:
    radial-gradient(300px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(24, 200, 213, 0.18), transparent 66%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card svg,
.tool-card svg,
.workflow-grid svg,
.outcome-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: var(--lime-2);
}

.service-card h3,
.tool-card h3,
.workflow-grid h3,
.outcome-grid h3,
.team-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 920;
}

.service-card p,
.tool-card p,
.workflow-grid p,
.outcome-grid p,
.team-card p {
  margin: 14px 0 0;
  color: rgba(48, 50, 42, 0.72);
}

.service-card-accent {
  background: var(--forest);
  color: var(--white);
}

.service-card-accent h3,
.service-card-accent p,
.service-card-accent svg {
  color: var(--white);
}

.image-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.image-stack img:nth-child(2) {
  margin-bottom: 56px;
}

.privacy-home {
  background: var(--canvas);
}

.privacy-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
}

.privacy-band h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
}

.privacy-band p {
  max-width: 760px;
  color: rgba(48, 50, 42, 0.72);
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.94), rgba(24, 126, 77, 0.9)),
    conic-gradient(from 120deg at 70% 40%, rgba(114, 248, 70, 0.42), rgba(24, 200, 213, 0.32), rgba(255, 129, 95, 0.24), rgba(114, 248, 70, 0.42));
  padding: 94px 0;
}

.final-cta-inner {
  justify-content: space-between;
}

.final-cta h2 {
  max-width: 760px;
  font-size: 52px;
}

.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 112px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before,
.contact-hero::before {
  content: attr(data-page-word);
  position: absolute;
  left: -2vw;
  top: 18%;
  z-index: 0;
  color: rgba(18, 56, 39, 0.075);
  font-size: min(18vw, 250px);
  line-height: 0.8;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(calc(var(--page-drift, 0) * -10vw));
  pointer-events: none;
}

.page-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(114, 248, 70, 0.34), transparent 34%),
    radial-gradient(circle at 22% 76%, rgba(24, 200, 213, 0.22), transparent 30%);
  filter: blur(24px);
  animation: shaderDrift 26s linear infinite;
  pointer-events: none;
}

.dark-page-hero {
  color: var(--forest);
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.94), rgba(232, 251, 223, 0.9)),
    conic-gradient(from 210deg at 76% 30%, rgba(114, 248, 70, 0.34), rgba(24, 200, 213, 0.28), rgba(255, 242, 191, 0.28), rgba(114, 248, 70, 0.34));
}

.light-page-hero {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 239, 0.94)),
    conic-gradient(from 160deg at 74% 34%, rgba(114, 248, 70, 0.25), rgba(24, 200, 213, 0.2), rgba(255, 129, 95, 0.12), rgba(114, 248, 70, 0.25));
}

.page-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 52px;
}

.page-hero-layout > :first-child {
  transform: translate3d(0, calc(var(--page-drift, 0) * 22px), 0);
  transition: transform 120ms linear;
}

.page-hero-layout > :last-child {
  transform:
    perspective(1100px)
    rotateX(calc(5deg - var(--page-drift, 0) * 2deg))
    rotateY(calc(-8deg + var(--page-drift, 0) * 8deg))
    translate3d(0, calc(var(--page-drift, 0) * -42px), 0);
  transition: transform 120ms linear;
}

.page-hero h1 {
  max-width: 830px;
  color: inherit;
  font-size: 64px;
  line-height: 0.98;
}

.dark-page-hero p {
  color: rgba(32, 48, 38, 0.72);
}

.dark-page-hero .eyebrow {
  color: var(--lime-2);
}

.light-page-hero p {
  color: rgba(48, 50, 42, 0.72);
}

.mini-3d-panel,
.comparison-capsule,
.profile-stat-panel {
  min-height: 300px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.mini-3d-panel {
  color: var(--forest);
  background:
    radial-gradient(240px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(114, 248, 70, 0.26), transparent 64%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 251, 223, 0.78));
  border-color: rgba(18, 56, 39, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.mini-3d-panel > span {
  display: block;
  color: var(--lime-2);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-bars {
  height: 220px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  transform: rotateX(58deg) rotateZ(-24deg);
  transform-style: preserve-3d;
}

.matrix-bars i {
  display: block;
  width: 18%;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: var(--lime);
  box-shadow: 0 18px 38px rgba(104, 239, 63, 0.26);
  animation: barPulse 2.8s ease-in-out infinite;
}

.matrix-bars i:nth-child(1) {
  --h: 62%;
}

.matrix-bars i:nth-child(2) {
  --h: 84%;
  animation-delay: -0.4s;
}

.matrix-bars i:nth-child(3) {
  --h: 45%;
  animation-delay: -0.9s;
}

.matrix-bars i:nth-child(4) {
  --h: 74%;
  animation-delay: -1.3s;
}

.matrix-bars i:nth-child(5) {
  --h: 92%;
  animation-delay: -1.8s;
}

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

.detail-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(18, 56, 39, 0.12);
  border-radius: var(--radius-card);
  background:
    radial-gradient(260px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(114, 248, 70, 0.2), transparent 64%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(18, 56, 39, 0.08);
  overflow: hidden;
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.detail-row:hover {
  border-color: rgba(114, 248, 70, 0.62);
  box-shadow: 0 28px 76px rgba(18, 56, 39, 0.14);
}

.detail-row svg {
  width: 42px;
  height: 42px;
  color: var(--lime-2);
}

.detail-row h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.detail-row p {
  color: rgba(48, 50, 42, 0.72);
}

.detail-row-featured {
  grid-column: span 2;
  background:
    radial-gradient(420px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(114, 248, 70, 0.2), transparent 64%),
    linear-gradient(135deg, #123827, #1d6541);
  color: var(--white);
}

.detail-row-featured h2,
.detail-row-featured p,
.detail-row-featured svg {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.timeline-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.timeline-list span {
  color: var(--lime);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.timeline-list strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.15;
}

.timeline-list p {
  grid-column: 2;
  margin: -20px 0 0;
}

.comparison-capsule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.comparison-capsule div {
  min-height: 142px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--canvas);
}

.comparison-capsule span {
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-capsule strong {
  display: block;
  margin-top: 12px;
  color: var(--forest);
  font-size: 23px;
  line-height: 1.12;
}

.comparison-capsule svg {
  color: var(--lime-2);
}

.compare-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-column {
  padding: 36px;
  border-radius: var(--radius-card);
}

.danger-column {
  color: var(--white);
  background: #31251f;
}

.success-column {
  color: var(--forest);
  background: var(--mint);
}

.compare-column h2 {
  color: inherit;
  font-size: 36px;
}

.metric-list,
.benefit-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
}

.metric-list li,
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.1);
}

.success-column .benefit-list li {
  background: rgba(255, 255, 255, 0.72);
}

.metric-list strong {
  flex: 0 0 120px;
  color: var(--coral);
  font-size: 22px;
  line-height: 1;
}

.metric-list span,
.benefit-list span {
  color: inherit;
}

.benefit-list svg {
  width: 22px;
  height: 22px;
  color: var(--lime-2);
  flex: 0 0 auto;
}

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

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

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

.dark-section .outcome-grid article {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.dark-section .outcome-grid h3,
.dark-section .outcome-grid p,
.dark-section .outcome-grid svg {
  color: var(--white);
}

.tool-orbit {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(18, 56, 39, 0.12);
  background:
    radial-gradient(circle at 50% 44%, rgba(114, 248, 70, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(223, 247, 255, 0.5));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.tool-orbit::before,
.tool-orbit::after {
  content: "";
  position: absolute;
  inset: 54px;
  border: 1px solid rgba(18, 56, 39, 0.18);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.tool-orbit::after {
  inset: 96px;
  border-color: rgba(24, 200, 213, 0.24);
  animation-direction: reverse;
  animation-duration: 15s;
}

.tool-dot {
  position: absolute;
  z-index: 1;
  min-width: 104px;
  padding: 13px 14px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--lime);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  animation: floatY 5s ease-in-out infinite;
}

.tool-dot.quickbooks {
  left: 9%;
  top: 22%;
}

.tool-dot.xero {
  right: 12%;
  top: 18%;
  animation-delay: -1s;
}

.tool-dot.dext {
  left: 18%;
  bottom: 18%;
  animation-delay: -2s;
}

.tool-dot.bill {
  right: 10%;
  bottom: 24%;
  animation-delay: -3s;
}

.tool-mark {
  display: inline-grid;
  place-items: center;
  min-height: 58px;
  min-width: 120px;
  margin-bottom: 28px;
  padding: 10px 14px;
  border-radius: var(--radius-card);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  background: var(--white);
}

.tool-card {
  min-height: 300px;
  background:
    radial-gradient(260px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(24, 200, 213, 0.16), transparent 64%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(18, 56, 39, 0.08);
}

.workflow-grid article,
.outcome-grid article {
  min-height: 280px;
}

.tool-mark.quickbooks {
  color: #128a42;
}

.tool-mark.xero {
  color: #1689c9;
  font-size: 24px;
}

.tool-mark.dext {
  color: #ff8c00;
  font-size: 24px;
}

.tool-mark.bill {
  color: #777;
  font-size: 24px;
}

.profile-stat-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  background:
    radial-gradient(280px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(24, 200, 213, 0.16), transparent 64%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(223, 247, 255, 0.72));
  backdrop-filter: blur(18px);
}

.profile-stat-panel strong {
  display: block;
  color: var(--forest);
  font-size: 28px;
  line-height: 1.1;
  word-break: break-word;
}

.profile-stat-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--olive);
  font-weight: 800;
}

.long-copy {
  max-width: 720px;
}

.quote-panel {
  color: var(--forest);
  padding: 44px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 30%),
    linear-gradient(135deg, var(--lime), #dff7ff);
}

.quote-panel p {
  margin: 0;
  color: var(--forest);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 850;
}

.team-orbit {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(145deg, rgba(232, 251, 223, 0.78), rgba(223, 247, 255, 0.58));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.team-orbit span {
  position: absolute;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 22px 55px rgba(104, 239, 63, 0.28);
  animation: floatY 5s ease-in-out infinite;
}

.team-orbit span:nth-child(1) {
  left: 8%;
  top: 18%;
}

.team-orbit span:nth-child(2) {
  right: 12%;
  top: 12%;
  background: var(--cyan);
  animation-delay: -1s;
}

.team-orbit span:nth-child(3) {
  left: 30%;
  bottom: 18%;
  background: var(--white);
  animation-delay: -2s;
}

.team-orbit span:nth-child(4) {
  right: 24%;
  bottom: 12%;
  animation-delay: -3s;
}

.team-orbit span:nth-child(5) {
  left: 42%;
  top: 42%;
  width: 54px;
  height: 54px;
  background: var(--mint);
  animation-delay: -4s;
}

.team-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--lime-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card {
  min-height: 330px;
  background:
    radial-gradient(280px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(114, 248, 70, 0.18), transparent 64%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(18, 56, 39, 0.08);
}

.team-card:nth-child(2n) {
  background:
    radial-gradient(280px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(24, 200, 213, 0.16), transparent 64%),
    rgba(255, 255, 255, 0.78);
}

.contact-hero {
  min-height: calc(100vh - var(--header-height));
  position: relative;
  padding: 86px 0 96px;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 239, 0.92)),
    conic-gradient(from 180deg at 76% 34%, rgba(114, 248, 70, 0.24), rgba(24, 200, 213, 0.18), rgba(255, 242, 191, 0.22), rgba(114, 248, 70, 0.24));
  overflow: hidden;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 50px;
  align-items: start;
}

.contact-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 850;
}

.contact-methods svg {
  width: 20px;
  height: 20px;
  color: var(--lime-2);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.contact-form,
.modal-form-shell {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(18, 56, 39, 0.12);
  background:
    radial-gradient(360px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(114, 248, 70, 0.18), transparent 64%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 239, 0.74));
  backdrop-filter: blur(22px) saturate(1.18);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  right: -92px;
  top: -92px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(114, 248, 70, 0.28), rgba(24, 200, 213, 0.12) 50%, transparent 72%);
  pointer-events: none;
}

.contact-form > *,
.modal-form-shell > * {
  position: relative;
  z-index: 1;
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 2px 10px;
}

.form-heading svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  color: var(--lime-2);
  background: rgba(114, 248, 70, 0.12);
  flex: 0 0 auto;
}

.form-heading h2,
.form-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.form-heading p {
  margin: 6px 0 0;
  color: var(--olive);
  font-size: 14px;
}

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

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(18, 56, 39, 0.11);
  border-radius: 16px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.lead-form textarea {
  min-height: 116px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--lime-2);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(104, 239, 63, 0.14);
}

.lead-form > .button-primary {
  justify-self: start;
  min-width: 230px;
  margin-top: 2px;
}

.lead-form > .button-primary[disabled] {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

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

.consent-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--olive) !important;
  font-weight: 650 !important;
  text-transform: none !important;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  flex: 0 0 auto;
}

.consent-row a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-weight: 760;
}

.form-status.is-success {
  color: var(--lime-2);
}

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

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(114, 248, 70, 0.16), transparent 32%),
    rgba(10, 18, 12, 0.58);
  backdrop-filter: blur(18px);
}

.booking-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-dark);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(39, 63, 43, 0.12);
  border-radius: 999px;
  color: var(--forest);
  background: var(--white);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  margin: auto;
}

.modal-form-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  border-radius: 24px;
}

.modal-intro {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 18px;
  color: var(--forest);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(145deg, rgba(114, 248, 70, 0.82), rgba(223, 247, 255, 0.9)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.7), transparent 32%);
  overflow: hidden;
}

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

.modal-intro::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 28px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(18, 56, 39, 0.16);
  border-radius: 50%;
  box-shadow:
    90px 70px 0 -38px rgba(255, 255, 255, 0.36),
    170px 112px 0 -58px rgba(18, 56, 39, 0.08);
  pointer-events: none;
}

.modal-intro span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-intro h2 {
  margin: 88px 0 14px;
  font-size: 42px;
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-intro p {
  margin: 0;
  color: rgba(32, 48, 38, 0.72);
  font-weight: 700;
}

.modal-mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.modal-mini-metrics strong {
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--forest);
  font-size: 12px;
  line-height: 1;
}

.policy-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.policy-aside {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  padding: 26px;
  border: 1px solid rgba(39, 63, 43, 0.12);
  border-radius: var(--radius-card);
  background: var(--canvas);
}

.policy-aside strong {
  display: block;
  color: var(--forest);
  font-size: 13px;
  text-transform: uppercase;
}

.policy-aside p {
  margin: 7px 0 22px;
  color: rgba(48, 50, 42, 0.72);
  word-break: break-word;
}

.policy-content {
  max-width: 820px;
}

.policy-content h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.policy-content p {
  margin: 0 0 34px;
  color: rgba(48, 50, 42, 0.75);
  font-size: 17px;
}

.narrow-hero {
  max-width: 930px;
}

.thank-you-page {
  background: var(--forest);
}

.thank-you-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you-panel {
  width: min(660px, 100%);
  padding: 48px;
  text-align: center;
}

.thank-you-panel .brand-logo {
  margin: 0 auto 24px;
}

.thank-you-panel h1 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 950;
}

.thank-you-panel p:not(.eyebrow) {
  color: rgba(48, 50, 42, 0.72);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #070b07;
  padding: 34px 0 98px;
}

.footer-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-shell strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
}

.footer-shell p {
  margin: 8px 0 0;
}

.footer-shell p span {
  display: inline-block;
  min-width: 190px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-shell a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-socials,
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials {
  margin-top: 18px;
}

.contact-socials {
  margin-top: 24px;
}

.social-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(114, 248, 70, 0.6);
  background: rgba(114, 248, 70, 0.16);
}

.social-pill svg {
  width: 17px;
  height: 17px;
  color: var(--lime);
}

.contact-socials .social-pill {
  color: var(--forest);
  border-color: rgba(18, 56, 39, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(18, 56, 39, 0.07);
}

.contact-socials .social-pill svg {
  color: var(--lime-2);
}

.footer-note {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroTypeDrift {
  to {
    transform: translate(-50%, -50%);
  }
}

@keyframes cinematicBreath {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.14) translate3d(2%, -1%, 0);
  }
}

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

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  45% {
    opacity: 1;
    transform: translate(-50%, 14px);
  }
}

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

@keyframes barPulse {
  0%,
  100% {
    transform: translateZ(0) scaleY(1);
  }

  50% {
    transform: translateZ(28px) scaleY(1.08);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-container);
    background: rgba(255, 255, 255, 0.94);
    padding: 14px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero-layout,
  .page-hero-layout,
  .split-section,
  .split-section.reverse,
  .story-layout,
  .contact-layout,
  .process-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-right: 0;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-stack {
    min-height: 760px;
  }

  .proof-grid,
  .outcome-grid,
  .tool-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-board,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .privacy-band,
  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .registration-line,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
  }

  .modal-form-shell {
    grid-template-columns: 1fr;
  }

  .modal-intro {
    min-height: auto;
  }

  .modal-intro h2 {
    margin-top: 48px;
    font-size: 34px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 82px;
  }

  .section-shell,
  .footer-shell,
  .footer-note {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 0 14px;
    gap: 12px;
  }

  .brand-logo {
    width: 78px;
    height: 58px;
  }

  .hero-layout {
    padding: 48px 0 64px;
  }

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

  .registration-line {
    gap: 7px;
    padding: 8px;
  }

  .registration-line div {
    min-height: auto;
  }

  .page-hero h1,
  .contact-copy h1 {
    font-size: 38px;
  }

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

  .page-hero::before,
  .contact-hero::before {
    top: 14%;
    font-size: 34vw;
  }

  .section-heading h2,
  .story-copy h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .hero-lede,
  .hero-copy p,
  .page-hero p,
  .section-heading p,
  .contact-copy p,
  .story-copy p {
    font-size: 16px;
  }

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

  .hero-giant-type {
    top: 58%;
    font-size: 33vw;
  }

  .three-canvas {
    height: 420px;
  }

  .hero-finance-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
  }

  .scene-caption {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
  }

  .proof-grid,
  .service-grid,
  .service-detail-list,
  .outcome-grid,
  .tool-grid,
  .team-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: 120px;
    padding: 24px;
  }

  .kinetic-gallery {
    min-height: auto;
  }

  .gallery-layout {
    padding: 66px 0;
  }

  .gallery-copy h2 {
    font-size: 36px;
  }

  .gallery-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .gallery-frame {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none !important;
  }

  .section-block {
    padding: 66px 0;
  }

  .mission-panel,
  .quote-panel,
  .privacy-band,
  .compare-column,
  .contact-form,
  .modal-form-shell,
  .thank-you-panel {
    padding: 24px;
  }

  .story-stage {
    height: 440px;
  }

  .horizontal-journey {
    height: auto;
  }

  .scroll-story {
    height: 210vh;
  }

  .journey-pin {
    position: relative;
    min-height: auto;
    padding: 66px 0;
  }

  .story-pin {
    position: sticky;
    top: 0;
    min-height: 100vh;
  }

  .scroll-device {
    inset: 72px 0 20px;
    transform:
      rotateX(calc(16deg - var(--story-progress, 0) * 16deg))
      rotateY(calc(-10deg + var(--story-progress, 0) * 10deg))
      translateY(calc(34px - var(--story-progress, 0) * 58px))
      scale(calc(0.82 + var(--story-progress, 0) * 0.18));
  }

  .device-shell {
    border-width: 3px;
    border-radius: 22px;
  }

  .device-screen {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 110px;
    padding: 12px;
  }

  .screen-hero-card {
    grid-row: auto;
    padding: 18px;
  }

  .screen-hero-card strong {
    font-size: 30px;
  }

  .scroll-cue-card {
    display: none;
  }

  .journey-header h2 {
    font-size: 34px;
  }

  .journey-track {
    width: auto;
    flex-direction: column;
    transform: none !important;
  }

  .journey-card,
  .journey-card:nth-child(2n) {
    width: 100%;
    min-height: 250px;
    transform: none;
  }

  .journey-card h3 {
    margin-top: 48px;
    font-size: 28px;
  }

  .journey-progress {
    display: none;
  }

  .detail-row {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .detail-row-featured {
    grid-column: auto;
  }

  .detail-row h2 {
    font-size: 28px;
  }

  .comparison-capsule {
    grid-template-columns: 1fr;
  }

  .comparison-capsule svg {
    transform: rotate(90deg);
  }

  .metric-list li,
  .timeline-list li {
    grid-template-columns: 1fr;
  }

  .timeline-list p {
    grid-column: auto;
    margin: 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:nth-child(2) {
    margin-bottom: 0;
  }

  .booking-modal {
    padding: 10px;
  }

  .booking-dialog {
    max-height: calc(100vh - 20px);
    border-radius: 18px;
  }

  .modal-form-shell {
    padding: 14px;
    border-radius: 18px;
  }

  .modal-intro {
    padding: 20px;
    border-radius: 14px;
  }

  .modal-intro h2 {
    margin-top: 42px;
    font-size: 28px;
  }

  .lead-form > .button-primary {
    width: 100%;
  }

  .footer-shell {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
