:root {
  --black: #110e08;
  --ink: #0a0f08;
  --paper: #f4f3ed;
  --lime: #ccff00;
  --muted: #4c5149;
  --line: #d8d8ce;
  --white: #ffffff;
}

@font-face {
  font-family: 'Capsule Sans Text';
  src: url('assets/fonts/CapsuleSansText-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Capsule Sans Text';
  src: url('assets/fonts/CapsuleSansText-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Capsule Sans Text';
  src: url('assets/fonts/CapsuleSansText-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martina Plantijn';
  src: url('assets/fonts/MartinaPlantijn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Capsule Sans Text', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  animation: pageEnter 360ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
body.is-page-exiting {
  pointer-events: none;
  animation: pageExit 260ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pageExit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  body,
  body.is-page-exiting {
    opacity: 1;
    animation: none;
    transition: none;
  }
}
a { color: inherit; text-decoration: none; }
img,
video { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 40px;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand { display: inline-flex; align-items: center; width: 136px; }
.brand img { width: 136px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; justify-content: flex-start; font-size: 15px; font-weight: 700; }
.nav-links button { border: 0; background: transparent; color: inherit; font: inherit; padding: 0; cursor: pointer; }
.offer-menu { position: relative; display: inline-flex; align-items: center; height: 64px; }
.offer-menu button::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); }
.offer-menu-panel {
  position: absolute;
  top: 64px;
  left: -22px;
  min-width: 236px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.offer-menu-panel a { display: block; padding: 10px 12px; border-radius: 6px; }
.offer-menu-panel a:hover,
.offer-menu-panel a:focus-visible { background: rgba(255,255,255,0.08); color: var(--white); }
.offer-menu:hover .offer-menu-panel,
.offer-menu:focus-within .offer-menu-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.header-actions { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; }
.language { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 10px; }
.login,
.signup { display: inline-flex; align-items: center; justify-content: center; min-width: 116px; height: 50px; border-radius: 999px; }
.login { border: 1px solid var(--lime); color: var(--lime); }
.signup { background: var(--lime); color: var(--ink); }
.menu-button { width: 48px; height: 48px; border: 0; background: transparent; display: grid; gap: 5px; align-content: center; padding: 0 4px; }
.menu-button span { display: block; height: 3px; background: var(--white); }

.promo-bar {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 10px 22px;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-size: 16px;
}
.promo-bar p { margin: 0; line-height: 1.35; }
.promo-bar a { text-decoration: underline; text-underline-offset: 3px; }

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #f7f6f0;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(596px + 5vw), 95vw);
  padding: 327px 0 80px 5vw;
}
.presented-logo {
  width: 239px;
  height: 27px;
  margin: 0 0 32px;
}
h1,
h2 { margin: 0; letter-spacing: 0; }
h1 {
  font-family: 'Martina Plantijn', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(64px, 5.84vw, 84px);
  line-height: 1.048;
  white-space: nowrap;
}
.hero-copy > p {
  max-width: 525px;
  margin: 32px 0 0;
  color: var(--black);
  font-size: 22px;
  line-height: 32px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 176px;
  margin-top: 24px;
  padding: 0 32px;
  border-radius: 36px;
  background: var(--lime);
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.body-copy {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(390px, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: stretch;
  min-height: 800px;
  padding: 0 5vw;
  background: var(--paper);
  overflow: hidden;
}
.product-copy { max-width: 470px; align-self: center; }
.kicker { margin: 0 0 16px; font-size: clamp(28px, 3.1vw, 40px); line-height: 1.2; font-weight: 400; }
h2 { font-size: clamp(28px, 3.1vw, 40px); line-height: 1.2; font-weight: 400; }
h2 span { display: block; }
.pill-link,
.cta-button { display: inline-flex; align-items: center; justify-content: center; height: 44px; margin-top: 24px; padding: 0 32px; border-radius: 999px; background: var(--black); color: var(--white); font-weight: 800; }
.pill-link.light { background: var(--lime); color: var(--ink); }
.fine-print { margin: 12px 0 0; max-width: 560px; color: var(--ink); font-size: 16px; line-height: 1.5; }
.image-card,
.photo-card { border-radius: 8px; overflow: hidden; }
.image-card { background: transparent; border-radius: 0; padding-top: 50px; display: flex; align-items: flex-end; justify-content: center; min-height: 100%; }
.image-card img { width: min(100%, 464px); height: auto; margin: 0 auto; object-fit: contain; object-position: center bottom; filter: none; }
.invest-section { min-height: 900px; background: var(--lime); }
.invest-section .product-copy { align-self: end; margin: 0 0 52px; }
.clear-card { background: transparent; }
.perps-section { min-height: 800px; background: #000000; color: var(--white); }
.perps-section .body-copy,
.perps-section .fine-print { color: var(--white); }
.perps-section .pill-link { background: var(--lime); color: var(--ink); }
.crypto-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 800px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}
.dark-section { background: var(--black); color: var(--white); }
.dark-section .kicker { color: var(--lime); }
.dark-section .body-copy { color: var(--white); }
.crypto-section .photo-card { position: absolute; inset: 0; border-radius: 0; box-shadow: none; }
.crypto-section .photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.crypto-section .product-copy { position: relative; z-index: 1; width: min(420px, 90%); max-width: 420px; margin-left: 20%; margin-right: 45%; color: var(--black); }
.crypto-section .product-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -42px -54px;
  background: transparent;
}
.crypto-section .kicker { color: var(--black); opacity: 0.4; }
.crypto-section h2 { font-size: clamp(44px, 5.6vw, 72px); line-height: 1.083; letter-spacing: 0; color: var(--black); }
.crypto-section .body-copy { color: var(--black); margin-top: 24px; }
.crypto-section .pill-link.light { background: var(--black); color: var(--white); }

.security-section {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  padding: 90px 5vw;
  overflow: hidden;
  background: #e7e8df;
}
.security-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.security-copy {
  position: relative;
  z-index: 1;
  max-width: 90%;
  text-align: center;
  display: grid;
  justify-items: center;
}
.security-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -25% -20% -20%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}
.security-copy h2 { max-width: 11em; font-family: 'Martina Plantijn', Georgia, 'Times New Roman', serif; font-size: clamp(44px, 5vw, 72px); line-height: 1.083; font-weight: 400; color: var(--white); }
.security-copy .cta-button { background: var(--lime); color: var(--ink); }

.footer {
  padding: 54px 5vw 70px;
  background: var(--lime);
  color: var(--black);
}
.footer-top { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: start; border-bottom: 1px solid rgba(17,14,8,0.18); padding-bottom: 42px; }
.footer-brand img { filter: brightness(0); }
.footer nav,
.footer-columns div { display: grid; gap: 15px; align-content: start; }
.footer-top nav { grid-template-columns: repeat(6, auto); justify-content: end; font-weight: 800; }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 46px; padding-top: 42px; }
.footer h3 { margin: 0 0 10px; font-size: 15px; color: var(--black); }
.footer a { color: var(--black); }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1080px;
  margin: 46px 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(17,14,8,0.18);
}
.footer-social p { margin: 0; font-weight: 800; }
.footer-social div { display: flex; align-items: center; gap: 14px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17,14,8,0.55);
  border-radius: 999px;
  background:
    linear-gradient(var(--black), var(--black)) center / 12px 2px no-repeat,
    linear-gradient(var(--black), var(--black)) center / 2px 12px no-repeat;
  opacity: 0.9;
}
.legal-copy { max-width: 1080px; margin: 42px 0 0; color: #313a2b; font-size: 13px; line-height: 1.55; }
.legal-copy p { margin: 0 0 18px; }

.reward-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 14, 8, 0.62);
}
.reward-modal.is-hidden {
  display: none;
}
.reward-modal-panel {
  position: relative;
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}
.reward-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(var(--black), var(--black)) center / 16px 2px no-repeat;
  transform: rotate(45deg);
}
.reward-modal-close::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--black), var(--black)) center / 2px 16px no-repeat;
}
.reward-eyebrow {
  margin: 0 0 14px;
  color: #547000;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.reward-modal h2 {
  margin: 0;
  max-width: 8.8em;
  font-family: 'Martina Plantijn', Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
  font-weight: 400;
  color: var(--black);
}
.reward-range {
  margin: 20px 0 0;
  color: var(--black);
  font-size: 28px;
  line-height: 34px;
}
.reward-copy {
  margin: 18px 0 0;
  color: #363a32;
  font-size: 16px;
  line-height: 24px;
}
.reward-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 0;
  padding: 14px 16px;
  border: 1px solid #d9ded2;
  border-radius: 8px;
  background: #f7f8f2;
  font-size: 13px;
  line-height: 20px;
}
.reward-countdown strong {
  font-size: 18px;
  line-height: 24px;
}
.reward-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
}

