:root {
  --navy: #243b5a;
  --navy-deep: #162a43;
  --green: #00b67a;
  --green-dark: #087b59;
  --lime: #C2FF08;
  --ink: #15202b;
  --muted: #64716e;
  --mist: #edf2ef;
  --canvas: #f6f8f6;
  --line: #d9e2dd;
  --paper: #fff;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.2, .75, .22, 1);
  --shadow: 0 20px 54px rgba(24, 46, 70, .12);
  --shell: min(1180px, calc(100vw - 48px));
  --section-title-size: clamp(2.25rem, 3vw, 3.25rem);
  --section-space-y: clamp(68px, 7vw, 92px);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Google Sans Flex", "Avenir Next", Arial, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  background: var(--lime);
  color: var(--navy-deep);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(36, 59, 90, .1);
  background: rgba(246, 248, 246, .88);
  backdrop-filter: blur(20px) saturate(130%);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  transition: height 250ms var(--ease);
}

.site-header.is-scrolled .header-inner { height: 64px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

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

.division {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--green-dark);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #3f4d59;
  font-size: .83rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-cta { margin-left: 22px; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--navy);
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 70px 0 0;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  padding: 26px 24px;
  background: var(--paper);
}

.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav > a:not(.button) { padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 1.2rem; font-weight: 600; }
.mobile-nav .button { margin-top: 26px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 700;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover { transform: none; }
.button-small { min-height: 40px; padding-inline: 16px; }
.button-primary { background: var(--navy); color: var(--paper); box-shadow: 0 12px 30px rgba(22, 42, 67, .18); }
.button-primary:hover { background: var(--green-dark); box-shadow: 0 14px 32px rgba(0, 143, 97, .26); }
.button-outline { border-color: rgba(36, 59, 90, .22); color: var(--navy); }
.button-outline:hover { background: var(--navy); color: var(--paper); }
.button-light { background: var(--paper); color: var(--navy); }
.button-lime { background: var(--lime); color: var(--navy-deep); }
.button-lime:hover { background: #C2FF08; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(36, 59, 90, .25);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
}

.text-link span { transition: transform 220ms var(--ease); }
.text-link:hover span { transform: translate(3px, 2px); }
.text-link-light { border-color: rgba(255,255,255,.25); color: var(--paper); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .035em;
  text-transform: none;
}

.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--lime); }

.hero {
  --hero-inset: max(24px, calc((100vw - 1180px) / 2));
  position: relative;
  width: 100%;
  height: clamp(620px, 56.25vw, 760px);
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
  box-shadow: 0 26px 70px rgba(22, 42, 67, .18);
}

.hero::after {
  position: absolute;
  z-index: 9;
  inset: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.18);
  content: "";
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 26, 43, .9) 0%, rgba(10, 26, 43, .72) 34%, rgba(10, 26, 43, .24) 62%, rgba(10, 26, 43, .05) 100%),
    linear-gradient(180deg, rgba(10, 26, 43, .05) 48%, rgba(10, 26, 43, .78) 100%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 56px;
  left: var(--hero-inset);
  max-width: 590px;
}

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

.hero h1 {
  max-width: 590px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.15rem, 5.1vw, 4.95rem);
  font-weight: 520;
  letter-spacing: -.035em;
  line-height: 1;
  text-wrap: balance;
}

.hero h1 em { color: var(--lime); font-style: normal; }

.hero-lead {
  max-width: 510px;
  margin: 20px 0 19px;
  color: rgba(255,255,255,.78);
  font-size: clamp(.94rem, 1.15vw, 1.06rem);
  line-height: 1.56;
}

.hero-actions { display: flex; align-items: center; gap: 20px; }

.video-toggle {
  position: absolute;
  z-index: 7;
  top: 22px;
  right: var(--hero-inset);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  background: rgba(12, 30, 47, .48);
  color: var(--paper);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms var(--ease);
}

.video-toggle:hover { background: rgba(0, 143, 97, .92); transform: scale(1.04); }
.video-toggle span { transform: translateY(-1px); font-size: .78rem; font-weight: 700; letter-spacing: -.08em; }

.unit-track {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  transition: opacity 480ms ease;
}

.hero.is-analyzing .unit-track { opacity: 1; }

.unit-track-fill {
  fill: var(--lime);
  fill-opacity: .075;
  stroke: none;
}

.unit-track-corners {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 5px rgba(194, 255, 8,.58));
}

.unit-track-label {
  filter: drop-shadow(0 4px 8px rgba(8,25,38,.28));
}

.unit-track-label rect { fill: var(--lime); }
.unit-track-label text {
  fill: var(--navy-deep);
  font-family: "Google Sans Flex", "Avenir Next", Arial, sans-serif;
  font-size: 8.5px;
  font-weight: 750;
  letter-spacing: 1.25px;
}

.yield-hud {
  position: absolute;
  z-index: 5;
  right: var(--hero-inset);
  bottom: 34px;
  width: 330px;
  padding: 18px 19px 16px;
  border: 1px solid rgba(194, 255, 8,.38);
  border-radius: 20px;
  background: rgba(10, 27, 43, .82);
  color: var(--paper);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 20px 50px rgba(7, 21, 35, .34);
}

.yield-hud-head, .yield-hud-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.yield-hud-head > span { color: rgba(255,255,255,.62); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.yield-hud-head > span i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(194, 255, 8,.12); }
.yield-hud-head > strong { color: var(--lime); font-size: .68rem; font-weight: 700; }

.yield-hud-value { position: relative; margin-top: 14px; }
.yield-hud-value > span { display: block; color: rgba(255,255,255,.54); font-size: .61rem; }
.yield-hud-value > strong { display: block; margin-top: 1px; font-size: 2.15rem; font-weight: 520; letter-spacing: -.045em; line-height: 1.1; }
.yield-hud-value > strong b { font: inherit; }
.yield-hud-value > em { position: absolute; right: 0; bottom: 5px; color: var(--lime); font-size: .7rem; font-style: normal; font-weight: 700; opacity: 0; transform: translateY(7px); }
.yield-hud-value.is-jumping > strong { animation: income-pop 420ms var(--ease); }
.yield-hud-value.is-jumping > em { animation: income-jump 700ms var(--ease); }

@keyframes income-pop {
  0% { transform: scale(.96); color: var(--paper); }
  45% { transform: scale(1.035); color: var(--lime); }
  100% { transform: scale(1); color: var(--paper); }
}

@keyframes income-jump {
  0% { opacity: 0; transform: translateY(7px); }
  25%, 62% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}

.yield-hud-progress { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; margin: 15px 0 11px; }
.yield-hud-progress span { height: 4px; border-radius: 999px; background: rgba(255,255,255,.15); transition: background 180ms ease, box-shadow 180ms ease; }
.yield-hud-progress span.is-earned { background: var(--lime); box-shadow: 0 0 8px rgba(194, 255, 8,.35); }
.yield-hud-foot { color: rgba(255,255,255,.52); font-size: .56rem; }
.yield-hud-foot b { color: var(--paper); font-size: .68rem; }

.benefit-bar {
  position: relative;
  z-index: 10;
  padding: 18px 0 14px;
  background: linear-gradient(180deg, rgba(238,242,244,.82), rgba(248,249,249,.45));
}

.benefit-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(36,59,90,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 38px rgba(36,59,90,.07);
  overflow: hidden;
}

.benefit-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-width: 0;
  min-height: 98px;
  margin: 0;
  padding: 18px 20px;
}

.benefit-item + .benefit-item::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background: rgba(36,59,90,.1);
  content: "";
}

.benefit-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0,182,122,.2);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(194, 255, 8,.2), rgba(0,182,122,.07));
  color: var(--green-dark);
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-copy { display: block; min-width: 0; }
.benefit-copy small {
  display: block;
  margin-bottom: 4px;
  color: #7b8786;
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.benefit-copy strong {
  display: block;
  color: var(--navy);
  font-size: clamp(.9rem, 1.05vw, 1.02rem);
  font-weight: 650;
  letter-spacing: -.018em;
  line-height: 1.2;
}

.benefit-copy em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .64rem;
  font-style: normal;
  line-height: 1.3;
}

