:root {
  color-scheme: light;
  --ink: #061947;
  --ink-soft: #273a69;
  --muted: #647298;
  --blue: #0b5cff;
  --blue-strong: #0048e7;
  --cyan: #55d7e7;
  --mint: #42c8ab;
  --amber: #ffb21a;
  --paper: #ffffff;
  --wash: #f5f9ff;
  --wash-2: #edf5ff;
  --line: #dfe8f6;
  --shadow-sm: 0 10px 24px rgba(8, 29, 79, .08);
  --shadow-md: 0 22px 58px rgba(8, 29, 79, .14);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(214, 224, 240, .8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-word .brand-blue {
  color: var(--blue);
}

.brand-word small {
  margin-left: 2px;
  color: var(--ink);
  font-size: .78em;
  font-weight: 500;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 16px 34px rgba(11, 92, 255, .25);
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(11, 92, 255, .32);
}

.button-ghost {
  background: rgba(255, 255, 255, .92);
  border-color: var(--line);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.button-light {
  background: #fff;
  border-color: var(--line);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.button-large {
  min-height: 56px;
  padding-inline: 30px;
}

.button-wide {
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .98) 0 52%, rgba(235, 247, 255, .9) 52% 100%),
    linear-gradient(145deg, #ffffff, #eff8ff);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 62%, rgba(11, 92, 255, .12) 62% 63%, transparent 63%),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(11, 92, 255, .08) 21px, transparent 22px 42px);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 47% 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(175deg, transparent 0 45%, #fff 46% 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: 72px 0 122px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #6374a4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.subhero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 span,
.partners-section h2 span {
  color: var(--blue);
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.security-note,
.calculator-small {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.security-note svg,
.calculator-small svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-panel {
  position: relative;
}

.motion-coin {
  position: absolute;
  left: -98px;
  top: 190px;
  width: 108px;
  transform: rotate(-16deg);
  filter: drop-shadow(0 18px 24px rgba(23, 77, 202, .26));
  animation: floatCoin 5.2s ease-in-out infinite;
}

@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(-16deg); }
  50% { transform: translateY(-16px) rotate(-11deg); }
}

.card-elevated,
.feature-card,
.step-card,
.testimonial-card,
.summary-card,
.blog-search,
.blog-card,
.blog-article,
.form-card,
.responsible-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.calculator {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-md);
}

.calculator::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--mint));
}

.calculator-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.calculator h2 {
  margin: 0;
  font-size: clamp(21px, 2.3vw, 26px);
  line-height: 1.15;
}

.calculator-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.range-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
}

.range-top,
.range-labels {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.range-top span:first-child {
  color: var(--ink);
}

.amount-output {
  display: block;
  margin: 10px 0 8px;
  color: #050b1e;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
}

.range-control {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 12px;
  align-items: center;
}

.range-control button {
  width: 32px;
  height: 32px;
  border: 1px solid #cbd9ee;
  border-radius: 50%;
  background: #f7fbff;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

.term-block {
  margin-top: 20px;
}

.term-block p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.segmented-control button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.segmented-control button.is-active,
.segmented-control button:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 22px rgba(11, 92, 255, .22);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(66, 200, 171, .12), rgba(85, 215, 231, .12));
}

