:root {
  --gold: #ffb22d;
  --accent: #ff6a33;
  --accent-2: #ff7e3d;
  --mid: #ff4e2a;
  --crimson: #e11d48;
  --lime-a: #c9f03b;
  --lime-b: #f4e11c;
  --bg: #000000;
  --card: #15151c;
  --card-2: #0e0e16;
  --card-3: #101018;
  --hairline: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: #8b8b94;
  --muted-2: #9a9aa3;
  --muted-3: #6f6f78;
  --footer-text: #0b0b0b;
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 400;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.compliance-bar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  color: #c9c9d2;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.compliance-bar a {
  color: #ff8a4d;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(125% 125% at 12% 8%, var(--gold) 0%, var(--accent) 46%, var(--crimson) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 36%, rgba(255, 255, 255, 0.17), transparent 18%),
    radial-gradient(circle at 23% 18%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 72% 82%, rgba(0, 0, 0, 0.14), transparent 28%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-nav {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px clamp(24px, 5vw, 70px);
}

.brand-logo,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transform: skewX(-7deg);
  text-decoration: none;
}

.brand-logo svg {
  width: 26px;
  height: 32px;
  color: #fff;
}

.brand-logo span,
.mini-brand span {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-logo span {
  font-size: 30px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
}

.primary-nav a,
.nav-cta {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: #fff;
  color: #16110a;
  padding: 14px 30px;
}

.menu-toggle {
  display: none;
}

.hero-type {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: calc(100svh - 112px);
  min-height: 620px;
  padding: 12px clamp(24px, 5vw, 70px) 28px;
  will-change: transform, opacity;
}

.hero-type-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.82;
}

.hero-type-col span {
  font-size: clamp(72px, 13vw, 242px);
}

.hero-type-left {
  text-align: left;
}

.hero-type-right {
  text-align: right;
}

.hero-product {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 6vh;
  width: min(36vw, 440px);
  min-width: 280px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-product::before,
.hero-product::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(1px);
}

.hero-product::before {
  width: 110px;
  height: 110px;
  left: -54px;
  top: 26%;
}

.hero-product::after {
  width: 88px;
  height: 88px;
  right: -42px;
  top: 18%;
}

.hero-phone {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
  border: 10px solid #1b1b22;
  border-radius: 46px;
  background: #0d0d12;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.hero-phone-screen {
  min-height: 500px;
  padding: 18px 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 106, 51, 0.1), rgba(15, 15, 22, 0.96) 28%),
    #101018;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 8;
  width: 94px;
  height: 26px;
  border-radius: 16px;
  background: #000;
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.mini-brand {
  margin-top: 22px;
}

.mini-brand svg {
  width: 17px;
  height: 21px;
  color: var(--accent);
}

.hero-pick-card,
.pick-card,
.operator-card,
.coin-card,
.partner-banner {
  border: 1px solid var(--hairline);
  background: var(--card);
}

.hero-pick-card {
  margin-top: 24px;
  border-radius: 18px;
  padding: 18px;
}

.tiny-label,
.screen-note,
.back-link {
  color: var(--muted);
  font-size: 12px;
}

.hero-pick-card strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
}

.hero-pick-card p {
  margin: 4px 0 16px;
  color: var(--muted-2);
}

.pick-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pick-buttons span,
.hero-tabs span {
  border-radius: 12px;
  background: #24242e;
  padding: 10px 8px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.pick-buttons span:last-child {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-leader-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #353542, #4a4a58);
  padding: 14px;
}

.hero-leader-row strong {
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  padding: 4px 9px;
}

.hero-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-cta {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: clamp(122px, 16vh, 170px);
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  gap: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime-a), var(--lime-b));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  color: #15140a;
  padding: 20px 44px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 900;
  letter-spacing: 0.5px;
  transform: translateX(-50%);
}

.hero-cta svg,
.footer-cta svg {
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
  padding: 6px;
}

.feature-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 40px;
  overflow: hidden;
  background: #000;
  padding: clamp(76px, 9vw, 132px) clamp(24px, 5vw, 70px);
}

.feature-copy {
  max-width: 590px;
}

.sport-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.sport-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  background: #141419;
  color: #54545d;
}