.benefit-item-time .benefit-icon {
  border-color: rgba(36,59,90,.13);
  background: rgba(36,59,90,.055);
  color: var(--navy);
}

.section { padding-block: var(--section-space-y); }
.section-dark { width: calc(100% - 32px); margin-inline: auto; border-radius: 34px; background: var(--navy-deep); color: var(--paper); overflow: hidden; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2, .calculator-copy h2, .faq-layout h2, .contact-copy h2 {
  max-width: 860px;
  margin: 0;
  color: var(--navy-deep);
  font-size: var(--section-title-size);
  font-weight: 500;
  letter-spacing: -.028em;
  line-height: 1.07;
}

.split-heading > span {
  display: block;
  margin-bottom: .1em;
  color: var(--green-dark);
}

.split-heading {
  max-width: 820px;
  font-size: var(--section-title-size) !important;
  font-weight: 500 !important;
  letter-spacing: -.034em !important;
  line-height: 1.035 !important;
}

.section-dark .split-heading > span,
.contact-section .split-heading > span {
  color: var(--lime);
}

.section-head > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.62;
}

.section-head-light h2 { color: var(--paper); }
.section-head-light > p { color: rgba(255,255,255,.66); }

.yield-trace {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 18px;
}

.trace-line {
  position: absolute;
  top: 48px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.13);
}

.trace-line span { display: block; width: 0; height: 100%; background: var(--lime); transition: width 1.2s var(--ease); }
.yield-trace.is-visible .trace-line span { width: 100%; }

.trace-step {
  position: relative;
  z-index: 1;
  min-height: 232px;
  padding: 0 14px 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.55);
  cursor: default;
  transition: color 250ms ease, border-color 250ms ease, transform 250ms var(--ease);
}

.trace-step:hover, .trace-step.is-active { border-color: var(--lime); color: var(--paper); transform: translateY(-5px); }
.trace-number { display: block; margin-bottom: 12px; color: var(--lime); font-size: .63rem; font-weight: 700; letter-spacing: .15em; }
.trace-icon { display: grid; width: 56px; height: 56px; margin-bottom: 18px; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: var(--navy-deep); }
.trace-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.trace-step h3 { margin: 0 0 8px; font-size: 1.04rem; font-weight: 600; }
.trace-step p { margin: 0; color: rgba(255,255,255,.58); font-size: .8rem; line-height: 1.55; }

.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.project-card { display: flex; overflow: hidden; flex-direction: column; border: 1px solid rgba(36,59,90,.09); border-radius: var(--radius-md); background: var(--paper); box-shadow: 0 10px 34px rgba(36,59,90,.055); transition: transform 280ms var(--ease), box-shadow 280ms ease, border-color 280ms ease; }
.project-card:hover { border-color: rgba(8, 123, 89, .34); transform: translateY(-7px) scale(1.006); box-shadow: 0 26px 66px rgba(27, 54, 74, .15), 0 0 0 3px rgba(8, 123, 89, .045); }
.project-image { position: relative; height: 224px; overflow: hidden; border-radius: 16px 16px 0 0; background: var(--mist); }
.project-image::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 108, 78, .16)); content: ""; opacity: 0; pointer-events: none; transition: opacity 300ms ease; }
.project-card:hover .project-image::after { opacity: 1; }
.project-card-featured .project-image { height: 224px; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.project-card:hover img { transform: scale(1.035); }
.project-status, .project-use, .project-units { position: absolute; z-index: 2; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--navy); font-size: .7rem; font-weight: 650; letter-spacing: 0; text-transform: none; backdrop-filter: blur(8px); }
.project-status { top: 14px; left: 16px; }
.project-units { top: 14px; right: 16px; display: inline-flex; align-items: center; gap: 6px; }
.project-units i { color: var(--green-dark); font-size: .76rem; font-style: normal; }
.project-use { top: auto; right: 16px; bottom: 14px; background: var(--lime); color: var(--navy-deep); }
.project-body { display: flex; flex: 1; padding: 20px; flex-direction: column; background: var(--paper); }
.project-body > p { margin: 0 0 10px; color: var(--green-dark); font-size: .77rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.project-body h3 { margin: 0 0 8px; color: var(--navy-deep); font-size: clamp(1.3rem, 1.7vw, 1.6rem); font-weight: 600; letter-spacing: -.022em; line-height: 1.13; }
.project-tagline { display: block; min-height: 38px; margin-bottom: 16px; color: var(--muted); font-size: .76rem; line-height: 1.48; }
.project-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: auto; padding-block: 13px; border-block: 1px solid var(--line); }
.project-stats span + span { padding-left: 12px; border-left: 1px solid var(--line); }
.project-stats small { display: block; margin-bottom: 7px; color: var(--muted); font-size: .61rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.project-stats strong { display: block; color: var(--navy); font-size: .78rem; line-height: 1.28; }
.project-link { display: flex; justify-content: space-between; margin-top: 13px; color: var(--navy); font-size: .78rem; font-weight: 700; }
.project-link b { color: var(--green-dark); transition: transform 220ms var(--ease); }
.project-card:hover .project-link b { transform: translate(4px, -4px); }
.projects-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.projects-footer p { color: var(--muted); font-size: .9rem; }
.projects-footer strong { color: var(--navy); }
.projects-footer .button[disabled] {
  border-color: rgba(36, 59, 90, .18);
  background: rgba(255, 255, 255, .34);
  color: rgba(36, 59, 90, .48);
  cursor: not-allowed;
  box-shadow: none;
  opacity: .82;
  transform: none;
}
.projects-footer .button[disabled] > span[aria-hidden="true"]::before { transform: none; }

.calculator-section { width: calc(100% - 32px); margin-inline: auto; border-radius: 34px; background: var(--mist); }
.calculator-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 6vw, 70px); align-items: start; }
.calculator-copy { position: sticky; top: 94px; }
.calculator-copy > p:not(.eyebrow) { max-width: 510px; margin: 20px 0 30px; color: var(--muted); font-size: .94rem; line-height: 1.68; }
.context-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #cbd7d1; }
.context-list div { display: block; min-height: 116px; padding: 18px 20px 18px 0; border-bottom: 1px solid #cbd7d1; }
.context-list div:nth-child(even) { padding-right: 0; padding-left: 20px; }
.context-list div:nth-child(odd) { border-right: 1px solid #cbd7d1; }
.context-list span { display: block; margin-bottom: 9px; color: var(--green-dark); font-size: .72rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.context-list b { display: block; color: var(--navy); font-size: .88rem; font-weight: 540; letter-spacing: -.012em; line-height: 1.46; }

.calculator { padding: clamp(26px, 3vw, 34px); border: 1px solid rgba(36,59,90,.08); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 22px 60px rgba(36,59,90,.1); }
.calc-controls { display: grid; gap: 22px; }
.calc-controls label { display: grid; grid-template-columns: 1fr auto; gap: 10px; color: var(--navy); font-size: .83rem; font-weight: 700; }
.calc-controls output { color: var(--green-dark); font-variant-numeric: tabular-nums; }
input[type="range"] { width: 100%; height: 4px; margin: 0; border-radius: 0; appearance: none; background: #dbe3df; accent-color: var(--green); }
input[type="range"]::-webkit-slider-thumb { width: 22px; height: 22px; border: 5px solid var(--paper); border-radius: 50%; appearance: none; background: var(--green); box-shadow: 0 0 0 1px var(--green), 0 4px 12px rgba(0,143,97,.25); }
fieldset { margin: 0; padding: 0; border: 0; }
legend { margin-bottom: 12px; color: var(--navy); font-size: .83rem; font-weight: 700; }
.period-switch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.period-switch button { min-height: 44px; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: var(--muted); cursor: pointer; font-size: .78rem; font-weight: 700; }
.period-switch button.is-active { border-color: var(--navy); background: var(--navy); color: var(--paper); }
.calc-result { margin-top: 26px; padding: 20px 22px; border-radius: 18px; background: var(--navy); color: var(--paper); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.calc-result span, .calc-result small { display: block; color: rgba(255,255,255,.65); }
.calc-result span { font-size: .76rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.calc-result strong { display: block; margin-block: 5px 2px; color: var(--lime); font-size: clamp(2.2rem, 3.8vw, 3.35rem); font-weight: 500; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.calc-result small { font-size: .72rem; }
.projection { margin-top: 20px; }
.projection-labels { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 14px; color: var(--muted); font-size: .72rem; }
.projection-labels strong { color: var(--navy); text-align: right; }
.bars { display: flex; align-items: end; gap: 5px; height: 64px; border-bottom: 1px solid var(--line); }
.bars span { flex: 1; min-width: 3px; background: var(--green); transform-origin: bottom; animation: bar-in 650ms var(--ease) both; }
@keyframes bar-in { from { transform: scaleY(0); } }
.calc-disclaimer { margin: 16px 0 0; color: var(--muted); font-size: .66rem; line-height: 1.5; }

.calc-contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  padding: 0 8px 0 20px;
  border: 0;
  border-radius: 999px;
  background: #eef7f1;
  color: var(--navy);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}
.calc-contact-button i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  transition: background 220ms ease, transform 220ms var(--ease);
}
.calc-contact-button i::before {
  width: 17px;
  height: 17px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
}
.calc-contact-button:hover { background: #e2f4e8; box-shadow: inset 0 0 0 1px rgba(8, 123, 89, .12); }
.calc-contact-button:hover i { background: var(--navy); transform: rotate(5deg); }

.calc-contact-modal {
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--navy);
  box-shadow: 0 34px 110px rgba(9, 30, 49, .28);
  overflow: auto;
}
.calc-contact-modal::backdrop {
  background: rgba(13, 29, 47, .58);
  backdrop-filter: blur(10px) saturate(90%);
}
.calc-contact-modal[open] { animation: calc-modal-in 360ms var(--ease) both; }
@keyframes calc-modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
}
.calc-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 520px;
  background: var(--paper);
}
.calc-modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(36, 59, 90, .12);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  color: var(--navy);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 200ms ease, transform 200ms ease;
}
.calc-modal-close span,
.calc-modal-close span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}
.calc-modal-close span::after { transform: rotate(90deg); }
.calc-modal-close:hover { background: var(--lime); transform: rotate(5deg); }
.calc-modal-intro {
  display: flex;
  flex-direction: column;
  padding: 54px 38px 38px;
  background: var(--navy-deep);
  color: #fff;
}
.calc-modal-kicker {
  margin: 0 0 22px;
  color: var(--lime);
  font-size: .72rem;
  font-weight: 700;
}
.calc-modal-intro h2 {
  max-width: 380px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 510;
  letter-spacing: -.04em;
  line-height: .98;
}
.calc-modal-intro > p:not(.calc-modal-kicker) {
  max-width: 340px;
  margin: 22px 0 30px;
  color: rgba(255,255,255,.66);
  font-size: .84rem;
  line-height: 1.6;
}
.calc-modal-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.13);
}
.calc-modal-summary div { padding: 15px 12px 14px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.calc-modal-summary div:nth-child(even) { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.13); }
.calc-modal-summary span,
.calc-modal-summary strong { display: block; }
.calc-modal-summary span { margin-bottom: 5px; color: rgba(255,255,255,.5); font-size: .64rem; }
.calc-modal-summary strong { color: #fff; font-size: .86rem; font-weight: 620; font-variant-numeric: tabular-nums; }
.calc-modal-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 62px 42px 42px;
}
.calc-modal-form > label:not(.consent),
.calc-modal-fields label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
}
.calc-modal-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-modal-form input:not([type="checkbox"]) {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8faf9;
  color: var(--navy);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.calc-modal-form input:not([type="checkbox"]):focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,182,122,.09);
}
.calc-modal-consent { align-items: flex-start; margin-top: 2px; color: var(--muted); font-size: .64rem; line-height: 1.45; }
.calc-modal-consent a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.calc-modal-submit { width: 100%; justify-content: space-between; margin-top: 2px; }
.calc-modal-status { min-height: 1.1em; margin: -6px 0 0; color: var(--green-dark); font-size: .68rem; line-height: 1.4; }

