
:root {
  --navy: #223264;
  --navy-shadow: #1a2956;
  --navy-deep: #101a3d;
  --navy-highlight: #435783;
  --emerald: #02955a;
  --emerald-shadow: #066e46;
  --emerald-highlight: #0eb571;
  --silver: #c4cbd4;
  --graphite: #263238;
  --ice: #f4f7f8;
  --white: #ffffff;
  --line: rgba(34, 50, 100, 0.12);
  --shadow: 0 24px 70px rgba(26, 41, 86, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--graphite);
  font-family: "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  text-rendering: optimizeLegibility;
}

.hero-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.callout-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

main {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

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

.brand-symbol {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-symbol img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 60px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.28em;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.brand-copy span {
  color: #66d5a8;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-context {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
footer a:focus-visible {
  outline: 3px solid rgba(14, 181, 113, 0.45);
  outline-offset: 4px;
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 14px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.button-primary {
  background: linear-gradient(135deg, var(--emerald-highlight), var(--emerald));
  box-shadow: 0 15px 38px rgba(2, 149, 90, 0.26);
  color: var(--white);
}

.button-primary:hover {
  background: linear-gradient(135deg, #16c17a, #038b56);
  box-shadow: 0 19px 42px rgba(2, 149, 90, 0.33);
}

.hero {
  position: relative;
  display: grid;
  min-height: 800px;
  padding: 165px max(24px, calc((100vw - 1180px) / 2)) 104px;
  align-items: center;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 70px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(25deg, transparent 90%, rgba(255, 255, 255, 0.04) 90%),
    linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 56%, #263f72 100%);
  background-size: 82px 82px, 100% 100%, 100% 100%;
  color: var(--white);
}

.hero-photo,
.hero-photo-overlay {
  position: absolute;
  inset: 0;
}

.hero-photo {
  z-index: 0;
}

.hero-photo-image {
  object-fit: cover;
  object-position: 56% center;
}

.hero-photo-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 26, 61, 0.99) 0%, rgba(20, 34, 73, 0.95) 38%, rgba(23, 44, 82, 0.58) 67%, rgba(15, 27, 58, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 19, 45, 0.32), rgba(10, 19, 45, 0.2) 55%, rgba(10, 19, 45, 0.55));
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -130px;
  width: 54%;
  height: 250px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transform: rotate(-6deg);
}

.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 14%;
  right: 3%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(14, 181, 113, 0.19), transparent 68%);
}

.hero-glow-two {
  bottom: 0;
  left: 22%;
  width: 340px;
  height: 240px;
  background: radial-gradient(circle, rgba(67, 87, 131, 0.35), transparent 68%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  animation: rise 700ms ease both;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 25px;
  padding: 10px 13px;
  border: 1px solid rgba(14, 181, 113, 0.25);
  border-radius: 999px;
  background: rgba(14, 181, 113, 0.08);
  color: #71dfb1;
}

.eyebrow-dot,
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-highlight);
  box-shadow: 0 0 0 5px rgba(14, 181, 113, 0.12);
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(47px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  margin-top: 13px;
  background: linear-gradient(92deg, #7ce8bd 0%, #0eb571 62%, #6bdcaf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.65;
}

.hero-support {
  max-width: 610px;
  margin: 16px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--emerald-highlight);
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  transition: color 160ms ease;
}

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

.hero-note {
  display: flex;
  margin: 22px 0 0;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.45;
}

.hero-note span {
  color: var(--silver);
  font-size: 7px;
}

.hero-visual {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  animation: rise 850ms 120ms ease both;
}

.photo-brand-chip {
  position: absolute;
  top: 5%;
  right: 0;
  display: flex;
  max-width: 320px;
  padding: 15px 18px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  background: rgba(16, 26, 61, 0.75);
  box-shadow: 0 18px 42px rgba(4, 10, 31, 0.25);
  backdrop-filter: blur(18px);
}

.photo-brand-symbol {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  flex: 0 0 auto;
}

.photo-brand-symbol img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.photo-brand-chip > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.4;
}

.photo-brand-chip strong {
  color: var(--white);
  font-size: 15px;
}