.sport-icon.is-active {
  border-color: rgba(255, 106, 51, 0.4);
  background: rgba(255, 106, 51, 0.16);
  color: var(--accent);
}

.sport-icon svg {
  width: 22px;
  height: 22px;
}

.feature-copy h2,
.copy-panel h2,
.section-heading h2,
.testimonials h2,
.rg-band h2 {
  margin: 0 0 28px;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0;
}

.feature-copy h2 {
  font-size: clamp(46px, 6vw, 98px);
}

.feature-copy h2 span,
.testimonials h2 span,
.section-label {
  color: var(--accent);
}

.feature-copy p,
.copy-panel p,
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.62;
}

.mockup-wrap {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 51, 0.22), transparent 64%);
}

.phone-shell {
  position: relative;
  width: 312px;
  border: 10px solid #1b1b22;
  border-radius: 46px;
  background: #0d0d12;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.phone-screen {
  min-height: 600px;
  padding: 18px 16px 16px;
  background: #0d0d12;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 20px;
}

.balance {
  color: var(--muted);
  text-align: right;
  font-size: 11px;
  line-height: 1.3;
}

.balance strong {
  color: var(--accent);
}

.phone-screen h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.05;
}

.segmented {
  display: flex;
  gap: 4px;
  border-radius: 14px;
  background: #16161d;
  padding: 4px;
}

.segmented button {
  flex: 1;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.segmented button.is-selected {
  background: #26262f;
  color: #fff;
}

.pick-card {
  margin-top: 18px;
  border-radius: 16px;
  padding: 14px;
}

.pick-person,
.pick-meta,
.pick-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.avatar {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b8e9e, #2c4a52);
}

.verified {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1d9bf0;
}

.pick-meta {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 11px;
}

.pick-line {
  margin-top: 10px;
  align-items: flex-end;
}

.pick-line span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.pick-line strong {
  display: block;
  font-size: 15px;
}

.pick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.pick-actions button,
.operator-card button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.pick-actions button:last-child,
.operator-card button {
  border-color: var(--accent);
  background: rgba(255, 106, 51, 0.08);
  color: var(--accent);
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
  border-top: 1px solid var(--hairline);
  padding-top: 13px;
  color: var(--muted-3);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.phone-tabs .is-hot {
  color: var(--accent);
}

.market-frame,
.partner-stage {
  position: relative;
  width: min(100%, 430px);
  border-radius: 42px;
  background: linear-gradient(160deg, var(--gold), var(--accent) 60%, var(--crimson));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.market-frame {
  padding: 34px 30px;
}

.frame-flame {
  position: absolute;
  right: -12px;
  bottom: -14px;
  width: 170px;
  height: 210px;
  color: rgba(0, 0, 0, 0.22);
}

.icon-rail {
  position: absolute;
  left: 30px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-50%);
}

.icon-rail span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.market-phone {
  width: 255px;
  margin-left: auto;
  border-width: 8px;
  border-radius: 38px;
}

.market-phone .phone-screen {
  min-height: 506px;
  padding: 14px;
}

.market-phone h3,
.leader-phone h3 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 28px;
}

.market-phone h3 span,
.leader-phone h3 span {
  display: block;
  color: #fff;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  color: transparent;
}

.coin-card {
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  margin: 12px 0;
  padding: 11px 13px;
  font-size: 12px;
  font-weight: 800;
}

.coin-card strong {
  color: var(--accent);
}

.filter-pills,
.league-chips {
  display: flex;
  gap: 6px;
  margin: 12px 0;
}

.filter-pills span,
.league-chips span {
  border-radius: 20px;
  background: #15151c;
  color: var(--muted);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.filter-pills .is-active {
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: var(--card);
  padding: 8px;
}

.product-art {
  display: grid;
  height: 78px;
  place-items: center;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 40%, #2a2a33, #101015);
}

.gift-card-art {
  color: #fff;
  font-weight: 900;
}

.phone-art::before {
  content: "";
  display: block;
  width: 30px;
  height: 56px;
  border: 2px solid #4a5a62;
  border-radius: 7px;
  background: linear-gradient(135deg, #3a4a52, #1a2228);
}

.product-grid strong {
  display: block;
  min-height: 36px;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.2;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 5px;
  background: #26262f;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.friends-photo {
  position: relative;
  width: min(100%, 560px);
  height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  background: var(--card);
}

.friends-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.04);
}

.friends-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
}