.projects-footer [data-project-load-more] > span[aria-hidden="true"]::before {
  transform: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stay-section {
  position: relative;
  display: block;
  min-height: 610px;
  margin-block: clamp(76px, 8vw, 110px);
  border: 1px solid rgba(17, 60, 51, .12);
  border-radius: 38px;
  background: #103d35;
  color: var(--paper);
  box-shadow: 0 34px 90px rgba(18, 57, 47, .16);
  overflow: hidden;
}

.stay-image { position: absolute; inset: 0; min-height: 100%; overflow: hidden; border-radius: inherit; }
.stay-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 31, 28, .03) 34%, rgba(7, 38, 32, .42) 64%, rgba(7, 38, 32, .72) 100%);
  content: "";
}
.stay-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; transition: transform 900ms var(--ease); }
.stay-section:hover .stay-image img { transform: scale(1.018); }

.stay-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(520px, 46%);
  min-height: 554px;
  margin: 28px 28px 28px auto;
  padding: clamp(42px, 4.2vw, 58px);
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(0, 119, 86, .9), rgba(0, 96, 72, .8));
  -webkit-backdrop-filter: blur(16px) saturate(118%);
  backdrop-filter: blur(16px) saturate(118%);
  box-shadow: 0 24px 56px rgba(4, 35, 29, .24), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.stay-copy .eyebrow { margin-bottom: 18px; color: rgba(255, 255, 255, .78); }
.stay-number { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px; align-items: end; margin: 0 0 24px; padding-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.stay-number strong { color: var(--lime); font-size: clamp(5.5rem, 7.5vw, 7.4rem); font-weight: 510; letter-spacing: -.065em; line-height: .76; }
.stay-number span { padding-bottom: 3px; font-size: clamp(1.35rem, 1.75vw, 1.75rem); font-weight: 520; letter-spacing: -.022em; line-height: 1.1; }
.stay-copy > p:not(.eyebrow) { max-width: 450px; margin: 0 0 24px; color: rgba(255,255,255,.82); font-size: .94rem; line-height: 1.65; }
.stay-copy .button { align-self: flex-start; min-height: 54px; padding-inline: 24px; border: 0; border-radius: 999px; }
.stay-copy > small { max-width: 440px; margin-top: 18px; color: rgba(255,255,255,.56); font-size: .68rem; line-height: 1.5; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(48px, 6vw, 74px); }
.faq-lead { max-width: 430px; color: var(--muted); line-height: 1.7; }
.faq-list { border-top: 0; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.78); }
.faq-list details + details { margin-top: 8px; }
.faq-list summary { position: relative; padding: 18px 56px 18px 18px; color: var(--navy); cursor: pointer; font-size: .96rem; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 11px; right: 14px; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); content: "+"; font-size: 1.2rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; margin: -2px 56px 18px 18px; color: var(--muted); font-size: .84rem; line-height: 1.6; }

.contact-section { width: calc(100% - 32px); margin: 0 auto 16px; padding-block: clamp(68px, 7vw, 92px); border-radius: 34px; background: var(--navy-deep); color: var(--paper); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(44px, 6vw, 72px); }
.contact-copy h2 { color: var(--paper); }
.contact-copy > p:not(.eyebrow) { max-width: 550px; margin: 18px 0 22px; color: rgba(255,255,255,.68); line-height: 1.6; }
.direct-contact { display: grid; gap: 1px; max-width: 520px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.055); overflow: hidden; }
.direct-contact a { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; align-items: center; padding: 15px 16px; background: rgba(255,255,255,.025); transition: background 200ms ease; }
.direct-contact a:hover { background: rgba(255,255,255,.1); }
.direct-contact small { display: block; margin-bottom: 3px; color: var(--lime); font-size: .66rem; font-weight: 620; letter-spacing: 0; text-transform: none; }
.direct-contact strong { font-size: 1.02rem; font-weight: 560; letter-spacing: -.012em; }
.direct-contact-icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: rgba(194, 255, 8, .1); color: var(--lime); }
.direct-contact-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.direct-contact-copy { min-width: 0; }
.contact-promise { display: flex; gap: 12px; margin-top: 20px; }
.contact-promise > span { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--navy-deep); font-size: .75rem; }
.contact-promise p { margin: 1px 0 0; color: rgba(255,255,255,.58); font-size: .78rem; line-height: 1.5; }
.contact-promise strong { display: block; margin-bottom: 3px; color: var(--paper); }

