:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --line: rgba(255, 255, 255, 0.09);
  --text: #ffffff;
  --muted: #b8b8b8;
  --soft: #808080;
  --gold: #ffc857;
  --gold-bright: #ffe500;
  --gold-dark: #b8860b;
  --mint: #32f5c8;
  --mint-dark: #13b99a;
  --danger: #ff5f5f;
  --success: #61f7a8;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(50, 245, 200, 0.12), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea {
  font-family: inherit;
}

.hidden {
  display: none !important;
}

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 60px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 28px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000000;
  font-weight: 950;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(255, 200, 87, 0.2);
}

.brand-logo-card {
  flex-shrink: 0;
  width: 190px;
  height: 190px;
  min-width: 190px;
  min-height: 190px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(255, 200, 87, 0.14);
}

.brand-logo-card .brand-logo,
.brand-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  flex-shrink: 0;
  border-radius: inherit;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  transform: none;
}

.brand-logo-card--hero {
  margin: 0 auto 24px;
  width: 260px;
  height: 260px;
  min-width: 260px;
  min-height: 260px;
}

.site-footer-brand .brand-logo-card {
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
}

.site-footer-brand .brand-logo {
  width: 100%;
  height: 100%;
  transform: none;
}

@media (max-width: 1023px) {
  .brand-logo-card {
    width: 104px;
    height: 104px;
    min-width: 104px;
    min-height: 104px;
    border-radius: 22px;
  }

  .brand-logo-card .brand-logo,
  .top-nav .brand-logo {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    transform: none;
  }

  .brand-logo-card--hero {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
  }
}

.brand-name {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.4px;
}

.brand-tagline {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 24px;
  align-items: stretch;
}

.auth-copy,
.auth-card,
.hero-card,
.account-strip,
.info-card,
.reward-center-section,
.terms-card,
.reward-launch-card,
.wallet-card,
.breakdown-card,
.eligibility-card,
.payout-methods,
.payout-form-card,
.reward-action-card {
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.auth-copy {
  padding: clamp(28px, 5vw, 62px);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 87, 0.28);
  background: rgba(255, 200, 87, 0.09);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow.dark {
  color: #1b1b1b;
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.auth-copy h1,
.hero-content h1,
.page-heading h1,
.wireless-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.auth-copy > p,
.hero-content > p,
.page-heading p,
.wireless-hero p {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid,
.info-grid,
.breakdown-grid,
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card,
.info-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.feature-card span,
.info-icon {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.feature-card strong,
.info-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.auth-image-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.auth-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.auth-card {
  padding: 28px;
  align-self: center;
}

.card-header h2 {
  margin-bottom: 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.card-header p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.5;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 0 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  outline: none;
  background: #070707;
  color: var(--text);
  font-size: 16px;
}

input {
  height: 54px;
}

textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 200, 87, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 200, 87, 0.08);
}

.primary-btn,
.secondary-btn,
.black-btn {
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 15px;
  border: none;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000000;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
}

.black-btn {
  background: #000000;
  color: #ffffff;
  width: fit-content;
}

.fit-btn {
  width: fit-content;
}

.primary-btn:disabled,
.secondary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

.reward-center-status {
  min-height: 1.25rem;
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.reward-center-status.error {
  color: var(--danger);
}

.reward-center-status.success {
  color: var(--success);
}

.reward-center-status.loading {
  color: var(--text-muted);
}

.text-btn {
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--mint);
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
}

.forgot-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.terms-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  line-height: 1.55;
}

.app-layout {
  display: grid;
  gap: 22px;
}

.tab-nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.tab-btn {
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 950;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000000;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  gap: 22px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  padding: clamp(26px, 5vw, 46px);
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 200, 87, 0.16), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(50, 245, 200, 0.12), transparent 23%);
  pointer-events: none;
}

.hero-content,
.balance-card {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-image-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.dashboard-action-btn {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dashboard-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.dashboard-action-btn:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.dashboard-action-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.auth-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.start-earning-btn {
  box-shadow: 0 10px 30px rgba(50, 245, 200, 0.22);
  animation: earn-cta-pulse 2.4s ease-in-out infinite;
}

@keyframes earn-cta-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(50, 245, 200, 0.18); }
  50% { box-shadow: 0 14px 36px rgba(255, 200, 87, 0.28); }
}

.earn-launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(50, 245, 200, 0.22);
  background:
    radial-gradient(circle at top right, rgba(50, 245, 200, 0.12), transparent 42%),
    rgba(14, 14, 14, 0.92);
}

