:root {
  --red: #d80f15;
  --deep-red: #bd050b;
  --black: #0b0b0d;
  --text: #151515;
  --muted: #555;
  --line: #d8d8d8;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --shadow: 0 10px 28px rgba(0, 0, 0, .12);
  --condensed: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --mobile-cta-height: 132px;
}

* {
  box-sizing: border-box;
}

html {
  background: #ececec;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at top, #fff 0, #ececec 70%);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

.poster {
  width: min(100%, 1024px);
  min-height: 1536px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 40px rgba(0, 0, 0, .18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 750px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 48%, rgba(255,255,255,.2) 60%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 45px 0 22px 35px;
}

.brand h1 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 67px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
  white-space: nowrap;
}

.brand h1 span {
  color: var(--red);
}

.brand p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 30px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.brand p i {
  width: 38px;
  height: 2px;
  background: #111;
}

.hero h2 {
  margin: 0;
  color: #050507;
  font-family: var(--condensed);
  font-size: 88px;
  font-weight: 950;
  line-height: .96;
  letter-spacing: -1px;
}

.hero h2 span {
  display: block;
  font-size: .64em;
  line-height: .95;
  white-space: nowrap;
}

.hero h2 strong {
  display: inline-block;
  color: var(--red);
  font-size: 1.47em;
  line-height: .9;
  letter-spacing: 1px;
}

.fast-banner {
  width: calc(100% + 95px);
  margin: 28px 0 42px -35px;
  padding: 12px 18px 12px 44px;
  color: #fff;
  background: #09090a;
  border-radius: 0 5px 5px 0;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
  font-family: var(--condensed);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: .3px;
  white-space: nowrap;
}

.benefits {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 32px;
  font-weight: 600;
}

.benefits li {
  display: flex;
  align-items: center;
}

.benefits .check {
  width: 34px;
  height: 34px;
  font-size: 23px;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  position: relative;
  color: transparent;
  background: var(--red);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.check::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 34%;
  height: 58%;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

.hero-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  object-position: 56% top;
  filter: saturate(.98) contrast(1.01);
}

.photo-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.55) 8%, transparent 26%),
    linear-gradient(0deg, rgba(255,255,255,.95) 0%, transparent 11%);
  pointer-events: none;
}

.round-badge {
  position: absolute;
  right: 32px;
  bottom: 15px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  padding: 19px;
  color: #fff;
  background: linear-gradient(145deg, #f3131b, #c80309);
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: var(--shadow);
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.round-badge:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.05);
}

.badge-check {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  position: relative;
  color: transparent;
  background: #fff;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.badge-check::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 34%;
  height: 58%;
  border: solid var(--red);
  border-width: 0 5px 5px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

.round-badge b {
  display: block;
  font-family: var(--condensed);
  font-size: 23px;
  line-height: 1;
}

.round-badge small {
  display: block;
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.03;
}

.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.loan-types {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  margin: 8px 37px 27px;
  padding: 18px 25px;
}

.loan-types article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
}

.loan-types h3 {
  margin: 0 0 4px;
  font-family: var(--condensed);
  font-size: 31px;
  line-height: 1;
}

.loan-types p {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.divider {
  background: #bcbcbc;
}

.icon-disc {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: #fff;
  background: linear-gradient(145deg, #e7141b, #b60006);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16);
}

.icon-disc svg {
  width: 62px;
  height: 62px;
}

.details-grid {
  display: grid;
  grid-template-columns: 64% 1fr;
  gap: 24px;
  margin: 27px 37px 27px;
}

.requirements {
  overflow: hidden;
}

.red-heading,
.why-us h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: .3px;
}

.red-heading {
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(90deg, #e20f15, #c9040a);
  text-align: center;
}

.requirement-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 12px 12px;
}

.requirement-items article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  padding: 0 9px;
  text-align: center;
}

.requirement-items article + article {
  border-left: 1px solid #d6d6d6;
}

.icon-disc.small {
  width: 82px;
  height: 82px;
}

.icon-disc.small svg {
  width: 50px;
  height: 50px;
}

.requirement-items p {
  margin: 11px 0 0;
  font-size: 16px;
  line-height: 1.16;
}

.requirement-items span {
  font-size: 14px;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 7px 27px 15px;
  padding-top: 10px;
  border-top: 1px solid #cfcfcf;
}

.privacy p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.lock {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #101010;
  border-radius: 50%;
}

.lock svg {
  width: 28px;
  height: 28px;
}

.why-us {
  padding: 22px 24px 15px;
  color: #fff;
  background: #0b0b0c;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.why-us h3 {
  font-size: 25px;
  white-space: nowrap;
}

.underline {
  width: 100%;
  height: 3px;
  margin: 12px 0 26px;
  background: var(--red);
}

.why-us ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.2;
}

.why-us li {
  display: flex;
  align-items: center;
}

