:root {
  --entry-black: #090909;
  --entry-ink: #181818;
  --entry-white: #ffffff;
  --entry-canvas: #fffde7;
  --entry-soft: #f5f4ef;
  --entry-yellow: #ffff33;
  --entry-yellow-soft: #fffda8;
  --entry-coral: #e45d58;
  --entry-cyan: #35c9e8;
  --entry-purple: #9b65e8;
  --entry-green: #138a55;
  --entry-red: #bd3e3e;
  --entry-muted: #6d6d6d;
  --entry-line: rgba(10, 10, 10, 0.14);
  --entry-width: 1460px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--entry-ink);
  background:
    linear-gradient(rgba(10, 10, 10, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.025) 1px, transparent 1px),
    var(--entry-canvas);
  background-size: 30px 30px;
  font-family: Montserrat, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.entry-container {
  width: min(calc(100% - 42px), var(--entry-width));
  margin: 0 auto;
}

.entry-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 13px;
  color: var(--entry-yellow);
  border-radius: 7px;
  background: var(--entry-black);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-150%);
}

.entry-skip-link:focus { transform: translateY(0); }

/* Header */

.entry-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 78px;
  border-bottom: 1px solid var(--entry-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: height 0.2s ease, box-shadow 0.2s ease;
}

.entry-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--entry-yellow) 0 42%, var(--entry-coral) 42% 70%, var(--entry-black) 70%);
}

.entry-header.is-scrolled {
  height: 70px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.entry-header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.entry-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--entry-black);
  text-decoration: none;
}

.entry-brand-mark {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--entry-black);
  border: 1px solid var(--entry-black);
  border-radius: 10px;
  background: var(--entry-yellow);
  box-shadow: 4px 4px 0 var(--entry-coral);
}

.entry-brand-mark > svg { width: 26px; height: 26px; }

.entry-brand-mark > small {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--entry-yellow);
  border: 2px solid var(--entry-white);
  border-radius: 50%;
  background: var(--entry-black);
}

.entry-brand-mark > small svg { width: 11px; height: 11px; }

.entry-brand-copy {
  display: grid;
  gap: 3px;
}

.entry-brand-copy strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.entry-brand-copy small {
  color: var(--entry-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.entry-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--entry-muted);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.entry-navigation a:hover { color: var(--entry-black); }
.entry-navigation svg { width: 13px; height: 13px; }

.entry-header-login {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--entry-black);
  border: 1px solid var(--entry-black);
  border-radius: 8px;
  background: var(--entry-yellow);
  box-shadow: 4px 4px 0 var(--entry-coral);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.entry-header-login svg { width: 16px; height: 16px; }

.entry-menu-button {
  display: none;
  width: 43px;
  height: 43px;
  border: 1px solid var(--entry-black);
  border-radius: 8px;
  color: var(--entry-yellow);
  background: var(--entry-black);
  cursor: pointer;
}

/* Hero and login */

.entry-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--entry-white);
  background:
    radial-gradient(circle at 86% 16%, rgba(155, 101, 232, 0.22), transparent 26%),
    radial-gradient(circle at 8% 110%, rgba(228, 93, 88, 0.2), transparent 34%),
    var(--entry-black);
}

.entry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.026) 22px 23px);
  pointer-events: none;
}

.entry-hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.84) 0%, rgba(9, 9, 9, 0.56) 38%, rgba(9, 9, 9, 0.16) 68%, rgba(9, 9, 9, 0.12) 100%),
    url('/images/pre-login-gaming-hero.webp') 83% center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.45) contrast(1.08) brightness(1.08);
}

.entry-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 480px);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  min-height: 690px;
  padding: 58px 0 62px;
}

.entry-hero-copy {
  max-width: 760px;
}

.entry-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--entry-yellow);
  border: 1px solid rgba(255, 255, 51, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 51, 0.07);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-eyebrow svg { width: 15px; height: 15px; }

.entry-hero-copy h1 {
  margin: 23px 0 18px;
  color: var(--entry-white);
  font-size: clamp(49px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.entry-hero-copy h1 span {
  color: var(--entry-yellow);
  text-shadow: 5px 5px 0 rgba(228, 93, 88, 0.85);
}

.entry-hero-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.72;
}

.entry-hero-copy > p strong { color: var(--entry-white); }

.entry-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.entry-hero-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 9px;
  font-weight: 750;
}

