@import url("https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600&display=swap");

:root {
  font-family: "General Sans", Inter, Arial, sans-serif;
  color: #f4f7fb;
  background: #070a14;
  font-synthesis: none;
  --blue: #2f6bff;
  --cyan: #22d3ee;
  --gold: #f5b544;
  --surface: #0c1120;
  --line: rgba(255, 255, 255, 0.09);
  --muted: #98a3b5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #070a14;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  min-height: 100vh;
  container-type: inline-size;
}

.page-shell.force-mobile {
  width: 390px;
  margin: 0 auto;
}

.offer-section {
  container-type: inline-size;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: 76px 28px 84px;
  background:
    linear-gradient(rgba(47, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.035) 1px, transparent 1px),
    #070a14;
  background-size: 58px 58px;
}

.mesh {
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.mesh-left {
  top: -260px;
  left: -220px;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.24), transparent 67%);
}

.mesh-right {
  right: -240px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 67%);
}

.offer-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: #77a4ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-heading h1 {
  margin: 0;
  color: #f6f8fc;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading h1 span {
  font-weight: 500;
  background: linear-gradient(110deg, #4d7dff, var(--cyan));
  background-clip: text;
  color: transparent;
}

.intro {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.78fr);
  gap: 26px;
  align-items: stretch;
}

.products {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: center;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(165deg, #101729, #090e1b);
  box-shadow: 0 30px 70px -38px rgba(0, 0, 0, 0.8);
}

.access-card {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 30px 76px -40px rgba(34, 211, 238, 0.55);
}

.product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.product-label span {
  color: #8290a6;
  font-weight: 600;
}

.product-label strong {
  color: #dfe6f2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-label.highlighted strong {
  color: var(--cyan);
}

.image-frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #06101c;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  padding: 18px 19px 21px;
}

.product-copy p {
  margin: 0 0 7px;
  color: #6f83a4;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.product-copy h2 {
  margin: 0 0 5px;
  color: #f7f9fd;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.product-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.connector {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-inline: -8px;
  border: 1px solid rgba(47, 107, 255, 0.55);
  border-radius: 50%;
  background: #0a1020;
  box-shadow: 0 0 32px rgba(47, 107, 255, 0.28);
}

.connector span {
  color: #dbe5f6;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.included-ribbon {
  position: absolute;
  top: 55px;
  right: -39px;
  width: 174px;
  padding: 8px 0;
  transform: rotate(38deg);
  background: linear-gradient(90deg, #1b8ccc, var(--cyan));
  color: #03101b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.checkout-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(47, 107, 255, 0.4);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 34%),
    linear-gradient(165deg, #101729, #090e1b);
  box-shadow: 0 34px 84px -44px rgba(47, 107, 255, 0.7);
}

.checkout-badge {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid rgba(245, 181, 68, 0.42);
  border-radius: 999px;
  background: rgba(245, 181, 68, 0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.checkout-card h2 {
  margin: 0;
  color: #f6f8fc;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.checkout-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.checkout-card li {
  position: relative;
  padding-left: 20px;
  color: #bec8d8;
  font-size: 13.5px;
  line-height: 1.4;
}

.checkout-card li::before {
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.7);
  content: "";
}

.bonus-value {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  align-items: center;
  padding: 14px 15px;
  border: 1px solid rgba(34, 211, 238, 0.23);
  border-radius: 13px;
  background: rgba(34, 211, 238, 0.06);
}

.bonus-value span {
  grid-column: 1 / -1;
  color: #91a1b7;
  font-size: 11px;
}

.bonus-value del {
  color: #f6f8fc;
  font-size: 17px;
  font-weight: 600;
  text-decoration-color: rgba(246, 248, 252, 0.8);
  text-decoration-thickness: 1.5px;
}

.bonus-value b {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: right;
}

.price-block {
  margin-top: auto;
  padding-top: 24px;
}

.price-block > span {
  color: #8f9aac;
  font-size: 12px;
}

.price-block div {
  margin-top: 5px;
  color: #f6f8fc;
  font-size: 58px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.price-block small {
  color: #bac4d3;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.price-block sup {
  position: relative;
  top: -0.65em;
  font-size: 20px;
  letter-spacing: 0;
}

.price-block p {
  margin: 5px 0 19px;
  color: #8f9aac;
  font-size: 12px;
}

.price-block del {
  display: block;
  margin-top: 8px;
  color: #8f9aac;
  font-size: 14px;
}

.checkout-card button,
.checkout-card .offer-cta {
  width: 100%;
  border: 0;
  border-radius: 13px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--blue), #1e54e0);
  box-shadow: 0 16px 42px -16px rgba(47, 107, 255, 0.85);
  color: white;
  cursor: pointer;
  font: 600 15px "General Sans", sans-serif;
  transition: transform 180ms ease, filter 180ms ease;
  text-decoration: none;
  text-align: center;
}

.checkout-card button:hover,
.checkout-card .offer-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.checkout-card button:focus-visible,
.checkout-card .offer-cta:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.65);
  outline-offset: 3px;
}

.reassurance {
  margin: 13px 0 0;
  color: #7f899a;
  font-size: 10.5px;
  line-height: 1.45;
  text-align: center;
}

.preview-message {
  margin-top: 13px;
  padding: 11px 12px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.07);
  color: #bcecf4;
  font-size: 11px;
  line-height: 1.4;
}

@container (max-width: 980px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
  }

  .checkout-card h2,
  .checkout-card ul,
  .checkout-badge,
  .preview-message {
    grid-column: 1 / -1;
  }

  .checkout-card ul {
    grid-template-columns: 1fr 1fr;
  }

  .price-block {
    margin-top: 0;
    padding-top: 10px;
  }

  .checkout-card button {
    align-self: end;
  }

  .reassurance {
    grid-column: 2;
  }
}

@container (max-width: 680px) {
  .offer-section {
    padding: 56px 18px 64px;
    background-size: 42px 42px;
  }

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

  .section-heading h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .intro {
    font-size: 15px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .connector {
    width: 62px;
    height: 62px;
    margin: -12px auto;
  }

  .product-card {
    width: 100%;
  }

  .image-frame {
    aspect-ratio: 4 / 3;
  }

  .image-frame img {
    object-position: center 42%;
  }

  .checkout-card {
    display: flex;
    padding: 24px 20px;
  }

  .checkout-card ul {
    grid-template-columns: 1fr;
  }

  .price-block {
    padding-top: 22px;
  }

  .reassurance {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