.login-page {
  height: 100vh;
  overflow: hidden;
  background: var(--white);
  color: #000000;
}
.login-shell {
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 50vw) 1fr;
  background: var(--white);
}
.login-art {
  height: 100vh;
  overflow: hidden;
  background: #eef0e8;
}
.login-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.login-panel {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 66px 40px 48px;
  background: var(--white);
}
.login-card {
  width: min(667px, 100%);
}
.login-card h1 {
  margin: 0 0 40px;
  color: #000000;
  font-family: 'Capsule Sans Text', Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  white-space: normal;
}
.login-form {
  display: grid;
}
.login-field {
  display: block;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
}
.login-field + .login-field {
  margin-top: 29px;
}
.login-field span:first-child {
  display: block;
  margin-bottom: 10px;
}
.login-field input {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid #d7dfdc;
  border-radius: 4px;
  outline: 0;
  padding: 0 12px;
  background: var(--white);
  color: #000000;
  font: inherit;
  line-height: 20px;
}
.login-field input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 1px #000000;
}
.password-wrap {
  position: relative;
  display: block;
}
.password-wrap input {
  padding-right: 48px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: var(--white);
  padding: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.password-toggle span {
  width: 16px;
  height: 10px;
  border: 1.6px solid #000000;
  border-radius: 50%;
  position: relative;
}
.password-toggle span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.keep-login {
  display: flex;
  align-items: center;
  height: 20px;
  margin: 24px 0 54px;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  font-style: normal;
}
.keep-login input {
  position: absolute;
  opacity: 0;
}
.keep-login span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 13px;
  border: 1px solid #7d877e;
  border-radius: 2px;
  background: var(--white);
}
.keep-login em {
  font-style: normal;
}
.login-actions-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.login-submit,
.login-help,
.login-create button {
  font-family: 'Capsule Sans Text', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.login-submit,
.login-help {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 48px;
  cursor: pointer;
}
.login-submit {
  border: 0;
  background: #000000;
  color: var(--white);
}
.login-help {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
}
.login-create {
  margin: 42px 0 0;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
}
.login-create button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.reward-page {
  min-height: 100vh;
  background: #080906;
  color: var(--white);
}
.reward-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.reward-exit {
  color: var(--lime);
  font-size: 15px;
  font-weight: 700;
}
.reward-shell {
  min-height: calc(100vh - 64px);
  padding: 56px 5vw 72px;
}
.reward-hero-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  max-width: 1180px;
  margin: 0 auto;
}
.reward-orbit {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 900px;
}
.orbit-ring {
  position: absolute;
  width: min(82%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(204, 255, 0, 0.28), rgba(204, 255, 0, 0.07) 42%, rgba(204, 255, 0, 0) 72%);
  animation: orbitPulse 4.8s ease-in-out infinite;
}
.orbit-ring-two {
  width: min(68%, 350px);
  border-color: rgba(247, 147, 26, 0.42);
  transform: rotateX(66deg) rotateZ(-18deg);
  animation: orbitTilt 6.2s linear infinite;
}
.orbit-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f7931a;
  box-shadow: 0 0 22px rgba(247, 147, 26, 0.82);
}
.orbit-spark-one {
  top: 24%;
  right: 24%;
  animation: sparkFloat 3.8s ease-in-out infinite;
}
.orbit-spark-two {
  left: 22%;
  bottom: 28%;
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(204, 255, 0, 0.75);
  animation: sparkFloat 4.4s ease-in-out 500ms infinite reverse;
}
.btc-coin {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 32% 24%, #ffc65a, #f7931a 45%, #d87900 100%);
  color: var(--white);
  box-shadow:
    inset -12px -16px 26px rgba(105, 56, 0, 0.28),
    inset 10px 10px 20px rgba(255, 255, 255, 0.28),
    0 28px 78px rgba(247, 147, 26, 0.36);
  animation: btcFloat 4.2s ease-in-out infinite;
}
.btc-coin::before,
.btc-coin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.btc-coin::before {
  inset: 16px;
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.btc-coin::after {
  inset: -45% auto auto -80%;
  width: 70%;
  height: 210%;
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(22deg);
  animation: btcShine 5.8s ease-in-out infinite;
}
.btc-symbol {
  position: relative;
  z-index: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 112px;
  line-height: 1;
  font-weight: 700;
  transform: rotate(12deg);
  text-shadow: 0 3px 0 rgba(118, 64, 0, 0.24);
}
@keyframes btcFloat {
  0%,
  100% { transform: translateY(0) rotateY(-10deg); }
  50% { transform: translateY(-16px) rotateY(10deg); }
}
@keyframes btcShine {
  0%,
  38% { transform: translateX(0) rotate(22deg); opacity: 0; }
  48% { opacity: 1; }
  62% { transform: translateX(380px) rotate(22deg); opacity: 0; }
  100% { transform: translateX(380px) rotate(22deg); opacity: 0; }
}
@keyframes orbitPulse {
  0%,
  100% { transform: scale(0.96); opacity: 0.6; }
  50% { transform: scale(1.03); opacity: 1; }
}
@keyframes orbitTilt {
  0% { transform: rotateX(66deg) rotateZ(0deg); }
  100% { transform: rotateX(66deg) rotateZ(360deg); }
}
@keyframes sparkFloat {
  0%,
  100% { transform: translate3d(0, 0, 0); opacity: 0.75; }
  50% { transform: translate3d(10px, -14px, 0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .orbit-ring-two,
  .orbit-spark,
  .btc-coin,
  .btc-coin::after {
    animation: none;
  }
}
.reward-content h1 {
  max-width: 7.9em;
  font-family: 'Martina Plantijn', Georgia, 'Times New Roman', serif;
  font-size: clamp(60px, 6.4vw, 92px);
  line-height: 1.04;
  font-weight: 400;
  white-space: normal;
}
.reward-lede {
  max-width: 480px;
  margin: 22px 0 0;
  color: #d7dccf;
  font-size: 22px;
  line-height: 32px;
}
.reward-value {
  display: grid;
  gap: 8px;
  width: min(540px, 100%);
  margin-top: 24px;
  padding: 24px 26px 26px;
  border: 1px solid rgba(204, 255, 0, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(204, 255, 0, 0.16), rgba(204, 255, 0, 0.04)),
    rgba(255, 255, 255, 0.06);
}
.reward-value span,
.wallet-status {
  color: #b9c0b0;
  font-size: 13px;
  line-height: 20px;
}
.reward-value strong {
  color: var(--lime);
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1;
  font-weight: 400;
}
.reward-value em {
  color: var(--white);
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
}
.reward-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(500px, 100%);
  margin-top: 14px;
}
.reward-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 999px;
  background: rgba(204, 255, 0, 0.065);
  color: #cbd1c4;
  font-size: 13px;
  line-height: 18px;
}
.reward-disclaimer {
  max-width: 500px;
  margin: 10px 0 0;
  color: #7f8779;
  font-size: 12px;
  line-height: 18px;
}
.wallet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(500px, 100%);
  height: 60px;
  margin-top: 30px;
  padding: 0 42px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
}
.wallet-button.is-attention {
  animation: walletAttention 900ms ease-in-out 2;
}
@keyframes walletAttention {
  0%,
  100% { transform: scale(1); box-shadow: none; }
  45% { transform: scale(1.035); box-shadow: 0 0 0 8px rgba(204, 255, 0, 0.14), 0 20px 54px rgba(204, 255, 0, 0.24); }
}
.wallet-icon {
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}
.wallet-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.wallet-status {
  margin: 12px 0 0;
}
.wallet-button.is-demo-clicked + .wallet-status {
  color: var(--lime);
}
.reward-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 54px auto 0;
}
.reward-steps div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.reward-steps span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
}
.reward-steps h2 {
  margin-top: 20px;
  color: var(--white);
  font-size: 24px;
  line-height: 30px;
}
.reward-steps p {
  margin: 10px 0 0;
  color: #cbd1c4;
  font-size: 15px;
  line-height: 24px;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; padding: 0 22px; }
  .nav-links { display: none; }
  .login,
  .signup { min-width: 96px; height: 44px; }
  .hero { min-height: 840px; }
  .hero-media { object-position: 62% center; opacity: 0.92; }
  .hero-copy { width: min(596px, calc(100% - 44px)); padding: 300px 22px 70px; }
  h1 { white-space: normal; }
  .product-section { grid-template-columns: 1fr; min-height: auto; padding: 70px 22px; }
  .product-section .product-copy { order: 1; align-self: start; margin: 0; }
  .product-section .product-media { order: 2; min-height: 560px; }
  .image-card { padding-top: 34px; }
  .image-card img { height: auto; }
  .crypto-section { min-height: 760px; padding: 0; }
  .crypto-section .product-copy { width: min(420px, calc(100% - 44px)); max-width: 420px; margin: 0 22px; }
  .footer-top,
  .footer-columns { grid-template-columns: 1fr; }
  .footer-top nav { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: start; }
  .footer-social { align-items: flex-start; flex-direction: column; }
  .login-page { height: auto; min-height: 100vh; overflow: auto; }
  .login-shell { height: auto; min-height: 100vh; grid-template-columns: 1fr; }
  .login-art { display: none; }
  .login-panel { height: auto; min-height: 100vh; padding: 64px 40px 48px; }
  .login-card { width: min(667px, 100%); margin: 0; }
  .reward-hero-card { grid-template-columns: 1fr; gap: 22px; }
  .reward-orbit { min-height: 320px; }
  .reward-content { text-align: center; }
  .reward-content h1,
  .reward-lede,
  .reward-value,
  .reward-badges,
  .reward-disclaimer { margin-left: auto; margin-right: auto; }
  .reward-badges { justify-content: center; }
  .reward-steps { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 64px; }
  .brand { font-size: 22px; }
  .language,
  .login,
  .signup { display: none; }
  .promo-bar { font-size: 14px; }
  .hero { min-height: 760px; }
  .hero-media { object-position: 66% center; opacity: 0.74; }
  .hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,246,240,0.96) 0 48%, rgba(247,246,240,0.34) 100%); }
  .hero-copy { z-index: 2; width: 100%; padding: 260px 22px 60px; }
  .presented-logo { width: 210px; height: auto; margin-bottom: 28px; }
  h1 { font-size: clamp(52px, 15vw, 64px); line-height: 1.05; }
  .hero-copy > p { max-width: 330px; font-size: 18px; line-height: 26px; margin-top: 28px; }
  .text-link { margin-top: 22px; }
  .product-section { padding: 64px 22px; gap: 34px; }
  h2,
  .kicker { font-size: 28px; line-height: 1.22; }
  .body-copy,
  .fine-print { font-size: 14px; line-height: 1.4; }
  .product-section { grid-template-columns: 1fr; }
  .product-media { min-width: 0; }
  .product-section .product-media { min-height: 500px; }
  .image-card img { width: min(100%, 360px); height: auto; }
  .crypto-section { min-height: 650px; }
  .crypto-section .photo-card img { object-position: 64% center; }
  .crypto-section h2 { font-size: 44px; line-height: 1.09; }
  .crypto-section .product-copy::before { inset: -34px -22px; background: transparent; }
  .security-section { min-height: 560px; padding: 70px 22px; }
  .security-copy h2 { font-size: clamp(38px, 12vw, 58px); line-height: 1.09; }
  .security-bg { object-position: 58% center; opacity: 0.62; }
  .footer { padding-left: 22px; padding-right: 22px; }
  .login-panel { padding: 24px 22px 36px; }
  .login-card { width: min(309px, calc(100vw - 44px)); margin: 0 auto; }
  .login-card h1 { margin-bottom: 43px; font-size: 24px; line-height: 30px; }
  .login-field span:first-child { margin-bottom: 9px; }
  .login-field + .login-field { margin-top: 30px; }
  .keep-login { margin: 28px 0 54px; }
  .login-actions-row { grid-template-columns: 1fr; gap: 14px; }
  .login-submit,
  .login-help { width: 100%; padding: 0 24px; }
  .login-create { margin-top: 76px; text-align: left; }
  .reward-modal { padding: 16px; }
  .reward-modal-panel { padding: 28px 22px; }
  .reward-modal h2 { font-size: 44px; line-height: 1.04; }
  .reward-range { font-size: 23px; line-height: 30px; }
  .reward-countdown { align-items: flex-start; flex-direction: column; gap: 6px; }
  .reward-header { padding: 0 22px; }
  .reward-header .brand { width: 118px; }
  .reward-header .brand img { width: 118px; }
  .reward-shell { padding: 26px 22px 132px; }
  .reward-hero-card { gap: 10px; }
  .reward-orbit { min-height: 210px; }
  .orbit-ring { width: min(88%, 260px); }
  .btc-coin { width: 128px; height: 128px; }
  .btc-symbol { font-size: 76px; }
  .reward-eyebrow { margin-bottom: 10px; }
  .reward-content h1 { font-size: 46px; line-height: 1.04; }
  .reward-lede { max-width: 330px; margin-top: 16px; font-size: 16px; line-height: 24px; }
  .reward-value { margin-top: 18px; padding: 18px 17px 20px; }
  .reward-value strong { font-size: 38px; line-height: 1; }
  .reward-value em { font-size: 13px; line-height: 19px; }
  .reward-badges { gap: 7px; justify-content: center; margin-top: 12px; }
  .reward-badges span { min-height: 30px; padding: 0 11px; font-size: 12px; }
  .reward-disclaimer { font-size: 11px; line-height: 16px; }
  .reward-steps { margin-top: 32px; }
  .reward-steps div { padding: 16px; }
  .reward-steps h2 { margin-top: 12px; font-size: 20px; line-height: 25px; }
  .reward-steps p { font-size: 13px; line-height: 20px; }
  .wallet-button {
    position: fixed;
    left: 22px;
    right: 22px;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 70;
    width: calc(100% - 44px);
    min-width: 0;
    height: 58px;
    margin-top: 0;
    box-shadow: 0 16px 42px rgba(204, 255, 0, 0.28);
  }
}