.leaderboard-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: 560px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background: linear-gradient(145deg, #252537, #101018);
  overflow: hidden;
}

.shadow-flame {
  position: absolute;
  left: 28px;
  top: 70px;
  width: 220px;
  height: 280px;
  color: rgba(0, 0, 0, 0.5);
}

.leader-phone {
  z-index: 2;
  transform: rotate(-7deg);
}

.leader-phone .phone-screen {
  min-height: 555px;
}

.league-chips span {
  border-radius: 8px;
}

.leader-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.leader-list li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: #15151c;
  padding: 10px;
}

.leader-list em {
  border-radius: 6px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  padding: 3px 7px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.leader-list .you-row {
  margin: 6px -18px 4px;
  background: linear-gradient(90deg, #51515d, #3b3b46);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.partner-stage {
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
}

.partner-stage .frame-flame {
  right: -20px;
  bottom: 24px;
  width: 190px;
  height: 240px;
  color: rgba(0, 0, 0, 0.35);
}

.partner-phone {
  z-index: 2;
  border-color: #111118;
}

.partner-banner {
  border-radius: 13px;
  margin: 16px 0;
  padding: 14px;
}

.partner-banner strong {
  display: block;
  color: var(--accent);
  font-size: 21px;
  text-transform: uppercase;
}

.partner-banner span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.operator-card {
  border-radius: 13px;
  margin-bottom: 12px;
  padding: 12px;
}

.operator-card div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.operator-logo {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  background: #20202a;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.operator-card p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 12px;
}

.copy-section,
.simple-graph-section,
.testimonials,
.faq-section {
  background: #000;
  padding: clamp(54px, 7vw, 100px) clamp(24px, 5vw, 70px);
}

.copy-section {
  display: flex;
  justify-content: center;
}

.copy-panel {
  width: min(100%, 1180px);
  border-radius: 26px;
  background: var(--card-3);
  padding: clamp(40px, 5vw, 72px);
}

.copy-panel h2 {
  color: var(--accent-2);
  text-align: center;
  font-size: clamp(28px, 3.5vw, 46px);
}

.copy-lede {
  margin-bottom: 36px !important;
  color: #c9c9d2 !important;
  text-align: center;
  font-weight: 800;
}

.hairline {
  height: 1px;
  margin: 32px 0;
  background: var(--hairline);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 76px);
}

.simple-graph {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.simple-graph article,
.faq-grid article {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--card-2);
  padding: 22px;
}

.simple-graph span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #15140a;
  font-weight: 900;
}

.simple-graph strong {
  display: block;
  margin-top: 16px;
  font-size: 22px;
}

.simple-graph p,
.faq-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.blog-preview,
.blog-hero,
.blog-index,
.blog-sources,
.blog-post {
  background: #000;
  padding: clamp(54px, 7vw, 100px) clamp(24px, 5vw, 70px);
}

.blog-preview-grid,
.blog-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.blog-preview-grid article,
.blog-card,
.article-graph,
.responsible-note,
.blog-sources {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--card-2);
}

.blog-preview-grid article,
.blog-card {
  padding: 24px;
}

.blog-preview-grid span,
.blog-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-preview-grid h3,
.blog-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

.blog-preview-grid h3 a,
.blog-card h2 a {
  color: #fff;
  text-decoration: none;
}

.blog-preview-grid p,
.blog-card p,
.blog-post p,
.blog-post li,
.blog-sources li {
  color: var(--muted-2);
  font-size: 17px;
}

.blog-preview-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--crimson));
  color: #fff;
  margin: 30px auto 0;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
}

.blog-preview .blog-preview-link {
  display: flex;
  width: fit-content;
}

.blog-hero,
.blog-post {
  max-width: 1120px;
  margin: 0 auto;
}

.blog-hero h1,
.blog-post h1 {
  margin: 0 0 18px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.92;
  text-transform: uppercase;
}

.blog-hero p,
.blog-lede {
  max-width: 820px;
  color: var(--muted-2);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}

.blog-index {
  padding-top: 0;
}

.blog-post {
  display: block;
}

.blog-post .back-link {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 900;
  text-decoration: none;
}

