:root {
  --ink: #11121a;
  --muted: #656878;
  --line: #e8e9ef;
  --soft: #f6f7fa;
  --white: #ffffff;
  --cyan: #00cfe9;
  --cyan-deep: #02a9d4;
  --violet: #7856ff;
  --pink: #ee32c7;
  --gradient: linear-gradient(115deg, #00bddf 0%, #6b65f4 50%, #e934c5 100%);
  --shadow-sm: 0 12px 34px rgba(26, 29, 48, .08);
  --shadow-lg: 0 32px 90px rgba(41, 45, 71, .14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

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

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

.page-glow-one {
  top: -240px;
  right: -260px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(238, 50, 199, .11), rgba(120, 86, 255, .045) 48%, transparent 70%);
}

.page-glow-two {
  top: 470px;
  left: -330px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(0, 207, 233, .12), transparent 69%);
}

.site-header {
  width: var(--shell);
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(232, 233, 239, .85);
}

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

.brand img {
  width: 112px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: var(--line);
}

.brand-label {
  color: #747787;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #4f5260;
  font-size: 14px;
  font-weight: 590;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, opacity .25s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}

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

.button:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
.contract-document:focus-visible {
  outline: 3px solid rgba(0, 191, 222, .24);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: .65;
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 9px 24px rgba(17, 18, 26, .16);
}

.button-dark:hover:not(:disabled) {
  background: #292b38;
  box-shadow: 0 13px 30px rgba(17, 18, 26, .22);
}

.button-primary {
  position: relative;
  color: var(--white);
  background: var(--gradient);
  background-size: 120% 120%;
  box-shadow: 0 13px 30px rgba(115, 79, 232, .22);
}

.button-primary:hover:not(:disabled) {
  box-shadow: 0 17px 36px rgba(115, 79, 232, .3);
}

.button-white {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 13px 35px rgba(10, 12, 22, .25);
}

.button-ghost {
  color: #555866;
  background: #f1f2f6;
}

.button-ghost svg {
  transition: transform .25s ease;
}

.button-ghost:hover:not(:disabled) svg {
  transform: translateX(-3px);
}

.hero {
  min-height: 705px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .92fr);
  align-items: center;
  gap: 76px;
  padding-block: 72px 86px;
}

.eyebrow {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 12px;
  color: #4b4e5d;
  background: rgba(248, 248, 251, .9);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border: 2px solid rgba(0, 207, 233, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 207, 233, .1);
  animation: pulse 2.4s ease-out infinite;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(58px, 5.1vw, 78px);
  line-height: .99;
  letter-spacing: -.062em;
}

.hero h1 em {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
  letter-spacing: -.017em;
}

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

.hero-actions .button {
  min-height: 57px;
  padding-inline: 25px;
}

.text-link {
  color: #494c5a;
  font-size: 14px;
  font-weight: 680;
}

.text-link span {
  margin-left: 5px;
  transition: transform .2s ease;
}

.text-link:hover span {
  display: inline-block;
  transform: translateY(3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 44px;
}

.avatar-stack {
  display: flex;
  padding-left: 7px;
}

.avatar-stack span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  color: #313444;
  background: #e6faff;
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) { background: #f4eaff; }
.avatar-stack span:nth-child(3) { background: #ffe8f6; }
.avatar-stack span:nth-child(4) { color: var(--white); background: var(--ink); font-size: 12px; }

.hero-trust p {
  margin: 0;
  color: #8a8c98;
  font-size: 11px;
  line-height: 1.45;
}

.hero-trust strong {
  color: #3f4250;
  font-size: 12px;
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle at 42% 36%, rgba(0, 207, 233, .2), rgba(120, 86, 255, .13) 39%, rgba(238, 50, 199, .06) 61%, transparent 72%);
  border-radius: 50%;
  filter: blur(5px);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(114, 99, 220, .13);
  border-radius: 50%;
  transform: rotate(-19deg);
}

.orbit-one {
  width: 480px;
  height: 320px;
}

.orbit-two {
  width: 390px;
  height: 490px;
  transform: rotate(31deg);
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 35px 80px rgba(64, 57, 130, .18), inset 0 0 0 1px rgba(255, 255, 255, .55);
  backdrop-filter: blur(20px);
}

.hero-card-main {
  width: 380px;
  min-height: 370px;
  padding: 27px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(27, 29, 48, .97), rgba(31, 31, 57, .96));
  border-radius: 28px;
  transform: rotate(-3.5deg);
  animation: float 6s ease-in-out infinite;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  width: 54px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
}