.earn-launch-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.earn-image-card {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.earn-image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.earn-image-card:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.earn-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.earn-image-card-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.earn-image-card--hero {
  min-height: 100%;
}

.earn-image-card--way {
  grid-column: span 1;
}

.fc-earn-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 4vw, 30px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 200, 87, 0.28);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.14), transparent 38%),
    radial-gradient(circle at bottom right, rgba(50, 245, 200, 0.14), transparent 34%),
    rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow);
}

.fc-earn-cta-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.fc-earn-cta-copy > p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 520px;
}

.fc-earn-cta-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.fc-earn-hero h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.04em;
}

.balance-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.38);
}

.balance-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.balance-value {
  margin-top: 8px;
  font-size: clamp(48px, 8vw, 78px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.07em;
  color: var(--gold);
}

.balance-dollar {
  margin-top: 8px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
}

.balance-divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}

.mini-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 800;
}

.mini-stat-row strong {
  color: var(--text);
}

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

.strip-label {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-strip strong {
  word-break: break-word;
}

.gold-card,
.wireless-hero {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1b1b1b;
  box-shadow: 0 24px 70px rgba(255, 200, 87, 0.15);
}

.gold-card h2,
.wireless-hero h1 {
  color: #1b1b1b;
}

.gold-card p,
.wireless-hero p {
  color: rgba(0, 0, 0, 0.78);
}

.small-dark {
  font-size: 13px;
  font-weight: 900;
}

.page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.88);
}

.reward-launch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
}

.reward-launch-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.reward-launch-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.reward-center-section {
  padding: 22px;
}

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

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
}