.article-rule {
  height: 1px;
  background: var(--hairline);
  margin: 36px 0;
}

.blog-post section {
  margin: 0 0 34px;
}

.blog-post h2,
.blog-sources h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
}

.article-graph,
.responsible-note,
.blog-post .blog-sources {
  padding: 26px;
}

.article-graph ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.article-graph li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

.article-graph li span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #15140a;
  font-weight: 900;
}

.responsible-note a,
.blog-sources a {
  color: #ff8a4d;
  font-weight: 800;
}

.blog-sources {
  max-width: 1120px;
  margin: 0 auto;
}

.blog-sources ul {
  margin-bottom: 0;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}

.post-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.section-label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-flame {
  position: absolute;
  left: -60px;
  top: 30px;
  width: 360px;
  height: 440px;
  color: #101018;
  opacity: 0.4;
}

.testimonials h2 {
  position: relative;
  margin-bottom: 56px;
  text-align: center;
  font-size: clamp(40px, 6vw, 96px);
}

.testimonial-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  columns: 3 280px;
  column-gap: 26px;
}

.testimonial-grid article {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  background: var(--card-2);
  margin: 0 0 26px;
  padding: 28px;
}

.testimonial-grid p {
  margin: 0 0 34px;
  color: #a7a7b0;
  font-size: 19px;
  line-height: 1.5;
}

.testimonial-grid div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 12px;
}

.testimonial-grid strong {
  font-size: 18px;
}

.testimonial-grid span {
  color: var(--muted-3);
  font-size: 13px;
}

.testimonial-grid em {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-style: normal;
  font-size: 20px;
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-grid h3 {
  margin: 0;
  font-size: 22px;
}

.rg-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  padding: clamp(48px, 6vw, 84px) clamp(24px, 5vw, 70px);
}

.rg-band > div:last-child {
  max-width: 960px;
}

.age-badge {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 3px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: Anton, Impact, sans-serif;
  font-size: 30px;
}

.rg-band h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.rg-band p {
  margin: 0 0 14px;
  color: var(--muted-2);
  line-height: 1.7;
}

.rg-band p:last-of-type {
  color: var(--muted-3);
  font-size: 13.5px;
}

.rg-band a {
  color: #ff8a4d;
  font-weight: 800;
  text-decoration: none;
}

.rg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.rg-chips span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #c9c9d2;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--footer-text);
  padding: clamp(60px, 7vw, 100px) clamp(24px, 5vw, 70px) 56px;
}

.footer-flame {
  position: absolute;
  left: 5%;
  bottom: 80px;
  width: 160px;
  height: 200px;
  color: rgba(0, 0, 0, 0.05);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr)) 1.2fr;
  gap: 40px;
  max-width: var(--max);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.footer-links a,
.footer-links strong {
  color: var(--footer-text);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links p {
  margin: 12px 0 0;
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.9;
  text-transform: uppercase;
}

.follow-block h2 {
  max-width: 380px;
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.follow-block p {
  max-width: 360px;
  color: #5a5a5a;
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.socials a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #ededed;
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 900;
}

.footer-cta-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(60px, 8vw, 110px) 0;
}

.footer-cta-wrap > span {
  position: absolute;
  color: rgba(0, 0, 0, 0.05);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(70px, 16vw, 260px);
  white-space: nowrap;
  transform: skewX(-7deg);
  pointer-events: none;
}

.footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--crimson));
  box-shadow: 0 16px 40px rgba(255, 90, 0, 0.3);
  color: #fff;
  padding: 20px 44px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.legal-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 1120px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 10px 0 0;
  padding-top: 28px;
  color: #5a5a5a;
  font-size: 13.5px;
  line-height: 1.65;
}

.legal-line span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--footer-text);
  border-radius: 50%;
  color: var(--footer-text);
  font-weight: 900;
}

.copyright {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  color: #3a3a3a;
  font-size: 18px;
}

.compact-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-block: 42px;
}

.compact-footer > div:first-child {
  max-width: 420px;
}

.compact-footer > div:first-child strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.compact-footer > div:first-child p {
  color: #5a5a5a;
  margin: 0;
}

.compact-footer .footer-links {
  flex-flow: row wrap;
  justify-content: flex-end;
  max-width: 760px;
}