.mini-brand img {
  width: 44px;
  height: 30px;
  object-fit: contain;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 650;
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: #34e3a5;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52, 227, 165, .13);
}

.card-kicker {
  margin: 54px 0 12px;
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.earning-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.earning-row > strong {
  color: transparent;
  background: linear-gradient(120deg, #4ce8f5, #8b74ff 55%, #fb58d7);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 73px;
  line-height: .94;
  letter-spacing: -.07em;
}

.earning-row > span {
  padding-bottom: 7px;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  line-height: 1.45;
}

.progress-track {
  height: 5px;
  margin-top: 27px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
  border-radius: 5px;
}

.progress-track span {
  width: 82%;
  height: 100%;
  display: block;
  background: var(--gradient);
  border-radius: inherit;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.card-grid > div {
  padding: 13px 14px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 11px;
}

.card-grid span,
.card-grid strong {
  display: block;
}

.card-grid span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .35);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.card-grid strong {
  font-size: 12px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px 12px 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(230, 231, 239, .95);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.floating-card-one {
  top: 88px;
  right: -5px;
  animation: floatSmall 5s ease-in-out infinite;
}

.floating-card-two {
  bottom: 72px;
  left: -15px;
  animation: floatSmall 5.5s .6s ease-in-out infinite;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 3px;
  color: #999ba7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.floating-card strong {
  color: #272936;
  font-size: 10px;
}

.icon-wrap {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
}

.icon-wrap svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-cyan { color: #009fc6; background: #e2faff; }
.icon-pink { color: #d928ad; background: #ffebfa; }

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gradient);
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(112, 95, 242, .4);
  transform: rotate(31deg);
}

.spark-one { top: 42px; left: 82px; }
.spark-two { right: 45px; bottom: 43px; width: 8px; height: 8px; }

.opportunity-section {
  padding-block: 112px 125px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  align-items: end;
  gap: 100px;
}

.section-label {
  margin: 0 0 18px;
  color: #8a8d9a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-label::before {
  width: 22px;
  height: 1px;
  display: inline-block;
  margin: 0 10px 3px 0;
  content: "";
  background: var(--gradient);
}

.section-heading h2,
.process-heading h2,
.standards-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 59px);
  line-height: 1.05;
  letter-spacing: -.052em;
}

.section-heading h2 span,
.process-heading h2 span,
.standards-copy h2 span,
.final-cta h2 span {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 62px;
}

.feature-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  padding: 31px;
  background: #fafafd;
  border: 1px solid #ededf2;
  border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(114, 98, 236, .2);
  box-shadow: 0 24px 55px rgba(34, 38, 62, .09);
}

.feature-number {
  position: absolute;
  top: 26px;
  right: 29px;
  color: #c5c6cf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 65px;
  color: #4d5263;
  background: var(--white);
  border: 1px solid #e5e6ec;
  border-radius: 16px;
  box-shadow: 0 9px 24px rgba(22, 25, 43, .06);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 13px;
  font-size: 21px;
  letter-spacing: -.035em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.67;
}

.feature-card-highlight {
  background: linear-gradient(150deg, #fbfdff 0%, #f4f2ff 100%);
}

.feature-card-highlight .feature-icon {
  color: var(--white);
  background: var(--gradient);
  border-color: transparent;
}

.feature-accent {
  position: absolute;
  right: -54px;
  bottom: -83px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 207, 233, .35), rgba(120, 86, 255, .15) 47%, transparent 68%);
  border-radius: 50%;
}

.programme-note {
  margin: 26px 0 0;
  color: #8b8e9b;
  font-size: 12px;
  text-align: center;
}

.process-section {
  padding-block: 125px;
  background: #f7f7fa;
  border-block: 1px solid #eeeef2;
}

.process-section .shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 120px;
}

.process-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.process-heading > p:last-child {
  max-width: 410px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 26px;
  bottom: 45px;
  left: 25px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--violet), rgba(120, 86, 255, .08));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 27px;
  padding-bottom: 48px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.step-marker {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #6d5de8;
  background: var(--white);
  border: 1px solid #ddd9ff;
  border-radius: 15px;
  box-shadow: 0 10px 28px rgba(61, 54, 112, .08);
}

