:root {
  --ink: #13213a;
  --ink-soft: #59657a;
  --night: #13223d;
  --night-deep: #0b162a;
  --paper: #f4f6f8;
  --white: #ffffff;
  --line: #d7dde6;
  --cyan: #8de6e1;
  --cyan-dark: #176e72;
  --cyan-soft: #e4f9f7;
  --amber: #ffc85b;
  --amber-soft: #fff6dd;
  --red: #b43a48;
  --red-soft: #fff0f2;
  --radius-sm: 11px;
  --radius: 19px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(19, 33, 58, 0.08);
  --shadow: 0 28px 72px rgba(7, 16, 31, 0.22);
  --shell: 1160px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }
[hidden] { display: none !important; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--night-deep);
  background: var(--cyan);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand b { color: var(--cyan); }

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(141, 230, 225, 0.42);
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(141, 230, 225, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.header-nav a:hover { color: var(--white); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 790;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: 0.65; transform: none; }

.button-primary {
  color: #0c2527;
  background: var(--cyan);
  box-shadow: 0 10px 26px rgba(64, 190, 183, 0.19);
}

.button-primary:hover { background: #a5eee9; box-shadow: 0 13px 32px rgba(64, 190, 183, 0.25); }

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary {
  border-color: #c8d1df;
  color: var(--ink);
  background: var(--white);
}

.button-full { width: 100%; }
.header-cta { min-height: 39px; padding-inline: 14px; font-size: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 22%, rgba(141, 230, 225, 0.15), transparent 32%),
    radial-gradient(circle at 92% 70%, rgba(255, 200, 91, 0.12), transparent 27%),
    linear-gradient(135deg, var(--night-deep), var(--night));
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.72fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark { color: var(--cyan-dark); }

.hero h1,
.section-heading h2,
.fit-section h2,
.limits-section h2,
.request-section h2,
.faq-section h2 {
  margin: 0;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 { max-width: 760px; font-size: clamp(48px, 6.8vw, 78px); }
.hero h1 em { color: var(--cyan); font-style: normal; }

.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 27px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
  list-style: none;
}

.trust-list li::before { margin-right: 8px; color: var(--cyan); content: "•"; }

.offer-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.offer-kicker {
  margin: 0;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price { display: flex; align-items: baseline; gap: 9px; margin: 15px 0 12px; }
.price span,
.price small { color: rgba(255, 255, 255, 0.65); font-size: 13px; }
.price strong { color: var(--white); font-size: 50px; letter-spacing: -0.06em; }
.offer-card > p:not(.offer-kicker) { color: rgba(255, 255, 255, 0.68); }

.offer-card ul { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }
.offer-card li { display: flex; gap: 10px; color: rgba(255, 255, 255, 0.83); font-size: 14px; }
.offer-card li span { color: var(--cyan); font-weight: 900; }

.offer-note {
  display: grid;
  gap: 4px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 200, 91, 0.24);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 200, 91, 0.08);
  font-size: 12px;
}

.offer-note strong { color: var(--amber); }

.signal-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid div { display: grid; gap: 2px; padding: 25px 23px; border-right: 1px solid var(--line); }
.signal-grid div:first-child { border-left: 1px solid var(--line); }
.signal-grid strong { font-size: 22px; letter-spacing: -0.04em; }
.signal-grid span { color: var(--ink-soft); font-size: 12px; }

.process-section,
.fit-section,
.request-section,
.faq-section { padding: 104px 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 47px;
}

.section-heading h2,
.fit-section h2,
.request-section h2,
.faq-section h2 { font-size: clamp(37px, 5vw, 58px); }
.section-heading > p,
.section-lead,
.request-copy > p { margin: 0; color: var(--ink-soft); font-size: 17px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  font-size: 12px;
  font-weight: 850;
}

.steps h3,
.fit-card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -0.025em; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.fit-section { background: var(--white); }
.fit-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 72px; align-items: start; }
.fit-grid > div:first-child { position: sticky; top: 110px; }
.section-lead { margin-top: 24px; }
.fit-cards { display: grid; gap: 17px; }
.fit-card { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.fit-positive { border-color: #b6e2de; background: var(--cyan-soft); }
.fit-card ul { display: grid; gap: 11px; margin: 18px 0 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding-left: 21px; color: var(--ink-soft); }
.fit-card li::before { position: absolute; left: 0; color: var(--cyan-dark); font-weight: 900; content: "→"; }

.limits-section { padding: 96px 0; color: var(--white); background: var(--night); }
.limits-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 80px; }
.limits-section h2 { font-size: clamp(37px, 5vw, 56px); }
.limit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.limit-list article { padding: 23px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); }
.limit-list strong { color: var(--cyan); }
.limit-list p { margin: 8px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 14px; }