.compact-footer .footer-links a {
  font-size: 15px;
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0c12;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.55);
  padding: 16px clamp(20px, 4vw, 48px);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  max-width: 720px;
  margin: 0;
  color: #c9c9d2;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a {
  color: #ff8a4d;
}

.cookie-banner > div {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-manage,
.cookie-banner button {
  min-height: 44px;
  border-radius: 30px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cookie-manage {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #c9c9d2;
}

.cookie-banner button {
  border: 0;
  background: linear-gradient(90deg, var(--accent), var(--crimson));
  color: #fff;
  cursor: pointer;
}

.reveal-item,
.reveal-grid .feature-copy,
.reveal-grid .mockup-wrap {
  opacity: 1;
}

.will-reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.will-reveal.from-left {
  transform: translateX(-58px);
}

.will-reveal.from-right {
  transform: translateX(90px) scale(0.95);
}

.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Legacy support pages */
.site-header {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  padding: 16px clamp(16px, 4vw, 44px);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #16110a;
  font-weight: 900;
}

.site-header .brand strong,
.site-header .brand small {
  display: block;
}

.site-header .brand small {
  color: var(--muted-2);
}

.site-header .primary-nav {
  justify-content: flex-end;
}

.age-note {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  padding: 8px 12px;
  font-weight: 900;
  white-space: nowrap;
}

.update {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 34px);
}

.content-card,
.simple-card,
.callout,
.request-box {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--card-2);
  padding: clamp(22px, 4vw, 38px);
}

.content-card h1,
.content-card h2,
.content-page h1,
.content-page h2 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
}

.content-card p,
.content-page p,
.content-page li {
  color: var(--muted-2);
}

.simple-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.content-page a {
  color: #ff8a4d;
}

.text-page,
.article-hero,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 34px);
}

.text-page h1,
.text-page h2,
.article-hero h1,
.section h2 {
  font-family: Anton, Impact, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.text-page h1,
.article-hero h1 {
  font-size: clamp(42px, 8vw, 96px);
}

.text-page h2,
.section h2 {
  font-size: clamp(30px, 5vw, 64px);
}

.text-page p,
.text-page li,
.article-hero p,
.section p,
.section li {
  color: var(--muted-2);
  font-size: 18px;
}

.hero-lede {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 25px) !important;
}

.help-grid,
.neutral-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.help-grid article,
.neutral-grid article,
.package-grid article,
.scorecard {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--card-2);
  padding: 22px;
}

.support-number {
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 900;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  background: linear-gradient(90deg, var(--accent), var(--crimson));
  color: #fff !important;
}

.scorecard {
  display: grid;
  gap: 16px;
}

.scorecard div {
  display: grid;
  grid-template-columns: minmax(120px, 210px) 1fr;
  align-items: center;
  gap: 16px;
}

.scorecard span {
  color: #fff;
  font-weight: 900;
}

.scorecard i {
  display: block;
  width: var(--score);
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.register-page {
  min-height: 72svh;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 106, 51, 0.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(225, 29, 72, 0.14), transparent 26%),
    #000;
}

.register-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 70px);
}

.register-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(74px, 12vw, 178px);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.register-copy p {
  max-width: 620px;
  color: var(--muted-2);
  font-size: clamp(19px, 2vw, 25px);
}

.access-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
  padding: 12px 16px;
  font-weight: 800;
}

.access-code-pill strong {
  color: #fff;
  letter-spacing: 0.08em;
}

.register-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 21, 28, 0.96), rgba(10, 10, 12, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  padding: clamp(22px, 4vw, 40px);
}

.access-form {
  display: grid;
  gap: 16px;
}

.access-form[hidden] {
  display: none;
}