.visual-frame {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 0.93;
  border: 1px solid rgba(196, 203, 212, 0.21);
  border-radius: 38px 12px 38px 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(12, 25, 58, 0.44);
  box-shadow:
    0 45px 80px rgba(4, 10, 31, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.visual-frame::before,
.visual-frame::after {
  position: absolute;
  width: 72px;
  height: 72px;
  border-style: solid;
  border-color: var(--emerald-highlight);
  content: "";
  opacity: 0.7;
}

.visual-frame::before {
  top: -7px;
  right: -7px;
  border-width: 2px 2px 0 0;
  border-radius: 0 14px 0 0;
}

.visual-frame::after {
  bottom: -7px;
  left: -7px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 14px;
}

.visual-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
}

.logo-stage {
  position: absolute;
  top: 12%;
  left: 50%;
  display: flex;
  width: 67%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.logo-stage img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 24px rgba(0, 0, 0, 0.32));
}

.logo-halo {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(14, 181, 113, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(14, 181, 113, 0.025),
    0 0 80px rgba(14, 181, 113, 0.16);
  animation: pulse 4s ease-in-out infinite;
}

.operation-card,
.callout-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(196, 203, 212, 0.22);
  background: rgba(17, 29, 65, 0.83);
  box-shadow: 0 18px 35px rgba(5, 11, 31, 0.27);
  backdrop-filter: blur(18px);
}

.operation-card {
  right: 0;
  bottom: 7%;
  width: 255px;
  padding: 21px;
  border-radius: 14px;
}

.operation-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
}

.operation-card ul {
  display: grid;
  margin: 17px 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}

.operation-card li {
  padding: 8px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
}

.callout-card {
  bottom: 25%;
  left: 5%;
  display: flex;
  padding: 13px 17px;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
}

.callout-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: rgba(14, 181, 113, 0.15);
  color: #61d7a4;
  font-size: 22px;
}

.callout-card > span:last-child {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.5;
}

.callout-card strong {
  color: var(--white);
  font-size: 14px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit-one {
  width: 530px;
  height: 530px;
}

.orbit-two {
  width: 620px;
  height: 350px;
  transform: rotate(-24deg);
}

.results,
.how-it-works,
.calculator-section,
.availability {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.results {
  position: relative;
  z-index: 3;
  padding: 72px 0 104px;
}

.results-heading {
  display: flex;
  margin-top: 13px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.results-heading h2,
.call-center h2,
.how-heading h2,
.opportunity h2,
.availability h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.results-heading h2 {
  max-width: 650px;
}

.results-heading h2 span,
.opportunity h2 span {
  color: var(--emerald);
}

.results-heading p {
  max-width: 380px;
  margin: 0 0 4px;
  color: #607078;
  font-size: 16px;
  line-height: 1.7;
}

.results-grid {
  display: grid;
  margin-top: 43px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 27px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, transparent 60%, rgba(2, 149, 90, 0.08)),
    var(--ice);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 149, 90, 0.3);
  box-shadow: var(--shadow);
}

.result-card:nth-child(2) {
  background:
    linear-gradient(135deg, transparent 60%, rgba(255, 255, 255, 0.08)),
    var(--navy);
  box-shadow: 0 22px 50px rgba(26, 41, 86, 0.18);
}

.result-number {
  color: var(--navy);
  font-size: 79px;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1;
}

.result-card:nth-child(2) .result-number {
  color: var(--white);
}

.result-label {
  max-width: 130px;
  margin-top: 10px;
  color: #65737a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.result-card:nth-child(2) .result-label {
  color: rgba(255, 255, 255, 0.6);
}

.result-line {
  position: absolute;
  right: 27px;
  bottom: 29px;
  width: 52px;
  height: 5px;
  border-radius: 10px;
  background: var(--emerald);
}

.result-icon {
  position: absolute;
  top: 27px;
  right: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(2, 149, 90, 0.18);
  border-radius: 13px;
  background: rgba(2, 149, 90, 0.08);
  color: var(--emerald);
}

.result-card:nth-child(2) .result-icon {
  border-color: rgba(115, 224, 179, 0.25);
  background: rgba(115, 224, 179, 0.1);
  color: #73e0b3;
}

.results-disclaimer {
  margin: 18px 0 0;
  color: #8a969b;
  font-size: 12px;
  line-height: 1.55;
}

.call-center {
  position: relative;
  display: grid;
  padding: 105px max(24px, calc((100vw - 1120px) / 2));
  grid-template-columns: 0.84fr 1.16fr;
  gap: 100px;
  background:
    radial-gradient(circle at 8% 20%, rgba(14, 181, 113, 0.15), transparent 24%),
    linear-gradient(145deg, var(--navy-deep), var(--navy-shadow));
  color: var(--white);
}

.call-center::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 41%;
  height: 5px;
  background: linear-gradient(90deg, var(--emerald-highlight), transparent);
  content: "";
}