.contact-form { padding: clamp(26px, 3vw, 34px); border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 22px 60px rgba(0,0,0,.16); }
.form-heading { display: flex; justify-content: flex-start; gap: 18px; align-items: baseline; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--green-dark); font-size: .72rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.form-heading strong { color: var(--navy); font-size: 1.42rem; font-weight: 590; letter-spacing: -.02em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-size: .76rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d9e2dd; border-radius: 11px; background: #f7f9f8; color: var(--ink); outline: none; font-size: .9rem; letter-spacing: 0; text-transform: none; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.contact-form input:not([type="checkbox"]), .contact-form select { height: 43px; padding-inline: 12px; }
.contact-form textarea { padding: 12px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); background: var(--paper); box-shadow: 0 0 0 3px rgba(0,182,122,.1); }
.contact-form > label:not(.consent) { margin-top: 18px; }
.consent { grid-template-columns: 20px 1fr !important; gap: 10px !important; align-items: start; margin: 18px 0 !important; color: var(--muted) !important; font-size: .65rem !important; font-weight: 400 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.consent a { color: var(--green-dark); text-decoration: underline; }
.contact-form .button { width: 100%; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--green-dark); font-size: .76rem; }

.site-footer { padding: 46px 0 20px; background: #101f32; color: var(--paper); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr .8fr 1fr; gap: 40px; padding-bottom: 34px; }
.footer-brand img { width: 176px; filter: brightness(0) invert(1); }
.footer-brand > span { display: inline-block; margin-top: 14px; color: var(--lime); font-size: .72rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.5); font-size: .78rem; line-height: 1.6; }
.footer-main h2 { margin: 0 0 16px; color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.footer-main address, .footer-main p, .footer-main a { display: block; margin: 0 0 9px; color: rgba(255,255,255,.72); font-size: .77rem; font-style: normal; line-height: 1.6; }
.footer-main a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .66rem; line-height: 1.5; }
.footer-bottom p { max-width: 650px; margin: 0; text-align: right; }
.mobile-contact-bar { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Premium investment division — hero and first information sequence */
.site-header {
  border-bottom-color: rgba(22, 42, 67, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 34px rgba(22, 42, 67, .055);
}

.header-inner { height: 80px; }
.site-header.is-scrolled .header-inner { height: 70px; }
.brand img { width: 168px; }

.division {
  position: relative;
  padding: 7px 10px 7px 25px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f2;
  color: var(--navy);
  letter-spacing: .16em;
}

.division::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 182, 122, .1);
  content: "";
  transform: translateY(-50%);
}

.desktop-nav a { color: #334358; font-size: .8rem; }
.desktop-cta {
  gap: 12px;
  min-height: 52px;
  margin-left: 26px;
  padding: 5px 6px 5px 21px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(22, 42, 67, .13);
}

.desktop-cta i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--lime);
  font-style: normal;
  transition: transform 220ms var(--ease);
}

.desktop-cta:hover {
  background: #193454;
  box-shadow: 0 0 0 5px rgba(36, 59, 90, .08), 0 15px 34px rgba(22, 42, 67, .18);
}
.desktop-cta:hover i { background: rgba(194, 255, 8, .14); }

.hero {
  height: clamp(660px, calc(100vh - 80px), 820px);
  min-height: 660px;
  aspect-ratio: auto;
  background: #091a2a;
  box-shadow: none;
}

.hero-video {
  right: auto;
  left: 0;
  width: 106%;
  object-fit: cover;
  object-position: center center;
  background: #0a1929;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-video-shade {
  background:
    linear-gradient(90deg, rgba(7, 23, 39, .94) 0%, rgba(7, 23, 39, .76) 24%, rgba(7, 23, 39, .2) 41%, rgba(7, 23, 39, 0) 52%),
    linear-gradient(180deg, rgba(7, 23, 39, .05) 55%, rgba(7, 23, 39, .56) 100%);
}

.hero-copy {
  top: 50%;
  max-width: 620px;
  transform: translateY(-50%);
}

.hero h1 { max-width: 640px; font-size: clamp(3.3rem, 4.8vw, 4.85rem); letter-spacing: -.035em; line-height: 1.01; }
.hero h1 > span { white-space: nowrap; }
.hero-lead { max-width: 520px; margin: 25px 0 28px; line-height: 1.62; }
.eyebrow-hero { margin-bottom: 36px; }

.hero-actions { gap: 12px; }
.hero-actions .button {
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 999px;
  font-size: .9rem;
  box-shadow: 0 14px 34px rgba(5, 20, 32, .2);
}

.hero-actions .button:hover { box-shadow: 0 0 0 5px rgba(194, 255, 8, .1), 0 16px 38px rgba(5, 20, 32, .24); }

