@font-face {
  font-family: 'Euclid Circular A';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('font/EuclidCircularA-Regular.woff2') format('woff2'),
       url('font/EuclidCircularA-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Euclid Circular A';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('font/EuclidCircularA-Medium.woff2') format('woff2'),
       url('font/EuclidCircularA-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Euclid Circular A';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('font/EuclidCircularA-SemiBold.woff2') format('woff2'),
       url('font/EuclidCircularA-SemiBold.woff') format('woff');
}

@font-face {
  font-family: 'Euclid Circular A';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('font/EuclidCircularA-Bold.woff2') format('woff2'),
       url('font/EuclidCircularA-Bold.woff') format('woff');
}

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

body {
  font-family: 'Euclid Circular A', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0e0c;
  color: #ffffff;
  line-height: 1.6;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 14, 12, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.logo img {
  width: 30px;
  height: 30px;
}

.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-links {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.header-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}

.header-links a:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.06);
}

.sign-up-btn {
  background-color: #20d48f;
  color: #0a0e0c;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.sign-up-btn:hover {
  background-color: #1bc386;
}

/* Hero */
.hero {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0e0c 0%, #0f1814 100%);
}

.hero .hero-fade {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 110px;
  background: linear-gradient(180deg, rgba(10,14,12,0) 0%, #0a0e0c 100%);
  pointer-events: none;
  z-index: 3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(32,212,143,0.18) 0%, rgba(32,212,143,0) 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(32,212,143,0.08) 0%, rgba(32,212,143,0) 70%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 9px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-mascot {
  position: absolute;
  width: 110px;
  height: auto;
  z-index: 1;
  opacity: 0.95;
  animation: float 5s ease-in-out infinite;
}

.hero-mascot.left {
  left: 6%;
  top: 30%;
  transform: rotate(-12deg);
}

.hero-mascot.right {
  right: 6%;
  top: 24%;
  width: 130px;
  animation-delay: 1.5s;
}

.hero h1 {
  font-size: 62px;
  margin-bottom: 18px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero .accent {
  color: #20d48f;
}

.hero p {
  font-size: 17px;
  color: #a8afa8;
  margin-bottom: 32px;
}

/* Hero two-column layout (copy + sign-up card) */
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.hero-copy p { margin-bottom: 0; }

.hero-signup { display: flex; justify-content: flex-end; }

.signup-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, rgba(17,24,19,0) 0%, #0c1310 100%), #11181a;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 30px 28px;
  text-align: center;
  box-shadow: 0 34px 80px rgba(0,0,0,0.55);
}

.signup-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
}

.signup-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a0e0c;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0 14px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.signup-field:focus-within { border-color: #20d48f; }
.signup-field-ico { color: #6b726a; display: flex; flex-shrink: 0; }

.signup-field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 0;
}
.signup-field input::placeholder { color: #6b726a; }
.signup-field input:focus { outline: none; }

.pass-toggle {
  background: none;
  border: 0;
  padding: 4px;
  margin: 0;
  min-height: 0;
  color: #6b726a;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
}
.pass-toggle:hover { color: #a8afa8; }
.pass-toggle .eye-hide { display: none; }
.pass-toggle[aria-pressed="true"] .eye-show { display: none; }
.pass-toggle[aria-pressed="true"] .eye-hide { display: block; }

/* Progressive reveal: password + terms appear once the user starts signing up */
.signup-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.signup-card.revealed .signup-reveal {
  max-height: 320px;
  opacity: 1;
}

.signup-tos {
  font-size: 12px;
  color: #8a9086;
  line-height: 1.55;
  text-align: left;
  margin: 2px 0 16px;
}
.signup-tos a { color: #20d48f; text-decoration: none; }
.signup-tos a:hover { text-decoration: underline; }

.signup-go {
  width: 100%;
  border: none;
  padding: 14px;
  font-size: 15px;
}

.signup-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b726a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 18px 0;
}
.signup-or::before, .signup-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 24px;
  padding: 13px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: #fff;
  text-decoration: none;
}

.social-btn:hover { text-decoration: none; }
.social-btn.google { background: #fff; color: #1a2440; border-color: #fff; }
.social-btn.google:hover { background: #f1f2f4; }
.social-btn img { display: block; }

.signup-proof { margin-top: 16px; font-size: 13px; color: #8a9086; }
.signup-card .auth-msg { text-align: left; margin-top: 4px; }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-signup { justify-content: center; }
  .signup-card { margin: 0 auto; }
}

.cta-btn {
  background-color: #20d48f;
  color: #0a0e0c;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #1bc386;
}

/* Features Section */
.features {
  padding: 90px 24px;
  background-color: #0a0e0c;
}

.features-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}

.features-head .eyebrow {
  color: #20d48f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.features-head h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.features-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  background: linear-gradient(180deg, #11181300 0%, #0c1310 100%), #0d130f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), border-color 0.35s, box-shadow 0.35s;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(32,212,143,0.16) 0%, rgba(32,212,143,0) 70%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(32,212,143,0.35);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(32,212,143,0.1);
}

/* header zone holds a phone screenshot rising from the bottom */
.feature-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* phone screenshot mockup */
.app-phone {
  position: relative;
  width: 158px;
  height: 178px;
  background: #0c0f12;
  border: 4px solid #11151a;
  border-bottom: none;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.5), 0 14px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
}

.feature-card:hover .app-phone { transform: translateY(-8px); }

.app-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #11151a;
  border-radius: 3px;
  z-index: 5;
}

.app-screen { position: absolute; inset: 0; }

/* game screenshot */
.scr-game {
  background: linear-gradient(160deg, #3a6b35 0%, #1d3a1a 60%, #122610 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

/* real game screenshot, cropped to fill (not stretched), anchored to the top */
.scr-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.scr-game .hud {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.scr-game .hud .pill {
  background: rgba(0,0,0,0.45);
  padding: 2px 7px;
  border-radius: 8px;
}

/* offerwall screenshot */
.scr-offers {
  background: #0c0f12;
  padding: 14px 11px;
}

.scr-offers .offers-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.offer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #161b20;
  border-radius: 9px;
  padding: 8px;
  margin-bottom: 9px;
}

.offer-ico {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

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

.offer-name {
  font-size: 8.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-step {
  font-size: 7px;
  color: #8893a7;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-reward {
  font-size: 8px;
  font-weight: 800;
  color: #20d48f;
  background: rgba(32,212,143,0.12);
  border-radius: 6px;
  padding: 2px 5px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* finance / invest screenshot */
.scr-finance {
  background: #f3f5f7;
  padding: 16px 12px;
}

.scr-finance .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.scr-finance .avatar {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg,#20d48f,#0a8f5e);
}

.scr-finance .brand { font-size: 11px; font-weight: 800; color: #1a2440; letter-spacing: 0.5px; }

.scr-finance .cols { display: flex; gap: 8px; }
.scr-finance .col { flex: 1; }
.scr-finance .col .k { font-size: 7px; color: #8893a7; font-weight: 700; }
.scr-finance .col .v { font-size: 11px; color: #1a2440; font-weight: 800; }
.scr-finance .col .s { font-size: 6px; color: #8893a7; }

.scr-finance .donut {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 12px auto 0;
  background: conic-gradient(#1f6fe0 0% 35%, #20d48f 35% 60%, #e3e8ef 60% 100%);
  -webkit-mask: radial-gradient(circle 18px at center, transparent 98%, #000 100%);
  mask: radial-gradient(circle 18px at center, transparent 98%, #000 100%);
}

.scr-finance .miniCard {
  margin-top: 12px;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, #1f6fe0, #123e82);
}

/* quiz / survey screenshot */
.scr-quiz {
  background: #0c0f12;
  padding: 14px 12px;
}

.scr-quiz .q {
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.scr-quiz .opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  background: #161b20;
  border-radius: 7px;
  margin-bottom: 6px;
}

.scr-quiz .opt .dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid #3a434d;
  flex-shrink: 0;
}

.scr-quiz .opt.sel .dot { border-color: #20d48f; background: #20d48f; }
.scr-quiz .opt .lbl { font-size: 8px; color: #c2c9d2; font-weight: 600; }

/* floating app-icon badges */
.app-badge {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  z-index: 6;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
}

.app-badge.b1 { top: 44px; left: 34px; transform: rotate(-6deg); }
.app-badge.b2 { top: 70px; right: 30px; transform: rotate(6deg); }
.feature-card:hover .app-badge.b1 { transform: rotate(-6deg) translateY(-6px); }
.feature-card:hover .app-badge.b2 { transform: rotate(6deg) translateY(-6px); }

.app-badge.img-badge { background: #fff; overflow: hidden; }
.app-badge.img-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.app-badge.game { background: linear-gradient(135deg,#ff8a3d,#e0531a); }
.app-badge.white { background: #fff; color: #1a2440; font-size: 13px; }
.app-badge.green { background: linear-gradient(135deg,#2ecc71,#16a34a); }
.app-badge.orange { background: linear-gradient(135deg,#ff7a3d,#e8431a); }
.app-badge.blue { background: linear-gradient(135deg,#2aa6e0,#1c6fb0); }
.feature-body {
  position: relative;
  padding: 8px 28px 32px;
  text-align: center;
}

.feature-divider {
  width: 40px;
  height: 3px;
  background: #20d48f;
  border-radius: 3px;
  margin: 0 auto 20px;
}

.feature-label {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  color: #8a9086;
  margin-bottom: 18px;
}

.feature-price {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #b9f5da 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-price .label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #20d48f;
  -webkit-text-fill-color: #20d48f;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Cash Out Section */
.cashout {
  padding: 80px 24px;
  background-color: #0f1814;
}

.cashout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cashout-text h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cashout-text h2 .accent {
  color: #20d48f;
}

.cashout-text p {
  font-size: 15px;
  color: #a8afa8;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 460px;
}

.cashout-btn {
  background-color: #20d48f;
  color: #0a0e0c;
  border: none;
  padding: 14px 32px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.cashout-btn:hover {
  background-color: #1bc386;
}

.cashout-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(45deg, rgba(32,212,143,0.08) 0px, rgba(32,212,143,0.08) 10px, transparent 10px, transparent 20px),
    linear-gradient(135deg, #141a15 0%, #0c130d 100%);
  border: 1px solid rgba(32,212,143,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #6b726a;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  text-align: center;
}

.mascot-placeholder .big {
  font-size: 56px;
}

.cashout-mascot {
  width: 300px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(32,212,143,0.25));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.brand-chip {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-chip.amazon {
  top: 10px;
  left: 30px;
  color: #131a22;
}

.brand-chip.amazon .arrow { color: #ff9900; }

.brand-chip.paypal {
  top: 60px;
  right: 20px;
  color: #003087;
}

.brand-chip.paypal .pp2 { color: #009cde; }

.coin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe259, #f5a623);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.coin.c1 { top: 95px; left: 52%; }
.coin.c2 { top: 130px; left: 48%; }
.coin.c3 { top: 165px; left: 50%; }

/* Rewards Section */
.rewards {
  padding: 80px 24px;
  background-color: #0f1814;
}

.rewards-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.rewards-eyebrow {
  color: #20d48f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.rewards-title-lg {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.rewards-desc {
  font-size: 16px;
  color: #a8afa8;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

/* layered payout cards */
.payouts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payout-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(145deg, #18211c 0%, #0e150f 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), border-color 0.35s;
}

.payout-card:nth-child(1) { margin-left: 0; }
.payout-card:nth-child(2) { margin-left: 28px; }
.payout-card:nth-child(3) { margin-left: 56px; }

.payout-card:hover {
  transform: translateX(6px);
  border-color: rgba(32,212,143,0.4);
}

.payout-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payout-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

/* Wide wordmark logos (e.g. Amazon) use more horizontal room */
.payout-logo.wordmark img {
  width: 80%;
  height: auto;
}

.payout-logo.light { background: #fff; }

.payout-info { flex: 1; }
.payout-name { font-size: 16px; font-weight: 700; color: #fff; }
.payout-sub { font-size: 12px; color: #8a9086; }

.payout-tag {
  font-size: 11px;
  font-weight: 700;
  color: #20d48f;
  background: rgba(32,212,143,0.12);
  border: 1px solid rgba(32,212,143,0.25);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.rewards-piggy {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rewards-piggy img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(32,212,143,0.25));
  animation: float 4.5s ease-in-out infinite;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  color: #a8afa8;
  text-align: center;
  margin-bottom: 48px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
}

.reward-item {
  background-color: #1a201c;
  border: 1px solid rgba(32,212,143,0.15);
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.reward-item:hover {
  border-color: rgba(32,212,143,0.4);
  background-color: #202724;
}

.reward-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.reward-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.reward-type {
  font-size: 11px;
  color: #8a9086;
}

/* How It Works Section */
.how {
  padding: 90px 24px;
  background-color: #0a0e0c;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.how-head .eyebrow {
  color: #20d48f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.how-head h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.how-sub {
  font-size: 16px;
  color: #a8afa8;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  background: linear-gradient(180deg, rgba(17,24,19,0) 0%, #0c1310 100%), #0d130f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 34px 28px 30px;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), border-color 0.35s, box-shadow 0.35s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(32,212,143,0.35);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.step-num {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: rgba(32,212,143,0.18);
  letter-spacing: -1px;
}

.step-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(32,212,143,0.25));
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #8a9086;
  line-height: 1.6;
}

/* Inline line-icons (replace emoji throughout) */
.ico {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.sb-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* connector between steps on desktop */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 78px;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(32,212,143,0.45), rgba(32,212,143,0));
  z-index: 1;
}

.how-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #10180f 0%, #0c130d 100%);
  border: 1px solid rgba(32,212,143,0.18);
  border-radius: 20px;
  padding: 26px 36px;
}

.how-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how-cta-text strong {
  font-size: 22px;
  font-weight: 800;
}

.how-cta-text span {
  font-size: 14px;
  color: #a8afa8;
}

/* Phone mockup */
.phone {
  width: 240px;
  height: 360px;
  background: #000;
  border-radius: 28px 28px 0 0;
  border: 2px solid #2a322d;
  border-bottom: none;
  padding: 12px 10px 0;
  overflow: hidden;
  position: relative;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #fff;
  padding: 0 8px 8px;
  font-weight: 600;
}

.phone-screen {
  background: #0a0e0c;
  border-radius: 16px 16px 0 0;
  padding: 12px;
  height: 100%;
}

.phone-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.game-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #141a15;
  border-radius: 10px;
  margin-bottom: 8px;
}

.game-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.game-row-info {
  flex: 1;
  min-width: 0;
}

.game-row-name {
  font-size: 11px;
  font-weight: 600;
}

.game-row-type {
  font-size: 9px;
  color: #8a9086;
}

.game-row-price {
  font-size: 11px;
  font-weight: 700;
  color: #20d48f;
  white-space: nowrap;
}

.survey-screen-header {
  background: #141a15;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.survey-screen-header .lvl {
  font-size: 9px;
  color: #8a9086;
  margin-bottom: 6px;
}

.progress-bar {
  height: 5px;
  background: #2a322d;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: #20d48f;
}

.claim-btn {
  background: #20d48f;
  color: #0a0e0c;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 7px;
  border-radius: 8px;
}

/* Earn Anytime Section */
.anytime {
  padding: 80px 24px;
  background-color: #0a0e0c;
}

.anytime-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.anytime-phones {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 420px;
}

.anytime-phones .phone {
  position: absolute;
}

.anytime-phones .phone.back {
  transform: rotate(-8deg) translateX(-50px);
  z-index: 1;
  opacity: 0.85;
}

.anytime-phones .phone.front {
  transform: rotate(4deg) translateX(50px);
  z-index: 2;
}

.kaching {
  text-align: center;
  padding-top: 30px;
}

.kaching .emoji {
  font-size: 56px;
}

.kaching .title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 12px;
}

.kaching .sub {
  font-size: 10px;
  color: #8a9086;
  margin-bottom: 8px;
}

.kaching .amount {
  font-size: 32px;
  font-weight: 800;
  color: #20d48f;
}

.kaching-btn {
  background: #20d48f;
  color: #0a0e0c;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-top: 40px;
}

.anytime-text h2 {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
}

.anytime-text h2 .accent { color: #20d48f; }

.anytime-text p {
  font-size: 16px;
  color: #a8afa8;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.store-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.store-badge {
  text-align: center;
  text-decoration: none;
}

.store-badge .badge {
  background: #141a15;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: border-color 0.25s, transform 0.25s;
}

.store-badge:hover .badge {
  border-color: rgba(32,212,143,0.45);
  transform: translateY(-2px);
}

.store-badge .badge .ico {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.store-badge .badge .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-badge .badge .small {
  font-size: 9px;
  font-weight: 500;
  color: #a8afa8;
  display: block;
  text-align: left;
}

.store-badge .stars {
  color: #ffc83d;
  font-size: 13px;
  margin-top: 8px;
}

/* Opinion Matters Section */
.opinion {
  padding: 80px 24px;
  background-color: #0f1814;
}

.opinion-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.opinion-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.opinion-arc {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 22px solid #20d48f;
  border-radius: 50%;
  border-right-color: transparent;
}

.opinion-arc.top { top: 0; right: 60px; transform: rotate(-45deg); }
.opinion-arc.bottom { bottom: 0; left: 40px; transform: rotate(135deg); }

.browser-window {
  background: linear-gradient(180deg, rgba(17,24,19,0) 0%, #0c1310 100%), #0d130f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.browser-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 11px 14px;
  display: flex;
  gap: 7px;
}

.browser-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.browser-bar i:nth-child(1) { background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #ffbd2e; }
.browser-bar i:nth-child(3) { background: #28c840; }

.browser-body {
  padding: 32px 28px;
}

.browser-body h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.survey-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.survey-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c2c9d2;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.survey-opt .box {
  width: 20px;
  height: 20px;
  border: 2px solid #20d48f;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20d48f;
  font-size: 13px;
}

.opinion-text h2 {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
}

.opinion-text h2 .accent { color: #20d48f; }

.opinion-text p {
  font-size: 16px;
  color: #a8afa8;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.opinion-text p strong { color: #fff; }

.opinion-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #20d48f;
  padding: 14px 32px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.opinion-btn:hover {
  background: #20d48f;
  color: #0a0e0c;
}

/* FAQ */
.faq {
  padding: 80px 24px;
  background-color: #0f1814;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 16px;
  color: #a8afa8;
}

.faq-btn {
  background-color: #20d48f;
  color: #0a0e0c;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 4px 0;
}

.faq-toggle {
  color: #20d48f;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  color: #a8afa8;
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background-color: #0a0e0c;
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px 48px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #8a9086;
  text-decoration: none;
  font-size: 12px;
}

.footer-col a:hover {
  color: #20d48f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: #8a9086;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.footer-socials img {
  display: block;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inline-ico {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 46px;
  }

  .section-title {
    font-size: 28px;
  }

  .how-head h2 {
    font-size: 28px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .how-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cashout-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .rewards-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .rewards-title-lg {
    font-size: 30px;
  }

  .rewards-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .payout-card:nth-child(2),
  .payout-card:nth-child(3) {
    margin-left: 0;
  }

  .payout-card { text-align: left; }

  .rewards-piggy { order: -1; }

  .rewards-piggy img { max-width: 240px; }

  .cashout-text h2 {
    font-size: 28px;
  }

  .cashout-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .cashout-visual {
    order: -1;
  }

  .anytime-inner,
  .opinion-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .anytime-text h2,
  .opinion-text h2 {
    font-size: 28px;
  }

  .anytime-text p,
  .opinion-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .store-badges {
    justify-content: center;
  }

  .anytime-phones {
    min-height: 380px;
  }

  .stats {
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .header-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero .hero-fade {
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
  }

  header {
    padding: 12px 16px;
  }

  .logo {
    font-size: 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  .hero-mascot {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .features {
    padding: 40px 16px;
  }

  .rewards {
    padding: 40px 16px;
  }

  .income {
    padding: 40px 16px;
  }

  .faq {
    padding: 40px 16px;
  }

  footer {
    padding: 40px 16px 20px;
  }

  .rewards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .reward-item {
    padding: 12px 4px;
  }

  .reward-icon {
    font-size: 24px;
  }

  .reward-name {
    font-size: 10px;
  }
}

/* ---- Global UX / accessibility ---- */

/* Smooth in-page navigation; offset anchors so the sticky header doesn't cover them */
html {
  scroll-behavior: smooth;
}

:where(section[id], main[id]) {
  scroll-margin-top: 84px;
}

/* Skip link — keyboard users can jump straight to content (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: #20d48f;
  color: #0a0e0c;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Visible focus ring for keyboard navigation (WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid #20d48f;
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Comfortable, consistent tap targets (Fitts's Law) */
button,
.store-badge,
.header-links a,
.footer-socials a {
  min-height: 44px;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

/* Respect users who prefer reduced motion (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   Auth modal, header sign-in, and inner content pages
   ============================================================ */

/* Secondary header button */
.sign-in-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background-color 0.2s;
}

.sign-in-btn:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}

/* anchors styled as buttons */
a.cta-btn { text-decoration: none; }

/* ---- Modal ---- */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  overflow-y: auto;
  padding: 24px;
}

.modal[hidden] { display: none; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 5, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 420px;
  background:
    radial-gradient(135% 80% at 50% -8%, rgba(32,212,143,0.18) 0%, rgba(32,212,143,0) 55%),
    linear-gradient(180deg, #131c1d 0%, #0a100f 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 30px 30px 26px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: modal-in 0.28s cubic-bezier(.2,.7,.3,1);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  min-height: 38px;
  flex: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #c2c9c2;
  cursor: pointer;
}

.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.auth-head { text-align: center; margin-bottom: 22px; }

.auth-logo {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 18px rgba(32,212,143,0.3));
}

.auth-title { font-size: 25px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.auth-sub { color: #a8afa8; font-size: 14px; }

/* modal Google button sits on top, full width */
.modal-card .social-btn { margin-bottom: 0; }
.modal-card .social-btn svg { display: block; }
.modal-card .signup-or { margin: 18px 0; }

.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-forgot {
  background: none;
  border: 0;
  padding: 0;
  min-height: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #20d48f;
  cursor: pointer;
}
.auth-forgot:hover { text-decoration: underline; }

/* Forgot-password link sits on its own line, just under the password field */
#auth-forgot-link {
  display: block;
  width: 100%;
  text-align: right;
  margin: 8px 0 4px;
}

/* show forgot-password only when signing in */
.signin-only { display: inline-flex; }
.modal[data-mode="signup"] .signin-only { display: none; }

.auth-legal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  line-height: 1.55;
  color: #6b726a;
  text-align: center;
}
.auth-legal a { color: #a8afa8; text-decoration: underline; }
.auth-legal a:hover { color: #20d48f; }

/* Fullscreen modal on mobile */
@media (max-width: 600px) {
  .modal { padding: 0; }
  .modal-backdrop { display: none; }
  .modal-card {
    margin: 0;
    max-width: none;
    width: 100%;
    min-height: 100dvh;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 72px 22px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: none;
  }
  .modal-close {
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.08);
  }
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #c2c9c2;
}

.auth-field input,
.auth-field textarea {
  background: #0a0e0c;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.auth-field input::placeholder,
.auth-field textarea::placeholder { color: #6b726a; }

.auth-field input:focus,
.auth-field textarea:focus { outline: none; border-color: #20d48f; }

/* show the name field only in sign-up mode */
.signup-only { display: none; }
.modal[data-mode="signup"] .signup-only { display: flex; }

.auth-submit { width: 100%; border: none; margin-top: 4px; }

.auth-msg {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #20d48f;
  background: rgba(32,212,143,0.10);
  border: 1px solid rgba(32,212,143,0.25);
  border-radius: 10px;
  padding: 10px 12px;
}

.auth-switch { text-align: center; font-size: 13px; color: #a8afa8; margin-top: 20px; }
.modal[data-mode="signin"] .auth-switch [data-when="signup"],
.modal[data-mode="signup"] .auth-switch [data-when="signin"] { display: none; }

.linklike {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #20d48f;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.linklike:hover { text-decoration: underline; }

/* ---- Inner content pages ---- */
.page-head {
  text-align: center;
  padding: 72px 24px 40px;
  background: linear-gradient(180deg, #0a0e0c 0%, #0f1814 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-head .eyebrow {
  color: #20d48f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-head h1 { font-size: 40px; font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.page-head > p { color: #a8afa8; font-size: 16px; max-width: 600px; margin: 0 auto; }

.prose { max-width: 760px; margin: 0 auto; padding: 56px 24px 90px; }
.prose-meta { color: #6b726a; font-size: 13px; margin-bottom: 24px; }
.prose h2 { font-size: 21px; font-weight: 700; color: #fff; margin: 30px 0 12px; }
.prose p { color: #a8afa8; font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; padding-left: 20px; color: #a8afa8; }
.prose li { margin-bottom: 8px; line-height: 1.6; }
.prose a { color: #20d48f; }
.prose-note {
  font-size: 13px;
  color: #8a9086;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid #20d48f;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
}

.panel {
  background: linear-gradient(180deg, rgba(17,24,19,0) 0%, #0c1310 100%), #0d130f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

/* Blog */
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 90px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.post-card {
  background: linear-gradient(180deg, rgba(17,24,19,0) 0%, #0c1310 100%), #0d130f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(32,212,143,0.35); }
.post-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #20d48f;
  margin-bottom: 12px;
}
.post-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.post-card p { font-size: 14px; color: #8a9086; line-height: 1.6; margin-bottom: 16px; }
.post-link { color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; }
.post-link:hover { color: #20d48f; }

/* Contact */
.contact-wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 56px 24px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; padding: 30px 28px; }
.contact-form .cta-btn { border: none; }
.contact-info h2 { font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.contact-info p { color: #a8afa8; font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.contact-info strong { color: #fff; }
.contact-info a { color: #20d48f; text-decoration: none; }

/* Help */
.help-grid {
  max-width: 940px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.help-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(17,24,19,0) 0%, #0c1310 100%), #0d130f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.help-card:hover { transform: translateY(-5px); border-color: rgba(32,212,143,0.35); }
.help-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.help-card p { font-size: 13px; color: #8a9086; line-height: 1.6; }

.help-cta {
  max-width: 940px;
  margin: 16px auto 90px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.help-cta h2 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.help-cta p { color: #a8afa8; font-size: 14px; }
.help-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.help-cta-actions .cta-btn { text-decoration: none; }

@media (max-width: 768px) {
  .page-head h1 { font-size: 30px; }
  .contact-wrap { grid-template-columns: 1fr; }
}

/* ---- Rebuilt footer (logo + description + socials) ---- */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand-col { max-width: 440px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}

.footer-desc {
  color: #8a9086;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
}

/* social icons recolour to match the page: muted grey -> green on hover */
.footer-socials a {
  color: #8a9086;
  background: rgba(255,255,255,0.05);
}
.footer-socials a:hover { color: #20d48f; background: rgba(32,212,143,0.12); }
.footer-socials svg { display: block; }

.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #8a9086; text-decoration: none; font-size: 12px; }
.footer-legal a:hover { color: #20d48f; }

/* ---- Help hub + child page extras ---- */
.help-card-link {
  display: inline-block;
  margin-top: 14px;
  color: #20d48f;
  font-size: 13px;
  font-weight: 600;
}

.help-support {
  padding: 20px 22px;
  margin: 12px 0 28px;
}
.help-support p { color: #a8afa8; font-size: 14px; margin: 0; }
.help-support a { color: #20d48f; }

.help-back a { color: #20d48f; text-decoration: none; font-weight: 600; font-size: 14px; }
.help-back a:hover { text-decoration: underline; }

/* ---- Toast notifications (bottom-left, auto-dismiss) ---- */
.toast-stack {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  width: calc(100% - 40px);
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #141a17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #20d48f;
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.45;
  animation: toast-in 0.25s ease;
}
.toast.error { border-left-color: #ff6b6b; }
.toast.success { border-left-color: #20d48f; }
.toast-ico { flex: none; margin-top: 1px; }
.toast.error .toast-ico { color: #ff6b6b; }
.toast.success .toast-ico { color: #20d48f; }
.toast-msg { flex: 1; }
.toast-close {
  flex: none;
  background: none;
  border: none;
  color: #a8afa8;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}
.toast-close:hover { color: #fff; }
.toast.hide { animation: toast-out 0.25s ease forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateX(-14px); } }