.trust-strip span {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  align-items: center;
  padding: 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  border-right: 1px solid rgba(82, 145, 180, .23);
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip svg {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.calculator-small {
  justify-content: center;
  margin-top: 16px;
}

.feature-band {
  position: relative;
  z-index: 2;
  margin-top: -78px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 166px;
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
}

.feature-card svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h2 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

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

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

.section-heading h2,
.editorial-grid h2,
.testimonial-intro h2,
.faq-intro h2,
.subhero h1,
.blog-card h2,
.blog-article h2,
.form-card h2,
.responsible-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  margin-top: 34px;
}

.step-card {
  position: relative;
  min-height: 218px;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -35px;
  width: 24px;
  height: 24px;
  border-right: 5px solid #8cb5ff;
  border-top: 5px solid #8cb5ff;
  transform: translateY(-50%) rotate(45deg);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.step-visual {
  width: 148px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edf5ff, #f8fbff);
  border: 1px solid var(--line);
}

.form-visual {
  padding: 16px;
}

.form-visual span {
  display: block;
  height: 8px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #b6ccff;
}

.form-visual span:nth-child(2) {
  width: 70%;
}

.form-visual span:nth-child(3) {
  width: 52%;
}

.form-visual strong {
  display: block;
  width: 62px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue);
}

.list-visual {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
}

.list-visual span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 16px;
  border-radius: 6px;
  background: #fff;
  padding: 4px 8px;
  font-size: 10px;
  color: var(--muted);
}

.list-visual b {
  width: 48px;
  height: 7px;
  border-radius: 999px;
  background: #8db3ff;
}

.seal-visual {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.seal-visual svg {
  width: 88px;
  height: 88px;
}

.seal-visual path:first-child {
  fill: #2b69f2;
}

.seal-visual path:last-child {
  fill: none;
  stroke: #fff;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.partners-section {
  padding: 12px 0 52px;
  text-align: center;
}

.partners-section h2 {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 30px);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.logo-strip span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #2454c7;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(8, 29, 79, .05);
}

.seo-section {
  background: linear-gradient(180deg, #fff, var(--wash));
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 42px;
  align-items: start;
}

.editorial-grid p,
.blog-card p,
.blog-article p,
.responsible-card p {
  color: var(--ink-soft);
  font-size: 17px;
}

.summary-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.summary-card h3,
.application-summary h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.testimonials {
  background: var(--wash);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.testimonial-intro {
  align-self: center;
}

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 0;
}

.testimonial-card p {
  margin: 12px 0 22px;
  color: var(--ink);
  font-weight: 700;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person img {
  width: 48px;
  height: 48px;
  display: grid;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #edf7ff, #d7f8f1);
  box-shadow: 0 0 0 4px #eafcff;
  flex: 0 0 auto;
}

.person strong,
.person small {
  display: block;
}

.person small {
  color: var(--muted);
  margin-top: 2px;
}

.faq-section {
  padding: 58px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef5ff, #f8fbff);
}

.faq-intro p {
  color: var(--ink-soft);
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(8, 29, 79, .04);
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 17px 54px 17px 22px;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--ink-soft);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.45fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 40px 0;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-brand .brand-word {
  font-size: 22px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 4px;
  min-height: 48px;
  padding: 10px 20px;
  background: #071943;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.footer-bottom svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.footer-copyright {
  flex: 0 0 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  opacity: .86;
}

.subhero {
  overflow: hidden;
  background:
    linear-gradient(110deg, #fff 0 58%, rgba(229, 247, 255, .95) 58% 100%),
    linear-gradient(145deg, #ffffff, #f3f9ff);
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
  padding: 74px 0 82px;
}

.subhero p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 19px;
}

.blog-search {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.blog-search label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.search-box {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.search-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
}

.blog-layout {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.toc h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.toc a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 800;
}

.toc a:hover {
  background: var(--wash);
  color: var(--blue);
}

.article-stack {
  display: grid;
  gap: 24px;
}

.blog-article {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 42px);
  scroll-margin-top: 110px;
}

.blog-article.is-hidden {
  display: none;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  padding: 30px;
  scroll-margin-top: 112px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0;
  transition: opacity .2s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-3px);
  border-color: #c8daf5;
  box-shadow: var(--shadow-md);
}

.blog-card:hover::before,
.blog-card:focus-within::before {
  opacity: 1;
}

.blog-card h2 {
  font-size: clamp(23px, 2.4vw, 31px);
}

.blog-card p:not(.article-meta) {
  margin: 22px 0 0;
}

.article-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.article-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.blog-card.is-hidden {
  display: none;
}

.blog-empty {
  display: none;
  margin: 30px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 800;
  text-align: center;
}

.blog-empty.is-visible {
  display: block;
}

.blog-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 252, 255, .96)),
    linear-gradient(135deg, rgba(85, 215, 231, .18), rgba(11, 92, 255, .12));
}