.entry-hero-points svg { width: 15px; height: 15px; color: var(--entry-yellow); }

.entry-shop-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  margin-top: 21px;
  padding: 0 15px;
  color: var(--entry-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.entry-shop-link svg { width: 16px; height: 16px; }
.entry-shop-link svg:last-child { color: var(--entry-yellow); }

.entry-login-card {
  position: relative;
  scroll-margin-top: 95px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--entry-ink);
  border: 1px solid var(--entry-black);
  border-radius: 11px;
  background: var(--entry-white);
  box-shadow: 9px 9px 0 var(--entry-coral);
}

.entry-login-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, var(--entry-yellow) 0 52%, var(--entry-coral) 52% 76%, var(--entry-black) 76%);
}

.entry-login-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.entry-login-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--entry-yellow);
  border-radius: 9px;
  background: var(--entry-black);
}

.entry-login-heading small {
  color: var(--entry-coral);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-login-heading h2 {
  margin-top: 3px;
  color: var(--entry-black);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.entry-login-heading p {
  margin-top: 5px;
  color: var(--entry-muted);
  font-size: 10px;
  line-height: 1.5;
}

.entry-alert {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 17px;
  padding: 12px;
  border: 1px solid;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.55;
}

.entry-alert svg { width: 17px; height: 17px; flex: 0 0 auto; }
.entry-alert.is-error { color: var(--entry-red); border-color: rgba(189, 62, 62, 0.28); background: #fff2f2; }
.entry-alert.is-success { color: var(--entry-green); border-color: rgba(19, 138, 85, 0.28); background: #effcf5; }

.entry-login-form { margin-top: 20px; }

.entry-login-form > label,
.entry-label-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--entry-black);
  font-size: 10px;
  font-weight: 850;
}

.entry-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
}

.entry-label-row a {
  margin-bottom: 8px;
  color: #a63232;
  font-size: 9px;
  font-weight: 850;
  text-decoration: none;
}

.entry-input-wrap {
  display: flex;
  min-height: 50px;
  overflow: hidden;
  border: 1px solid var(--entry-line);
  border-radius: 8px;
  background: var(--entry-soft);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.entry-input-wrap:focus-within {
  border-color: var(--entry-black);
  box-shadow: 0 0 0 3px rgba(255, 255, 51, 0.48);
}

.entry-country-code {
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: var(--entry-black);
  border-right: 1px solid var(--entry-line);
  font-size: 12px;
  font-weight: 850;
}

.entry-input-wrap input {
  width: 100%;
  min-width: 0;
  padding: 0 13px;
  color: var(--entry-black);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 650;
}

.entry-input-wrap input::placeholder { color: #929292; }

.entry-password-wrap > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  align-self: center;
  margin-left: 13px;
  color: var(--entry-muted);
}

.entry-password-wrap button {
  display: grid;
  width: 46px;
  flex: 0 0 auto;
  border: 0;
  place-items: center;
  color: var(--entry-black);
  background: transparent;
  cursor: pointer;
}

.entry-password-wrap button svg { width: 17px; height: 17px; }

.entry-submit {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 19px;
  color: var(--entry-black);
  border: 1px solid var(--entry-black);
  border-radius: 8px;
  background: var(--entry-yellow);
  box-shadow: 4px 4px 0 var(--entry-coral);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.entry-submit svg { width: 17px; height: 17px; }
.entry-submit:disabled { cursor: wait; opacity: 0.7; }

.entry-first-time {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 19px;
  padding: 11px;
  border: 1px solid var(--entry-black);
  border-radius: 8px;
  background: var(--entry-yellow-soft);
}

.entry-first-time > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--entry-yellow);
  border-radius: 7px;
  background: var(--entry-black);
}

.entry-first-time > span svg { width: 17px; height: 17px; }
.entry-first-time div { display: grid; gap: 3px; }
.entry-first-time strong { color: var(--entry-black); font-size: 9px; }
.entry-first-time p { color: var(--entry-muted); font-size: 8px; line-height: 1.45; }
.entry-first-time a { display: inline-flex; align-items: center; gap: 4px; color: var(--entry-black); font-size: 8px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.entry-first-time a svg { width: 13px; height: 13px; }

.entry-login-terms {
  margin-top: 14px;
  color: var(--entry-muted);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.entry-login-terms a { color: var(--entry-black); font-weight: 850; }

.entry-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 11px;
  color: var(--entry-muted);
  font-size: 8px;
  font-weight: 750;
}

.entry-security-note svg { width: 14px; height: 14px; color: var(--entry-green); }

/* Statistics */

.entry-stat-strip {
  border-bottom: 1px solid var(--entry-line);
  background: var(--entry-white);
}

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

.entry-stat-grid article {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  border-right: 1px solid var(--entry-line);
}

.entry-stat-grid article:last-child { border-right: 0; }

.entry-stat-grid article > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--entry-black);
  border: 1px solid var(--entry-black);
  border-radius: 8px;
  background: var(--entry-yellow);
}

