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

html, body {
  height: 100%;
}

body {
  background: #ffffff;
  color: #141a1f;
  font-family: 'DM Sans', sans-serif;
}

.site-header {
  position: static;
  height: 77px;
  background: #141a1f;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1.5rem;
  gap: 1.25rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.header-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.header-divider {
  width: 1px;
  height: 31px;
  background: rgba(255, 255, 255, 0.2);
  align-self: center;
}

.header-nav {
  margin-left: 0;
}

.header-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: -3px;
}


.site-main {
  padding-top: 0;
  min-height: 100vh;
}

.hero-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 520px;
  padding: 7rem 2rem 4rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  max-width: 820px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.85rem);
  font-weight: 500;
  color: #141a1f;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #4a5568;
  line-height: 1.75;
  max-width: 720px;
}

@keyframes btn-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-check-btn {
  display: inline-block;
  background: linear-gradient(120deg, #0146c7, #012f85, #0157e8, #013ba3);
  background-size: 300% 300%;
  animation: btn-gradient-shift 120s ease infinite;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.01rem;
  font-weight: 600;
  padding: 0.72rem 2.52rem;
  border-radius: 999px;
  filter: brightness(1);
  transition: filter 0.4s ease;
}

.hero-check-btn:hover {
  filter: brightness(0.82);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.btn-arrow-leg {
  width: 14px;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  display: block;
}

.btn-arrow-blade {
  width: 7px;
  height: 7px;
  border-right: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  transform: rotate(45deg);
  flex-shrink: 0;
  display: block;
}

.hero-check-btn:hover .btn-arrow-leg {
  transform: scaleX(1);
}

.info-section {
  background: #fafafa;
  padding: 5rem 2rem;
}

.info-inner {
  max-width: 820px;
  margin: 0 auto;
}

.info-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #141a1f;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-title-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0099ff;
  background: rgba(0, 153, 255, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-inner--split {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1100px;
}

.info-split-left {
  flex: 1;
  min-width: 0;
}

.info-split-left .info-grid {
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.info-split-left .info-item--full {
  grid-column: auto;
}

.info-split-left .info-title {
  margin-bottom: 1.75rem;
}

.info-split-left .info-item {
  background: none;
  border-radius: 0;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.25rem;
}

.info-split-left .info-label {
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
  color: #0146c7;
}

.info-split-left .info-value {
  font-size: 1.05rem;
  font-weight: 400;
}

.info-split-left .info-tiers {
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.info-split-left .info-tier-label {
  font-size: 0.72rem;
}

.info-split-right {
  flex: 1;
  min-width: 0;
}

.event-video {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.info-item--full {
  grid-column: 1 / -1;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0099ff;
}

.info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #141a1f;
  line-height: 1.5;
}

.info-note {
  font-size: 0.85rem;
  font-weight: 400;
  color: #6b7280;
}

.info-tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
}

.info-tier {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-tier-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  background: #0099ff;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-tier-desc {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.content-section--empty,
.info-section--empty {
  min-height: 480px;
}

.info-section--tall {
  min-height: 520px;
}

.info-subtitle-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.bonus-mult {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0099ff;
  min-width: 3rem;
  text-align: center;
  flex-shrink: 0;
}

.bonus-desc {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.6;
}

.scenarios-v2 {
  margin-top: 3rem;
}

.scenarios-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #141a1f;
  margin-bottom: 1.5rem;
}

.sc-col-labels {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 2fr 80px 140px;
  gap: 1rem;
  padding: 0 1.5rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.sc-col-labels span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.sc-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 2fr 80px 140px;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 12px;
  margin-top: 0.5rem;
  background: #fafafa;
}

.sc-row--dark {
  background: #141a1f;
  border-color: transparent;
}

.sc-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sc-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.sc-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #141a1f;
}

.sc-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

.sc-bar-cell {
  display: flex;
  align-items: center;
}

.sc-bar {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.sc-bar-fill {
  height: 100%;
  background: #0146c7;
  border-radius: 999px;
}

.sc-boost {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(1,70,199,0.1);
  color: #0146c7;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  text-align: center;
  white-space: nowrap;
}

.sc-result {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: right;
}

.sc-result-xrp {
  font-size: 1rem;
  font-weight: 700;
  color: #0146c7;
}

.sc-result-usd {
  font-size: 0.75rem;
  color: #9ca3af;
}

.content-section {
  background: #ffffff;
  padding: 5rem 2rem;
}

.content-section .content-inner {
  max-width: 1100px;
}

.why-section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.why-section-left {
  background: #141a1f;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px 0 0 16px;
}

.why-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.why-section-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.75rem;
}

.why-section-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.why-section-right {
  background: #fafafa;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 16px 16px 0;
}

.why-layout {
  display: flex;
  flex-direction: column;
}

.why-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.why-row:first-child {
  padding-top: 0;
}

.why-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0146c7;
  letter-spacing: 0.1em;
  min-width: 1.75rem;
  padding-top: 0.25rem;
  flex-shrink: 0;
}

.why-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #141a1f;
}

.why-desc {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
}

.taglines-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tagline-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border-left: 4px solid #0099ff;
}

