:root {
  --ink: #f5f7fa;
  --ink-soft: #d7dde6;
  --paper: #050607;
  --paper-strong: #0b0e12;
  --surface-2: #11151b;
  --muted: #9aa4b2;
  --line: #222936;
  --blue: #4b8dff;
  --blue-dark: #2d74f5;
  --green: #65d6a6;
  --max: 1460px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(75, 141, 255, 0.62);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 750;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #9fbff8;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  width: 145px;
  height: 60px;
  object-fit: contain;
}

.site-header {
  position: absolute;
  top: 36px;
  right: clamp(34px, 4vw, 80px);
  left: clamp(34px, 4vw, 80px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 42px);
}

.site-header nav a {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav > a:not(.nav-button) {
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.site-header nav > a:not(.nav-button):hover {
  opacity: 1;
}

.nav-button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 13px;
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 12px 30px rgba(45, 116, 245, 0.24);
}

.hero {
  position: relative;
  min-height: calc(100svh - 24px);
  margin: 12px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050607;
  color: #fff;
  isolation: isolate;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 52% center;
  animation: hero-scale 1.4s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.94) 0%, rgba(5, 8, 13, 0.73) 38%, rgba(5, 8, 13, 0.08) 72%),
    linear-gradient(0deg, rgba(2, 4, 7, 0.75) 0%, transparent 44%);
}

.hero-content {
  width: min(calc(100% - clamp(48px, 8vw, 150px)), var(--max));
  min-height: calc(100svh - 24px);
  margin-inline: auto;
  padding: 156px 0 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: 60px;
  align-items: end;
}

.hero-copy {
  max-width: 900px;
  animation: hero-rise 820ms 120ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.7rem, 6vw, 7.15rem);
  font-weight: 580;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.23rem);
  line-height: 1.52;
}

.hero-subtitle strong {
  color: #fff;
}

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

.button {
  min-height: 62px;
  padding: 0 26px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 17px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.15rem;
}

.button-light {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 16px 38px rgba(45, 116, 245, 0.24);
}

.button-light .button-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button-blue {
  width: 100%;
  justify-content: flex-start;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 40px rgba(45, 116, 245, 0.25);
}

.button-blue:hover {
  background: var(--blue-dark);
}

.button-blue .button-icon {
  background: #fff;
  color: var(--blue);
}

.inline-link {
  padding: 12px 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 760;
  text-underline-offset: 5px;
}

.hero-proof {
  align-self: end;
  padding: 24px;
  border: 1px solid #30394a;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(25, 31, 42, 0.88), rgba(8, 10, 14, 0.92));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  animation: proof-enter 760ms 320ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.source-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47, 207, 143, 0.12);
}