.why-us .check {
  width: 23px;
  height: 23px;
  margin-right: 9px;
  font-size: 16px;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 35px;
  align-items: center;
  padding: 18px 38px;
  color: #fff;
  background: linear-gradient(90deg, #db0f15, #c70006);
}

.cta h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 50px;
  line-height: 1;
}

.cta p {
  margin: 7px 0 0 31px;
  font-family: var(--condensed);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .2px;
}

@keyframes apply-flash {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15), 0 0 0 0 rgba(255, 255, 255, .55);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22), 0 0 0 10px rgba(255, 255, 255, .18);
    transform: scale(1.03);
  }
}

@keyframes mobile-sticky-cta-flash {
  0%,
  100% {
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .2);
    filter: brightness(1);
  }

  50% {
    box-shadow: 0 -14px 34px rgba(0, 0, 0, .38), 0 0 18px rgba(255, 255, 255, .22);
    filter: brightness(1.1);
  }
}

@keyframes cta-headline-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes apply-flash-mobile {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2), 0 0 0 0 rgba(255, 255, 255, .75);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28), 0 0 0 8px rgba(255, 255, 255, .42);
    transform: scale(1.05);
  }
}

.apply-button {
  display: grid;
  grid-template-columns: 54px 1fr 42px;
  align-items: center;
  min-height: 78px;
  padding: 7px 20px;
  color: #171717;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  animation: apply-flash 0.5s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}

.apply-button:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

@media (prefers-reduced-motion: reduce) {
  .apply-button,
  .cta,
  .cta--sticky .apply-button {
    animation: none;
    -webkit-animation: none;
  }
}

.apply-button svg {
  width: 45px;
  height: 45px;
  color: var(--red);
}

.apply-button span {
  font-family: var(--condensed);
  font-size: 29px;
  font-weight: 900;
}

.apply-button b {
  color: var(--red);
  font-size: 40px;
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr 1px 1.15fr 155px;
  gap: 25px;
  align-items: center;
  min-height: 154px;
  padding: 18px 42px;
  background: #fff;
}

.footer-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  align-items: center;
}

.footer-icon {
  width: 55px;
  height: 55px;
  color: var(--red);
}

.footer-icon.people {
  width: 64px;
  height: 64px;
}

.footer p {
  margin: 0;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.23;
}

.footer p strong {
  color: var(--red);
}

.footer-divider {
  width: 1px;
  height: 74px;
  background: #8f8f8f;
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  justify-self: end;
  color: #fff;
  background: linear-gradient(145deg, #e9161c, #bc0006);
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--shadow);
}

.mini-logo strong {
  font-size: 28px;
  line-height: .82;
  letter-spacing: -1px;
}