.section-kicker-light {
  color: #5ed6a3;
}

.call-center h2 {
  margin-top: 18px;
  color: var(--white);
}

.call-center-intro > p {
  max-width: 490px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 17px;
  line-height: 1.75;
}

.credit-note {
  display: flex;
  margin-top: 30px;
  padding: 20px;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(14, 181, 113, 0.2);
  border-radius: 14px;
  background: rgba(14, 181, 113, 0.08);
}

.credit-check {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.credit-note > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.credit-note strong {
  color: var(--white);
  font-size: 14px;
}

.stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(2, 7, 23, 0.22);
  overflow: hidden;
}

.stage {
  display: grid;
  min-height: 230px;
  padding: 29px;
  grid-template-columns: 56px 1fr;
  gap: 17px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease;
}

.stage-marker {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.stage-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(94, 214, 163, 0.22);
  border-radius: 13px;
  background: rgba(14, 181, 113, 0.1);
  color: #65dcaa;
}

.stage:hover {
  background: rgba(255, 255, 255, 0.075);
}

.stage-number {
  color: var(--emerald-highlight);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.stage h3,
.how-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.stage p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.7;
}

.how-it-works {
  padding: 110px 0;
}

.how-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.how-heading h2 {
  margin-top: 14px;
}

.how-heading > p {
  max-width: 440px;
  margin: 0 0 3px;
  color: #65747b;
  font-size: 16px;
  line-height: 1.75;
}