.hero-proof-value {
  margin: 34px 0 0;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 640;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-proof-label {
  margin: 10px 0 32px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

.hero-proof > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.hero-facts {
  position: absolute;
  right: clamp(34px, 4vw, 80px);
  bottom: 34px;
  left: clamp(34px, 4vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts p {
  margin: 0;
  padding: 23px 24px 0 0;
  display: grid;
  gap: 2px;
}

.hero-facts p + p {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts strong {
  font-size: 1.02rem;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
}

.calculator-section,
.how-section {
  padding: 128px 0;
}

.section-heading {
  max-width: 930px;
}

.section-heading h2,
.proof-heading h2,
.final-section h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 560;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.calculator-heading {
  margin-inline: auto;
  text-align: center;
}

.calculator-heading > p:last-child {
  margin-inline: auto;
}

.calculator {
  margin-top: 66px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper-strong);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.calculator-controls {
  padding: clamp(28px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 54px;
}

.range-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.range-title label {
  color: var(--ink-soft);
  font-size: 1.15rem;
  font-weight: 760;
}

.range-title output {
  color: var(--ink);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.05em;
}

input[type="range"] {
  --range-progress: 50%;
  width: 100%;
  height: 34px;
  margin: 16px 0 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0 var(--range-progress), #222936 var(--range-progress) 100%);
}

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #222936;
}

input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}

input[type="range"]::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  margin-top: -11px;
  appearance: none;
  border: 7px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(45, 109, 255, 0.24);
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 7px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.range-ends {
  display: flex;
  justify-content: space-between;
  color: #7f8a99;
  font-size: 0.75rem;
}

.data-source {
  margin-top: 4px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.data-source-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(75, 141, 255, 0.26);
  background: rgba(75, 141, 255, 0.12);
  color: #9fbff8;
  font-size: 0.72rem;
  font-weight: 850;
}

.data-source div {
  display: grid;
  gap: 3px;
}

.data-source strong {
  font-size: 0.86rem;
}

.data-source div span {
  color: var(--muted);
  font-size: 0.76rem;
}

.calculator-output {
  min-width: 0;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  border: 1px solid #30394a;
  background: linear-gradient(145deg, #19202a, var(--surface-2) 54%, #090c10);
  color: #fff;
}

.output-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
}

.output-value {
  margin: 14px 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(3.6rem, 6vw, 7rem);
  font-weight: 590;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.output-growth {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.86rem;
}

.output-growth span {
  color: rgba(255, 255, 255, 0.5);
}

.output-growth strong {
  color: #55dca2;
  text-align: right;
}

.performance-bars {
  height: 138px;
  margin: 36px 0 28px;
  padding-top: 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(10px, 1fr);
  gap: 8px;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.performance-bar {
  position: relative;
  min-height: 8px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #8eb3f5, var(--blue-dark));
  transform-origin: bottom;
  animation: bar-rise 420ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.performance-bar.is-negative {
  background: linear-gradient(180deg, #f09a9a, #d45f5f);
}

.performance-bar span {
  position: absolute;
  right: 50%;
  bottom: -22px;
  transform: translateX(50%);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.output-meta {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.output-meta p {
  margin: 0;
  padding: 18px 0;
  display: grid;
  gap: 4px;
}

.output-meta p + p {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.output-meta span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.output-meta strong {
  font-size: 0.86rem;
}

.calculator-output .button {
  margin-top: auto;
}

.disclaimer,
.proof-note {
  max-width: 820px;
  margin: 20px auto 0;
  color: #7f8a99;
  font-size: 0.73rem;
  text-align: center;
}

.proof-section {
  margin: 12px;
  padding: 128px 0 90px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #080a0e;
  color: #fff;
}

.proof-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.proof-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 1.02rem;
}

.proof-board {
  margin-top: 72px;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid #30394a;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(25, 31, 42, 0.94), rgba(8, 10, 14, 0.96));
}

.proof-board-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.proof-board-top > strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.proof-metrics {
  margin: 52px 0 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-metrics div {
  min-width: 0;
  padding-right: 26px;
}

.proof-metrics div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-metrics dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.proof-metrics dd {
  margin: 16px 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.8rem, 3.2vw, 3.8rem);
  font-weight: 570;
  letter-spacing: -0.06em;
}

.proof-board .button {
  width: fit-content;
}

.proof-note {
  color: rgba(255, 255, 255, 0.42);
}

.how-heading {
  max-width: 990px;
}

.steps {
  margin: 74px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  min-height: 188px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
}

.steps li > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 80px;
  align-items: center;
}

.steps h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.7vw, 3.2rem);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1;
}

.steps p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.control-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
}

.control-strip p {
  min-height: 104px;
  margin: 0;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  font-size: 0.84rem;
  font-weight: 720;
}

.control-strip p + p {
  border-left: 1px solid var(--line);
}

.final-section {
  position: relative;
  min-height: 900px;
  margin: 12px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #050607;
  color: #fff;
}

.final-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.96), rgba(5, 8, 13, 0.64) 48%, rgba(5, 8, 13, 0.1)),
    url("/assets/volt-hero.png") center / cover no-repeat;
  transform: scaleX(-1);
}

.final-content {
  position: relative;
  z-index: 1;
  min-height: 900px;
  padding-block: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.72fr);
  gap: clamp(48px, 6vw, 104px);
  align-items: center;
}

.final-copy {
  min-width: 0;
}

.final-copy h2 {
  max-width: 760px;
  font-size: clamp(4rem, 6.4vw, 7rem);
}

.final-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.04rem;
}

.final-form-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: rgba(11, 14, 18, 0.94);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.application-form-heading {
  min-height: 70px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.application-form-heading p,
.application-form-heading span {
  margin: 0;
}

.application-form-heading p {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 780;
}

.application-form-heading span {
  color: #8c98a8;
  font-size: 0.72rem;
}

footer {
  padding: 72px 0 56px;
  border-top: 1px solid var(--line);
  background: #050607;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 90px;
}

.footer-grid > div > p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.74rem;
}

.footer-grid nav {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  text-underline-offset: 4px;
}

.application-modal {
  width: min(calc(100% - 32px), 720px);
  max-width: none;
  max-height: min(900px, calc(100svh - 32px));
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #30394a;
  border-radius: 28px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.58);
}