.step-marker span {
  font-size: 11px;
  font-weight: 800;
}

.timeline-step h3 {
  margin: 2px 0 8px;
  font-size: 19px;
  letter-spacing: -.03em;
}

.timeline-step p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.standards-section {
  padding-block: 120px;
}

.standards-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  padding: 73px 76px;
  color: var(--white);
  background: linear-gradient(135deg, #141621 0%, #1c1d31 58%, #24203c 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(25, 27, 43, .16);
}

.standards-card::before {
  position: absolute;
  top: -190px;
  right: -140px;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(120, 86, 255, .35), rgba(238, 50, 199, .08) 48%, transparent 70%);
  border-radius: 50%;
}

.standards-card::after {
  position: absolute;
  bottom: -270px;
  left: 10%;
  width: 450px;
  height: 450px;
  content: "";
  background: radial-gradient(circle, rgba(0, 207, 233, .15), transparent 68%);
  border-radius: 50%;
}

.standards-copy,
.qualities-list {
  position: relative;
  z-index: 1;
}

.section-label-light {
  color: rgba(255, 255, 255, .5);
}

.standards-copy h2 span {
  background-image: linear-gradient(100deg, #55e3f0, #8e83ff, #f66bd8);
}

.standards-copy > p:not(.section-label) {
  max-width: 460px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, .59);
  font-size: 15px;
  line-height: 1.72;
}

.qualities-list {
  display: grid;
  gap: 12px;
}

.qualities-list > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease;
}

.qualities-list > div:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, .085);
}

.qualities-list > div > span {
  width: 39px;
  height: 39px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #5be2ed;
  background: rgba(0, 207, 233, .1);
  border: 1px solid rgba(0, 207, 233, .13);
  border-radius: 11px;
}

.qualities-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qualities-list p,
.qualities-list strong,
.qualities-list small {
  display: block;
  margin: 0;
}

.qualities-list strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.qualities-list small {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 10px 115px;
}

.final-cta .button-large {
  min-height: 60px;
  padding-inline: 27px;
}

.site-footer {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: #8a8c98;
  font-size: 11px;
}

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

.site-footer > p {
  text-align: center;
}

.site-footer > div:last-child {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer a:hover {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2,.75,.2,1), transform .75s cubic-bezier(.2,.75,.2,1);
}

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

.reveal-delay {
  transition-delay: .16s;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 4px rgba(0, 207, 233, .1); }
  60%, 100% { box-shadow: 0 0 0 10px rgba(0, 207, 233, 0); }
}

@keyframes float {
  0%, 100% { transform: rotate(-3.5deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-10px); }
}

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

/* Application flow */
.application-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  height: min(780px, calc(100vh - 36px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(16, 17, 30, .28);
}

.application-dialog::backdrop {
  background: rgba(14, 15, 24, .58);
  backdrop-filter: blur(12px);
}

.application-dialog[open] {
  animation: dialogIn .34s cubic-bezier(.2,.8,.2,1);
}

@keyframes dialogIn {
  from { opacity: 0; transform: scale(.975) translateY(12px); }
  to { opacity: 1; transform: none; }
}

.dialog-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 335px 1fr;
}

.application-sidebar {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 32px 31px;
  color: var(--white);
  background: linear-gradient(155deg, #11131e 0%, #1a1b2c 68%, #211a35 100%);
}

.application-sidebar::before {
  position: absolute;
  top: -130px;
  right: -170px;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(112, 88, 255, .38), rgba(235, 49, 198, .08) 46%, transparent 68%);
  border-radius: 50%;
}

.application-sidebar::after {
  position: absolute;
  bottom: -170px;
  left: -180px;
  width: 380px;
  height: 380px;
  content: "";
  background: radial-gradient(circle, rgba(0, 207, 233, .22), transparent 67%);
  border-radius: 50%;
}

.sidebar-brand,
.sidebar-intro,
.application-progress,
.sidebar-assurance {
  position: relative;
  z-index: 1;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 650;
}

.sidebar-brand img {
  width: 83px;
  height: 42px;
  object-fit: contain;
}

.sidebar-brand::after {
  position: absolute;
  left: 94px;
  width: 1px;
  height: 23px;
  content: "";
  background: rgba(255,255,255,.15);
}