.entry-stat-grid article > div { display: grid; gap: 3px; }
.entry-stat-grid strong { color: var(--entry-black); font-size: 19px; font-weight: 900; line-height: 1; }
.entry-stat-grid small { color: var(--entry-muted); font-size: 8px; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }

/* Benefits */

.entry-benefits-section,
.entry-how-section,
.entry-coupon-section {
  padding: clamp(65px, 8vw, 105px) 0;
}

.entry-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.entry-section-heading span,
.entry-how-copy > span,
.entry-coupon-copy > span {
  color: var(--entry-coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry-section-heading h2,
.entry-how-copy h2,
.entry-coupon-copy h2 {
  margin-top: 7px;
  color: var(--entry-black);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.entry-section-heading > p,
.entry-how-copy > p,
.entry-coupon-copy > p {
  color: var(--entry-muted);
  font-size: 12px;
  line-height: 1.7;
}

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

.entry-benefit-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--entry-black);
  border-radius: 10px;
  background: var(--entry-white);
  box-shadow: 5px 5px 0 var(--entry-coral);
}

.entry-benefit-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--entry-yellow);
  border-radius: 8px;
  background: var(--entry-black);
}

.entry-benefit-grid article > div { display: flex; min-width: 0; flex-direction: column; }
.entry-benefit-grid small { color: var(--entry-coral); font-size: 9px; font-weight: 900; }
.entry-benefit-grid h3 { margin-top: auto; color: var(--entry-black); font-size: 22px; font-weight: 900; line-height: 1.1; }
.entry-benefit-grid p { margin-top: 9px; color: var(--entry-muted); font-size: 10px; line-height: 1.65; }

.entry-benefit-grid article.is-dark { color: var(--entry-white); background: var(--entry-black); }
.entry-benefit-grid article.is-dark > span { color: var(--entry-black); background: var(--entry-yellow); }
.entry-benefit-grid article.is-dark h3 { color: var(--entry-white); }
.entry-benefit-grid article.is-dark p { color: rgba(255, 255, 255, 0.62); }
.entry-benefit-grid article.is-yellow { background: var(--entry-yellow-soft); }

/* How it works */

.entry-how-section {
  color: var(--entry-white);
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.024) 22px 23px),
    var(--entry-black);
}

.entry-how-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}

.entry-how-copy h2 { color: var(--entry-white); }
.entry-how-copy > p { margin-top: 16px; color: rgba(255, 255, 255, 0.64); }

.entry-how-copy > a {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 14px;
  color: var(--entry-black);
  border-radius: 7px;
  background: var(--entry-yellow);
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}

.entry-how-copy > a svg { width: 15px; height: 15px; }

.entry-step-list {
  display: grid;
  gap: 10px;
}

.entry-step-list article {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.entry-step-list b {
  color: rgba(255, 255, 255, 0.28);
  font-size: 22px;
  font-weight: 900;
}

.entry-step-list article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--entry-black);
  border-radius: 7px;
  background: var(--entry-yellow);
}

.entry-step-list strong { color: var(--entry-white); font-size: 11px; }
.entry-step-list p { margin-top: 4px; color: rgba(255, 255, 255, 0.58); font-size: 9px; line-height: 1.55; }

/* Coupon explanation */

.entry-coupon-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 58px);
  border: 1px solid var(--entry-black);
  border-radius: 11px;
  background: var(--entry-white);
  box-shadow: 8px 8px 0 var(--entry-coral);
}