.button-hero-secondary {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(10, 28, 45, .52);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.button-hero-secondary:hover { border-color: rgba(194, 255, 8, .7); background: rgba(23, 50, 73, .82); }

.video-toggle {
  top: auto;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(10, 28, 45, .3);
  opacity: .72;
}

.video-toggle:hover { background: rgba(10, 28, 45, .68); opacity: 1; transform: none; }

.unit-track-fill {
  fill-opacity: .11;
  animation: unit-fill-pulse 4.4s ease-in-out infinite;
}

.unit-track-corners {
  stroke-width: 3.2;
  filter: drop-shadow(0 0 7px rgba(194, 255, 8, .82));
}

.unit-track {
  right: auto;
  left: 0;
  width: 106%;
  transform: none;
}

.unit-track-scan { pointer-events: none; }
.unit-track-scan rect {
  opacity: 0;
  transform-box: view-box;
  transform-origin: center;
  animation: unit-scan 4.4s cubic-bezier(.32, 0, .18, 1) infinite;
}

@keyframes unit-fill-pulse {
  0%, 100% { fill-opacity: .085; }
  35%, 64% { fill-opacity: .16; }
}

@keyframes unit-scan {
  0%, 12% { opacity: 0; transform: translateX(0) skewX(-8deg); }
  18% { opacity: 1; }
  58% { opacity: 1; transform: translateX(1580px) skewX(-8deg); }
  64%, 100% { opacity: 0; transform: translateX(1580px) skewX(-8deg); }
}

.unit-income-stack, .unit-income-slot { pointer-events: none; }

.unit-income-badge {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: unit-income-in 620ms var(--ease) forwards;
  filter: drop-shadow(0 4px 7px rgba(5, 20, 32, .2));
}

.unit-income-badge rect {
  fill: rgba(194, 255, 8, .7);
  stroke: rgba(194, 255, 8, .96);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.unit-income-icon {
  fill: rgba(22, 42, 67, .08);
  stroke: var(--navy-deep);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.unit-income-badge text {
  fill: var(--navy-deep);
  font-family: "Google Sans Flex", "Avenir Next", Arial, sans-serif;
  font-size: 6.9px;
  font-weight: 720;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.unit-income-slot.is-leaving .unit-income-badge { animation: unit-income-out 940ms ease forwards; }

@keyframes unit-income-in {
  0% { opacity: 0; transform: scale(.72); }
  58% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes unit-income-out {
  0% { opacity: 1; transform: scale(1); }
  45% { opacity: .7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}

.yield-hud {
  top: 50%;
  right: var(--hero-inset);
  left: auto;
  bottom: auto;
  width: 360px;
  padding: 17px 18px 15px;
  border: 0;
  border-radius: 21px;
  background:
    linear-gradient(135deg, rgba(10, 27, 43, .58), rgba(27, 42, 57, .4)),
    rgba(10, 25, 40, .38);
  color: var(--paper);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
  backdrop-filter: blur(22px) saturate(115%);
  box-shadow: 0 18px 44px rgba(3, 15, 25, .25), inset 0 1px 0 rgba(255, 255, 255, .07);
  transform: translate3d(0, -50%, 0);
  transition: none;
}

.yield-hud::before {
  display: none;
}

.yield-hud-head { align-items: flex-start; }
.yield-property {
  display: grid;
  grid-template-columns: 9px auto;
  column-gap: 9px;
  align-items: center;
  color: var(--paper) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.yield-property > i { margin: 0 !important; }
.yield-property > i { background: var(--lime) !important; box-shadow: 0 0 0 4px rgba(194, 255, 8, .1) !important; }
.yield-property b { font-size: .7rem; font-weight: 720; letter-spacing: .005em; }
.yield-property b span { display: block; margin-top: 2px; }
.yield-hud-head > strong { padding: 5px 9px; border-radius: 999px; background: rgba(194, 255, 8, .12); color: var(--lime); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; }

.yield-hud-value { margin-top: 14px; }
.yield-hud-value > span { color: rgba(255, 255, 255, .53); font-size: .59rem; letter-spacing: .03em; }
.yield-hud-value > strong { margin-top: 3px; color: var(--paper); font-size: 2.05rem; }
.yield-hud-value > em { bottom: 6px; color: var(--lime); }

.yield-hud-progress {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 4px;
  margin: 14px 0 9px;
}

.yield-hud-progress span {
  display: grid;
  gap: 5px;
  height: auto;
  background: transparent;
}

.yield-hud-progress span i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.yield-hud-progress span small {
  color: rgba(255, 255, 255, .4);
  font-size: .48rem;
  font-weight: 600;
  text-align: center;
}

.yield-hud-progress span.is-earned { background: transparent; box-shadow: none; }
.yield-hud-progress span.is-earned i { background: var(--lime); box-shadow: 0 0 7px rgba(194, 255, 8, .2); transform: scaleY(1.12); }
.yield-hud-progress span.is-earned small { color: rgba(255, 255, 255, .7); }
.yield-hud-foot { padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .46); font-size: .53rem; }
.yield-hud-foot b { color: var(--paper); }

.benefit-bar {
  padding: 48px 0 58px;
  background: #f2f6f4;
}

.benefit-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 30px;
}

.benefit-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: var(--section-title-size);
  font-weight: 520;
  letter-spacing: -.028em;
  line-height: 1.06;
}

.benefit-heading h2 span { color: var(--green-dark); }

.benefit-heading > p {
  max-width: 430px;
  margin: 0 0 3px;
  color: #6e7d7c;
  font-size: .9rem;
  line-height: 1.65;
}

.benefit-panel {
  position: relative;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.benefit-panel::before { display: none; }

.benefit-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 64px auto;
  align-content: stretch;
  align-items: start;
  gap: 26px;
  min-height: 258px;
  padding: 32px;
  border: 1px solid rgba(31, 61, 76, .09);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(249, 252, 250, .92));
  box-shadow: 0 20px 50px rgba(28, 55, 70, .065), inset 0 1px 0 #fff;
  overflow: hidden;
  transition: transform 380ms var(--ease), box-shadow 380ms ease, border-color 380ms ease;
}

.benefit-item::after {
  position: absolute;
  top: 0;
  left: 32px;
  display: block;
  width: 76px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--green));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 850ms var(--ease);
}

.benefit-panel.is-visible .benefit-item { animation: benefit-card-in 720ms var(--ease) backwards; }
.benefit-panel.is-visible .benefit-item::after { transform: scaleX(1); }
.benefit-panel.is-visible .benefit-item:nth-child(2) { animation-delay: 90ms; }
.benefit-panel.is-visible .benefit-item:nth-child(3) { animation-delay: 180ms; }
.benefit-panel.is-visible .benefit-item:nth-child(4) { animation-delay: 270ms; }
.benefit-panel.is-visible .benefit-item:nth-child(2)::after { transition-delay: 150ms; }
.benefit-panel.is-visible .benefit-item:nth-child(3)::after { transition-delay: 240ms; }
.benefit-panel.is-visible .benefit-item:nth-child(4)::after { transition-delay: 330ms; }

.benefit-item:hover {
  border-color: rgba(8, 123, 89, .17);
  box-shadow: 0 28px 64px rgba(28, 55, 70, .105), inset 0 1px 0 #fff;
  transform: translateY(-7px);
}

.benefit-item + .benefit-item::before { display: none; }

.benefit-icon {
  position: relative;
  grid-row: 1;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(0, 156, 105, .15);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(242, 250, 246, .98), rgba(232, 247, 240, .82));
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(21, 95, 72, .055);
  overflow: hidden;
  transition: color 320ms ease, background 320ms ease, transform 380ms var(--ease);
}

.benefit-icon svg { width: 30px; height: 30px; stroke-width: 1.55; }
.benefit-icon svg > * { stroke-dasharray: 90; stroke-dashoffset: 90; }
.benefit-panel.is-visible .benefit-icon svg > * { animation: benefit-icon-draw 1.15s var(--ease) forwards; }
.benefit-panel.is-visible .benefit-item:nth-child(2) .benefit-icon svg > * { animation-delay: 130ms; }
.benefit-panel.is-visible .benefit-item:nth-child(3) .benefit-icon svg > * { animation-delay: 220ms; }
.benefit-panel.is-visible .benefit-item:nth-child(4) .benefit-icon svg > * { animation-delay: 310ms; }
.benefit-item:hover .benefit-icon { background: rgba(194, 255, 8, .18); color: var(--navy-deep); transform: rotate(-3deg) scale(1.04); }
.benefit-item-time .benefit-icon { border-color: rgba(0, 156, 105, .15); background: linear-gradient(145deg, rgba(242, 250, 246, .98), rgba(232, 247, 240, .82)); color: var(--green-dark); }

.benefit-copy {
  position: static;
  grid-row: 2;
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 59, 90, .1);
}

.benefit-copy small {
  position: static;
  max-width: none;
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
}

.benefit-copy strong { font-size: clamp(1.38rem, 1.62vw, 1.64rem); font-weight: 560; letter-spacing: -.027em; line-height: 1.08; }
.benefit-copy em { margin-top: 9px; color: #7a8987; font-size: .71rem; line-height: 1.42; }

@keyframes benefit-card-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes benefit-icon-draw {
  to { stroke-dashoffset: 0; }
}

.section-dark {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #10243a;
}

.section-dark::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/images/apartman.jpg") center 44% / cover no-repeat;
  content: "";
  opacity: .26;
  filter: saturate(.72) contrast(1.08);
}

.section-dark::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 29, 47, .94), rgba(11, 29, 47, .69) 58%, rgba(11, 29, 47, .83)),
    linear-gradient(180deg, rgba(13, 35, 56, .75), rgba(9, 25, 42, .92));
  content: "";
}

.section-dark { padding-block: clamp(96px, 9vw, 136px); }
.section-dark::before { background-position: 24% center; opacity: .3; }
.section-dark::after {
  background:
    linear-gradient(90deg, rgba(8, 26, 42, .88), rgba(8, 26, 42, .91) 48%, rgba(8, 26, 42, .76)),
    linear-gradient(180deg, rgba(12, 35, 54, .52), rgba(7, 23, 38, .94));
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(64px, 8vw, 112px);
  align-items: start;
}

.how-intro {
  position: sticky;
  top: 118px;
  padding: 28px 0;
}

.how-intro h2 {
  max-width: 520px;
  margin: 0;
  color: var(--paper);
  font-size: var(--section-title-size);
  font-weight: 500;
  letter-spacing: -.028em;
  line-height: 1.05;
}

.how-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
  line-height: 1.72;
}