.sidebar-brand span {
  margin-left: 4px;
}

.sidebar-intro {
  margin-top: 62px;
}

.sidebar-intro p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.sidebar-intro h2 {
  max-width: 245px;
  margin: 0;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -.04em;
}

.application-progress {
  display: grid;
  gap: 20px;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.application-progress::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 18px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, .1);
}

.application-progress li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .35);
  transition: color .25s ease;
}

.application-progress li > span {
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  background: #202230;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.application-progress strong,
.application-progress small {
  display: block;
}

.application-progress strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.application-progress small {
  font-size: 9px;
}

.application-progress li.active,
.application-progress li.complete {
  color: var(--white);
}

.application-progress li.active > span {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 8px 21px rgba(117, 82, 232, .34);
}

.application-progress li.complete > span {
  color: #50e5ef;
  background: rgba(0, 207, 233, .1);
  border-color: rgba(0, 207, 233, .2);
}

.sidebar-assurance {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: auto;
  padding: 15px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
}

.sidebar-assurance svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #5ce5ef;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-assurance p,
.sidebar-assurance strong,
.sidebar-assurance small {
  display: block;
  margin: 0;
}

.sidebar-assurance strong {
  margin-bottom: 3px;
  font-size: 9px;
}

.sidebar-assurance small {
  color: rgba(255, 255, 255, .36);
  font-size: 8px;
  line-height: 1.45;
}

.application-main {
  position: relative;
  overflow-y: auto;
  padding: 55px 68px 42px;
}

.dialog-close {
  width: 39px;
  height: 39px;
  position: absolute;
  z-index: 3;
  top: 23px;
  right: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #7a7c88;
  background: #f4f5f7;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.dialog-close:hover {
  color: var(--ink);
  background: #eceef2;
  transform: rotate(4deg);
}

.dialog-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: formStepIn .32s ease both;
}

@keyframes formStepIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}

.mobile-step-label {
  display: none;
}