.application-modal::backdrop {
  background: rgba(2, 4, 7, 0.82);
  backdrop-filter: blur(12px);
}

.application-modal-shell {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-modal-form-slot {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(5, 6, 7, 0.66);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.application-form {
  min-width: 0;
  padding: clamp(54px, 5vw, 78px) clamp(32px, 5vw, 70px) 44px;
  align-self: center;
}

.final-form-card .application-form {
  width: 100%;
  padding: 30px;
}

.application-modal-form-slot .application-form {
  width: 100%;
  padding: 78px 64px 48px;
}

.application-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.application-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  border: 0;
}

.application-field[hidden] {
  display: none;
}

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

.application-field label,
.application-field legend {
  color: #d7dde6;
  font-size: 0.78rem;
  font-weight: 760;
}

.application-field input,
.application-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #30394a;
  border-radius: 10px;
  outline: 0;
  background: #080b10;
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.application-field input::placeholder {
  color: #687383;
}

.application-field input:focus,
.application-field select:focus {
  border-color: #5f96f8;
  box-shadow: 0 0 0 3px rgba(75, 141, 255, 0.16);
}

.application-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.application-channel {
  position: relative;
}

.application-channel input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.application-channel label {
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #30394a;
  border-radius: 10px;
  background: #080b10;
  color: #c5ccd6;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.application-channel input:checked + label {
  border-color: var(--blue);
  background: rgba(75, 141, 255, 0.14);
  color: #fff;
}

.application-channel input:focus-visible + label {
  outline: 3px solid rgba(75, 141, 255, 0.58);
  outline-offset: 3px;
}

.application-field-error {
  margin: 0;
  color: #ff9b9b;
  font-size: 0.72rem;
}

.application-route-note {
  min-height: 22px;
  margin: 22px 0 0;
  color: #9fbff8;
  font-size: 0.78rem;
}

.application-submit {
  width: 100%;
  margin-top: 14px;
}

.application-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.recaptcha-notice {
  margin: 16px 0 0;
  color: #7f8a99;
  font-size: 0.69rem;
  line-height: 1.5;
}

.recaptcha-notice a {
  color: #a9c8ff;
  text-underline-offset: 3px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.application-form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
}

.application-form-status[data-state="error"] {
  color: #ff9b9b;
}

.application-handoff-fallback {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(75, 141, 255, 0.7);
  border-radius: 10px;
  color: #fff;
  background: rgba(75, 141, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.application-handoff-fallback[hidden] {
  display: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes proof-enter {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-scale {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@keyframes bar-rise {
  from {
    transform: scaleY(0.04);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-content: end;
  }

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

  .hero-proof {
    width: min(100%, 420px);
  }

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

  .proof-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .proof-metrics div {
    padding-block: 24px;
  }

  .proof-metrics div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .proof-metrics div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .steps li > div {
    gap: 40px;
  }

  .final-content {
    padding-block: 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .final-copy {
    max-width: 780px;
  }

  .final-form-card {
    width: min(100%, 680px);
    justify-self: end;
  }
}

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

  .site-header {
    top: 28px;
    right: 28px;
    left: 28px;
  }

  .brand-logo {
    width: 112px;
    height: auto;
  }

  .site-header nav > a:not(.nav-button) {
    display: none;
  }

  .nav-button {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 0.76rem !important;
  }

  .hero {
    min-height: 820px;
    margin: 8px;
    border-radius: 24px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(2, 4, 7, 0.94) 0%, rgba(5, 8, 13, 0.64) 58%, rgba(5, 8, 13, 0.14) 100%),
      linear-gradient(90deg, rgba(2, 4, 7, 0.58), transparent);
  }

  .hero-content {
    width: calc(100% - 40px);
    min-height: 820px;
    padding: 144px 0 44px;
    display: block;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.6rem);
  }

  .hero-subtitle {
    font-size: 0.97rem;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
  }

  .button {
    min-height: 58px;
  }

  .inline-link {
    text-align: center;
  }

  .hero-proof {
    margin-top: 28px;
    padding: 20px;
  }

  .hero-proof-value {
    margin-top: 22px;
  }

  .hero-proof-label {
    margin-bottom: 22px;
  }

  .hero-facts {
    display: none;
  }

  .calculator-section,
  .how-section {
    padding: 90px 0;
  }

  .section-heading h2,
  .proof-heading h2,
  .final-section h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .section-heading > p:last-child,
  .proof-heading > p {
    margin-top: 24px;
    font-size: 0.94rem;
  }

  .calculator {
    margin-top: 42px;
    padding: 10px;
    border-radius: 26px;
  }

  .calculator-controls,
  .calculator-output {
    padding: 26px 20px;
  }

  .calculator-controls {
    gap: 38px;
  }

  .range-title {
    display: grid;
    gap: 8px;
  }

  .range-title output {
    font-size: 2.4rem;
  }

  .output-value {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .output-growth {
    display: grid;
    gap: 5px;
  }

  .output-growth strong {
    text-align: left;
  }

  .performance-bars {
    gap: 5px;
  }

  .proof-section,
  .final-section {
    margin: 8px;
    border-radius: 24px;
  }

  .proof-section {
    padding: 88px 0 70px;
  }

  .proof-board {
    margin-top: 42px;
    padding: 24px 20px;
  }

  .proof-board-top {
    display: grid;
    gap: 14px;
  }

  .proof-metrics {
    margin: 34px 0;
    grid-template-columns: 1fr;
  }

  .proof-metrics div,
  .proof-metrics div + div,
  .proof-metrics div:nth-child(3) {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .proof-metrics div:first-child {
    border-top: 0;
  }

  .proof-metrics dd {
    margin-top: 8px;
    font-size: 2.7rem;
  }

  .proof-board .button {
    width: 100%;
  }

  .steps li {
    padding: 28px 0;
    grid-template-columns: 50px 1fr;
  }

  .steps li > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps h3 {
    font-size: 2rem;
  }

  .steps p {
    font-size: 0.9rem;
  }

  .control-strip {
    grid-template-columns: 1fr 1fr;
  }

  .control-strip p:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .control-strip p:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .final-section,
  .final-content {
    min-height: 0;
  }

  .final-image {
    background:
      linear-gradient(180deg, rgba(2, 4, 7, 0.06) 0%, rgba(5, 8, 13, 0.32) 220px, rgba(5, 8, 13, 0.94) 560px, #050607 720px),
      url("/assets/volt-hero.png") 84% top / auto 600px no-repeat;
    transform: none;
  }

  .final-content {
    padding: 310px 0 40px;
    gap: 32px;
    align-items: stretch;
  }

  .final-copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 0.92rem;
  }

  .final-form-card {
    width: 100%;
    justify-self: stretch;
    border-radius: 18px;
  }

  .application-form-heading {
    min-height: 62px;
    padding-inline: 20px;
  }

  .final-form-card .application-form {
    padding: 24px 20px 20px;
  }

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

  .application-modal {
    width: 100%;
    max-height: 100svh;
    border-radius: 0;
  }

  .application-modal-shell {
    min-height: 100svh;
  }

  .application-modal-form-slot {
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
  }

  .application-form {
    padding: 38px 20px 34px;
  }

  .application-modal-form-slot .application-form {
    align-self: flex-start;
    padding: 84px 20px 34px;
  }

  .application-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .application-field-full {
    grid-column: auto;
  }
}

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

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

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