.entry-coupon-copy > p { margin-top: 14px; }

.entry-coupon-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--entry-black);
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}

.entry-coupon-copy > a svg { width: 14px; height: 14px; color: var(--entry-coral); }

.entry-cap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.entry-cap-list > span {
  display: grid;
  min-height: 115px;
  align-content: center;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--entry-black);
  border-radius: 8px;
  background: var(--entry-yellow-soft);
}

.entry-cap-list > span:nth-child(2) { background: #dff8ff; }
.entry-cap-list > span:nth-child(3) { background: #e7ddff; }
.entry-cap-list > span:nth-child(4) { background: var(--entry-yellow); }
.entry-cap-list small { color: var(--entry-muted); font-size: 8px; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.entry-cap-list strong { color: var(--entry-black); font-size: 28px; font-weight: 900; letter-spacing: -0.04em; }

/* Footer */

.entry-footer {
  color: var(--entry-white);
  background: var(--entry-black);
}

.entry-footer-main {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
}

.entry-footer-brand { display: flex; align-items: center; gap: 13px; }
.entry-footer-brand .entry-brand-mark { width: 43px; height: 43px; box-shadow: 3px 3px 0 var(--entry-coral); }
.entry-footer-brand strong { color: var(--entry-white); font-size: 12px; }
.entry-footer-brand p { margin-top: 4px; color: rgba(255, 255, 255, 0.5); font-size: 8px; }
.entry-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.entry-footer nav a { color: rgba(255, 255, 255, 0.62); font-size: 9px; font-weight: 800; text-decoration: none; }

.entry-footer-bottom {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 8px;
}

.entry-footer-bottom span { display: inline-flex; align-items: center; gap: 6px; }
.entry-footer-bottom svg { width: 13px; height: 13px; color: var(--entry-yellow); }

/* Behaviour and accessibility */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.entry-login-card:target {
  outline: 4px solid rgba(255, 255, 51, 0.72);
  outline-offset: 5px;
}

.entry-login-card.is-attention {
  outline: 4px solid rgba(255, 255, 51, 0.9);
  outline-offset: 5px;
  animation: entry-login-attention 0.8s ease-in-out 2;
}

@keyframes entry-login-attention {
  0%, 100% { box-shadow: 8px 8px 0 var(--entry-coral), 0 0 0 0 rgba(255, 255, 51, 0); }
  50% { box-shadow: 8px 8px 0 var(--entry-coral), 0 0 0 10px rgba(255, 255, 51, 0.22); }
}

:is(.entry-header-login,.entry-shop-link,.entry-submit,.entry-first-time a,.entry-how-copy > a,.entry-coupon-copy > a,.entry-navigation a,.entry-footer a,.entry-input-wrap button):focus-visible {
  outline: 3px solid var(--entry-cyan);
  outline-offset: 3px;
}

@media (hover: hover) {
  .entry-header-login:hover,
  .entry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--entry-coral);
  }

  .entry-shop-link:hover { border-color: var(--entry-yellow); }
  .entry-label-row a:hover,
  .entry-first-time a:hover,
  .entry-coupon-copy > a:hover,
  .entry-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }

  .entry-benefit-grid article,
  .entry-cap-list > span {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .entry-benefit-grid article:hover,
  .entry-cap-list > span:hover { transform: translateY(-3px); }
}

@media (max-width: 1050px) {
  .entry-navigation { gap: 17px; }
  .entry-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, 430px); gap: 40px; }
  .entry-hero-copy h1 { font-size: clamp(47px, 6vw, 65px); }
  .entry-benefit-grid article { min-height: 270px; }
}

