@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Exo+2:100,200,300,regular,500,600,700,800,900&display=swap);

:root {
  --cherry: #9b1f4d;
  --cherry-deep: #751338;
  --cherry-soft: rgba(201, 86, 126, 0.28);
  --navy: #06142d;
  --navy-2: #0e2143;
  --navy-3: #132d59;
  --gold: #d8b16a;
  --gold-soft: rgba(216, 177, 106, 0.18);
  --white: #ffffff;
  --text: #f4f7ff;
  --muted: #cbd4e7;
  --border: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.06);
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
  display: block;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

:where(pre) {
  all: revert;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(155, 31, 77, 0.22), transparent 26%),
    radial-gradient(circle at 50% 54%, rgba(216, 177, 106, 0.06), transparent 28%),
    linear-gradient(180deg, #031129 0%, #061a38 45%, #07142d 100%);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 1.65;
}

h1,
h2,
h3 {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

h1 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
  text-align: center;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

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

.container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  width: 100%;
  background: linear-gradient(180deg, rgba(5, 17, 38, 0.94), rgba(6, 20, 45, 0.88));
  border-bottom: 1px solid rgba(216, 177, 106, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 470px;
}

.logo img {
  width: 100%;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.18));
}

.main {
  flex: 1 1 auto;
  padding: 48px 0 56px;
}




.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: card-counter;
}

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

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(13, 31, 61, 0.98), rgba(9, 22, 45, 0.98));
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  counter-increment: card-counter;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155,31,77,0.08), transparent 45%, rgba(216,177,106,0.04));
  pointer-events: none;
}

.card::before {
  content: counter(card-counter);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, var(--cherry), var(--cherry-deep));
  color: var(--white);
  border-bottom-right-radius: 14px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(155,31,77,0.25);
}

.card__rate {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 8px 14px;
  border-bottom-left-radius: 14px;
  background: linear-gradient(180deg, #e0b765, #cf9f47);
  color: #172133;
  font-size: 15px;
  font-weight: 800;
}

.card__header {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card__header--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 100%;
}

.card__header--wide {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 240px;
  gap: 22px;
  align-items: center;
}

.card__img {
  width: 100%;
  max-width: 190px;
}

.card__img--featured {
  max-width: 220px;
}

.card__bonus {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.22;
  color: var(--white);
}

.card__eyebrow {
  margin-bottom: 10px;
  color: #f4d69c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__copy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.card__main {
  min-width: 0;
}

.card__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.card__pay {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.icon {
  width: 64px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.card__btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn {
  width: min(100%, 240px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, var(--cherry), var(--cherry-deep));
  box-shadow: 0 12px 22px rgba(155,31,77,0.28);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(155,31,77,0.34);
  background: linear-gradient(180deg, #b3265a, #83163f);
}

.card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 22px 18px;
}

.coop {
  font-size: 14px;
  color: var(--muted);
}

.link {
  color: #ffd690;
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
}

.card--featured {
  border-color: rgba(216,177,106,0.20);
}

.content {
  padding-top: 34px;
}

.content p {
  margin: 15px 0;
  color: var(--muted);
}

.footer {
  background: linear-gradient(180deg, rgba(5,17,38,0.94), rgba(5,17,38,1));
  border-top: 1px solid rgba(216, 177, 106, 0.18);
  padding: 34px 0;
}

.footer__inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.coopyright {
  flex: 1 1 62%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coopyright img {
  max-width: 240px;
}

.coopyright p {
  color: var(--muted);
  font-size: 13px;
}

.list {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.list ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.list ul li {
  color: var(--text);
  transition: color 0.2s ease;
}

.list ul li:hover {
  color: #ffd690;
}

@media (max-width: 1100px) {
  .top {
    grid-template-columns: 1fr;
  }

  .card__header--wide {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card__img,
  .card__img--featured {
    margin: 0 auto;
  }

  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .header__inner {
    padding: 16px 0 14px;
  }

  .logo {
    max-width: 260px;
  }

  .main {
    padding: 28px 0 38px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .card__header,
  .card__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .card__bonus {
    font-size: 18px;
  }

  .coop {
    font-size: 12px;
  }

  .card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