.mini-logo small {
  margin-top: -25px;
  font-size: 12px;
  font-weight: 700;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.round-badge--mobile {
  display: none;
}

.cta--sticky {
  display: none;
}

@media (max-width: 820px) {
  .poster {
    min-height: 0;
    overflow: visible;
    padding-bottom: calc(var(--mobile-cta-height) + 28px);
  }

  .hero {
    display: block;
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #fff;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    align-items: start;
    padding: 28px 24px 20px;
  }

  .brand,
  .hero h2,
  .fast-banner {
    grid-column: 1 / -1;
  }

  .hero h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 18px 0 24px;
    min-height: 200px;
    font-size: clamp(44px, 11.5vw, 64px);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    line-height: 1.12;
  }

  .hero h2 span {
    font-size: .6em;
    line-height: 1.18;
  }

  .hero h2 strong {
    font-size: 1.4em;
    line-height: 1.02;
    margin-top: 2px;
  }

  .hero h2 span,
  .hero h2 strong {
    text-shadow:
      0 2px 10px rgba(255, 255, 255, .95),
      0 0 24px rgba(255, 255, 255, .85);
  }

  .hero-photo {
    position: absolute;
    top: 118px;
    left: 38%;
    right: 0;
    height: 250px;
    z-index: 1;
    overflow: hidden;
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    filter: saturate(1.05) contrast(1.06);
  }

  .photo-fade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .72) 0%, rgba(255, 255, 255, .38) 30%, rgba(255, 255, 255, .06) 55%, transparent 70%),
      linear-gradient(180deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .28) 78%, rgba(255, 255, 255, .68) 100%);
  }

  .fast-banner,
  .benefits {
    position: relative;
    z-index: 2;
  }

  .benefits {
    grid-column: 1;
    align-self: center;
    font-size: 19px;
  }

  .benefits li {
    white-space: nowrap;
  }

  .benefits .check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  .round-badge--desktop {
    display: none;
  }

  .round-badge--mobile {
    display: grid;
    position: static;
    grid-column: 2;
    align-self: center;
    justify-self: end;
    width: 132px;
    height: 132px;
    margin: 0 0 0 4px;
    padding: 10px;
  }

  .round-badge--mobile b {
    font-size: 15px;
  }

  .round-badge--mobile small {
    font-size: 9.5px;
    line-height: .92;
  }

  .round-badge--mobile .badge-check {
    width: 30px;
    height: 30px;
  }

  .brand h1 {
    font-size: clamp(44px, 10vw, 67px);
  }

  .brand p {
    font-size: clamp(11px, 3vw, 19px);
  }

  .fast-banner {
    width: fit-content;
    max-width: 82%;
    margin: 28px 0 42px -24px;
    padding: 9px 16px 9px 24px;
    font-size: clamp(15px, 4vw, 20px);
    letter-spacing: .1px;
  }

  .loan-types,
  .details-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .loan-types {
    margin: 18px;
  }

  .loan-types .divider {
    width: 100%;
    height: 1px;
  }

  .details-grid {
    margin: 0 18px 18px;
  }

  .cta--in-page {
    display: none;
  }

  .cta--sticky {
    display: grid;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    width: min(100%, 1024px);
    margin: 0 auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    text-align: left;
    color: #fff;
    background: linear-gradient(90deg, #db0f15, #c70006);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .22);
  }

  .cta--sticky h3 {
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.02;
  }

  .cta--sticky p {
    margin: 4px 0 0;
    font-size: clamp(11px, 3vw, 14px);
    letter-spacing: 0;
  }

  .cta--sticky .apply-button {
    min-height: 58px;
    padding: 6px 14px;
    border-radius: 16px;
    grid-template-columns: 34px 1fr 24px;
    animation: apply-flash-mobile 0.5s ease-in-out infinite;
    -webkit-animation: apply-flash-mobile 0.5s ease-in-out infinite;
    transition: none;
    will-change: transform, box-shadow;
  }

  .cta--sticky .apply-button svg {
    width: 30px;
    height: 30px;
  }

  .cta--sticky .apply-button span {
    font-size: clamp(16px, 4.2vw, 22px);
  }

  .cta--sticky .apply-button b {
    font-size: 28px;
  }

  .footer {
    gap: 18px;
    justify-items: stretch;
    padding-bottom: 12px;
  }

  .footer-divider {
    width: 100%;
    height: 1px;
  }

  .mini-logo {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-cta-height: 168px;
  }

  .brand p i {
    width: 18px;
  }

  .benefits {
    font-size: 17px;
  }

  .benefits .check {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .hero-photo {
    top: 108px;
    left: 34%;
    height: 220px;
  }

  .hero h2 {
    min-height: 185px;
    padding-bottom: 20px;
    font-size: clamp(40px, 10.5vw, 56px);
    gap: 12px;
    line-height: 1.14;
  }

  .hero h2 span {
    line-height: 1.2;
  }

  .fast-banner {
    max-width: 78%;
    font-size: clamp(13px, 3.6vw, 17px);
    padding: 8px 14px 8px 20px;
  }

  .round-badge--mobile {
    width: 124px;
    height: 124px;
    padding: 9px;
  }

  .round-badge--mobile b {
    font-size: 14px;
  }

  .round-badge--mobile small {
    font-size: 9px;
    line-height: .9;
  }

  .round-badge--mobile .badge-check {
    width: 28px;
    height: 28px;
  }

  .loan-types article {
    grid-template-columns: 78px 1fr;
  }

  .icon-disc {
    width: 74px;
    height: 74px;
  }

  .icon-disc svg {
    width: 48px;
    height: 48px;
  }

  .loan-types h3 {
    font-size: 25px;
  }

  .loan-types p {
    font-size: 17px;
  }

  .requirement-items {
    grid-template-columns: 1fr 1fr;
    row-gap: 22px;
  }

  .requirement-items article + article {
    border-left: 0;
  }

  .requirement-items article:nth-child(even) {
    border-left: 1px solid #d6d6d6;
  }

  .requirement-items article:nth-child(n+3) {
    border-top: 1px solid #d6d6d6;
    padding-top: 18px;
  }

  .cta--sticky {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  .cta--sticky h3 {
    font-size: 28px;
  }

  .cta--sticky p {
    font-size: 11px;
  }

  .cta--sticky .apply-button {
    width: 100%;
    min-height: 52px;
    animation: apply-flash-mobile 0.5s ease-in-out infinite;
    -webkit-animation: apply-flash-mobile 0.5s ease-in-out infinite;
  }

  .cta--sticky .apply-button span {
    font-size: 22px;
  }
}

@media print {
  @page {
    size: 210mm 315mm;
    margin: 0;
  }

  html,
  body {
    background: #fff;
  }

  .poster {
    width: 210mm;
    min-height: 315mm;
    box-shadow: none;
  }

  .apply-trigger {
    cursor: default;
  }

  .apply-button,
  .cta,
  .cta--sticky .apply-button {
    animation: none;
    -webkit-animation: none;
  }
}