.request-section { background: linear-gradient(180deg, #eef2f5, var(--paper)); }
.request-grid { display: grid; grid-template-columns: 0.7fr 1.15fr; gap: 72px; align-items: start; }
.request-copy { position: sticky; top: 110px; }
.request-copy > p { margin-top: 24px; }

.data-card {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #b9dfdc;
  border-radius: var(--radius);
  background: var(--cyan-soft);
}

.data-card strong { color: var(--cyan-dark); }
.data-card ul { margin: 13px 0 0; padding-left: 20px; color: var(--ink-soft); }

.form-card,
.success-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 760; }
.field label b { color: var(--red); }

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid #c8d1df;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field select { padding-right: 38px; }
.field input:focus,
.field select:focus { border-color: var(--cyan-dark); box-shadow: 0 0 0 3px rgba(23, 110, 114, 0.11); outline: none; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--red); background: var(--red-soft); }

.field-help,
.field-error { min-height: 18px; margin: 0; font-size: 11px; }
.field-help { color: var(--ink-soft); }
.field-error { color: var(--red); font-weight: 650; }

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.consent-row { display: grid; grid-template-columns: auto 1fr; gap: 11px; margin-top: 22px; color: var(--ink-soft); font-size: 12px; cursor: pointer; }
.consent-row input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--cyan-dark); }
.consent-row input[aria-invalid="true"] { outline: 2px solid var(--red); outline-offset: 2px; }
.consent-error { margin-left: 30px; }

.privacy-note { margin: 18px 0; padding-top: 17px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }
.privacy-note a { color: var(--cyan-dark); font-weight: 750; }
.form-error { min-height: 23px; margin: 0 0 12px; color: var(--red); font-size: 13px; font-weight: 700; }
.no-charge { margin: 10px 0 0; color: var(--ink-soft); font-size: 11px; text-align: center; }

.success-card { text-align: center; }
.success-mark { display: grid; width: 54px; height: 54px; margin: 0 auto 20px; place-items: center; border-radius: 50%; color: var(--cyan-dark); background: var(--cyan-soft); font-size: 25px; font-weight: 900; }
.success-card h3 { margin: 0; font-size: 29px; letter-spacing: -0.04em; }
.success-card p { max-width: 530px; margin: 13px auto 24px; color: var(--ink-soft); }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 78px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 21px 40px 21px 0; cursor: pointer; font-weight: 760; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { float: right; color: var(--cyan-dark); content: "+"; font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -6px 0 22px; color: var(--ink-soft); }

.site-footer { padding: 38px 0; color: var(--white); background: var(--night-deep); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner strong { color: var(--cyan); }
.footer-inner p { margin: 3px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 12px; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-inner a { color: rgba(255, 255, 255, 0.7); font-size: 12px; text-decoration: none; }
.footer-inner a:hover { color: var(--white); }

.noscript { margin: 0; padding: 12px 20px; color: #492c00; background: var(--amber-soft); text-align: center; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hero-grid,
  .section-heading,
  .fit-grid,
  .limits-grid,
  .request-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-grid { gap: 56px; }
  .section-heading { align-items: start; }
  .fit-grid > div:first-child,
  .request-copy { position: static; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 0; }
  .step-number { margin-bottom: 28px; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { position: absolute; }
  .header-inner { min-height: 72px; }
  .header-cta { display: none; }
  .hero { padding: 120px 0 78px; }
  .hero h1 { font-size: clamp(42px, 14vw, 61px); }
  .hero-actions { display: grid; }
  .offer-card { padding: 24px; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid div:nth-child(odd) { border-left: 1px solid var(--line); }
  .process-section,
  .fit-section,
  .request-section,
  .faq-section { padding: 76px 0; }
  .limit-list,
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-card,
  .success-card { border-radius: var(--radius); }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

@media (forced-colors: active) {
  .button,
  .offer-card,
  .steps article,
  .fit-card,
  .limit-list article,
  .form-card,
  .success-card { border: 1px solid CanvasText; }
  .eyebrow span { background: CanvasText; }
}