.article-hero {
  overflow: hidden;
  background:
    linear-gradient(110deg, #fff 0 58%, rgba(229, 247, 255, .95) 58% 100%),
    linear-gradient(145deg, #ffffff, #f3f9ff);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: center;
  padding: 62px 0 72px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-breadcrumb a:hover {
  color: var(--blue);
}

.article-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1;
}

.article-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.article-byline {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.article-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 850px);
  gap: 42px;
  align-items: start;
  padding: clamp(58px, 8vw, 96px) 0;
}

.article-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-toc strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.article-toc a {
  color: var(--ink-soft);
  font-weight: 800;
}

.article-toc a:hover {
  color: var(--blue);
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 48px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
}

.article-content p,
.article-content li {
  color: var(--ink-soft);
  font-size: 18px;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content a:not(.button) {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding-left: 24px;
}

.quick-answer,
.note-box,
.sources-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.affiliate-note {
  padding: 18px 20px;
  border: 1px solid #d7e4f7;
  border-radius: var(--radius-md);
  background: #f7fbff;
  color: var(--ink-soft);
  font-size: 16px;
}

.affiliate-note strong {
  color: var(--ink);
}

.quick-answer {
  padding: 28px;
  border-left: 5px solid var(--mint);
}

.quick-answer h2 {
  margin-top: 0;
}

.note-box {
  margin: 28px 0;
  padding: 22px;
  background: #f0fffb;
}

.note-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.decision-table {
  display: grid;
  overflow: hidden;
  margin: 24px 0 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.decision-table div {
  display: grid;
  grid-template-columns: .7fr 1.25fr 1.05fr;
}

.decision-table div:first-child {
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.decision-table span {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.decision-table div:last-child span {
  border-bottom: 0;
}

.decision-table span:first-child {
  font-weight: 900;
}

.review-summary {
  display: grid;
  grid-template-columns: minmax(220px, .86fr) minmax(0, 1.14fr);
  gap: 18px;
  margin: 30px 0;
}

.review-score-card,
.review-facts {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.review-score-card {
  padding: 24px;
}

.review-score-card span,
.review-facts strong {
  display: block;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.review-score-card strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 60px);
  line-height: .95;
}

.review-score-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.score-meter {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e8f0fb;
}

.score-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--blue));
}

.review-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-facts div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-facts div:nth-child(2n) {
  border-right: 0;
}

.review-facts div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.review-facts span {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.pros-cons-grid section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pros-cons-grid h3 {
  margin-top: 0;
  color: var(--ink);
}

.pros-cons-grid ul {
  margin-bottom: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 38px 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #061947, #0b5cff);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cta-panel h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.cta-panel .button-primary {
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.related-articles,
.article-faq,
.sources-box {
  margin-top: 48px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-grid a {
  display: flex;
  min-height: 118px;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(229, 247, 255, .9), rgba(255, 255, 255, .92)),
    #fff;
}

.redirect-card {
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.redirect-card h1 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1.05;
}

.redirect-card p {
  margin: 0 0 24px;
  color: var(--ink-soft);
}

.article-faq details {
  margin-bottom: 12px;
}

.sources-box {
  padding: 24px;
  background: var(--wash);
}

.sources-box h2 {
  margin-top: 0;
}

.article-meta {
  margin-top: 0;
  color: var(--blue) !important;
  font-size: 13px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.article-summary {
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--mint);
  border-radius: var(--radius);
  background: #f0fffb;
  color: var(--ink-soft);
}

.comparison-table {
  display: grid;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.comparison-table div:first-child {
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.comparison-table span {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.comparison-table div:last-child span {
  border-bottom: 0;
}

.comparison-table span:first-child {
  font-weight: 900;
}

.application-hero .summary-card {
  background: #fff;
}

.application-hero {
  text-align: center;
}

.application-hero-copy {
  display: grid;
  justify-items: center;
  padding: 74px 0 82px;
}

.form-section {
  background: linear-gradient(180deg, #fff, var(--wash));
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.form-card,
.responsible-card {
  border-radius: var(--radius-lg);
}

.form-card {
  overflow: hidden;
}

.form-card-head {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.form-card-head h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.form-card-head p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

#form-iframe {
  min-height: 980px;
  background: #fff;
}

#form-iframe iframe,
.form-card noscript iframe {
  width: 100%;
  min-height: 980px;
  border: 0;
  display: block;
}

.responsible-card {
  position: sticky;
  top: 112px;
  padding: 26px;
}

.responsible-card h2 {
  font-size: 26px;
}

.mini-metrics {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-metrics span {
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--wash);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mini-metrics strong {
  color: var(--ink);
  font-size: 24px;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 14px;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: var(--wash);
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero::before {
    clip-path: polygon(0 46%, 100% 28%, 100% 100%, 0 100%);
    opacity: .45;
  }

  .hero-panel {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .motion-coin {
    left: auto;
    right: 12px;
    top: -54px;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid,
  .testimonial-grid,
  .footer-grid,
  .subhero-grid,
  .article-hero-grid,
  .article-shell,
  .form-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .step-card:not(:last-child)::after,
  .responsible-card,
  .article-toc,
  .toc {
    position: static;
  }

  .logo-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .review-summary,
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

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

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-word {
    font-size: 18px;
  }

  .site-nav {
    inset: 72px 14px auto 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 42px 0 98px;
  }

  .hero h1,
  .subhero h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .article-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-lede,
  .subhero p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

  .calculator {
    border-radius: var(--radius-lg);
    padding: 20px;
  }

  .calculator-head,
  .range-top,
  .range-labels {
    display: grid;
    gap: 6px;
  }

  .segmented-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(82, 145, 180, .23);
    padding: 0 0 10px;
  }

  .trust-strip span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .feature-band {
    margin-top: -52px;
  }

  .feature-grid,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-card {
    min-height: 0;
    padding: 24px;
  }

  .feature-card {
    min-height: 156px;
  }

  .steps-grid {
    gap: 18px;
  }

  .faq-grid {
    padding: 20px;
  }

  .subhero-grid {
    padding: 50px 0;
  }

  .article-hero-grid {
    padding: 44px 0 52px;
  }

  .article-shell {
    padding: 44px 0;
  }

  .article-actions,
  .cta-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-actions .button,
  .cta-panel .button {
    width: 100%;
  }

  .quick-answer,
  .affiliate-note,
  .cta-panel,
  .review-score-card,
  .pros-cons-grid section,
  .sources-box {
    padding: 22px;
  }

  .review-facts {
    grid-template-columns: 1fr;
  }

  .review-facts div,
  .review-facts div:nth-child(2n),
  .review-facts div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-facts div:last-child {
    border-bottom: 0;
  }

  .comparison-table div {
    grid-template-columns: 1fr;
  }

  .decision-table div {
    grid-template-columns: 1fr;
  }

  .decision-table div:first-child {
    display: none;
  }

  .decision-table span {
    border-bottom: 0;
  }

  .decision-table span:first-child {
    padding-bottom: 0;
    color: var(--blue);
  }

  .comparison-table div:first-child {
    display: none;
  }

  .comparison-table span {
    border-bottom: 0;
  }

  .comparison-table span:first-child {
    padding-bottom: 0;
    color: var(--blue);
  }

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

@media (max-width: 430px) {
  .brand-word {
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .feature-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .motion-coin {
    width: 88px;
  }

  .amount-output {
    font-size: 32px;
  }
}

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