.how-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.how-card {
  position: relative;
  min-height: 315px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.how-card::after {
  position: absolute;
  top: 0;
  left: 32px;
  width: 44px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: var(--emerald);
  content: "";
}

.how-number {
  position: absolute;
  top: 23px;
  right: 26px;
  color: rgba(34, 50, 100, 0.08);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.how-icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 40px;
  place-items: center;
  border: 1px solid rgba(2, 149, 90, 0.18);
  border-radius: 14px;
  background: rgba(2, 149, 90, 0.07);
  color: var(--emerald);
  font-size: 23px;
}

.how-card h3 {
  color: var(--navy);
}

.how-card p {
  margin: 16px 0 0;
  color: #65747b;
  font-size: 15px;
  line-height: 1.75;
}

.calculator-section {
  padding: 0 0 110px;
}

.calculator-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.calculator-heading h2 {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.calculator-heading > p {
  max-width: 390px;
  margin: 0 0 3px;
  color: #65747b;
  font-size: 16px;
  line-height: 1.75;
}

.calculator-shell {
  display: grid;
  margin-top: 45px;
  overflow: clip;
  grid-template-columns: 1.04fr 0.96fr;
  border: 1px solid rgba(34, 50, 100, 0.13);
  border-radius: 26px 8px 26px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.calculator-form {
  display: grid;
  padding: 46px;
  gap: 27px;
  background:
    linear-gradient(135deg, rgba(2, 149, 90, 0.055), transparent 58%),
    var(--ice);
}

.calculator-rate {
  display: flex;
  padding-bottom: 21px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(34, 50, 100, 0.1);
}

.calculator-rate span {
  color: #607078;
  font-size: 14px;
  font-weight: 700;
}

.calculator-rate strong {
  color: var(--emerald);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.calculator-field {
  display: grid;
  gap: 10px;
}

.calculator-field > span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.calculator-field small {
  color: #879399;
  font-size: 12px;
  line-height: 1.5;
}

.calculator-input-wrap {
  display: flex;
  min-height: 64px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(34, 50, 100, 0.14);
  border-radius: 12px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.calculator-input-wrap:focus-within {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(2, 149, 90, 0.1);
}

.calculator-input-wrap input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 24px;
  font-weight: 800;
}

.calculator-input-wrap > span {
  flex: 0 0 auto;
  color: #819097;
  font-size: 13px;
  font-weight: 700;
}

.calculator-input-currency > span {
  color: var(--emerald);
  font-size: 21px;
  font-weight: 900;
}

.calculator-formula {
  display: flex;
  padding: 14px 16px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  background: rgba(34, 50, 100, 0.06);
  color: #65747b;
  font-size: 12px;
  font-weight: 700;
}

.calculator-formula b {
  color: var(--emerald);
  font-size: 15px;
}

.calculator-results {
  position: relative;
  display: flex;
  padding: 46px;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgba(14, 181, 113, 0.2), transparent 40%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--white);
}

.calculator-results::after {
  position: absolute;
  right: -75px;
  bottom: -105px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.calculator-results-tag {
  margin-bottom: 25px;
  color: #64daa7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.calculator-result-row {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 18px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-result-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.calculator-result-row strong {
  font-size: 28px;
  font-weight: 900;
}

.calculator-revenue {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 29px 0 31px;
  flex-direction: column;
}

.calculator-revenue > span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.calculator-revenue strong {
  color: #73e0b3;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.calculator-revenue small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
}

.calculator-results .button {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.calculator-disclaimer {
  margin: 16px 0 0;
  color: #8a969b;
  font-size: 12px;
  line-height: 1.6;
}

.opportunity {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  min-height: 330px;
  margin: 0 auto;
  padding: 66px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 50px;
  border-radius: 26px 8px 26px 8px;
  background:
    radial-gradient(circle at 75% 0%, rgba(14, 181, 113, 0.21), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: 0 30px 90px rgba(26, 41, 86, 0.24);
  color: var(--white);
  overflow: hidden;
}

.opportunity::after {
  position: absolute;
  right: 28%;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.opportunity-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.opportunity h2 {
  margin-top: 15px;
  color: var(--white);
  font-size: clamp(35px, 4vw, 51px);
}

.opportunity p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.opportunity-mark {
  position: absolute;
  right: 18px;
  bottom: -45px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 300px;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.button-light {
  position: relative;
  z-index: 2;
  max-width: 240px;
  background: var(--white);
  color: var(--navy);
  text-align: left;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}

.button-light:hover {
  background: var(--ice);
}

.availability {
  display: grid;
  padding: 120px 0;
  align-items: center;
  grid-template-columns: 1fr 0.78fr;
  gap: 100px;
}

.availability h2 {
  max-width: 580px;
  margin-top: 16px;
}

.availability-copy > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #607078;
  font-size: 17px;
  line-height: 1.75;
}

.availability-panel {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(34, 50, 100, 0.12);
  border-radius: 22px 7px 22px 7px;
  background:
    linear-gradient(145deg, rgba(2, 149, 90, 0.05), transparent 50%),
    var(--ice);
  box-shadow: var(--shadow);
}

.availability-panel::before {
  position: absolute;
  top: -1px;
  right: 35px;
  width: 70px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: var(--emerald);
  content: "";
}

.panel-tag {
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.availability-panel h3 {
  margin: 17px 0 0;
  color: var(--navy);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.availability-panel ul {
  display: grid;
  margin: 25px 0 28px;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.availability-panel li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #53636a;
  font-size: 14px;
  font-weight: 700;
}

.availability-panel li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(2, 149, 90, 0.1);
  color: var(--emerald);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.button-wide {
  width: 100%;
}

.availability-panel small {
  display: block;
  margin-top: 13px;
  color: #8b969a;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

footer {
  display: grid;
  padding: 45px max(24px, calc((100vw - 1120px) / 2));
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--navy-deep);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-symbol-footer {
  width: 40px;
  height: 40px;
}

.brand-symbol-footer img {
  width: 53px;
}

.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  font-size: 13px;
  letter-spacing: 0.11em;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  line-height: 1.55;
}

footer > a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@media (max-width: 1050px) {
  .hero {
    min-height: 760px;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
  }

  .operation-card {
    right: 0;
  }

  .callout-card {
    left: 2%;
  }

  .call-center {
    gap: 50px;
  }

  .availability {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .header-context {
    display: none;
  }

  .hero {
    padding: 145px 24px 130px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-photo-image {
    object-position: 64% center;
  }

  .hero-photo-overlay {
    background:
      linear-gradient(180deg, rgba(16, 26, 61, 0.99) 0%, rgba(20, 34, 73, 0.95) 48%, rgba(18, 35, 70, 0.68) 70%, rgba(12, 25, 58, 0.5) 100%),
      linear-gradient(90deg, rgba(16, 26, 61, 0.8), rgba(16, 26, 61, 0.32));
  }

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

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

  .visual-frame {
    width: min(88vw, 500px);
  }

  .hero::after {
    right: -18%;
    bottom: -150px;
    width: 85%;
  }

  .results-heading,
  .how-heading,
  .calculator-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .results-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: 160px;
  }

  .call-center {
    grid-template-columns: 1fr;
  }

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

  .opportunity {
    padding: 55px 40px;
    grid-template-columns: 1fr;
  }

  .button-light {
    max-width: none;
    width: fit-content;
  }

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

  footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 68px;
  }

  .site-header {
    height: 74px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-symbol img {
    width: 51px;
  }

  .brand-copy {
    font-size: 9px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 116px 20px 105px;
  }

  .hero h1 {
    font-size: clamp(41px, 12vw, 56px);
    line-height: 1.02;
  }

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

  .hero-support {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

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

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

  .photo-brand-chip {
    top: 0;
    right: 0;
    max-width: 270px;
    padding: 12px 14px;
  }

  .photo-brand-chip > span:last-child {
    font-size: 11px;
  }

  .photo-brand-chip strong {
    font-size: 13px;
  }

  .visual-frame {
    width: 95%;
    border-radius: 25px 8px 25px 8px;
  }

  .operation-card {
    right: 0;
    bottom: 0;
    width: 190px;
    padding: 14px;
  }

  .operation-card ul {
    margin-top: 12px;
  }

  .operation-card li {
    font-size: 8px;
  }

  .callout-card {
    bottom: 29%;
    left: 0;
    padding: 10px;
  }

  .callout-icon {
    width: 29px;
    height: 29px;
  }

  .orbit-one {
    width: 380px;
    height: 380px;
  }

  .orbit-two {
    width: 430px;
    height: 250px;
  }

  .results,
  .how-it-works,
  .calculator-section,
  .availability,
  .opportunity {
    width: calc(100% - 32px);
  }

  .results {
    padding: 65px 0 80px;
  }

  .results-heading h2,
  .call-center h2,
  .how-heading h2,
  .opportunity h2,
  .availability h2 {
    font-size: 37px;
  }

  .result-number {
    font-size: 66px;
  }

  .call-center {
    padding: 80px 20px;
  }

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

  .stage {
    min-height: auto;
    padding: 25px;
  }

  .how-it-works {
    padding: 80px 0;
  }

  .calculator-section {
    padding-bottom: 80px;
  }

  .calculator-heading h2 {
    font-size: 37px;
  }

  .calculator-form,
  .calculator-results {
    padding: 30px 24px;
  }

  .calculator-revenue strong {
    font-size: 43px;
  }

  .calculator-formula {
    gap: 8px;
  }

  .how-card {
    min-height: 285px;
  }

  .opportunity {
    min-height: auto;
    padding: 45px 27px;
  }

  .button-light {
    width: 100%;
  }

  .availability {
    padding: 90px 0;
    gap: 45px;
  }

  .availability-panel {
    padding: 30px 24px;
  }

  footer {
    padding: 38px 20px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--emerald-highlight), var(--emerald));
    box-shadow: 0 12px 35px rgba(2, 75, 46, 0.35);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
  }
}

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

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