.yield-trace {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.trace-route {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 100%;
  overflow: visible;
}

.trace-route path { fill: none; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.trace-route-base { stroke: rgba(255, 255, 255, .12); stroke-width: 2; }
.trace-route-progress { stroke: var(--lime); stroke-width: 3; filter: drop-shadow(0 0 6px rgba(194, 255, 8, .35)); }

.trace-step {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
  min-height: 160px;
  padding: 24px 24px 24px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  transition: background 280ms ease, color 280ms ease;
}

.trace-step:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.trace-step + .trace-step { border-left: 0; }
.trace-step:hover, .trace-step.is-active {
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, .055) 70px 100%);
  color: var(--paper);
  transform: none;
}
.trace-step::after { display: none; }

.trace-number {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 8px;
  color: rgba(194, 255, 8, .72);
  font-size: .61rem;
  letter-spacing: .16em;
}

.trace-icon {
  z-index: 2;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  margin: 0 0 0 9px;
  border-color: rgba(255, 255, 255, .2);
  background: #102a42;
  color: rgba(255, 255, 255, .72);
  box-shadow: 0 0 0 8px rgba(8, 26, 42, .96);
}

.trace-step.is-active .trace-icon, .trace-step:hover .trace-icon {
  border-color: var(--lime);
  background: #16324a;
  color: var(--lime);
}

.trace-copy { grid-column: 2; grid-row: 2; }
.trace-copy h3 { margin: 0 0 9px; font-size: clamp(1.18rem, 1.55vw, 1.48rem); font-weight: 560; letter-spacing: -.018em; }
.trace-copy p { max-width: 590px; margin: 0; color: rgba(255, 255, 255, .62); font-size: .83rem; line-height: 1.62; }

/* Compact interactive process — inspired by the Home Portal house mark */
.section-dark { padding-block: clamp(72px, 6.8vw, 96px); }

.how-layout {
  grid-template-columns: minmax(330px, .72fr) minmax(570px, 1.28fr);
  gap: clamp(52px, 6vw, 82px);
  align-items: center;
}

.how-intro {
  position: static;
  top: auto;
  padding: 0;
}

.how-intro > p:not(.eyebrow) { margin-top: 20px; line-height: 1.65; }

.how-cta {
  min-height: 54px;
  margin-top: 28px;
  padding-inline: 23px;
  border-radius: 999px;
}

.process-house {
  position: relative;
  isolation: isolate;
  width: min(100%, 680px);
  min-height: 500px;
  margin-left: auto;
}

.process-house::before {
  position: absolute;
  z-index: -1;
  inset: 17% 17% 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 182, 122, .12), transparent 68%);
  content: "";
  filter: blur(10px);
}

.process-house-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(63%, 430px);
  height: auto;
  overflow: visible;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 42px rgba(2, 17, 27, .18));
}

.process-logo-piece {
  fill: rgba(255, 255, 255, .018);
  stroke: rgba(194, 255, 8, .25);
  stroke-width: 1.15;
  opacity: .62;
  vector-effect: non-scaling-stroke;
  transition: fill 520ms var(--ease), stroke 520ms ease, opacity 420ms ease, filter 520ms ease;
}

.process-logo-piece.is-filled {
  fill: var(--piece-color);
  stroke: var(--piece-color);
  opacity: .9;
}

.process-logo-piece.is-active {
  opacity: 1;
  filter: drop-shadow(0 0 7px rgba(194, 255, 8, .36));
}

.process-logo-piece path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
  vector-effect: non-scaling-stroke;
  overflow: visible;
}

.process-house-step {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 6px 18px 6px 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(10, 31, 49, .78);
  color: rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(3, 15, 25, .18);
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 300ms var(--ease);
}

.process-house-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--lime);
  font-size: .72rem;
  font-weight: 720;
}

.process-house-step strong { font-size: .86rem; font-weight: 580; letter-spacing: -.01em; }
.process-house-step:hover,
.process-house-step.is-active { border-color: rgba(194, 255, 8, .48); background: rgba(17, 46, 67, .94); color: var(--paper); transform: translateY(-3px); }
.process-house-step.is-active span { background: var(--lime); color: var(--navy-deep); box-shadow: 0 0 0 5px rgba(194, 255, 8, .08); }
.process-house-step-1 { top: 41.5%; left: 18.5%; transform: translate(-50%, -50%); }
.process-house-step-1:hover,
.process-house-step-1.is-active { transform: translate(-50%, calc(-50% - 3px)); }
.process-house-step-2 { top: 1%; left: 50%; transform: translateX(-50%); }
.process-house-step-2:hover,
.process-house-step-2.is-active { transform: translate(-50%, -3px); }
.process-house-step-3 { top: 41.5%; right: 18.5%; transform: translate(50%, -50%); }
.process-house-step-3:hover,
.process-house-step-3.is-active { transform: translate(50%, calc(-50% - 3px)); }
.process-house-step-4 { right: 20%; bottom: -1.5%; transform: translate(50%, 0); }
.process-house-step-4:hover,
.process-house-step-4.is-active { transform: translate(50%, -3px); }
.process-house-step-5 { bottom: -1.5%; left: 20%; transform: translate(-50%, 0); }
.process-house-step-5:hover,
.process-house-step-5.is-active { transform: translate(-50%, -3px); }

.process-house-center {
  position: absolute;
  z-index: 3;
  top: 56%;
  left: 50%;
  width: min(238px, 35%);
  padding: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  text-align: center;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  transform: translate(-50%, -50%);
  transition: opacity 150ms ease, transform 280ms var(--ease);
}

.process-house-center.is-changing { opacity: .2; transform: translate(-50%, -48%); }
.process-house-center small { display: block; margin-bottom: 12px; color: var(--lime); font-size: .65rem; font-weight: 690; text-align: center; }
.process-house-center h3 { margin: 0; font-size: clamp(1.28rem, 1.65vw, 1.58rem); font-weight: 550; letter-spacing: -.028em; line-height: 1.1; text-wrap: balance; }
.process-house-center p { max-width: 228px; margin: 12px auto 0; color: rgba(255, 255, 255, .65); font-size: .76rem; line-height: 1.55; }

/* Shared premium finish — normal and perspective hero variants */
.eyebrow {
  gap: 11px;
  font-size: .82rem;
  font-weight: 660;
  letter-spacing: .008em;
}

.eyebrow > span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 0;
  border-radius: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11.5 9-7.5 9 7.5'/%3E%3Cpath d='M5 10v10h14V10M9 20v-6h6v6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11.5 9-7.5 9 7.5'/%3E%3Cpath d='M5 10v10h14V10M9 20v-6h6v6'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.eyebrow-light,
.eyebrow-hero { color: rgba(255, 255, 255, .82); }
.eyebrow-light > span,
.eyebrow-hero > span,
.stay-copy .eyebrow > span { color: var(--lime); }

.button > span[aria-hidden="true"],
.project-link b,
.desktop-cta i {
  font-size: 0;
}

.button > span[aria-hidden="true"],
.project-link b {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
}

.button > span[aria-hidden="true"]::before,
.project-link b::before,
.desktop-cta i::before {
  display: block;
  width: 17px;
  height: 17px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 220ms var(--ease);
}

.button:hover > span[aria-hidden="true"]::before,
.project-card:hover .project-link b::before,
.desktop-cta:hover i::before { transform: translate(2px, -2px); }
.project-card:hover .project-link b,
.desktop-cta:hover i { transform: none; }
.desktop-cta i::before { width: 17px; height: 17px; transform: none; }
.desktop-cta:hover i::before { transform: translate(1px, -1px); }

.projects {
  background: #f7f9f7;
}

.project-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 30px;
}

