@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --bg: #111214;
  --panel: #1a1c1f;
  --line: #34373a;
  --lime: #d1ff39;
  --gold: #d9a94a;
  --text: #f2f1eb;
  --muted: #a3a6a3;
  --pink: #ff4968;
  --display: "Barlow Condensed", Impact, sans-serif;
  --ui: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
.site-header {
  height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111214dd;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #ffffff0d;
}
.wordmark {
  font: 900 31px/1 var(--display);
  letter-spacing: 0.04em;
}
.wordmark span {
  color: var(--lime);
}
nav {
  display: flex;
  gap: clamp(18px, 3vw, 46px);
  margin-left: auto;
  margin-right: clamp(22px, 4vw, 60px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cacbc5;
}
nav a:hover {
  color: var(--lime);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 22px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 18px;
}
.button--lime {
  color: #111;
  background: var(--lime);
}
.button--gold {
  color: #17130d;
  background: var(--gold);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  padding: 10px;
}
.menu-toggle i {
  display: block;
  width: 24px;
  border-top: 2px solid currentColor;
  margin: 5px;
}
.hero {
  min-height: 650px;
  position: relative;
  overflow: visible;
  padding: clamp(80px, 10vw, 140px) max(7vw, 28px) 80px;
  isolation: isolate;
  background: radial-gradient(circle at 70% 30%, #303427 0, #111214 48%);
}
.hero-decor {
  position: absolute;
  inset: 0;
  overflow: clip;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background:
    linear-gradient(90deg, transparent 49.8%, #d1ff39 50%, transparent 50.2%),
    linear-gradient(#ffffff 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100px;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}
.hero-photo {
  position: absolute;
  right: 5%;
  top: 0;
  width: min(47vw, 640px);
  height: 100%;
  opacity: 0.8;
  z-index: -1;
  clip-path: polygon(22% 0, 100% 0, 88% 100%, 0 100%);
  mix-blend-mode: screen;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 42%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%, #11121433 80%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.15);
  mix-blend-mode: screen;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-stamp {
  position: absolute;
  left: max(7vw, 28px);
  top: clamp(42px, 6vw, 78px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 5px 0;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: rotate(-3deg);
}
.hero-stamp:after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--lime);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--lime);
  margin: 0 0 18px;
}
.eyebrow span:not(.live-dot) {
  color: var(--muted);
  margin-left: 18px;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  margin-left: 8px;
}
h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  text-transform: uppercase;
  line-height: 0.88;
}
h1 {
  font-size: clamp(68px, 10vw, 142px);
  font-weight: 900;
  letter-spacing: -0.025em;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--lime);
}
.hero-intro {
  max-width: 400px;
  color: #c4c5bd;
  margin: 30px 0 27px;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.social-link,
.text-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 5px;
}
.hero-note {
  font-size: 14px;
  color: #b8bbb2;
  margin-top: 28px;
}
.hero-mark {
  position: absolute;
  right: 5%;
  bottom: 18%;
  font: 900 clamp(90px, 16vw, 220px)/0.7 var(--display);
  color: #ffffff0a;
  z-index: -1;
}
.hero-mark span {
  color: var(--lime);
}
.hero-arc {
  position: absolute;
  border: 3px solid var(--lime);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
  pointer-events: none;
  opacity: 0.8;
}
.hero-arc--one {
  width: 780px;
  height: 300px;
  right: -130px;
  bottom: -60px;
}
.hero-arc--two {
  width: 710px;
  height: 250px;
  right: -80px;
  bottom: -20px;
  border-color: var(--gold);
  border-left-color: transparent;
  border-bottom-color: transparent;
  opacity: 0.65;
}
.dealboard {
  padding: 110px max(5vw, 22px) 120px;
  max-width: 1480px;
  margin: auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 46px;
}
.section-head h2,
.selection h2,
.faq-section h2 {
  font-size: clamp(52px, 7vw, 92px);
  letter-spacing: -0.02em;
}
.section-note {
  color: var(--muted);
  text-align: right;
  font-size: 14px;
}
.deal-list {
  display: grid;
  gap: 12px;
  position: relative;
}
.deal-list:before {
  content: "";
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--lime), #71821f 55%, var(--gold));
  opacity: 0.8;
}
.deal {
  display: grid;
  grid-template-columns: 70px 1.1fr 1fr 1.65fr 1.05fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 16px;
  padding: 25px 28px 25px 0;
  min-height: 142px;
  border-top: 1px solid var(--line);
  background: #16181a;
  transition: background 0.2s;
}
.deal:hover {
  background: #202327;
}
.deal--top {
  background: linear-gradient(90deg, #26231b, #1d1f1f);
  border-top: 2px solid var(--gold);
}
.deal-rank {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
  font: 700 24px var(--display);
  background: var(--bg);
}
.deal--top .deal-rank {
  color: var(--gold);
}
.deal-rank b {
  font: 800 12px var(--ui);
  letter-spacing: 0.12em;
  color: var(--gold);
}
.deal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.monogram {
  width: 39px;
  height: 39px;
  border: 1px solid #626660;
  display: grid;
  place-items: center;
  font: 800 16px var(--display);
  transform: skew(-8deg);
  color: #ddd;
}
.deal-brand h3 {
  font-size: 27px;
  letter-spacing: 0.02em;
}
.deal-bonus strong {
  font: 900 50px/0.8 var(--display);
  display: block;
}
.deal-bonus span {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.deal-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #c5c8c0;
  font-size: 14px;
}
.deal-benefits li:before {
  content: "+";
  color: var(--lime);
  font-weight: bold;
  margin-right: 5px;
}
.deal-action {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-end;
}
.code {
  border: 2px solid var(--pink);
  color: var(--pink);
  background: #3a1d25;
  min-height: 42px;
  padding: 5px 11px;
  cursor: pointer;
  text-align: left;
}
.code span {
  display: block;
  font: 700 15px var(--display);
  letter-spacing: 0.08em;
}
.code b {
  font: 800 10px var(--ui);
  letter-spacing: 0.06em;
}
.code.copied {
  border-color: var(--lime);
  color: var(--lime);
  background: #202b12;
}
.code-empty {
  font-size: 14px;
  color: #767a75;
  white-space: nowrap;
}
.deal-details {
  grid-column: 2/-1;
  color: var(--muted);
  font-size: 14px;
}
.deal-details summary {
  cursor: pointer;
  color: #999d96;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  list-style: none;
}
.deal-details summary::-webkit-details-marker {
  display: none;
}
.deal-details summary span,
.faq-list summary span {
  float: right;
  color: var(--lime);
  font-size: 18px;
  line-height: 10px;
}
.deal-details p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #afb2aa;
}
.selection {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 70px clamp(25px, 6vw, 90px);
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 50px;
  background: #d1ff39;
  color: #151713;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.selection .eyebrow {
  color: #394a12;
}
.selection h2 {
  font-size: clamp(48px, 6vw, 77px);
}
.selection h2 em {
  color: #293c0a;
}
.selection p {
  max-width: 570px;
  margin: 25px 0;
  color: #354028;
}
.selection .text-link {
  border-color: #151713;
}
.selection-stamp {
  width: 150px;
  height: 150px;
  border: 2px solid #50601e;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font: 900 30px/0.8 var(--display);
  transform: rotate(-12deg);
  padding: 12px;
}
.selection-stamp span {
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-top: 8px;
}
.faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px 130px;
}
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 45px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.faq-list summary {
  list-style: none;
  font: 600 20px var(--display);
  text-transform: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-family: var(--ui);
  font-weight: 400;
}
.faq-list p {
  color: var(--muted);
  max-width: 700px;
  margin: 15px 0 0;
  font-size: 14px;
}
footer {
  background: #0b0c0d;
  border-top: 1px solid #31342e;
  padding: 70px max(5vw, 24px) 25px;
  position: relative;
  overflow: hidden;
}
footer:before {
  content: "";
  position: absolute;
  top: -240px;
  right: -100px;
  width: 700px;
  height: 300px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  opacity: 0.65;
  transform: rotate(-14deg);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: start;
  position: relative;
}
.footer-main p {
  margin: 0;
  color: #a4a8a0;
  font-size: 15px;
}
.footer-main small {
  display: block;
  color: #9da29a;
  margin-top: 15px;
  font-size: 12px;
}
.footer-socials {
  display: grid;
  gap: 9px;
  justify-items: end;
  color: #d5d7d0;
  font-size: 13px;
}
.footer-socials a:hover {
  color: var(--lime);
}
.footer-bottom {
  border-top: 1px solid #2d302d;
  margin-top: 70px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aeb3aa;
  font-size: 12px;
}
.footer-bottom span:last-child {
  display: flex;
  gap: 22px;
}
.footer-bottom a:hover {
  color: var(--lime);
}
@media (max-width: 900px) {
  nav {
    gap: 18px;
    margin-right: 18px;
  }
  .deal {
    grid-template-columns: 58px 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .deal-benefits {
    grid-column: 2/-1;
  }
  .deal-action {
    grid-column: 2/-1;
    justify-content: flex-start;
  }
  .deal-details {
    grid-column: 2/-1;
  }
  .deal-list:before {
    left: 28px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-socials {
    justify-items: start;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span:last-child {
    margin-top: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 650px) {
  .site-header {
    height: 64px;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    background: #151718;
    padding: 22px 25px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    margin: 0;
  }
  nav.is-open {
    display: flex;
  }
  .hero {
    min-height: 650px;
    padding: 76px 25px 55px;
  }
  .hero-photo {
    right: 0;
    width: 100%;
    opacity: 0.58;
    clip-path: polygon(26% 0, 100% 0, 90% 100%, 0 100%);
  }
  .hero-copy {
    max-width: 500px;
  }
  .hero-intro {
    font-size: 15px;
    max-width: 300px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-arc--one {
    width: 600px;
    right: -300px;
  }
  .dealboard {
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-note {
    text-align: left;
    margin-top: 18px;
  }
  .deal {
    grid-template-columns: 52px 1fr;
    padding: 20px 16px 22px 0;
    gap: 12px;
  }
  .deal-list:before {
    left: 24px;
  }
  .deal-brand {
    grid-column: 2;
  }
  .deal-brand h3 {
    font-size: 24px;
  }
  .deal-rank {
    grid-row: 1/3;
  }
  .deal-bonus {
    grid-column: 2;
    margin: 12px 0;
  }
  .deal-bonus strong {
    font-size: 58px;
  }
  .deal-benefits {
    grid-column: 2;
    display: block;
  }
  .deal-benefits li {
    margin-bottom: 7px;
  }
  .deal-action {
    grid-column: 2;
    display: block;
  }
  .deal-action .button {
    width: 100%;
    margin-top: 13px;
  }
  .code,
  .code-empty {
    display: block;
    width: 100%;
  }
  .deal-details {
    grid-column: 2;
  }
  .selection {
    margin: 0 15px 80px;
    padding: 45px 27px;
    display: block;
  }
  .selection-stamp {
    width: 100px;
    height: 100px;
    font-size: 21px;
    float: right;
    margin: 0 0 15px 15px;
  }
  .faq-section {
    padding-bottom: 85px;
  }
  .footer-main {
    display: block;
  }
  .footer-main p {
    margin-top: 28px;
  }
  .footer-socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 38px;
    gap: 16px;
  }
  .footer-bottom {
    margin-top: 48px;
  }
  .footer-bottom span:last-child {
    gap: 14px;
  }
}
@media (max-width: 340px) {
  body {
    font-size: 15px;
  }
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  h1 {
    font-size: 62px;
  }
  .dealboard {
    padding-left: 14px;
    padding-right: 14px;
  }
  .deal {
    padding-right: 10px;
  }
  .selection {
    margin-left: 8px;
    margin-right: 8px;
  }
  .section-head h2,
  .selection h2,
  .faq-section h2 {
    font-size: 47px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