.access-form label,
.signup-form label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.access-row input,
.signup-form input,
.signup-form select {
  min-height: 54px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signup-form input,
.signup-form select {
  width: 100%;
  margin-top: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.signup-form select {
  appearance: none;
}

.access-row input:focus,
.signup-form input:focus,
.signup-form select:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(255, 106, 51, 0.25);
  outline-offset: 2px;
}

.access-row button,
.signup-submit {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  color: #130d08;
  padding: 0 22px;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.access-feedback,
.signup-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 15px;
}

.registration-card {
  display: grid;
  gap: 18px;
}

.registration-card[hidden] {
  display: none;
}

.registration-card h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.registration-card p {
  margin: 0;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.65;
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.signup-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.signup-check span {
  color: var(--muted-2);
}


@media (max-width: 1120px) {
  .primary-nav {
    gap: 18px;
  }

  .hero-product {
    width: min(42vw, 360px);
  }

  .feature-section {
    grid-template-columns: 1fr;
  }

  .mockup-wrap {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-nav {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 10px 14px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-lines::before {
    top: -6px;
  }

  .menu-lines::after {
    top: 6px;
  }

  .hero-nav .primary-nav {
    position: absolute;
    z-index: 250;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    max-height: calc(100svh - 160px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.96);
    padding: 16px;
  }

  .site-header .primary-nav {
    position: absolute;
    z-index: 250;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    max-height: calc(100svh - 160px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.96);
    padding: 16px;
  }

  body.nav-open .hero-nav .primary-nav,
  body.nav-open .site-header .primary-nav {
    display: flex;
  }

  .nav-cta {
    padding: 10px 18px;
  }

  .hero-type {
    min-height: 560px;
  }

  .hero-type-col span {
    font-size: clamp(54px, 17vw, 130px);
  }

  .hero-product {
    bottom: 13vh;
    width: min(72vw, 320px);
  }

  .hero-phone-screen {
    min-height: 430px;
  }

  .simple-graph,
  .faq-grid,
  .blog-preview-grid,
  .blog-index {
    grid-template-columns: 1fr 1fr;
  }

  .rg-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .compliance-bar {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-nav {
    gap: 12px;
    padding: 20px 16px;
  }

  .brand-logo span {
    font-size: 23px;
  }

  .brand-logo svg {
    width: 22px;
    height: 28px;
  }

  .nav-cta {
    display: none;
  }

  .hero-type {
    min-height: 570px;
    padding-inline: 16px;
  }

  .hero-type-col span {
    font-size: clamp(48px, 18vw, 92px);
  }

  .hero-product {
    min-width: 250px;
    bottom: 15vh;
  }

  .hero-phone {
    border-width: 8px;
  }

  .hero-phone-screen {
    min-height: 390px;
    padding: 16px 14px;
  }

  .hero-cta {
    bottom: 250px;
    min-height: 58px;
    max-width: calc(100vw - 32px);
    padding: 16px 22px;
    white-space: normal;
  }

  .feature-section {
    padding: 68px 18px;
  }

  .sport-icons {
    margin-bottom: 28px;
  }

  .sport-icon {
    width: 46px;
    height: 46px;
  }

  .phone-shell {
    width: min(100%, 304px);
  }

  .market-frame,
  .partner-stage {
    width: 100%;
    padding: 24px 16px;
  }

  .icon-rail {
    display: none;
  }

  .market-phone {
    margin: 0 auto;
  }

  .friends-photo {
    height: 380px;
  }

  .score-avatar {
    transform: scale(0.82);
  }

  .leaderboard-stage {
    min-height: 520px;
  }

  .leader-phone {
    transform: rotate(-3deg) scale(0.9);
  }

  .copy-panel {
    border-radius: 18px;
    padding: 28px 22px;
  }

  .simple-graph,
  .faq-grid,
  .blog-preview-grid,
  .blog-index,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 16px;
  }

  .compact-footer {
    display: block;
  }

  .compact-footer .footer-links {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .footer-links a,
  .footer-links strong {
    font-size: 18px;
  }

  .legal-line {
    display: block;
  }

  .legal-line span {
    margin-bottom: 14px;
  }

  .copyright {
    font-size: 15px;
  }

  .cookie-banner {
    align-items: stretch;
    justify-content: flex-start;
  }

  .cookie-banner > div {
    width: 100%;
  }

  .cookie-manage,
  .cookie-banner button {
    flex: 1;
    text-align: center;
  }

  .register-hero {
    padding: 56px 18px;
  }

  .register-copy h1 {
    font-size: clamp(58px, 20vw, 94px);
  }

  .access-row {
    grid-template-columns: 1fr;
  }

  .access-row button,
  .signup-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .will-reveal {
    opacity: 1;
    transform: none;
  }
}