.tagline-quote {
  font-size: 1.1rem;
  font-weight: 500;
  color: #141a1f;
  line-height: 1.5;
  font-style: italic;
}

.content-section--blue {
  background: #0146c7;
}

.content-section--split {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-section-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.blue-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 350;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.2;
}

.blue-section-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

.blue-section-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 99%;
  width: auto;
  object-fit: contain;
}

.blue-section-img--left {
  left: 0;
  top: auto;
  bottom: 0;
  transform: none;
}

.blue-section-img--right {
  right: 0;
  top: 0;
  transform: none;
}

.content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.eligibility-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin-top: 2rem;
  margin-bottom: 4rem;
  width: 100%;
}

.eligibility-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 0.35rem;
}

.eligibility-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0146c7;
}

.eligibility-desc {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}

.eligibility-note {
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
  font-style: italic;
}

.eligibility-divider {
  width: 1px;
  height: 50px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.how-block {
  margin-bottom: 2.5rem;
}

.how-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #141a1f;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.how-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #0099ff;
  background: rgba(0, 153, 255, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.how-text {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.75;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1.25rem;
}

.how-list li {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.7;
}

.how-list strong {
  color: #141a1f;
  font-weight: 600;
}

.content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.site-footer {
  background: #141a1f;
  padding: 5rem 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-left: auto;
  display: block;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
}

.footer-social-link:hover {
  color: #ffffff;
}

/* ─── Mobile ──────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* Header */
  .site-header { height: 60px; }
  .header-logo-img { height: 22px; }
  .header-divider { height: 24px; }
  .header-nav-link { font-size: 1.3rem; }
  .header-inner { gap: 0.85rem; }

  /* Hero */
  .hero-section { padding: 3rem 1.25rem 3rem; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-check-btn { font-size: 0.9rem; padding: 0.65rem 1.75rem; }
  .hero-inner { gap: 1.5rem; }

  /* Sections padding */
  .info-section,
  .content-section { padding: 3rem 1.25rem; }

  /* Event details — stack video under text */
  .info-inner--split { flex-direction: column; gap: 2rem; max-width: 100%; }
  .info-split-left .info-grid { grid-template-columns: 1fr; }
  .info-split-right { width: 100%; }
  .event-video { width: 100%; border-radius: 12px; overflow: hidden; }
  .wistia_embed { width: 100% !important; }

  /* Eligibility bar — 2x2 grid */
  .eligibility-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
    margin-bottom: 2.5rem;
  }
  .eligibility-divider { display: none; }
  .eligibility-val { font-size: 1.1rem; }
  .eligibility-desc { font-size: 0.78rem; }
  .eligibility-note { font-size: 0.68rem; }

  /* Claim process */
  .how-block { margin-bottom: 1.5rem; }

  /* Volume multipliers section */
  .info-section--tall { min-height: unset; }
  .sc-col-labels { display: none; }
  .sc-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .sc-user { grid-column: 1 / -1; }
  .sc-bar-cell { grid-column: 1 / -1; }
  .sc-result { text-align: left; }

  /* Why this makes sense — stack */
  .why-section-wrap { grid-template-columns: 1fr; }
  .why-section-left { border-radius: 16px 16px 0 0; padding: 2.5rem 1.5rem; }
  .why-section-right { border-radius: 0 0 16px 16px; padding: 2rem 1.5rem; }
  .why-section-heading { font-size: 1.5rem; }

  /* Blue box */
  .blue-section-img { height: 50%; opacity: 0.3; }
  .blue-section-title { font-size: 1.5rem; }
  .blue-section-text { font-size: 0.88rem; }
  .content-section--empty { min-height: 380px; }

  /* Footer */
  .site-footer { padding: 3rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: center; gap: 1.5rem; }
  .footer-logo { margin-left: 0; }
  .footer-legal { align-items: center; text-align: center; }
}
