:root {
  --ink: #f7f9ff;
  --muted: #8e9bb5;
  --muted-bright: #b9c4d9;
  --navy-950: #040a16;
  --navy-900: #071126;
  --navy-850: #0a1630;
  --navy-800: #0d1b39;
  --navy-700: #13264d;
  --line: rgba(108, 139, 197, 0.18);
  --line-strong: rgba(92, 154, 255, 0.34);
  --blue: #2585ff;
  --blue-bright: #59a7ff;
  --orange: #ffb12e;
  --orange-deep: #ff9418;
  --green: #35e89c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(rgba(26, 47, 88, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 47, 88, 0.045) 1px, transparent 1px),
    var(--navy-950);
  background-size: 72px 72px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(20, 80, 170, 0.15), transparent 36%);
  z-index: -2;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: #061022;
  background: var(--orange);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  top: 180px;
  right: -140px;
  background: var(--orange);
}

.page-glow-two {
  top: 760px;
  left: -220px;
  background: var(--blue);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    padding 240ms ease,
    box-shadow 240ms ease;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(4, 10, 22, 0.86);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

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

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

.brand > span {
  padding-left: 11px;
  color: #90a0bd;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--muted-bright);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
.mobile-apply:focus-visible {
  outline: 3px solid rgba(255, 177, 46, 0.48);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  color: #061022;
  background: var(--orange);
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(255, 160, 29, 0.16);
}

.button-primary {
  color: #071020;
  background: linear-gradient(135deg, #ffc04c, var(--orange-deep));
  box-shadow:
    0 16px 38px rgba(255, 154, 21, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.45);
}

.button-primary:hover {
  box-shadow:
    0 20px 46px rgba(255, 154, 21, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.5);
}

.hero {
  position: relative;
  padding: 168px 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 780px;
  background:
    radial-gradient(circle at 78% 34%, rgba(23, 85, 188, 0.23), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(255, 168, 33, 0.1), transparent 19%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: 62px;
  min-height: 520px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 24px;
  padding: 9px 13px;
  color: #b9d9ff;
  background: rgba(37, 133, 255, 0.09);
  border: 1px solid rgba(70, 150, 255, 0.2);
  border-radius: 8px;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(53, 232, 156, 0.4);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(50px, 5.6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

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

.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--muted-bright);
  font-size: 18px;
  line-height: 1.68;
}

.hero-lead strong {
  color: #fff;
  font-weight: 800;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce6f8;
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--blue-bright);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  color: #dbeaff;
  background: var(--navy-800);
  border: 2px solid var(--navy-950);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.avatar-stack span:first-child {
  margin-left: 0;
  color: #071020;
  background: var(--orange);
}

.hero-proof p {
  display: grid;
  gap: 3px;
  margin: 0;
  font-size: 12px;
}

.hero-proof strong {
  color: #e9f1ff;
}

.hero-proof p span {
  color: var(--muted);
}

.earning-visual {
  position: relative;
  padding: 24px 0;
}

.earning-visual::before {
  content: "";
  position: absolute;
  inset: 16% -8% 8% 12%;
  background: rgba(24, 102, 225, 0.19);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}

.earning-board {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(18, 37, 76, 0.94), rgba(7, 18, 40, 0.98)),
    var(--navy-900);
  border: 1px solid rgba(103, 147, 225, 0.25);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.earning-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.025) 49%, transparent 50%),
    linear-gradient(transparent 48%, rgba(255, 255, 255, 0.018) 49%, transparent 50%);
  background-size: 32px 32px;
  pointer-events: none;
}

.earning-board::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50px;
  width: 140px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 177, 46, 0.62);
}

.board-topline,
.earning-cards,
.performance,
.formula {
  position: relative;
  z-index: 1;
}

.board-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.board-kicker {
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.board-topline h2 {
  margin: 7px 0 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: #aef7d7;
  background: rgba(53, 232, 156, 0.08);
  border: 1px solid rgba(53, 232, 156, 0.18);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.live-chip i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}

.earning-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.earning-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 20px;
  overflow: hidden;
  background: rgba(8, 21, 46, 0.76);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.earning-card.featured {
  background:
    linear-gradient(145deg, rgba(41, 132, 255, 0.18), rgba(8, 21, 46, 0.82)),
    var(--navy-850);
  border-color: rgba(66, 144, 255, 0.42);
}

.earning-card.featured::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  background: rgba(40, 130, 255, 0.14);
  border-radius: 50%;
}

.earning-card > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.earning-card strong {
  margin-top: auto;
  color: #fff;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.05em;
}