.iframe-shell {
  width: 100%;
  height: 860px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #000000;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}

.reward-disclaimer {
  margin-top: 14px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.55;
}

.wallet-card {
  padding: 24px;
  background: #11150f;
  border-color: rgba(255, 229, 0, 0.38);
}

.wallet-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.wallet-value {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(52px, 9vw, 84px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.coin-stack {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-bright);
  color: #ffffff;
  font-size: 38px;
  box-shadow: 0 14px 40px rgba(255, 229, 0, 0.18);
}

.wallet-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.wallet-metrics div,
.breakdown-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.wallet-metrics span,
.breakdown-card p {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.wallet-metrics strong,
.breakdown-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
}

.breakdown-grid {
  grid-template-columns: repeat(4, 1fr);
}

.breakdown-card span {
  font-size: 26px;
}

.reward-action-card {
  padding: 22px;
}

.reward-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(255, 200, 87, 0.1);
  font-size: 28px;
}

.reward-action-card h2 {
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.reward-action-card p {
  color: var(--muted);
  line-height: 1.55;
}

.copy-code-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #070707;
}

.copy-code-box span {
  flex: 1;
  min-width: 0;
  color: var(--text);
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.small-action-btn {
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  background: var(--mint);
  color: #000000;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.reward-stat-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.reward-stat-line strong {
  color: var(--mint);
}

.streak-stats {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.streak-stats div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.streak-stats span {
  color: var(--muted);
  font-weight: 850;
}

.streak-stats strong {
  color: var(--gold);
}


.referral-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #111111;
  box-shadow: 0 24px 70px rgba(255, 200, 87, 0.16);
}

.referral-hero h1,
.referral-hero h2,
.referral-hero p {
  color: #111111;
}

.referral-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.referral-hero p {
  color: rgba(0, 0, 0, 0.74);
  font-weight: 800;
  line-height: 1.55;
}

.referral-value-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.referral-value-row div,
.referral-share-panel {
  padding: 18px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(0, 0, 0, 0.13);
}

.referral-value-row span,
.referral-value-row small {
  display: block;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.referral-value-row strong {
  display: block;
  margin: 6px 0;
  color: #000000;
  font-size: 30px;
  font-weight: 950;
  word-break: break-word;
}

.referral-share-panel {
  background: rgba(0, 0, 0, 0.22);
}

.referral-share-panel h2 {
  margin-bottom: 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.referral-share-panel .primary-btn {
  margin-top: 14px;
  background: #000000;
  color: #ffffff;
}

.big-copy span {
  font-size: 13px;
}

.referral-explain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.streak-hero-card {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.88);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.streak-hero-card h2 {
  margin-bottom: 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.streak-hero-card p {
  color: var(--muted);
  line-height: 1.6;
}

.streak-rules-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 200, 87, 0.24);
  background: rgba(255, 200, 87, 0.08);
}

.streak-rules-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.streak-rules-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 750;
}

.wireless-hero {
  min-height: 420px;
}

.wireless-stat {
  display: grid;
  gap: 4px;
  margin: 20px 0;
}

.wireless-stat span {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.wireless-stat strong {
  font-size: 42px;
  font-weight: 950;
}

.eligibility-card,
.payout-methods,
.payout-form-card,
.terms-card {
  padding: 24px;
}

.eligibility-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.eligibility-row strong {
  color: var(--text);
}

.eligibility-row.final {
  border-bottom: 0;
  color: var(--text);
}

.eligibility-row.final strong {
  color: var(--mint);
}

.eligibility-message {
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.eligibility-message.good {
  background: rgba(50, 245, 200, 0.1);
  border: 1px solid rgba(50, 245, 200, 0.32);
  color: var(--mint);
}

.eligibility-message.bad {
  background: rgba(255, 95, 95, 0.1);
  border: 1px solid rgba(255, 95, 95, 0.32);
  color: #ff9f9f;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.method-card {
  min-height: 76px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
}

.method-card.active {
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000000;
}

.terms-card p {
  color: var(--muted);
  line-height: 1.65;
}

.terms-card p:last-child {
  margin-bottom: 0;
}

/* Earn hub — Play & Earn / Survey & Earn showcase */
.earn-hub-intro {
  display: grid;
  gap: 18px;
}

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

.earn-showcase-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(16, 16, 16, 0.92);
  box-shadow: var(--shadow);
}

.earn-showcase-card--surveys {
  border-color: rgba(25, 195, 125, 0.28);
}

.earn-showcase-card--games {
  border-color: rgba(255, 200, 87, 0.28);
}

.earn-showcase-visual {
  padding: 16px 16px 0;
}

.earn-showcase-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 22px 24px;
}

.earn-showcase-body h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.04em;
}

.earn-showcase-body > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.earn-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.earn-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.earn-tag--mint {
  border-color: rgba(50, 245, 200, 0.35);
  color: var(--mint);
  background: rgba(50, 245, 200, 0.08);
}

.earn-tag--gold {
  border-color: rgba(255, 200, 87, 0.35);
  color: var(--gold);
  background: rgba(255, 200, 87, 0.08);
}

.earn-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.img-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--ph-bg, #141414);
  min-height: 160px;
  display: grid;
  place-items: center;
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.img-ph-hero {
  min-height: 200px;
}

.img-ph-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.img-ph-icon {
  position: relative;
  z-index: 1;
  font-size: 54px;
  line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.img-ph-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.img-ph--survey {
  --ph-bg: linear-gradient(145deg, #0f3d2e 0%, #19c37d 48%, #0a1f18 100%);
}

.img-ph--games {
  --ph-bg: linear-gradient(145deg, #3d2a0f 0%, #ffc857 52%, #1a1408 100%);
}

.earn-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.earn-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 8px;
  text-align: center;
}

.earn-thumb span {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6px 4px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
}

.earn-thumb::before {
  content: attr(data-icon);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  font-size: 28px;
  opacity: 0.95;
}

.earn-thumb--survey-1 { background: linear-gradient(160deg, #134e35, #0d2819); }
.earn-thumb--survey-2 { background: linear-gradient(160deg, #1a4d3f, #0f2d24); }
.earn-thumb--survey-3 { background: linear-gradient(160deg, #125a42, #102820); }
.earn-thumb--survey-4 { background: linear-gradient(160deg, #0f4a38, #0b221a); }

.earn-thumb--game-1 { background: linear-gradient(160deg, #5c3d0a, #2a1c06); }
.earn-thumb--game-2 { background: linear-gradient(160deg, #4a2f12, #241808); }
.earn-thumb--game-3 { background: linear-gradient(160deg, #6b4518, #2d1c09); }
.earn-thumb--game-4 { background: linear-gradient(160deg, #55320f, #221407); }

.earn-motivation-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.earn-motivation-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.earn-motivation-card .img-placeholder {
  min-height: 110px;
  margin-bottom: 12px;
  border-radius: 14px;
}

.earn-motivation-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.earn-motivation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.earn-points-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.12);
  border: 1px solid rgba(255, 200, 87, 0.28);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

/* FreeCash-style earn marketplace */
.fc-market {
  display: grid;
  gap: 24px;
}

.fc-earn-hero {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(50, 245, 200, 0.22);
  background:
    radial-gradient(circle at top right, rgba(50, 245, 200, 0.14), transparent 38%),
    radial-gradient(circle at bottom left, rgba(255, 200, 87, 0.1), transparent 32%),
    rgba(12, 12, 12, 0.94);
  box-shadow: var(--shadow);
}

.fc-earn-hero h1 {
  margin: 0 0 8px;
  max-width: 720px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.fc-earn-hero > p {
  margin: 0 0 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.fc-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fc-stat {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid var(--line);
}

.fc-stat span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fc-stat strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1;
  color: #32f5c8;
  letter-spacing: -0.04em;
}

.fc-stat small {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.fc-panel {
  padding: 20px 22px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.92);
}

.fc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.fc-section-head h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
  letter-spacing: -0.03em;
}

.fc-section-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.fc-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-filter-chip {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.fc-filter-chip:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.fc-filter-chip.active {
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000000;
  border-color: transparent;
}

.fc-offer-scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.fc-offer-scroller .fc-offer-card {
  flex: 0 0 168px;
  width: auto;
}

.fc-offer-scroller .fc-offer-card--preview {
  flex: 0 0 188px;
}

.fc-offer-card--preview {
  padding: 0;
  overflow: hidden;
}

.fc-offer-preview {
  aspect-ratio: 1;
  width: 100%;
  background: #dfe5ec;
  overflow: hidden;
}

.fc-offer-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-offer-card-body {
  padding: 12px 14px 14px;
}

.fc-offer-card--preview .fc-offer-card-body {
  background: #f4f6f9;
}

.fc-offers-loading,
.fc-offers-empty {
  grid-column: 1 / -1;
  padding: 24px 18px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
}

.fc-offers-empty p {
  margin: 0 0 12px;
  line-height: 1.5;
}

.fc-survey-hub-panel {
  border-color: rgba(50, 245, 200, 0.22);
  background:
    radial-gradient(circle at top right, rgba(50, 245, 200, 0.1), transparent 40%),
    rgba(14, 14, 14, 0.92);
}

.fc-survey-hub-panel .fc-section-head p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.55;
}

.fc-offer-scroller::-webkit-scrollbar {
  height: 6px;
}

.fc-offer-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.fc-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.fc-offer-card {
  padding: 14px;
  border-radius: 18px;
  background: #f4f6f9;
  color: #101828;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  display: block;
  width: 100%;
  font: inherit;
  text-align: left;
}

.fc-offer-card:hover,
.fc-offer-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
  outline: none;
}

.fc-offer-card.is-hidden {
  display: none;
}

.fc-offer-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 12px;
  background: linear-gradient(145deg, #ffffff, #e8edf3);
  border: 1px dashed rgba(16, 24, 40, 0.14);
  overflow: hidden;
}

.fc-offer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-offer-icon--game { background: linear-gradient(145deg, #fff4d6, #ffc857); }
.fc-offer-icon--survey { background: linear-gradient(145deg, #d9fbe8, #32f5c8); }
.fc-offer-icon--offer { background: linear-gradient(145deg, #e8edff, #8ba4ff); }

.fc-offer-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 950;
  color: #101828;
  line-height: 1.2;
}

.fc-offer-action {
  margin: 0 0 12px;
  min-height: 32px;
  font-size: 12px;
  color: #667085;
  font-weight: 700;
  line-height: 1.35;
}

.fc-offer-payout-label {
  display: block;
  font-size: 10px;
  font-weight: 950;
  color: #667085;
  letter-spacing: 0.08em;
}

.fc-offer-payout-value {
  display: block;
  font-size: 26px;
  font-weight: 950;
  color: #00a63e;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.fc-offer-payout-suffix {
  font-size: 13px;
  font-weight: 900;
}

.fc-offer-payout-dollar {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #667085;
}

.fc-offer-icon--games {
  background: linear-gradient(135deg, rgba(25, 195, 125, 0.18), rgba(255, 200, 87, 0.12));
}

.fc-offer-rating {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: #f59e0b;
}

.fc-ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fc-way-card {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  text-align: left;
  color: inherit;
  width: 100%;
  font: inherit;
}

.fc-way-visual {
  height: 140px;
  display: grid;
  place-items: center;
  font-size: 52px;
  border-bottom: 1px solid var(--line);
}

.fc-way-visual--games {
  background: linear-gradient(145deg, #3d2a0f, #ffc857 70%, #1a1408);
}

.fc-way-visual--offers {
  background: linear-gradient(145deg, #1a2548, #6f8cff 65%, #0d1224);
}

.fc-way-visual--surveys {
  background: linear-gradient(145deg, #0f3d2e, #32f5c8 68%, #0a1f18);
}

.fc-way-body {
  padding: 18px;
}

.fc-way-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.fc-way-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.fc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fc-step {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.fc-step-num {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000;
  font-size: 14px;
  font-weight: 950;
}

.fc-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.fc-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fc-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fc-trust-stat {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.fc-trust-stat strong {
  display: block;
  font-size: 22px;
  color: var(--mint);
  margin-bottom: 4px;
}

.fc-trust-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.fc-play-panel {
  margin-top: 4px;
}

.fc-play-panel .iframe-shell {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* Main site marketing (freequency.net content) */
.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 20px;
}

.site-header-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-header-nav-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.site-nav-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.site-nav-link--highlight {
  color: #000;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  font-weight: 950;
}

.site-nav-link--highlight:hover,
.site-nav-link--highlight:focus-visible {
  color: #000;
  filter: brightness(1.05);
}

.site-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-mobile-drawer-section {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-mobile-drawer-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.site-mobile-drawer-label {
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  padding: 4px 8px 6px;
}

.site-mobile-drawer-section--actions .site-nav-link--cta {
  color: var(--text);
  font-weight: 950;
  background: rgba(255, 255, 255, 0.06);
}

.site-mobile-drawer-section--legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-view-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.site-view-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.site-view-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000;
}

.site-mobile-menu-btn {
  display: none;
  min-height: 42px;
  min-width: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.site-mobile-drawer {
  display: grid;
  gap: 6px;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.95);
}

.tab-nav--wide {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  overflow-x: auto;
}

.auth-layout--home {
  margin-bottom: 8px;
}

.auth-copy--compact {
  min-height: auto;
  padding: clamp(20px, 4vw, 36px);
}

.site-marketing-root {
  display: grid;
  gap: 18px;
}

.site-hero {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(50, 245, 200, 0.2);
  background:
    radial-gradient(circle at top right, rgba(50, 245, 200, 0.12), transparent 40%),
    rgba(12, 12, 12, 0.94);
  text-align: center;
}

.site-hero-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 28px;
  transform: none;
}

.site-hero--partner {
  border-color: rgba(6, 182, 212, 0.25);
  background:
    radial-gradient(circle at top, rgba(6, 182, 212, 0.12), transparent 42%),
    rgba(12, 12, 12, 0.94);
}

.site-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(50, 245, 200, 0.28);
  background: rgba(50, 245, 200, 0.08);
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.site-hero-badge--cyan {
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
}

.site-hero-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.site-hero-title span {
  color: var(--mint);
}

.site-hero--partner .site-hero-title span {
  color: #67e8f9;
}

.site-hero-lead {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.site-hero-actions,
.site-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.site-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
}

.site-store-btn--apple {
  border-color: rgba(255, 255, 255, 0.2);
  background: #111111;
}

.site-store-btn--google {
  border-color: rgba(50, 245, 200, 0.28);
  background: rgba(50, 245, 200, 0.1);
  color: var(--mint);
}

.site-hero-app-note,
.site-footer-app-note {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-store-row--footer {
  justify-content: flex-start;
  margin-top: 12px;
  margin-bottom: 0;
}

.app-download-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(50, 245, 200, 0.28);
  background:
    linear-gradient(135deg, rgba(50, 245, 200, 0.12), rgba(255, 200, 87, 0.1)),
    rgba(12, 12, 12, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.app-download-banner--compact {
  margin-top: 18px;
  grid-template-columns: 1fr;
}

.app-download-banner__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #111111;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-download-banner__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.app-download-banner__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.app-download-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.app-store-btn--apple {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.22);
}

.app-store-btn--google {
  background: rgba(50, 245, 200, 0.12);
  border-color: rgba(50, 245, 200, 0.3);
  color: var(--mint);
}

.app-store-btn:hover,
.app-store-btn:focus-visible,
.site-store-btn:hover,
.site-store-btn:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

@media (max-width: 760px) {
  .app-download-banner {
    grid-template-columns: 1fr;
  }

  .app-download-banner__actions {
    justify-content: flex-start;
  }
}

.site-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-hero-stats strong {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 4px;
}

.site-hero-stats span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.free-wireless-spotlight {
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 200, 87, 0.45);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.22), transparent 42%),
    radial-gradient(circle at bottom right, rgba(25, 195, 125, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(28, 24, 12, 0.98), rgba(12, 18, 14, 0.98));
  box-shadow:
    0 24px 70px rgba(255, 200, 87, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.free-wireless-spotlight--compact {
  margin-bottom: 14px;
}

.free-wireless-spotlight__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.free-wireless-spotlight__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 87, 0.55);
  background: rgba(255, 200, 87, 0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.free-wireless-spotlight__headline {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff7e8;
}

.free-wireless-spotlight__lead {
  margin: 0 auto 18px;
  max-width: 780px;
  color: rgba(245, 247, 251, 0.88);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.65;
}

.free-wireless-spotlight__lead strong {
  color: var(--gold);
  font-weight: 900;
}

.free-wireless-spotlight__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.free-wireless-spotlight__chips li {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(25, 195, 125, 0.35);
  background: rgba(25, 195, 125, 0.1);
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.free-wireless-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}

.free-wireless-spotlight__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.free-wireless-spotlight__stats div {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}

.free-wireless-spotlight__stats strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.free-wireless-spotlight__stats span {
  display: block;
  margin-top: 6px;
  color: rgba(245, 247, 251, 0.72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.free-wireless-spotlight__points {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 auto 16px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.free-wireless-spotlight__points span {
  color: rgba(245, 247, 251, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.free-wireless-spotlight__points strong {
  color: #fff;
  font-size: 28px;
  font-weight: 950;
}

.free-wireless-spotlight__cta {
  min-width: min(100%, 280px);
  margin-bottom: 12px;
}

.site-nav-link--wireless {
  border-color: rgba(255, 200, 87, 0.35);
  background: rgba(255, 200, 87, 0.1);
  color: var(--gold);
}

.info-grid--wireless {
  margin-top: 18px;
}

.info-card--highlight {
  border-color: rgba(255, 200, 87, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 200, 87, 0.08), rgba(16, 16, 16, 0.92));
}

.terms-card--wireless {
  margin-top: 18px;
  border-color: rgba(25, 195, 125, 0.22);
}

.terms-card--wireless strong {
  color: var(--mint);
}

.site-panel {
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.92);
}

.site-panel--muted {
  background: rgba(10, 10, 10, 0.88);
}

.site-section-head {
  margin-bottom: 18px;
}

.site-section-head h2,
.site-h2 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -0.04em;
}

.site-section-head p,
.site-copy {
  color: var(--muted);
  line-height: 1.55;
  max-width: 720px;
}

.site-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.site-mission-image {
  width: 100%;
  min-height: 220px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: block;
  object-fit: cover;
  background: #080808;
}

.site-check-list {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-check-list li {
  padding-left: 22px;
  position: relative;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.site-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 950;
}

.site-quote {
  margin-top: 14px;
  color: var(--mint);
  font-weight: 900;
  font-style: italic;
}

.site-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.site-feature-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.site-feature-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.site-feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.site-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-compare-list {
  display: grid;
  gap: 12px;
}

.site-compare-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.site-compare-cat {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-compare-row small {
  display: block;
  color: var(--soft);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.site-compare-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.site-network-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.site-network-card h3 {
  margin: 10px 0 8px;
}

.site-network-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.site-network-card ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
}

.site-net--pink { border-color: rgba(236, 72, 153, 0.35); }
.site-net--blue { border-color: rgba(59, 130, 246, 0.35); }
.site-net--red { border-color: rgba(239, 68, 68, 0.35); }

.site-network-icon {
  font-size: 28px;
}

.site-calculator {
  max-width: 720px;
}

.site-calculator input[type="range"] {
  width: 100%;
  margin: 10px 0 18px;
}

.site-cal-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.site-cal-result {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.site-cal-result.is-good {
  border-color: rgba(50, 245, 200, 0.35);
  background: rgba(50, 245, 200, 0.06);
}

.site-cal-result.is-warn {
  border-color: rgba(255, 200, 87, 0.35);
  background: rgba(255, 200, 87, 0.06);
}

.site-cal-result-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.site-cal-result h3 {
  margin: 4px 0 0;
}

.site-cal-lines {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
}

.site-cal-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.site-faq-list {
  display: grid;
  gap: 12px;
}

.site-faq-item {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.site-faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.site-faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.site-simulator {
  display: grid;
  gap: 14px;
}

.site-sim-top,
.site-sim-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.site-sim-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.site-sim-metric {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.site-sim-metric span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-sim-metric strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.site-sim-metric small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.site-sim-networks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.site-net-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
}

.site-net-chip.active {
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #000;
  border-color: transparent;
}

.site-sim-tasks {
  display: grid;
  gap: 10px;
}

.site-sim-task {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.site-sim-task strong {
  display: block;
  margin-bottom: 2px;
}

.site-sim-task p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-sim-task-icon {
  font-size: 24px;
}

.site-flywheel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}

.site-flywheel-steps {
  display: grid;
  gap: 8px;
}

.site-flywheel-btn {
  text-align: left;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-flywheel-btn.active {
  border-color: rgba(6, 182, 212, 0.45);
  background: rgba(6, 182, 212, 0.08);
}

.site-flywheel-btn span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.site-flywheel-detail {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.site-flywheel-actor {
  color: #67e8f9;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.site-revenue-grid {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.site-revenue-row small {
  color: var(--muted);
  font-size: 11px;
}

.site-revenue-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.site-revenue-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 4px;
}

.site-revenue-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--gold));
}

.site-footer {
  margin-top: 8px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.95);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 22px;
}

.site-footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.site-footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.site-footer-link:hover {
  color: var(--mint);
}

.site-footer-copy {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

.surveys-back-link {
  color: var(--mint);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 960px) {
  .auth-layout,
  .hero-card {
    grid-template-columns: 1fr;
  }

  .auth-copy {
    min-height: auto;
  }

  .feature-grid,
  .info-grid,
  .account-strip,
  .wallet-metrics,
  .breakdown-grid,
  .rewards-grid,
  .referral-hero,
  .referral-value-row,
  .referral-explain-grid,
  .streak-hero-card {
    grid-template-columns: 1fr;
  }

  .gold-card,
  .reward-launch-card,
  .page-heading,
  .wireless-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-image-actions {
    grid-template-columns: 1fr;
  }

  .earn-launch-panel,
  .fc-earn-cta-panel {
    grid-template-columns: 1fr;
  }

  .earn-showcase-grid,
  .earn-motivation-strip,
  .earn-thumb-row {
    grid-template-columns: 1fr;
  }

  .earn-thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-stat-row,
  .fc-ways-grid,
  .fc-steps,
  .fc-trust-row,
  .free-wireless-spotlight__stats {
    grid-template-columns: 1fr;
  }

  .fc-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-header-nav,
  .site-view-toggle {
    display: none;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .site-header-actions {
    margin-left: auto;
  }

  .site-mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-hero-stats,
  .site-feature-grid,
  .site-network-grid,
  .site-mission-grid,
  .site-compare-row,
  .site-flywheel,
  .site-sim-metrics,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .tab-nav--wide {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .tab-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .fit-btn,
  .black-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 22px, 1220px);
    padding-top: 12px;
  }

  .top-nav {
    align-items: flex-start;
  }

  .brand-tagline {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .iframe-shell {
    height: 760px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }
}
/* Auth mode fixes: signup + reset-password forms */
.auth-card form.hidden {
  display: none !important;
}

.auth-card .text-btn:hover {
  color: var(--gold);
}

.wireless-goal-card {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(16, 16, 16, 0.92);
  box-shadow: var(--shadow);
}

.wireless-goal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.wireless-goal-head h2 {
  margin: 6px 0 0;
  font-size: 1.25rem;
}

.wireless-goal-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(25, 195, 125, 0.12);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wireless-goal-period {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.wireless-goal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.wireless-goal-label {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.wireless-goal-fraction {
  color: var(--mint);
  font-size: 0.92rem;
  font-weight: 900;
}

.wireless-goal-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wireless-goal-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #19c37d, #8ef0c1);
  transition: width 0.35s ease;
}

.wireless-goal-message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.wireless-goal-message.is-success {
  color: var(--mint);
}

.wireless-goal-reset {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

.wireless-fine-print {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.82;
}

.wireless-fine-print--hero {
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.72);
}

/* Refer-a-friend promo banner */
.refer-friend-promo {
  position: relative;
  padding: 22px 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.18), rgba(50, 245, 200, 0.12));
  border: 1px solid rgba(255, 200, 87, 0.28);
  box-shadow: 0 18px 50px rgba(255, 200, 87, 0.1);
  overflow: hidden;
}

.refer-friend-promo::before {
  content: "";
  position: absolute;
  inset: -30% 40% auto -20%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.22), transparent 62%);
  pointer-events: none;
}

.refer-friend-promo-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #111111;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.refer-friend-promo-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.refer-friend-promo-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.refer-friend-promo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
  max-width: 52ch;
}

.refer-friend-promo-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  max-width: 320px;
}

.refer-friend-promo-values div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.refer-friend-promo-values span,
.refer-friend-promo-values small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.refer-friend-promo-values strong {
  display: block;
  margin: 4px 0 2px;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
}

.refer-friend-promo-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.refer-friend-promo-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.refer-friend-promo-meta .refer-friend-promo-code {
  color: var(--mint);
}

/* Hot referral offer card */
.fc-offer-card--hot {
  position: relative;
  background: linear-gradient(160deg, #fff8e8 0%, #f4f6f9 42%);
  border: 1px solid rgba(255, 200, 87, 0.45);
  box-shadow: 0 10px 28px rgba(255, 200, 87, 0.18);
}

.fc-offer-card--hot:hover,
.fc-offer-card--hot:focus-visible {
  box-shadow: 0 16px 40px rgba(255, 200, 87, 0.28);
}

.fc-offer-hot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #111111;
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Profile tab */
.profile-hero-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.profile-hero-card h1 {
  margin: 8px 0 6px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.profile-user-email {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.profile-user-id {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.profile-stat-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.profile-stat-card span,
.profile-stat-card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-stat-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.2;
  word-break: break-word;
}

.profile-links-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.profile-links-card h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.profile-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.profile-link-btn {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.profile-link-btn:hover,
.profile-link-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 200, 87, 0.35);
  outline: none;
}

.profile-link-btn--wireless {
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.14), rgba(50, 245, 200, 0.1));
}

.profile-referral-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.profile-referral-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--mint);
  font-size: 1.2rem;
  font-weight: 950;
  word-break: break-all;
}

.profile-logout-row {
  display: flex;
  justify-content: flex-start;
}

.referral-value-row--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Portal mobile bottom nav */
.portal-mobile-nav {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 40;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
  border-radius: 20px;
  background: rgba(10, 14, 20, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.portal-mobile-nav .tab-btn {
  min-height: 44px;
  font-size: 0.78rem;
}

@media (max-width: 960px) {
  .refer-friend-promo-inner,
  .profile-stats-grid,
  .profile-links-grid,
  .referral-value-row--triple {
    grid-template-columns: 1fr;
  }

  .portal-mobile-nav:not(.hidden) {
    display: grid;
  }

  .page-shell:has(.portal-mobile-nav:not(.hidden)) {
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

/* ==========================================================================
   Phone-optimized layout — keeps the site fitting the screen (no zoom-out)
   ========================================================================== */
@media (max-width: 600px) {
  /* Never allow content to push wider than the screen */
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  img,
  iframe,
  video,
  canvas {
    max-width: 100%;
  }

  :root {
    --radius-xl: 18px;
    --radius-lg: 14px;
  }

  .page-shell {
    width: min(100% - 20px, 1220px);
    padding: 10px 0 40px;
  }

  /* Scale down the oversized display headings */
  .auth-copy h1,
  .hero-content h1,
  .page-heading h1,
  .wireless-hero h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .auth-copy > p,
  .hero-content > p,
  .page-heading p,
  .wireless-hero p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  /* Tighten large card padding so panels don't dominate the viewport */
  .auth-card,
  .hero-card,
  .wallet-card,
  .gold-card,
  .fc-panel,
  .streak-hero-card,
  .reward-action-card,
  .referral-share-panel,
  .refer-friend-promo,
  .profile-hero-card,
  .wireless-goal-card {
    padding: 16px !important;
  }

  .auth-copy--compact {
    padding: 4px 0 0;
  }

  /* Single-column offers and stat grids on phones */
  .fc-offer-grid,
  .earn-thumb-row {
    grid-template-columns: 1fr;
  }

  .balance-value,
  .wallet-value {
    font-size: 2.4rem;
  }

  /* Reward center iframe: fit phone height and never overflow */
  .iframe-shell,
  .fc-play-panel .iframe-shell {
    height: min(80vh, 620px);
  }

  /* Long referral links/codes must wrap, not force width */
  .copy-code-box {
    flex-wrap: wrap;
  }

  .copy-code-box span {
    white-space: normal;
    word-break: break-all;
  }

  /* Free wireless spotlight headline */
  .free-wireless-spotlight__headline {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.1;
  }

  .free-wireless-spotlight__lead {
    font-size: 15px;
  }

  /* Brand + header sizing */
  .brand-name {
    font-size: 1.1rem;
  }

  .site-header-actions {
    gap: 6px;
  }

  .start-earning-btn,
  #signInBtn,
  #startEarningNavBtn {
    font-size: 13px;
  }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .auth-copy h1,
  .hero-content h1,
  .page-heading h1,
  .wireless-hero h1 {
    font-size: 24px;
  }

  .balance-value,
  .wallet-value {
    font-size: 2rem;
  }
}