.project-filters {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(36, 59, 90, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 24px rgba(25, 44, 66, .04), inset 0 1px 0 rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.project-filters button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #607080;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 620;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.project-filters button:hover { background: rgba(36, 59, 90, .055); color: var(--navy); }
.project-filters button:focus-visible { outline: 0; box-shadow: 0 0 0 3px rgba(194, 255, 8, .3); }
.project-filters button.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 5px 14px rgba(22, 42, 67, .13);
}

.project-sort {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #687684;
  font-size: .62rem;
  font-weight: 650;
}

.project-sort select {
  min-width: 172px;
  min-height: 42px;
  padding: 0 40px 0 17px;
  border: 1px solid rgba(36, 59, 90, .11);
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #243b5a 50%) calc(100% - 20px) 18px / 5px 5px no-repeat,
    linear-gradient(135deg, #243b5a 50%, transparent 50%) calc(100% - 15px) 18px / 5px 5px no-repeat,
    rgba(255, 255, 255, .8);
  color: var(--navy);
  cursor: pointer;
  font-size: .73rem;
  font-weight: 620;
  outline: none;
  box-shadow: 0 7px 22px rgba(25, 44, 66, .035), inset 0 1px 0 rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.project-sort select:focus-visible { box-shadow: 0 0 0 3px rgba(194, 255, 8, .3); }
.project-card[hidden] { display: none !important; }
.project-empty {
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid rgba(30, 65, 62, .1);
  border-radius: 22px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.calculator-section,
.contact-section {
  width: 100%;
  margin-inline: 0;
  border-radius: 0;
}

.contact-section { margin-bottom: 0; }

.stay-section {
  width: 100%;
  min-height: 0;
  margin-block: 0;
  padding-block: var(--section-space-y);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.stay-image { border-radius: 0; }
.stay-image::after {
  background:
    linear-gradient(90deg, rgba(6, 26, 23, .08) 18%, rgba(7, 38, 32, .1) 48%, rgba(7, 38, 32, .54) 100%),
    linear-gradient(180deg, rgba(4, 24, 21, .04), rgba(4, 24, 21, .2));
}
.stay-image img { object-position: center 56%; }

.stay-copy {
  width: min(650px, 55vw);
  min-height: 0;
  margin: 0 max(24px, calc((100vw - 1180px) / 2)) 0 auto;
  padding: 108px clamp(52px, 4.8vw, 68px) 42px;
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, .12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(194, 255, 8, .09), transparent 34%),
    linear-gradient(145deg, rgba(0, 120, 87, .92), rgba(0, 82, 63, .86));
  box-shadow: 0 28px 68px rgba(3, 28, 24, .28), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.stay-copy .eyebrow { margin-bottom: 22px; font-size: .75rem; font-weight: 610; }

.stay-number {
  position: relative;
  display: block;
  min-height: 136px;
  margin: 0 0 24px;
  padding: 26px 0 32px 66px;
}

.stay-number strong {
  position: absolute;
  top: 50%;
  left: -164px;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(9, 31, 49, .94), rgba(27, 55, 77, .84));
  color: var(--lime);
  font-size: 6rem;
  font-weight: 650;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -.075em;
  line-height: 1;
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  backdrop-filter: blur(20px) saturate(125%);
  outline: 1px solid rgba(194, 255, 8, .4);
  outline-offset: 5px;
  box-shadow: 0 24px 56px rgba(4, 24, 38, .34), inset 0 1px 0 rgba(255, 255, 255, .12);
  text-indent: -18px;
  text-shadow: 0 0 18px rgba(194, 255, 8, .15);
  transform: translateY(-50%);
}

.stay-number span {
  display: block;
  max-width: 500px;
  padding: 0;
  font-size: var(--section-title-size);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: 1.04;
}

.stay-number span em {
  color: var(--lime);
  font: inherit;
  font-style: normal;
}

.stay-copy .eyebrow {
  position: absolute;
  top: 28px;
  right: auto;
  left: clamp(52px, 4.8vw, 68px);
  z-index: 3;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(7, 43, 36, .28);
  color: rgba(255, 255, 255, .86);
  font-size: .64rem;
  font-weight: 690;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.stay-copy .button { min-height: 58px; padding-inline: 26px; }
.stay-copy > small { margin-top: 14px; }
.faq-section { background: #fbfcfb; }

/* Quiet but explicit interaction language across the shared site */
.desktop-nav { gap: clamp(8px, 1vw, 14px); }
.desktop-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}
.desktop-nav a::after { display: none; }
.desktop-nav a:hover {
  background: rgba(8, 123, 89, .075);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.desktop-cta:hover {
  background: var(--lime);
  color: var(--navy-deep);
  box-shadow: 0 0 0 5px rgba(194, 255, 8, .1), 0 15px 34px rgba(22, 42, 67, .14);
}
.desktop-cta:hover i {
  border-color: rgba(22, 42, 67, .2);
  background: var(--navy-deep);
  color: var(--lime);
}

.button:hover { transform: translateY(-2px); }
.button-lime:hover { background: #aeea00; color: var(--navy-deep); }
.button-primary:hover { background: var(--lime); color: var(--navy-deep); }
.button-light:hover { background: var(--lime); color: var(--navy-deep); }
.button-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--paper); }
.button-hero-secondary:hover { border-color: rgba(194, 255, 8, .55); background: rgba(194, 255, 8, .1); }

.desktop-nav a:focus-visible,
.button:focus-visible,
.process-house-step:focus-visible,
.project-card:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.project-status,
.project-use,
.project-units {
  font-size: .64rem;
  font-weight: 690;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-link {
  align-items: center;
  min-height: 62px;
  margin: 0 -20px -20px;
  padding: 0 20px;
  border-top: 0;
  background: transparent;
  transition: background 280ms ease, color 260ms ease, box-shadow 280ms ease;
}
.project-link b {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 0;
  background: transparent;
  color: var(--green-dark);
  transition: color 260ms ease;
}
.project-card:hover .project-link {
  background: var(--lime);
  color: var(--navy-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34);
}
.project-card:hover .project-link b {
  background: transparent;
  color: var(--navy-deep);
  box-shadow: none;
}
.project-link b::before {
  width: 19px;
  height: 19px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(8, 123, 89, .34);
  transform: none;
  box-shadow:
    0 24px 58px rgba(22, 42, 67, .16),
    0 0 0 3px rgba(194, 255, 8, .12);
}
.project-card:hover .project-image::after {
  background: linear-gradient(135deg, rgba(194, 255, 8, .18), rgba(0, 182, 122, .28));
  opacity: 1;
}
.project-card:hover img { transform: scale(1.035); }
.project-card:hover .project-link b::before { transform: none; }

.contact-copy > p:not(.eyebrow) { margin: 28px 0 32px; }
.contact-promise { margin-top: 30px; }

.mobile-contact-bar > span[aria-hidden="true"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: currentColor;
  font-size: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Shared CTA height system: navigation / content / hero. */
.button { min-height: 54px; }

.desktop-cta,
.site-header .desktop-cta {
  min-height: 48px;
  height: 48px;
}

.desktop-cta i {
  width: 36px;
  height: 36px;
}

.mobile-nav .button { min-height: 48px; }
.hero-actions .button { min-height: 56px; }
.stay-copy .button,
.contact-form .button,
.calc-modal-submit { min-height: 54px; }

.calc-contact-button {
  min-height: 54px;
  background: var(--lime);
  color: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(114, 159, 0, .13);
}

.calc-contact-button i {
  background: var(--navy-deep);
  color: var(--lime);
}

.calc-contact-button:hover {
  background: #aeea00;
  box-shadow: 0 15px 32px rgba(114, 159, 0, .18);
}

.calc-contact-button:hover i {
  background: var(--navy-deep);
  color: var(--lime);
  transform: none;
}

/* Shared vertical rhythm for full-width content bands. */
.section,
.benefit-bar,
.section-dark,
.contact-section {
  padding-block: var(--section-space-y);
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .desktop-cta { margin-left: auto; }
  .hero h1 { max-width: 530px; font-size: clamp(3.2rem, 6vw, 4.35rem); }
  .hero-copy { max-width: 530px; }
  .yield-hud { right: var(--hero-inset); width: 310px; }
  .benefit-item { grid-template-columns: 38px minmax(0, 1fr); gap: 11px; padding-inline: 15px; }
  .benefit-icon { width: 38px; height: 38px; border-radius: 12px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .header-inner { height: 70px; }
  .desktop-cta { display: none; }
  .video-toggle { top: 14px; right: var(--hero-inset); bottom: auto; }
  .menu-toggle { display: block; }
  .brand img { width: 150px; }
  .division { padding-left: 14px; font-size: .62rem; }
  .hero { --hero-inset: max(20px, calc((100vw - 720px) / 2)); height: 850px; }
  .hero-video { object-position: 66% center; }
  .hero-video-shade { background: linear-gradient(180deg, rgba(10,26,43,.88) 0%, rgba(10,26,43,.65) 38%, rgba(10,26,43,.18) 60%, rgba(10,26,43,.82) 100%); }
  .hero-copy { top: 38px; right: var(--hero-inset); left: var(--hero-inset); max-width: 610px; }
  .hero h1 { max-width: 610px; font-size: clamp(3.2rem, 9vw, 4.2rem); }
  .hero-lead { max-width: 570px; }
  .yield-hud { right: var(--hero-inset); bottom: 28px; width: 315px; }
  .benefit-panel { grid-template-columns: 1fr 1fr; }
  .how-layout { grid-template-columns: 1fr; gap: 34px; }
  .how-intro { max-width: 620px; }
  .process-house { width: min(100%, 680px); margin-inline: auto; }
  .benefit-item:nth-child(3)::before { display: none; }
  .benefit-item:nth-child(n+3) { border-top: 1px solid rgba(36,59,90,.1); }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .yield-trace { grid-template-columns: 1fr 1fr; }
  .trace-line { display: none; }
  .trace-step { min-height: 220px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-toolbar { align-items: stretch; flex-direction: column; }
  .project-filters { flex-wrap: wrap; }
  .project-sort { justify-content: space-between; }
  .project-card-featured .project-image, .project-image { height: 280px; min-height: 0; }
  .calculator-layout { grid-template-columns: 1fr; }
  .calculator-copy { position: static; }
  .stay-section { min-height: 0; }
  .stay-image { min-height: 320px; }
  .stay-copy { width: min(520px, calc(100% - 48px)); min-height: 0; margin: 0 24px 0 auto; }
  .stay-number { padding-left: 88px; }
  .stay-number strong { left: -80px; width: 156px; height: 156px; font-size: 5.35rem; }
  .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-main > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 32px);
    --section-title-size: clamp(2.15rem, 9.5vw, 2.65rem);
    --section-space-y: 56px;
  }
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 58px; }
  .site-header { backdrop-filter: none; }
  .brand { gap: 10px; }
  .brand img { width: 132px; }
  .division { padding-left: 10px; letter-spacing: .12em; }
  .hero { --hero-inset: 16px; height: 850px; }
  .hero-video { object-position: 70% center; }
  .hero-copy { top: 30px; right: var(--hero-inset); left: var(--hero-inset); }
  .eyebrow-hero { font-size: .61rem; }
  .hero h1 { font-size: clamp(2.8rem, 12.2vw, 3.5rem); }
  .hero-lead { margin-top: 17px; font-size: .9rem; line-height: 1.48; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .text-link { justify-content: space-between; }
  .video-toggle { top: 12px; right: var(--hero-inset); bottom: auto; }
  .yield-hud { right: var(--hero-inset); bottom: 24px; left: var(--hero-inset); width: auto; padding: 16px; }
  .yield-hud-value > strong { font-size: 1.9rem; }
  .yield-hud-foot { font-size: .52rem; }
  .benefit-bar { padding: 12px 0; }
  .benefit-panel { border-radius: 18px; }
  .benefit-item { grid-template-columns: 36px minmax(0, 1fr); gap: 10px; min-height: 82px; padding: 13px 12px; }
  .benefit-icon { width: 36px; height: 36px; border-radius: 11px; }
  .benefit-icon svg { width: 20px; height: 20px; }
  .benefit-copy small { font-size: .51rem; letter-spacing: .075em; }
  .benefit-copy strong { font-size: .84rem; }
  .benefit-copy em { font-size: .56rem; }
  .process-house { min-height: 405px; }
  .process-house-center { top: 55%; width: 38%; padding: 6px; border-radius: 0; }
  .process-house-center h3 { font-size: 1.12rem; }
  .process-house-center p { font-size: .7rem; }
  .process-house-step { min-height: 42px; padding: 4px; }
  .process-house-step span { width: 32px; height: 32px; }
  .process-house-step strong { display: none; }
  .section { padding-block: 56px; }
  .section-head h2, .calculator-copy h2, .faq-layout h2, .contact-copy h2 { font-size: clamp(2.2rem, 10.5vw, 2.85rem); }
  .yield-trace { grid-template-columns: 1fr; gap: 0; }
  .trace-step { min-height: auto; padding: 18px 6px 22px 74px; }
  .trace-number { margin-bottom: 6px; }
  .trace-icon { position: absolute; top: 18px; left: 6px; width: 52px; height: 52px; }
  .project-card-featured .project-image, .project-image { height: 220px; }
  .project-toolbar { padding: 0; }
  .project-filters { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .project-filters button { min-height: 44px; padding-inline: 10px; font-size: .72rem; }
  .project-sort { align-items: stretch; flex-direction: column; gap: 7px; }
  .project-sort select { width: 100%; }
  .project-body { padding: 18px; }
  .project-link { margin: 0 -18px -18px; padding-inline: 18px; }
  .project-stats strong { font-size: .82rem; }
  .projects-footer { align-items: stretch; flex-direction: column; }
  .context-list { grid-template-columns: 1fr; }
  .context-list div,
  .context-list div:nth-child(even) { min-height: 0; padding: 15px 0; }
  .context-list div:nth-child(odd) { border-right: 0; }
  .calculator { padding: 24px 18px; }
  .calc-result strong { font-size: 2.35rem; }
  .projection-labels { flex-direction: column; gap: 4px; }
  .projection-labels strong { text-align: left; }
  .calc-contact-modal { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); border-radius: 24px; }
  .calc-modal-panel { grid-template-columns: 1fr; }
  .calc-modal-intro { padding: 48px 24px 26px; }
  .calc-modal-intro h2 { font-size: 2.25rem; }
  .calc-modal-intro > p:not(.calc-modal-kicker) { margin: 18px 0 24px; }
  .calc-modal-form { gap: 15px; padding: 28px 24px 30px; }
  .calc-modal-fields { grid-template-columns: 1fr; }
  .calc-modal-close { top: 12px; right: 12px; }
  .stay-section { min-height: 0; margin-block: 0; }
  .stay-image { min-height: 240px; }
  .stay-copy { width: calc(100% - 32px); min-height: 0; margin: 0 16px; padding: 88px 24px 36px; }
  .stay-copy .eyebrow { top: 24px; right: auto; left: 24px; }
  .stay-number { min-height: 148px; padding: 94px 0 25px; }
  .stay-number strong { top: 0; left: 0; width: 116px; height: 116px; font-size: 4.35rem; transform: translateY(-28%); }
  .stay-number span { font-size: var(--section-title-size); }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-bottom { flex-direction: column; }
  .footer-bottom p { text-align: left; }
  .mobile-contact-bar { position: fixed; z-index: 95; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; height: 58px; padding-inline: 20px; background: var(--lime); color: var(--navy-deep); font-size: .83rem; font-weight: 700; box-shadow: 0 -8px 24px rgba(22,42,67,.14); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --- lead-form.js: submit states + Turnstile container -------------------- */
.form-status.is-error,
.calc-modal-status.is-error,
.detail-form-status.is-error { color: #c0392b; }
.lead-turnstile { grid-column: 1 / -1; min-height: 0; margin: 0; }
.lead-turnstile:empty { display: none; }

/* --- lead-form.js: success card (replaces the form after a successful submit) --- */
.lead-success {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .16);
  outline: 0;
}
.calc-contact-modal .lead-success { box-shadow: none; }
.lead-success-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.lead-success-title { font-size: 1.15rem; font-weight: 700; line-height: 1.3; color: var(--navy); }
.lead-success-text { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.lead-success-button { margin-top: 8px; }
.form-status.is-error,
.calc-modal-status.is-error,
.detail-form-status.is-error { font-size: .8rem; font-weight: 600; line-height: 1.45; }