.form-step h3,
.success-state h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.form-lead {
  margin: 10px 0 32px;
  color: #777a88;
  font-size: 13px;
  line-height: 1.55;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

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

.field {
  display: block;
  margin-bottom: 18px;
}

.field > span,
.choice-group legend,
.signature-label > span {
  display: block;
  margin-bottom: 8px;
  color: #414350;
  font-size: 11px;
  font-weight: 700;
}

.field > span em {
  margin-left: 5px;
  color: #a4a6af;
  font-size: 9px;
  font-style: normal;
  font-weight: 550;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fafafd;
  border: 1px solid #e5e6ec;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.field textarea {
  min-height: 86px;
  padding: 13px 15px;
  line-height: 1.45;
  resize: vertical;
}

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

.field input:focus,
.field textarea:focus {
  background: var(--white);
  border-color: rgba(109, 91, 233, .55);
  box-shadow: 0 0 0 4px rgba(109, 91, 233, .08);
}

.field.invalid input,
.field.invalid textarea {
  border-color: #dc4770;
  box-shadow: 0 0 0 4px rgba(220, 71, 112, .07);
}

.field-error,
.group-error,
.check-error,
.signature-error {
  min-height: 13px;
  display: block;
  margin-top: 5px;
  color: #c9325b;
  font-size: 9px;
}

.choice-group {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.choice-cards {
  display: grid;
  gap: 10px;
}

.choice-cards-three {
  grid-template-columns: repeat(3, 1fr);
}

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

.choice-cards label {
  cursor: pointer;
}

.choice-cards input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-cards label > span {
  min-height: 82px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 14px;
  color: #4e505d;
  background: #fafafd;
  border: 1px solid #e5e6ec;
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.choice-cards label > span::after {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  content: "";
  border: 1.5px solid #c7c9d1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fafafd;
}

.choice-cards strong,
.choice-cards small {
  display: block;
}

.choice-cards strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.choice-cards small {
  color: #9a9ca8;
  font-size: 9px;
  line-height: 1.35;
}

.choice-cards input:checked + span {
  color: #423aa1;
  background: #f6f4ff;
  border-color: #9485f0;
  box-shadow: 0 0 0 3px rgba(120, 86, 255, .07);
}

.choice-cards input:checked + span::after {
  background: var(--violet);
  border-color: var(--violet);
  box-shadow: inset 0 0 0 3px #f6f4ff;
}

.choice-cards input:focus-visible + span {
  outline: 3px solid rgba(0, 191, 222, .2);
  outline-offset: 2px;
}

.choice-group.invalid .choice-cards label > span {
  border-color: rgba(220, 71, 112, .55);
}

.compact-choices label > span {
  min-height: 48px;
  padding-left: 15px;
}

.contract-document {
  height: 395px;
  overflow-y: auto;
  margin-bottom: 18px;
  padding: 28px 30px;
  color: #555866;
  background: #fafafd;
  border: 1px solid #e5e6ec;
  border-radius: 14px;
  scrollbar-color: #c9cbd4 transparent;
  scrollbar-width: thin;
}

.contract-head {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e6ec;
}

.contract-head p {
  margin: 0 0 7px;
  color: #888b97;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.contract-head h4 {
  margin: 0 0 9px;
  color: #1c1e28;
  font-size: 18px;
  letter-spacing: -.025em;
}

.contract-head span {
  color: #8a8d99;
  font-size: 10px;
}

.contract-clause {
  margin-top: 20px;
}

.contract-clause h5 {
  margin: 0 0 7px;
  color: #2c2f3b;
  font-size: 11px;
}

.contract-clause p {
  margin: 0;
  font-size: 10px;
  line-height: 1.7;
}

.contract-loading {
  height: 100%;
  display: grid;
  place-items: center;
  color: #9a9ca7;
  font-size: 11px;
}

.check-field {
  display: block;
  cursor: pointer;
}

.check-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-field > span {
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: start;
  gap: 10px;
  color: #525562;
  font-size: 10px;
  line-height: 1.5;
}

.check-field i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: transparent;
  background: var(--white);
  border: 1px solid #d8dae1;
  border-radius: 6px;
  transition: background .2s ease, border-color .2s ease;
}

.check-field svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-field input:checked + span i {
  color: var(--white);
  background: var(--gradient);
  border-color: transparent;
}

.check-field input:focus-visible + span i {
  outline: 3px solid rgba(0, 191, 222, .2);
  outline-offset: 2px;
}

.legal-note {
  margin: 8px 0 0;
  color: #a0a2ac;
  font-size: 8px;
  line-height: 1.45;
}

.review-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #e9eaf0;
  border: 1px solid #e9eaf0;
  border-radius: 12px;
}

.review-strip > div {
  padding: 12px 14px;
  background: #fafafd;
}

.review-strip span,
.review-strip strong {
  display: block;
}

.review-strip span {
  margin-bottom: 4px;
  color: #9a9ca6;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.review-strip strong {
  color: #40424f;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signature-field {
  margin-bottom: 14px;
}

.signature-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signature-label button {
  padding: 0;
  color: #7261df;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.signature-field canvas {
  width: 100%;
  height: 130px;
  display: block;
  touch-action: none;
  background-color: #fafafd;
  background-image: linear-gradient(transparent calc(100% - 31px), #e3e4ea calc(100% - 30px), #e3e4ea calc(100% - 29px), transparent calc(100% - 28px));
  border: 1px solid #e5e6ec;
  border-radius: 12px;
  cursor: crosshair;
}

.signature-field.invalid canvas {
  border-color: #dc4770;
}

.signature-field > p {
  margin: 6px 0 0;
  color: #a2a4ad;
  font-size: 8px;
}

.form-error {
  display: none;
  margin-top: 13px;
  padding: 10px 12px;
  color: #a52648;
  background: #fff0f4;
  border: 1px solid #f4d5de;
  border-radius: 9px;
  font-size: 10px;
}

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

.form-actions {
  display: flex;
  align-items: center;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid #ececf1;
}

.form-spacer {
  flex: 1;
}

.success-state {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-state[hidden] {
  display: none;
}

.success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--white);
  background: var(--gradient);
  border-radius: 23px;
  box-shadow: 0 17px 40px rgba(112, 80, 230, .26);
}

.success-mark svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-state > p:not(.section-label) {
  max-width: 470px;
  margin: 15px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.reference-card {
  width: min(440px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 17px;
  text-align: left;
  background: #f7f7fb;
  border: 1px solid #e8e8ef;
  border-radius: 14px;
}

.reference-card span,
.reference-card strong {
  display: block;
}

.reference-card span {
  margin-bottom: 4px;
  color: #999ba6;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reference-card strong {
  font-size: 15px;
  letter-spacing: .04em;
}

.reference-card button {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 8px 11px;
  color: #6052cf;
  background: #ece9ff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

.success-next {
  max-width: 440px;
  margin: 16px 0 25px;
  padding: 16px 18px;
  text-align: left;
  border-left: 2px solid var(--cyan);
}

.success-next strong {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

.success-next p {
  margin: 0;
  color: #838692;
  font-size: 9px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  :root { --shell: min(100% - 40px, 900px); }
  .desktop-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 60px; padding-block: 75px 110px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(560px, 100%); margin-inline: auto; }
  .section-heading { gap: 50px; }
  .process-section .shell { gap: 70px; }
  .standards-card { padding: 60px; gap: 45px; }
  .dialog-shell { grid-template-columns: 285px 1fr; }
  .application-sidebar { padding: 27px 24px; }
  .application-main { padding-inline: 45px; }
}

@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; }
  .feature-icon { margin-bottom: 42px; }
  .process-section .shell { grid-template-columns: 1fr; gap: 60px; }
  .process-heading { position: static; }
  .standards-card { grid-template-columns: 1fr; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .application-dialog { width: calc(100vw - 20px); height: calc(100vh - 20px); }
  .dialog-shell { grid-template-columns: 1fr; }
  .application-sidebar { display: none; }
  .application-main { padding: 53px 42px 32px; }
  .mobile-step-label { display: block; margin: 0 0 11px; color: #7362df; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); }
  .site-header { height: 76px; }
  .brand { gap: 10px; }
  .brand img { width: 83px; height: 44px; }
  .brand-divider { height: 22px; }
  .brand-label { max-width: 52px; font-size: 9px; line-height: 1.15; }
  .site-header .button { min-height: 39px; padding: 0 14px; }
  .site-header .button svg { display: none; }
  .hero { padding-block: 57px 84px; gap: 40px; }
  .hero h1 { font-size: clamp(45px, 14.2vw, 66px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 19px; }
  .hero-actions .text-link { padding-left: 5px; }
  .hero-trust { margin-top: 33px; }
  .hero-visual { min-height: 420px; transform: scale(.9); }
  .hero-card-main { width: 340px; min-height: 350px; }
  .orbit-one { width: 400px; }
  .floating-card-one { right: -22px; }
  .floating-card-two { left: -22px; }
  .opportunity-section, .process-section, .standards-section { padding-block: 82px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading h2, .process-heading h2, .standards-copy h2, .final-cta h2 { font-size: 41px; }
  .feature-grid { margin-top: 42px; }
  .standards-card { padding: 43px 24px; border-radius: 24px; }
  .qualities-list > div { padding: 15px; }
  .qualities-list small { line-height: 1.45; }
  .final-cta { padding-block: 0 85px; }
  .final-cta .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 14px; padding-block: 28px; text-align: center; }
  .site-footer > p { margin: 0; }
  .site-footer > .brand, .site-footer > div:last-child { justify-content: center; }
  .application-dialog { width: 100vw; height: 100dvh; border-radius: 0; }
  .application-main { padding: 48px 20px 25px; }
  .dialog-close { top: 12px; right: 14px; }
  .form-step h3, .success-state h3 { font-size: 27px; }
  .form-lead { margin-bottom: 25px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .field-grid .field-full { grid-column: auto; }
  .choice-cards-three { grid-template-columns: 1fr; }
  .choice-cards label > span { min-height: 60px; }
  .choice-cards-two { grid-template-columns: 1fr; }
  .compact-choices { grid-template-columns: 1fr 1fr; }
  .contract-document { height: 370px; padding: 22px 19px; }
  .review-strip { grid-template-columns: 1fr; }
  .form-actions { position: sticky; bottom: -25px; z-index: 2; margin-inline: -20px; padding: 16px 20px 25px; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); }
  .form-actions .button { min-height: 47px; padding-inline: 17px; }
}

@media (max-width: 390px) {
  .hero-visual { transform: scale(.82); margin-block: -30px; }
  .compact-choices { grid-template-columns: 1fr; }
}

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

/* VisionCo application step visibility fix */
#applicationForm [hidden],
.form-actions [hidden],
button[hidden],
.button[hidden] {
  display: none !important;
}