@media (max-width: 840px) {
  .entry-header { height: 72px; }
  .entry-header.is-scrolled { height: 68px; }
  .entry-header-inner { grid-template-columns: auto 1fr auto auto; gap: 10px; }
  .entry-menu-button { display: grid; place-items: center; }

  .entry-navigation {
    position: fixed;
    top: 80px;
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 8px 13px;
    border: 1px solid var(--entry-black);
    border-radius: 9px;
    background: var(--entry-yellow);
    box-shadow: 6px 6px 0 var(--entry-coral);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  }

  .entry-header.is-scrolled .entry-navigation { top: 75px; }
  .entry-navigation.is-open { opacity: 1; visibility: visible; transform: none; }
  .entry-navigation a { min-height: 44px; color: var(--entry-black); border-bottom: 1px solid rgba(10, 10, 10, 0.12); }
  .entry-navigation a:last-child { border-bottom: 0; }

  .entry-hero,
  .entry-hero-grid { min-height: auto; }

  .entry-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 45px 0 54px;
  }

  .entry-hero-copy { max-width: 680px; }
  .entry-login-card { width: min(100%, 560px); justify-self: center; }
  .wallet-entry-body[data-focus-login="true"] .entry-login-card { order: -1; }
  .entry-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .entry-stat-grid article:nth-child(2) { border-right: 0; }
  .entry-stat-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--entry-line); }
  .entry-section-heading { grid-template-columns: 1fr; gap: 13px; }
  .entry-section-heading > p { max-width: 650px; }
  .entry-benefit-grid { grid-template-columns: 1fr; }
  .entry-benefit-grid article { min-height: 190px; }
  .entry-how-layout { grid-template-columns: 1fr; }
  .entry-coupon-card { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  html { scroll-padding-top: 78px; }
  .entry-container { width: min(calc(100% - 26px), var(--entry-width)); }
  .entry-header-login { min-height: 41px; padding: 0 11px; box-shadow: 3px 3px 0 var(--entry-coral); }
  .entry-header-login svg { display: none; }
  .entry-header-login span { font-size: 9px; }
  .entry-brand-mark { width: 45px; height: 45px; }
  .entry-brand-copy strong { font-size: 13px; }
  .entry-brand-copy small { font-size: 6px; }

  .entry-hero-grid { gap: 28px; padding: 30px 0 44px; }
  .entry-hero-art { background-position: 70% center; opacity: 0.92; }
  .entry-eyebrow { font-size: 8px; }
  .entry-hero-copy h1 { margin-top: 18px; font-size: clamp(42px, 13vw, 55px); }
  .entry-hero-copy h1 span { text-shadow: 3px 3px 0 var(--entry-coral); }
  .entry-hero-copy > p { font-size: 12px; }
  .entry-hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .entry-hero-points span { justify-content: center; padding: 0 8px; }
  .entry-hero-points span:last-child { grid-column: 1 / -1; }

  .entry-login-card { scroll-margin-top: 80px; padding: 24px 17px 20px; box-shadow: 6px 6px 0 var(--entry-coral); }
  .entry-login-heading { align-items: start; }
  .entry-login-icon { width: 43px; height: 43px; }
  .entry-login-heading h2 { font-size: 22px; }
  .entry-first-time { grid-template-columns: auto minmax(0, 1fr); }
  .entry-first-time > a { grid-column: 2; justify-self: start; }

  .entry-stat-grid article { min-height: 91px; justify-content: flex-start; gap: 9px; padding: 12px; }
  .entry-stat-grid article > span { width: 35px; height: 35px; }
  .entry-stat-grid strong { font-size: 16px; }

  .entry-benefits-section,
  .entry-how-section,
  .entry-coupon-section { padding: 66px 0; }
  .entry-section-heading h2,
  .entry-how-copy h2,
  .entry-coupon-copy h2 { font-size: 33px; }
  .entry-benefit-grid article { grid-template-columns: auto 1fr; min-height: 175px; padding: 19px; }
  .entry-benefit-grid h3 { font-size: 20px; }
  .entry-step-list article { grid-template-columns: auto auto minmax(0, 1fr); padding: 12px; }
  .entry-coupon-card { padding: 24px 17px; box-shadow: 5px 5px 0 var(--entry-coral); }
  .entry-cap-list { gap: 8px; }
  .entry-cap-list > span { min-height: 95px; padding: 13px; }
  .entry-cap-list strong { font-size: 23px; }

  .entry-footer-main,
  .entry-footer-bottom { align-items: flex-start; flex-direction: column; }
  .entry-footer-main { justify-content: center; }
  .entry-footer nav { justify-content: flex-start; gap: 14px; }
  .entry-footer-bottom { justify-content: center; padding: 14px 0; }
}

@media (max-width: 370px) {
  .entry-brand-copy { display: none; }
  .entry-hero-points { grid-template-columns: 1fr; }
  .entry-hero-points span:last-child { grid-column: auto; }
  .entry-cap-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