.earning-card.featured strong {
  color: var(--orange);
}

.earning-card strong small {
  font-size: 13px;
  letter-spacing: -0.01em;
}

.earning-card em {
  margin-top: 3px;
  color: var(--muted-bright);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.performance {
  margin-top: 13px;
  padding: 18px 20px 16px;
  background: rgba(5, 14, 31, 0.66);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.performance-heading {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 58px;
  margin-top: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bars i {
  flex: 1;
  height: var(--bar);
  min-height: 10px;
  background: linear-gradient(180deg, var(--blue-bright), rgba(37, 133, 255, 0.28));
  border-radius: 4px 4px 0 0;
  animation: rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.bars i:nth-child(7),
.bars i:nth-child(8) {
  background: linear-gradient(180deg, var(--orange), rgba(255, 148, 24, 0.35));
}

@keyframes rise {
  from {
    height: 0;
  }
}

.formula {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  padding: 15px 18px;
  background: rgba(255, 177, 46, 0.07);
  border: 1px solid rgba(255, 177, 46, 0.19);
  border-radius: 13px;
}

.formula > span {
  color: #d2a755;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.formula strong {
  color: #fff1cc;
  font-size: 12px;
}

.formula b {
  color: var(--orange);
}

.visual-orbit {
  position: absolute;
  z-index: 2;
  padding: 10px 13px;
  color: #fff;
  background: rgba(10, 23, 49, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  animation: float 4s ease-in-out infinite;
}

.orbit-one {
  top: -6px;
  right: 38px;
  color: var(--orange);
}

.orbit-two {
  bottom: 4px;
  left: -28px;
  color: var(--blue-bright);
  animation-delay: -1.8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.metrics {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 78px;
  padding: 22px 28px;
  background: rgba(8, 19, 42, 0.68);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.metrics div {
  display: grid;
  gap: 5px;
}

.metrics strong {
  color: #fff;
  font-size: 17px;
}

.metrics div:first-child strong {
  color: var(--orange);
}

.metrics span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.metrics > i {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.section {
  position: relative;
  padding: 118px 0;
}

.income-section {
  padding-top: 150px;
}

.income-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 90px;
}

.section-copy h2,
.section-heading h2,
.benefits-head h2,
.application-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.5vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-copy > p,
.section-heading > p,
.benefits-head > p,
.application-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.model-points {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.model-points > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.model-points > div > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  height: 38px;
  color: var(--orange);
  background: rgba(255, 177, 46, 0.07);
  border: 1px solid rgba(255, 177, 46, 0.2);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
}

.model-points p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.model-points strong {
  color: #eef4ff;
  font-size: 15px;
}

.calculator {
  position: relative;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(15, 36, 75, 0.9), rgba(7, 17, 37, 0.96)),
    var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calculator::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 36%);
  border-radius: inherit;
  pointer-events: none;
}

.calculator-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.calculator-top span:first-child {
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.calculator-top h3 {
  margin: 7px 0 0;
  font-size: 26px;
}

.calculator-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--orange);
  background: rgba(255, 177, 46, 0.08);
  border: 1px solid rgba(255, 177, 46, 0.2);
  border-radius: 13px;
  font-size: 21px;
  font-weight: 900;
}

.calculator label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted-bright);
  font-size: 12px;
  font-weight: 750;
}

.calculator output {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  margin: 0;
  appearance: none;
  background:
    linear-gradient(
      90deg,
      var(--orange) 0%,
      var(--orange) var(--range-progress, 9%),
      rgba(96, 125, 179, 0.22) var(--range-progress, 9%),
      rgba(96, 125, 179, 0.22) 100%
    );
  border-radius: 99px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  background: var(--orange);
  border: 5px solid #fff1d1;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 177, 46, 0.13);
  cursor: grab;
}

input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 5px solid #fff1d1;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 177, 46, 0.13);
  cursor: grab;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #62708c;
  font-size: 9px;
}

.calculation-result {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 22px;
  background: rgba(3, 11, 25, 0.55);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.calculation-result > div {
  display: grid;
  gap: 7px;
}

.calculation-result span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.calculation-result strong {
  font-size: clamp(19px, 2.4vw, 28px);
  letter-spacing: -0.04em;
}

.calculation-result > b {
  color: #52617c;
  font-size: 23px;
}

.calculation-result .orange {
  color: var(--orange);
}

.calculator-note {
  position: relative;
  z-index: 1;
  margin: 16px 2px 0;
  color: #6f7c96;
  font-size: 10px;
  line-height: 1.55;
}

.steps-section {
  background: rgba(7, 17, 38, 0.54);
  border-block: 1px solid rgba(80, 112, 171, 0.1);
}

.section-heading.centered {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-label {
  justify-content: center;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 64px;
}

.step-card {
  position: relative;
  min-height: 265px;
  padding: 28px;
  background: rgba(10, 24, 52, 0.68);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(11, 28, 60, 0.9);
  border-color: rgba(61, 140, 255, 0.4);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(117, 141, 181, 0.38);
  font-size: 12px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--orange);
  background: rgba(255, 177, 46, 0.08);
  border: 1px solid rgba(255, 177, 46, 0.18);
  border-radius: 13px;
  font-size: 20px;
}

.step-card h3 {
  margin: 30px 0 12px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.step-connector {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue-bright);
  background: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.benefits-section {
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 440px;
  height: 440px;
  background: rgba(28, 102, 218, 0.12);
  filter: blur(130px);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.benefits-head h2 {
  max-width: 700px;
}

.benefits-head > p {
  padding-bottom: 4px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 58px;
}

.benefit-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-height: 206px;
  padding: 28px;
  overflow: hidden;
  background: rgba(9, 22, 48, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.benefit-large {
  grid-row: span 2;
  min-height: 428px;
  align-items: end;
  background:
    linear-gradient(160deg, rgba(23, 78, 162, 0.24), rgba(8, 20, 44, 0.9)),
    var(--navy-900);
}

.benefit-large::after {
  content: "%30";
  position: absolute;
  top: 32px;
  right: -12px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 118px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.benefit-wide {
  grid-column: 1 / -1;
  min-height: 230px;
  align-items: center;
  padding-right: 44%;
}

.benefit-symbol {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: var(--orange);
  background: rgba(255, 177, 46, 0.08);
  border: 1px solid rgba(255, 177, 46, 0.16);
  border-radius: 13px;
  font-size: 18px;
}

.benefit-card > div > span {
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.benefit-card h3 {
  max-width: 420px;
  margin: 10px 0;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.03em;
}

.benefit-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.mini-brand {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 40%;
  background:
    linear-gradient(90deg, transparent, rgba(10, 35, 77, 0.72)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.018) 8px,
      transparent 8px,
      transparent 16px
    );
}

.mini-brand img {
  width: 210px;
  height: auto;
  aspect-ratio: 927 / 146;
  object-fit: contain;
  opacity: 0.8;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.3));
}

.application-section {
  padding-bottom: 130px;
}

.application-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  padding: 58px;
  background:
    linear-gradient(145deg, rgba(13, 32, 69, 0.88), rgba(5, 14, 31, 0.95)),
    var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.application-copy {
  padding: 12px 0;
}

.application-highlights {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.application-highlights > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.application-highlights > div > span {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  height: 25px;
  color: #0a1c28;
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.application-highlights p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.application-highlights strong {
  color: #f0f5ff;
  font-size: 14px;
}

.secure-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 38px;
  padding: 16px;
  background: rgba(4, 13, 29, 0.52);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.secure-note > span {
  color: var(--blue-bright);
  font-size: 22px;
  line-height: 1;
}

.secure-note p {
  margin: 0;
  color: #72819c;
  font-size: 10px;
  line-height: 1.6;
}

.form-card {
  padding: 30px;
  background: rgba(4, 13, 30, 0.72);
  border: 1px solid rgba(111, 139, 190, 0.18);
  border-radius: 20px;
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.form-heading > div > span {
  font-size: 17px;
  font-weight: 850;
}

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

.form-badge {
  padding: 6px 9px;
  color: #a9cfff;
  background: rgba(37, 133, 255, 0.08);
  border: 1px solid rgba(37, 133, 255, 0.17);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
}

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

.field {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.field label {
  color: #d7e0f0;
  font-size: 11px;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  color: #f6f9ff;
  background: rgba(11, 27, 58, 0.72);
  border: 1px solid rgba(104, 135, 190, 0.2);
  border-radius: 10px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input {
  height: 50px;
  padding: 0 15px;
}

.field textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #566682;
}

.field input:focus,
.field textarea:focus {
  background: rgba(12, 31, 66, 0.94);
  border-color: rgba(65, 146, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(37, 133, 255, 0.1);
}

.input-with-prefix {
  position: relative;
}

.input-with-prefix > span {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-50%);
}

.input-with-prefix input {
  padding-left: 35px;
}

.field-hint {
  position: absolute;
  right: 11px;
  bottom: 9px;
  color: #5f6d85;
  font-size: 8px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
}

.consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent > span {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: rgba(11, 27, 58, 0.8);
  border: 1px solid rgba(104, 135, 190, 0.35);
  border-radius: 5px;
  transition: 180ms ease;
}

.consent input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
}

.consent input:checked + span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent input:focus-visible + span {
  outline: 3px solid rgba(37, 133, 255, 0.22);
  outline-offset: 2px;
}

.consent small {
  color: #73819a;
  font-size: 9px;
  line-height: 1.55;
}

.submit-button {
  width: 100%;
  margin-top: 20px;
}

.submit-button b {
  margin-left: auto;
  font-size: 18px;
}

.submit-button[disabled] {
  opacity: 0.66;
  cursor: wait;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  color: #bdf7dc;
  background: rgba(53, 232, 156, 0.08);
  border: 1px solid rgba(53, 232, 156, 0.2);
}

.form-status.error {
  color: #ffbdc4;
  background: rgba(255, 84, 102, 0.08);
  border: 1px solid rgba(255, 84, 102, 0.2);
}

.faq-section {
  padding-top: 30px;
  background: rgba(6, 14, 31, 0.54);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 90px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  background: rgba(10, 24, 52, 0.64);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.faq-list summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  color: #e8effc;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--blue-bright);
  background: rgba(37, 133, 255, 0.08);
  border-radius: 7px;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] {
  border-color: rgba(66, 144, 255, 0.3);
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer {
  padding: 40px 0 28px;
  background: #030915;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand img {
  width: 148px;
}

.footer-top > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.footer-button {
  justify-self: end;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  color: #56637a;
  border-top: 1px solid rgba(95, 123, 174, 0.1);
  font-size: 9px;
}

.mobile-apply {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 190ms;
}

.reveal-delay-3 {
  transition-delay: 280ms;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .earning-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

  .metrics > i {
    display: none;
  }

  .income-grid {
    gap: 48px;
  }

  .application-shell {
    gap: 44px;
    padding: 44px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 0;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 136px;
  }

  .hero-grid {
    min-height: 0;
  }

  .income-grid,
  .benefits-head,
  .application-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefits-head,
  .faq-grid {
    gap: 26px;
  }

  .income-grid {
    gap: 58px;
  }

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

  .step-card {
    min-height: 0;
  }

  .step-connector {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .application-shell {
    gap: 50px;
  }
}

@media (max-width: 640px) {
  :root {
    --radius: 18px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 130px;
  }

  .brand > span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(43px, 14.2vw, 62px);
  }

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

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

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

  .earning-visual {
    padding-top: 12px;
  }

  .earning-board {
    padding: 18px;
    border-radius: 20px;
  }

  .earning-cards {
    grid-template-columns: 1fr;
  }

  .earning-card {
    min-height: 138px;
  }

  .formula {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .orbit-one {
    top: -15px;
    right: 15px;
  }

  .orbit-two {
    bottom: -12px;
    left: 8px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    margin-top: 62px;
    padding: 22px;
  }

  .metrics strong {
    font-size: 14px;
  }

  .section {
    padding: 84px 0;
  }

  .income-section {
    padding-top: 108px;
  }

  .section-copy h2,
  .section-heading h2,
  .benefits-head h2,
  .application-copy h2 {
    font-size: 36px;
  }

  .calculator {
    padding: 22px;
  }

  .calculation-result {
    grid-template-columns: 1fr;
  }

  .calculation-result > b {
    display: none;
  }

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

  .benefit-large,
  .benefit-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .benefit-large {
    align-items: flex-start;
  }

  .benefit-wide {
    min-height: 320px;
    padding-right: 28px;
    padding-bottom: 130px;
  }

  .mini-brand {
    top: auto;
    left: 0;
    width: 100%;
    height: 110px;
    background:
      linear-gradient(180deg, transparent, rgba(10, 35, 77, 0.72)),
      repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.018),
        rgba(255, 255, 255, 0.018) 8px,
        transparent 8px,
        transparent 16px
      );
  }

  .application-section {
    padding-inline: 0;
  }

  .application-shell {
    width: 100%;
    padding: 42px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .form-card {
    padding: 22px 17px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-button {
    justify-self: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .mobile-apply {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 20px;
    color: #071020;
    background: var(--orange);
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
    font-size: 13px;
    font-weight: 900;
    transform: translateY(90px);
    transition: transform 240ms ease;
  }

  .mobile-apply.visible {
    transform: translateY(0);
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
