/* Rewardic homepage — modern editorial rewards system */

:root {
  --home-ink: #0b1714;
  --home-ink-soft: #20312b;
  --home-paper: #f5f3e9;
  --home-surface: #fffef8;
  --home-mint: #e6f8f3;
  --home-teal: #08c5bd;
  --home-teal-dark: #007a76;
  --home-coral: #ff725c;
  --home-yellow: #ffd665;
  --home-lime: #d8f36c;
  --home-muted: #5f6b67;
  --home-line: rgba(11, 23, 20, 0.13);
  --home-line-light: rgba(255, 255, 255, 0.14);
  --home-radius-sm: 14px;
  --home-radius: 24px;
  --home-radius-lg: 36px;
  --home-shadow: 0 28px 80px rgba(23, 43, 37, 0.13);
  --home-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-page {
  margin: 0;
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.home-page.menu-open {
  overflow: hidden;
}

.home-page::before {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

.home-page section {
  padding: 0;
}

.home-page img {
  max-width: 100%;
}

.home-page button,
.home-page input,
.home-page select,
.home-page textarea {
  font: inherit;
}

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible,
.home-page textarea:focus-visible,
.home-page summary:focus-visible {
  outline: 3px solid var(--home-coral);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--home-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Header */
.home-page .site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(245, 243, 233, 0.84);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-page .site-header.scrolled {
  border-bottom-color: var(--home-line);
  background: rgba(255, 254, 248, 0.94);
  box-shadow: 0 8px 30px rgba(23, 43, 37, 0.06);
}

.home-page .nav-shell {
  position: static;
  top: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1240px);
  height: 76px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: var(--home-ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  color: var(--home-ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--home-teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--home-ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 14px;
  background: var(--home-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms var(--home-ease), background 220ms ease, box-shadow 220ms ease;
}

.nav-download svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nav-download:hover {
  background: var(--home-teal-dark);
  box-shadow: 0 10px 26px rgba(0, 143, 138, 0.22);
  transform: translateY(-2px);
}

.home-page .nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--home-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.66);
}

.home-page .nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--home-ink);
}

.home-page .mobile-menu {
  position: fixed;
  z-index: 999;
  top: 76px;
  right: 12px;
  left: 12px;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  gap: 0;
  padding: 14px;
  border: 1px solid var(--home-line);
  border-radius: 0 0 22px 22px;
  background: rgba(255, 254, 248, 0.98);
  box-shadow: var(--home-shadow);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.home-page .mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-page .mobile-menu a {
  padding: 13px 10px;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-page .mobile-menu .mobile-download {
  margin-top: 10px;
  padding: 14px 16px;
  border: 0;
  border-radius: 13px;
  background: var(--home-ink);
  color: #fff;
  text-align: center;
}

/* Shared typography */
.kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--home-teal-dark);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-intro h2,
.reviews-heading h2,
.questions-copy h2,
.support-copy h2,
.payout-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-intro p {
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.75;
}

/* Hero */
.home-page .hero {
  position: relative;
  display: block;
  min-height: 860px;
  padding: 148px 0 98px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 27%, rgba(8, 197, 189, 0.13), transparent 27%),
    radial-gradient(circle at 92% 70%, rgba(255, 214, 101, 0.2), transparent 24%),
    var(--home-paper);
}

.home-page .hero::before {
  position: absolute;
  inset: 76px 0 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background-image:
    linear-gradient(rgba(11, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 20, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 75%, transparent);
}

.home-page .hero::after {
  position: absolute;
  right: auto;
  bottom: 36px;
  left: 50%;
  width: 1px;
  height: 48px;
  border-radius: 0;
  background: var(--home-line);
  content: "";
  transform: translateX(-50%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(8, 197, 189, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-coral);
  box-shadow: 0 0 0 6px rgba(255, 114, 92, 0.12);
  content: "";
}

.hero-orbit-one {
  top: 15%;
  right: -8%;
  width: 480px;
  height: 480px;
}

.hero-orbit-two {
  right: 9%;
  bottom: -23%;
  width: 360px;
  height: 360px;
  border-color: rgba(11, 23, 20, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.hero-copy {
  padding-top: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  padding: 8px 13px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.68);
  color: var(--home-ink-soft);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-teal);
  box-shadow: 0 0 0 4px rgba(8, 197, 189, 0.12);
  animation: rewardic-pulse 2.4s ease-in-out infinite;
}

@keyframes rewardic-pulse {
  50% { box-shadow: 0 0 0 8px rgba(8, 197, 189, 0); }
}

.home-page .hero h1 {
  max-width: 700px;
  margin: 0 0 30px;
  color: var(--home-ink);
  font-size: clamp(68px, 7.2vw, 102px);
  font-weight: 800;
  letter-spacing: -0.078em;
  line-height: 0.88;
}

.home-page .hero h1 em {
  color: var(--home-teal-dark);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 590px;
  margin: 0 0 35px;
  color: var(--home-muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 46px;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 22px 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: var(--home-ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(11, 23, 20, 0.2);
  transition: transform 220ms var(--home-ease), box-shadow 220ms ease, background 220ms ease;
}

.play-button:hover {
  background: var(--home-teal-dark);
  box-shadow: 0 18px 42px rgba(0, 143, 138, 0.26);
  transform: translateY(-3px);
}

.play-button .play-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.play-button > span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.play-button small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.play-button strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.text-link,
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.light-link:hover {
  gap: 12px;
  color: var(--home-teal-dark);
}

.hero-proof {
  display: flex;
  align-items: stretch;
  max-width: 640px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.hero-proof > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  padding: 18px 22px 18px 0;
}

.hero-proof > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--home-line);
}

.hero-proof strong {
  color: var(--home-ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero-proof > div > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.home-page .hero-proof .stars {
  margin: 0;
  color: #9b5900;
  font-size: 8px;
  letter-spacing: -1px;
}

/* Product mockup */
.product-stage {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
}

.product-stage::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(11, 23, 20, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 28%, transparent 29%),
    repeating-radial-gradient(circle, transparent 0 45px, rgba(8, 197, 189, 0.08) 46px 47px);
  content: "";
}

.product-stage::after {
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 500px;
  border-radius: 48%;
  background: rgba(8, 197, 189, 0.14);
  filter: blur(35px);
  content: "";
  transform: rotate(-12deg);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 336px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48px;
  background: #09110f;
  box-shadow:
    0 45px 90px rgba(11, 23, 20, 0.25),
    0 0 0 6px rgba(255, 255, 255, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotate(2.2deg);
  animation: rewardic-float 5.5s ease-in-out infinite;
}

@keyframes rewardic-float {
  0%, 100% { transform: rotate(2.2deg) translateY(0); }
  50% { transform: rotate(1.2deg) translateY(-12px); }
}

.phone-island {
  position: absolute;
  z-index: 4;
  top: 19px;
  left: 50%;
  width: 88px;
  height: 23px;
  border-radius: 20px;
  background: #09110f;
  transform: translateX(-50%);
}

.app-screen {
  min-height: 608px;
  padding: 17px 16px 14px;
  border-radius: 38px;
  background: #f7f8f3;
  overflow: hidden;
}

.app-status {
  display: flex;
  justify-content: space-between;
  padding: 0 5px 18px;
  color: #24332e;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 500;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-heading > div {
  display: flex;
  flex-direction: column;
}

.app-heading span {
  color: #7d8985;
  font-size: 9px;
}

.app-heading strong {
  color: var(--home-ink);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.app-heading img {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.balance-card {
  margin-bottom: 12px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 243, 108, 0.22), transparent 38%),
    var(--home-ink);
  color: #fff;
  box-shadow: 0 16px 26px rgba(11, 23, 20, 0.14);
}

.balance-top,
.balance-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.balance-top {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
}

.balance-live {
  padding: 3px 7px;
  border: 1px solid rgba(216, 243, 108, 0.22);
  border-radius: 8px;
  color: var(--home-lime);
  font-family: "DM Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.balance-card > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.balance-card > strong small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
}

.balance-progress {
  height: 5px;
  margin-bottom: 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.balance-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-teal), var(--home-lime));
}

.balance-foot {
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
}

.streak-card {
  margin-bottom: 13px;
  padding: 14px;
  border: 1px solid rgba(11, 23, 20, 0.08);
  border-radius: 17px;
  background: #fff;
}

.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  font-size: 9px;
}

.mini-heading strong {
  color: var(--home-ink);
}

.mini-heading span {
  color: var(--home-coral);
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.streak-days {
  display: flex;
  justify-content: space-between;
}

.streak-days span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(11, 23, 20, 0.08);
  border-radius: 9px;
  color: #98a19e;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.streak-days .done {
  border-color: rgba(8, 197, 189, 0.1);
  background: rgba(8, 197, 189, 0.1);
  color: var(--home-teal-dark);
}

.streak-days .active {
  border-color: var(--home-teal);
  background: var(--home-teal);
  color: var(--home-ink);
  box-shadow: 0 5px 12px rgba(8, 197, 189, 0.24);
}

.task-label {
  display: flex;
  justify-content: space-between;
  margin: 0 3px 9px;
  color: var(--home-ink);
  font-size: 8px;
}

.task-label span {
  color: var(--home-teal-dark);
}

.app-task {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid rgba(11, 23, 20, 0.07);
  border-radius: 14px;
  background: #fff;
}

.task-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.task-symbol-coral { background: var(--home-coral); }
.task-symbol-yellow { background: #f0b72e; }

.app-task > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.app-task strong {
  color: var(--home-ink);
  font-size: 8px;
}

.app-task small {
  color: #929c98;
  font-size: 6px;
}

.app-task b {
  color: var(--home-teal-dark);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.app-tabs {
  display: flex;
  justify-content: space-around;
  margin: 13px -16px -14px;
  padding: 9px 10px 7px;
  border-top: 1px solid rgba(11, 23, 20, 0.07);
  background: rgba(255, 255, 255, 0.92);
}

.app-tabs span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9ba4a0;
  font-size: 12px;
}

.app-tabs small {
  margin-top: 2px;
  font-size: 5px;
}

.app-tabs .selected {
  color: var(--home-teal-dark);
}

.stage-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 23, 20, 0.11);
  border-radius: 15px;
  background: rgba(255, 254, 248, 0.9);
  color: var(--home-muted);
  font-size: 10px;
  box-shadow: 0 20px 46px rgba(11, 23, 20, 0.13);
  backdrop-filter: blur(12px);
}

.stage-note strong {
  display: block;
  color: var(--home-ink);
  font-size: 11px;
}

.stage-note-top {
  top: 13%;
  left: -1%;
}

.stage-note-bottom {
  right: -4%;
  bottom: 17%;
}

.note-icon,
.payout-badge {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  background: rgba(8, 197, 189, 0.13);
  color: var(--home-teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.payout-badge {
  background: #193d84;
  color: #fff;
}

.stage-note svg {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(8, 197, 189, 0.13);
  fill: none;
  stroke: var(--home-teal-dark);
  stroke-width: 2;
}

/* Partner rail */
.network-strip {
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: var(--home-surface);
}

.network-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 32px;
}

.network-row > p {
  margin: 0;
  color: var(--home-muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.network-names {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.5vw, 48px);
}

.network-names span {
  color: var(--home-ink-soft);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.network-names i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-teal);
}

/* Process */
.process-section {
  padding: clamp(100px, 11vw, 156px) 0;
  background: var(--home-surface);
}

.split-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.split-intro p {
  max-width: 460px;
  margin: 0 0 6px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.process-step {
  position: relative;
  min-height: 350px;
  padding: 30px clamp(24px, 3vw, 42px) 40px;
}

.process-step + .process-step {
  border-left: 1px solid var(--home-line);
}

.step-index,
.card-number {
  color: var(--home-muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.step-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 64px 0 30px;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 20px;
  background: var(--home-paper);
  color: var(--home-teal-dark);
}

.step-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-step h3 {
  margin: 0 0 12px;
  color: var(--home-ink);
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.process-step p {
  max-width: 300px;
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.75;
}

.process-step-accent {
  background: var(--home-teal);
}

.process-step-accent .step-index,
.process-step-accent p {
  color: rgba(11, 23, 20, 0.62);
}

.process-step-accent .step-icon {
  border-color: rgba(11, 23, 20, 0.12);
  background: var(--home-ink);
  color: var(--home-lime);
}

/* Earning bento */
.earn-section {
  padding: clamp(100px, 11vw, 156px) 0;
  background: #efede2;
}

.centered-intro {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.centered-intro p {
  max-width: 610px;
  margin: 25px auto 0;
}

.earn-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.earn-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: var(--home-surface);
  overflow: hidden;
  transition: transform 260ms var(--home-ease), box-shadow 260ms ease, border-color 260ms ease;
}

.earn-card:hover {
  border-color: rgba(8, 197, 189, 0.5);
  box-shadow: 0 24px 54px rgba(23, 43, 37, 0.09);
  transform: translateY(-5px);
}

.earn-card-wide {
  display: grid;
  grid-column: span 8;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  min-height: 420px;
  background: var(--home-ink);
}

.earn-card-streak {
  grid-column: span 4;
  background: var(--home-yellow);
}

.earn-card-challenge,
.earn-card-referral {
  grid-column: span 6;
}

.earn-card-challenge {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  background: var(--home-mint);
}

.earn-card-referral {
  background: var(--home-coral);
}

.card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.card-copy h3 {
  margin: auto 0 13px;
  color: var(--home-ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1;
}

.card-copy p {
  max-width: 410px;
  margin: 0 0 24px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-meta {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid var(--home-line);
  border-radius: 9px;
  color: var(--home-ink-soft);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.earn-card-wide .card-number,
.earn-card-wide .card-copy p {
  color: rgba(255, 255, 255, 0.54);
}

.earn-card-wide .card-copy h3 {
  color: #fff;
}

.earn-card-wide .card-meta {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--home-lime);
}

.offer-stack {
  align-self: center;
  perspective: 700px;
}

.offer-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transform: rotateY(-5deg) translateX(8px);
}

.offer-row-active {
  border-color: rgba(216, 243, 108, 0.45);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: rotateY(-5deg) translateX(-5px) scale(1.03);
}

.offer-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.offer-icon.coral { background: var(--home-coral); }
.offer-icon.teal { background: var(--home-teal); color: var(--home-ink); }
.offer-icon.yellow { background: var(--home-yellow); color: var(--home-ink); }

.offer-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.offer-row strong {
  font-size: 11px;
}

.offer-row small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.offer-row b {
  color: var(--home-lime);
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.streak-visual {
  position: absolute;
  right: -30px;
  bottom: -20px;
  display: flex;
  width: 250px;
  height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 23, 20, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.streak-flame {
  position: relative;
  display: grid;
  width: 94px;
  height: 112px;
  place-items: center;
  background: transparent;
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  isolation: isolate;
}

.streak-flame::before {
  position: absolute;
  z-index: -1;
  inset: 8px 3px 4px 7px;
  border-radius: 55% 55% 55% 15%;
  background: var(--home-coral);
  content: "";
  transform: rotate(-45deg);
}

.streak-visual > p {
  position: relative;
  margin: 8px 0 12px;
  color: var(--home-ink-soft);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streak-visual > div {
  display: flex;
  gap: 5px;
}

.streak-visual i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-ink);
}

.streak-visual .empty {
  border: 1px solid rgba(11, 23, 20, 0.35);
  background: transparent;
}

.challenge-art {
  position: relative;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
}

.challenge-art span {
  position: absolute;
  color: var(--home-ink);
  font-family: "DM Mono", monospace;
  font-size: 28px;
  font-weight: 500;
}

.challenge-art svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.challenge-art circle {
  fill: none;
  stroke: rgba(11, 23, 20, 0.09);
  stroke-width: 8px;
}

.challenge-art .progress {
  stroke: var(--home-teal);
  stroke-dasharray: 302;
  stroke-dashoffset: 76;
  stroke-linecap: round;
}

.avatar-cloud {
  position: absolute;
  right: -30px;
  bottom: -38px;
  width: 250px;
  height: 240px;
}

.avatar-cloud span {
  position: absolute;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 5px solid var(--home-coral);
  border-radius: 50%;
  background: var(--home-surface);
  color: var(--home-ink);
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(11, 23, 20, 0.14);
}

.avatar-cloud span:nth-child(1) { top: 20px; left: 12px; background: var(--home-yellow); }
.avatar-cloud span:nth-child(2) { top: 0; right: 42px; background: var(--home-mint); }
.avatar-cloud span:nth-child(3) { top: 70px; left: 85px; z-index: 2; width: 82px; height: 82px; background: var(--home-ink); color: #fff; font-size: 24px; }
.avatar-cloud span:nth-child(4) { right: 4px; bottom: 38px; background: #fff; }
.avatar-cloud span:nth-child(5) { bottom: 14px; left: 24px; background: var(--home-lime); }

.earn-card-referral .card-copy p {
  color: rgba(11, 23, 20, 0.68);
}

.earn-card-referral .card-meta {
  border-color: rgba(11, 23, 20, 0.18);
}

/* Payouts */
.payout-section {
  position: relative;
  padding: clamp(110px, 12vw, 170px) 0;
  background:
    radial-gradient(circle at 8% 90%, rgba(8, 197, 189, 0.14), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(255, 114, 92, 0.09), transparent 23%),
    var(--home-ink);
  overflow: hidden;
}

.payout-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}

.payout-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.kicker-light {
  color: var(--home-teal);
}

.payout-copy h2 {
  margin-bottom: 32px;
  color: #fff;
}

.payout-copy h2 em {
  color: var(--home-yellow);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.payout-copy > p {
  max-width: 500px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.8;
}

.light-link {
  color: #fff;
}

.light-link:hover {
  color: var(--home-teal);
}

.payout-panel {
  padding: 28px;
  border: 1px solid var(--home-line-light);
  border-radius: var(--home-radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.payout-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.payout-panel-head small {
  color: rgba(255, 255, 255, 0.66);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.method-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.method-row-selected {
  grid-template-columns: 50px minmax(0, 1fr) auto 28px;
  border-color: rgba(8, 197, 189, 0.48);
  background: rgba(8, 197, 189, 0.11);
}

.method-logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 800;
}

.method-logo.gift-card {
  background: linear-gradient(145deg, var(--home-coral), #ff9a65);
  color: var(--home-ink);
  font-size: 11px;
  letter-spacing: -0.02em;
}

.method-logo.brand-choice {
  background: linear-gradient(145deg, var(--home-teal), #087d78);
}

.method-logo.reward-value {
  background: linear-gradient(145deg, var(--home-yellow), #f3b526);
  color: var(--home-ink);
  font-size: 11px;
  letter-spacing: -0.02em;
}

.method-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.method-row strong {
  font-size: 13px;
}

.method-row small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
}

.method-row i {
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(216, 243, 108, 0.14);
  color: var(--home-lime);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-row > b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.method-row-selected > b {
  background: var(--home-teal);
  color: var(--home-ink);
}

.payout-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  padding: 16px;
  border-top: 1px solid var(--home-line-light);
}

.payout-note > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 197, 189, 0.14);
  color: var(--home-teal);
  font-size: 11px;
}

.payout-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.payout-note strong {
  color: #fff;
  font-size: 10px;
}

.payout-note small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
}

/* Reviews */
.reviews-section {
  padding: clamp(100px, 11vw, 156px) 0;
  background: var(--home-paper);
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.reviews-heading h2 {
  max-width: 760px;
  font-size: clamp(48px, 5.8vw, 76px);
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: var(--home-surface);
}

.rating-lockup > strong {
  color: var(--home-ink);
  font-size: 34px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.rating-lockup > span {
  display: flex;
  flex-direction: column;
}

.rating-lockup b {
  color: #9b5900;
  font-size: 11px;
  letter-spacing: 1px;
}

.rating-lockup small {
  color: var(--home-muted);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: var(--home-surface);
}

.review-card-featured {
  background: var(--home-mint);
  transform: translateY(-18px);
}

.quote-mark {
  color: var(--home-teal);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 72px;
  line-height: 0.7;
}

.review-card > p {
  margin: 35px 0 auto;
  color: var(--home-ink-soft);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.25;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 0;
  background: transparent;
}

.review-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.review-avatar-violet { background: #7165c9; }
.review-avatar-teal { background: var(--home-teal-dark); }
.review-avatar-coral { background: var(--home-coral); }

.review-card footer > span:last-child {
  display: flex;
  flex-direction: column;
}

.review-card footer strong {
  color: var(--home-ink);
  font-size: 11px;
}

.review-card footer small {
  color: var(--home-muted);
  font-size: 8px;
}

/* FAQ */
.questions-section {
  padding: clamp(100px, 11vw, 156px) 0;
  border-top: 1px solid var(--home-line);
  background: var(--home-surface);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 150px);
}

.questions-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.questions-copy h2 {
  margin-bottom: 28px;
}

.questions-copy p {
  max-width: 340px;
  margin: 0 0 30px;
  color: var(--home-muted);
  font-size: 15px;
}

.home-page .faq-list {
  max-width: none;
  margin: 0;
  gap: 0;
  border-top: 1px solid var(--home-line);
}

.home-page details.faq-item {
  border: 0;
  border-bottom: 1px solid var(--home-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.home-page details.faq-item[open] {
  border-color: var(--home-line);
  box-shadow: none;
}

.home-page details.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

.home-page details.faq-item summary::-webkit-details-marker {
  display: none;
}

.home-page details.faq-item summary span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.home-page details.faq-item summary span::before,
.home-page details.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.home-page details.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-page details.faq-item[open] summary {
  color: var(--home-teal-dark);
}

.home-page details.faq-item[open] summary span {
  background: var(--home-teal);
  color: var(--home-ink);
  transform: rotate(45deg);
}

.home-page details.faq-item > p {
  max-width: 670px;
  margin: -4px 50px 26px 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Support form */
.support-section {
  padding: clamp(100px, 11vw, 150px) 0;
  background: var(--home-mint);
}

.support-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.support-copy h2 {
  max-width: 520px;
  margin-bottom: 25px;
  font-size: clamp(46px, 5.2vw, 70px);
}

.support-copy > p {
  max-width: 470px;
  margin: 0 0 36px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.75;
}

.support-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.support-details > a,
.support-details > div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--home-ink);
  text-decoration: none;
}

.support-details > a > span:first-child,
.support-details > div > span:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(8, 197, 189, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--home-teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.support-details > a > span:last-child,
.support-details > div > span:last-child {
  display: flex;
  flex-direction: column;
}

.support-details small {
  color: var(--home-muted);
  font-size: 9px;
}

.support-details strong {
  font-size: 12px;
}

.support-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-socials a {
  padding: 8px 11px;
  border: 1px solid var(--home-line);
  border-radius: 9px;
  color: var(--home-ink-soft);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.support-socials a:hover {
  background: var(--home-ink);
  color: #fff;
}

.support-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(11, 23, 20, 0.1);
  border-radius: var(--home-radius-lg);
  background: var(--home-surface);
  box-shadow: 0 30px 70px rgba(23, 43, 37, 0.1);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.form-heading small {
  color: var(--home-muted);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-group {
  margin-bottom: 17px;
}

.home-page .field-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--home-ink-soft);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-page .field-group input,
.home-page .field-group select,
.home-page .field-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(11, 23, 20, 0.13);
  border-radius: 13px;
  outline: 0;
  background: #f7f6ef;
  color: var(--home-ink);
  font-size: 12px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-page .field-group textarea {
  min-height: 120px;
  resize: vertical;
}

.home-page .field-group input::placeholder,
.home-page .field-group textarea::placeholder {
  color: #9ba39f;
}

.home-page .field-group input:focus,
.home-page .field-group select:focus,
.home-page .field-group textarea:focus {
  border-color: var(--home-teal-dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 197, 189, 0.1);
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: var(--home-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
  transition: background 180ms ease, transform 180ms var(--home-ease), box-shadow 180ms ease;
}

.submit-button:hover:not(:disabled) {
  background: var(--home-teal-dark);
  box-shadow: 0 12px 24px rgba(0, 143, 138, 0.2);
  transform: translateY(-2px);
}

.submit-button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.home-page .form-success {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(8, 197, 189, 0.45);
  border-radius: 12px;
  background: rgba(8, 197, 189, 0.1);
  color: var(--home-teal-dark);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.home-page .form-success.is-error {
  border-color: rgba(214, 72, 72, 0.4);
  background: rgba(214, 72, 72, 0.08);
  color: #a62f2f;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: clamp(90px, 10vw, 138px) 0;
  background: var(--home-teal);
  overflow: hidden;
}

.cta-orbit {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(11, 23, 20, 0.15);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta-orbit::before,
.cta-orbit::after {
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(11, 23, 20, 0.13);
  border-radius: 50%;
  content: "";
}

.cta-orbit::after {
  inset: 130px;
  background: rgba(216, 243, 108, 0.4);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.final-cta .kicker {
  color: rgba(11, 23, 20, 0.66);
}

.final-cta h2 {
  font-size: clamp(58px, 7.5vw, 96px);
}

.final-cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-right: 90px;
}

.play-button-light {
  border-color: rgba(11, 23, 20, 0.11);
  background: var(--home-surface);
  color: var(--home-ink);
  box-shadow: 0 16px 36px rgba(11, 23, 20, 0.15);
}

.play-button-light small {
  color: var(--home-muted);
}

.play-button-light:hover {
  background: #fff;
  color: var(--home-ink);
}

.final-cta-action p {
  margin: 0;
  color: rgba(11, 23, 20, 0.58);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Footer */
.home-page .site-footer {
  padding: 76px 0 28px;
  background: var(--home-ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: clamp(38px, 6vw, 90px);
  padding-bottom: 66px;
}

.brand-light {
  margin-bottom: 18px;
  color: #fff;
}

.footer-brand > p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.75;
}

.home-page .footer-col h3 {
  margin: 8px 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-page .footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  text-decoration: none;
  transition: color 160ms ease;
}

.home-page .footer-col a:hover {
  color: var(--home-teal);
}

.home-page .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-page .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Sticky mobile action */
.home-page .sticky-cta {
  position: fixed;
  z-index: 950;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(11, 23, 20, 0.94);
  box-shadow: 0 18px 46px rgba(11, 23, 20, 0.28);
  backdrop-filter: blur(15px);
}

.sticky-cta > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sticky-cta img {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.sticky-cta > div > span {
  display: flex;
  flex-direction: column;
}

.sticky-cta strong {
  color: #fff;
  font-size: 11px;
}

.sticky-cta small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 7px;
}

.home-page .sticky-cta > a {
  padding: 10px 15px;
  border-radius: 11px;
  background: var(--home-teal);
  color: var(--home-ink);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

/* Progressive enhancement for motion */
.home-page .reveal {
  opacity: 1;
  transform: none;
}

html.motion-ready .home-page .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(24px);
}

html.motion-ready .home-page .reveal {
  transition: opacity 650ms var(--home-ease), transform 650ms var(--home-ease);
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
    gap: 35px;
  }

  .home-page .hero h1 {
    font-size: clamp(64px, 8vw, 86px);
  }

  .stage-note-top { left: -7%; }
  .stage-note-bottom { right: -6%; }

  .earn-card-wide {
    grid-column: span 7;
    grid-template-columns: 1fr;
  }

  .earn-card-streak { grid-column: span 5; }

  .offer-stack {
    margin-top: 22px;
  }

  .earn-card-wide .card-copy h3,
  .earn-card-streak .card-copy h3 {
    margin-top: 45px;
  }

  .support-grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
  }

  .final-cta-action {
    padding-right: 30px;
  }
}

@media (max-width: 900px) {
  .shell,
  .home-page .nav-shell {
    width: min(100% - 36px, 760px);
  }

  .home-page .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .nav-download {
    display: none;
  }

  .home-page .nav-toggle {
    display: flex;
  }

  .home-page .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-copy {
    max-width: 700px;
    text-align: center;
  }

  .home-page .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .product-stage {
    min-height: 650px;
  }

  .stage-note-top { left: 8%; }
  .stage-note-bottom { right: 8%; }

  .network-row {
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
  }

  .split-intro,
  .payout-grid,
  .questions-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .split-intro {
    gap: 30px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 280px;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .step-icon {
    margin-top: 45px;
  }

  .earn-card-wide,
  .earn-card-streak,
  .earn-card-challenge,
  .earn-card-referral {
    grid-column: span 12;
  }

  .earn-card-wide {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .earn-card-wide .card-copy h3 {
    margin-top: auto;
  }

  .payout-grid {
    gap: 60px;
  }

  .payout-copy {
    max-width: 650px;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 280px;
  }

  .review-card-featured {
    transform: none;
  }

  .questions-grid,
  .support-grid {
    gap: 62px;
  }

  .questions-copy {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta-action {
    align-items: flex-start;
    padding: 0;
  }

  .footer-main {
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .shell,
  .home-page .nav-shell {
    width: min(100% - 28px, 560px);
  }

  .home-page .site-header,
  .home-page .nav-shell {
    height: 68px;
  }

  .home-page .mobile-menu {
    top: 68px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .home-page .hero {
    min-height: 0;
    padding: 112px 0 70px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .home-page .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(54px, 17vw, 72px);
    line-height: 0.91;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 38px;
  }

  .play-button {
    min-height: 58px;
  }

  .hero-proof {
    width: 100%;
  }

  .hero-proof > div {
    padding: 15px 9px;
  }

  .hero-proof > div + div {
    padding-left: 9px;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof > div > span {
    justify-content: center;
    font-size: 7px;
  }

  .home-page .hero-proof .stars {
    display: none;
  }

  .product-stage {
    min-height: 570px;
    margin: 0 -8px;
  }

  .product-stage::before {
    width: 420px;
    height: 420px;
  }

  .phone-shell {
    width: 286px;
    transform: rotate(1.2deg);
  }

  .app-screen {
    min-height: 525px;
  }

  .streak-days span {
    width: 22px;
    height: 22px;
  }

  .stage-note {
    padding: 9px 10px;
    font-size: 8px;
  }

  .stage-note strong {
    font-size: 9px;
  }

  .stage-note-top {
    top: 13%;
    left: -1%;
  }

  .stage-note-bottom {
    right: -2%;
    bottom: 15%;
  }

  .note-icon,
  .payout-badge {
    width: 27px;
    height: 27px;
  }

  .network-names {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 12px;
  }

  .network-names span {
    font-size: 15px;
  }

  .network-names i {
    display: none;
  }

  .section-intro h2,
  .reviews-heading h2,
  .questions-copy h2,
  .support-copy h2,
  .payout-copy h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .process-section,
  .earn-section,
  .reviews-section,
  .questions-section,
  .support-section {
    padding: 88px 0;
  }

  .section-intro,
  .reviews-heading {
    margin-bottom: 48px;
  }

  .process-step {
    min-height: 260px;
    padding: 24px 21px 34px;
  }

  .earn-bento {
    gap: 12px;
  }

  .earn-card {
    min-height: 350px;
    padding: 26px;
  }

  .earn-card-wide,
  .earn-card-challenge {
    grid-template-columns: 1fr;
  }

  .earn-card-wide {
    min-height: 650px;
  }

  .earn-card-wide .card-copy h3 {
    margin-top: 50px;
  }

  .offer-stack {
    align-self: end;
    width: 100%;
  }

  .offer-row {
    transform: none;
  }

  .offer-row-active {
    transform: scale(1.02);
  }

  .earn-card-challenge {
    min-height: 520px;
  }

  .challenge-art {
    margin: 10px auto 20px;
  }

  .earn-card-challenge .card-copy h3 {
    margin-top: 35px;
  }

  .avatar-cloud {
    right: -45px;
    transform: scale(0.88);
  }

  .payout-section {
    padding: 95px 0;
  }

  .payout-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .method-row,
  .method-row-selected {
    grid-template-columns: 44px minmax(0, 1fr) 26px;
    gap: 10px;
    padding: 11px;
  }

  .method-logo {
    width: 42px;
    height: 42px;
  }

  .method-row i {
    display: none;
  }

  .review-card {
    min-height: 300px;
    padding: 25px;
  }

  .review-card > p {
    font-size: 25px;
  }

  .home-page details.faq-item summary {
    padding: 21px 0;
    font-size: 13px;
  }

  .support-form {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .home-page .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-heading {
    font-size: 16px;
  }

  .final-cta {
    padding: 85px 0 110px;
  }

  .final-cta h2 {
    font-size: clamp(54px, 15vw, 72px);
  }

  .cta-orbit {
    right: -290px;
    bottom: -240px;
    top: auto;
    transform: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 20px;
  }

  .home-page .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 721px) {
  .home-page .sticky-cta {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.motion-ready .home-page .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
}
