:root {
  --ink: #07111f;
  --ink-soft: #334155;
  --navy: #081726;
  --blue: #2e8fff;
  --blue-bright: #55b9ff;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: rgba(7, 17, 31, 0.12);
  --shell: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(2, 12, 27, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 108px;
  height: 58px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 96, 255, 0.28));
}

.brand-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.26);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 11, 25, 0.93) 0%, rgba(3, 16, 34, 0.76) 39%, rgba(3, 13, 28, 0.15) 71%),
    linear-gradient(0deg, rgba(1, 8, 18, 0.45) 0%, transparent 44%);
}

.hero-inner {
  min-height: 760px;
  padding-top: 142px;
  padding-bottom: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(42px, 8vw, 100px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 630px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

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

.button {
  min-height: 54px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.text-button:focus-visible,
.header-link:focus-visible,
.terms-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 40px rgba(46, 143, 255, 0.28);
}

.button-primary:hover {
  background: #1782fc;
}

.auto-apply-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
}

.auto-apply-note svg {
  width: 18px;
  height: 18px;
  fill: none;
  color: #9ad1ff;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card {
  margin-bottom: 4px;
  padding: 30px;
  background: rgba(5, 16, 31, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.offer-label {
  margin: 0;
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-value {
  margin: 5px 0 0;
  font-size: clamp(3rem, 6vw, 4.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.offer-detail {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.offer-rule {
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.16);
}

.offer-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.offer-list li {
  display: flex;
  gap: 9px;
}

.offer-list span {
  color: var(--blue-bright);
}

.confidence-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.confidence-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.confidence-grid > div {
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.confidence-grid > div:first-child {
  padding-left: 0;
}

.confidence-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.confidence-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf4ff;
  border-radius: 50%;
  line-height: 0;
}

.confidence-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confidence-grid p {
  margin: 0;
  line-height: 1.32;
}

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

.confidence-grid strong {
  font-size: 0.92rem;
}

.confidence-grid p span {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.78rem;
}

.section {
  padding: clamp(82px, 10vw, 126px) 0;
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section-heading.left > p:last-child {
  margin-left: 0;
}

.steps {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}

.steps li {
  min-height: 228px;
  padding: 24px 24px 26px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 143, 255, 0.11), transparent 42%),
    linear-gradient(145deg, #ffffff, #f9fbfe);
  border: 1px solid rgba(46, 143, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(13, 35, 62, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.steps li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 58px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 0 0 8px 8px;
}

.steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 143, 255, 0.3);
  box-shadow: 0 20px 46px rgba(13, 35, 62, 0.11);
}

.step-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-number {
  color: var(--blue);
  background: #eaf4ff;
  border: 1px solid rgba(46, 143, 255, 0.14);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #8fd2ff;
  background: var(--ink);
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(7, 17, 31, 0.16);
}

.step-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 9px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.steps p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #64748b;
  font-size: 0.87rem;
  line-height: 1.55;
}

.faq-section {
  color: var(--white);
  background: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 9vw, 120px);
}

.faq-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.56);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.faq-list details {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.faq-list summary {
  padding-right: 34px;
  position: relative;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: -3px;
  right: 4px;
  color: var(--blue-bright);
  font-size: 1.4rem;
  font-weight: 400;
}

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

.faq-list p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.final-cta {
  color: var(--white);
  background: var(--blue);
}

.final-cta .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 680px;
}

.final-actions {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.text-button {
  padding: 4px;
  color: var(--white);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.55);
  background: #030a13;
  font-size: 0.76rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 42px;
}

.footer-grid p {
  max-width: 420px;
  margin: 0;
}

.footer-title {
  margin-bottom: 8px !important;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.terms-link {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 40px;
  }

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

  .offer-card {
    max-width: 440px;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
    padding-block: 14px;
  }

  .confidence-grid > div,
  .confidence-grid > div:first-child,
  .confidence-grid > div:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .confidence-grid > div:last-child {
    border-bottom: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .steps li {
    min-height: 0;
  }

  .steps h3 {
    margin-top: 24px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    justify-items: start;
  }

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

  .terms-link {
    grid-column: 1 / -1;
  }
}

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

  .header-inner {
    min-height: 66px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link span {
    font-size: 1rem;
  }

  .brand-logo {
    width: 88px;
    height: 48px;
  }

  .brand-copy {
    display: none;
  }

  .brand-divider {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 132px;
    padding-bottom: 50px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(1, 11, 25, 0.91), rgba(3, 16, 34, 0.52)),
      linear-gradient(0deg, rgba(1, 8, 18, 0.65), transparent 60%);
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .auto-apply-note {
    width: 100%;
    justify-content: center;
  }

  .offer-card {
    padding: 24px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .terms-link {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
