/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #2ea2dd;
  --green: #77bd4f;
  --green-mid: #3aad5a;
  --dark: #2D3436;
  --mid: #57606A;
  --light-bg: #F0F2F5;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #DFE6E9;
  --overlay: rgba(46, 162, 221, 0.38);
  --gradient: linear-gradient(135deg, var(--blue), var(--green-mid), var(--green));
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.nav-cta {
  background: rgba(255,255,255,0.18) !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  padding: 7px 18px !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.3) !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 24px 80px;
  max-width: 700px;
  width: 100%;
}

.hero-logo {
  display: block;
  margin: 0 auto 24px;
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 52px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.hero-tagline-pill {
  display: block;
  width: fit-content;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}


.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 34px;
  background: var(--white);
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.btn-ghost {
  display: inline-block;
  padding: 15px 34px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.hero-signup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}

.hero-signup-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.hero-email-input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font);
  background: rgba(255,255,255,0.92);
  color: var(--dark);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.hero-email-input::placeholder {
  color: #9aa6b2;
}

.hero-email-input:focus {
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 0 0 3px rgba(255,255,255,0.4);
}

.hero-signup-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 26px;
  background: var(--dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.hero-signup-btn:hover:not(:disabled) {
  background: #1a1f23;
  transform: translateY(-2px);
}

.hero-signup-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hero-btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

.hero-signup-msg {
  font-size: 14px;
  font-weight: 600;
  min-height: 18px;
  margin-bottom: 10px;
}

.hero-signup-msg--success {
  color: #d4f4e0;
}

.hero-signup-msg--error {
  color: #ffb3b3;
}

.hero-proof {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.hero-legal-link {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION WRAPPER ===== */
.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 18px;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-bg {
  background: var(--white);
}

.section-header {
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.step-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 28px;
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46,162,221,0.35);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features-bg {
  background: var(--light-bg);
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(46,162,221,0.12), rgba(119,189,79,0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(46,162,221,0.15);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(46,162,221,0.1);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ===== STAKES SPOTLIGHT ===== */
.stakes-bg {
  background: var(--dark);
  color: var(--white);
}

.stakes-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.stakes-inner .section-label {
  color: var(--green);
}

.stakes-inner .section-title {
  color: var(--white);
}

.stakes-inner .section-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}

.stakes-disclaimer {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.stakes-disclaimer-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.stakes-disclaimer p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.stakes-disclaimer strong {
  color: var(--white);
}

.stakes-card-demo {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.stakes-balance {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.balance-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.balance-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -2px;
}

.balance-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

.stakes-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stake-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.07);
}

.stake-row-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stake-row-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.stake-row-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.stake-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.stake-badge.won {
  background: rgba(119,189,79,0.2);
  color: var(--green);
}

.stake-badge.active {
  background: rgba(46,162,221,0.2);
  color: var(--blue);
}

.stake-badge.pending {
  background: rgba(253,203,110,0.2);
  color: #FDCB6E;
}

/* ===== SOCIAL ===== */
.social-bg {
  background: var(--white);
}

.social-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.social-feed-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
}

.feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--gradient);
  flex-shrink: 0;
  color: white;
  font-weight: 700;
}

.feed-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.feed-time {
  font-size: 12px;
  color: var(--mid);
}

.feed-goal {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 10px;
}

.feed-goal strong {
  color: var(--dark);
}

.feed-reactions {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
}

.feed-streak-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(253,203,110,0.2);
  color: #7A5200;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ===== WAITLIST ===== */
.waitlist-bg {
  background: var(--light-bg);
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.waitlist-text .section-title {
  margin-bottom: 16px;
}

.waitlist-perks {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}

.waitlist-perks li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
}

.waitlist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.waitlist-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.waitlist-card-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.waitlist-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.waitlist-card-sub {
  font-size: 13px;
  color: var(--mid);
  margin-top: 2px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wl-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.wl-input {
  padding: 13px 16px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  color: var(--dark);
  background: var(--white);
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.wl-input::placeholder {
  color: #b2bec3;
}

.wl-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 162, 221, 0.15);
}

.wl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  background: var(--gradient);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(46, 162, 221, 0.3);
  font-family: var(--font);
  width: 100%;
  margin-top: 4px;
}

.wl-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 162, 221, 0.35);
}

.wl-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.wl-btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.wl-message {
  font-size: 14px;
  line-height: 1.5;
  min-height: 20px;
  text-align: center;
  font-weight: 500;
}

.wl-message--success {
  color: #1a7a3a;
}

.wl-message--error {
  color: #c0392b;
}

/* ── Celebration / success state ── */
.wl-success-view {
  text-align: center;
  padding: 8px 0;
}

.wl-success-view--animate {
  animation: wl-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes wl-pop-in {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.wl-achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(46,162,221,0.1), rgba(119,189,79,0.1));
  border: 1.5px solid rgba(46,162,221,0.25);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.wl-badge-icon {
  font-size: 18px;
}

.wl-badge-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wl-achievement-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(46,162,221,0.3);
  animation: wl-ring-pulse 2s ease-in-out infinite;
}

@keyframes wl-ring-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(46,162,221,0.3); }
  50% { box-shadow: 0 8px 40px rgba(46,162,221,0.5); }
}

.wl-ring-inner {
  font-size: 32px;
  color: white;
  font-weight: 900;
  line-height: 1;
}

.wl-success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.wl-success-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.wl-milestones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.wl-milestone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  opacity: 0;
  transform: translateX(-8px);
}

.wl-milestone--done {
  background: linear-gradient(135deg, rgba(46,162,221,0.06), rgba(119,189,79,0.06));
  border-color: rgba(119,189,79,0.3);
  color: var(--dark);
}

.wl-milestone--reveal {
  animation: wl-slide-in 0.35s ease forwards;
}

@keyframes wl-slide-in {
  to { opacity: 1; transform: translateX(0); }
}

.wl-ms-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.wl-success-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  font-style: italic;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (≤ 768px) --- */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links a { padding: 7px 10px; font-size: 13px; }

  .hero-content { padding: 88px 20px 56px; }
  .hero-logo { width: 176px; height: 176px; border-radius: 40px; }
  .hero-tagline-pill { font-size: 14px; padding: 7px 18px; }

  .section { padding: 64px 20px; }
  .section-title { letter-spacing: -0.6px; }
  .section-subtitle { font-size: 16px; }

  .section-header { margin-bottom: 40px; }
  .steps-grid { gap: 28px; margin-top: 0; }
  .step-card { padding: 30px 22px; }

  .features-header { margin-bottom: 40px; }
  .features-header .section-subtitle { max-width: 100%; }
  .feature-card { padding: 28px 22px; }

  .stakes-inner,
  .social-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stakes-inner .section-subtitle { max-width: 100%; }
  .stakes-card-demo { padding: 22px 20px; }
  .balance-amount { font-size: 38px; }

  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .waitlist-card { padding: 30px 28px; }

  .cta-banner { padding: 64px 20px; }
  .cta-sub { font-size: 16px; }

  footer { padding: 40px 20px; }
  .footer-links { gap: 18px; }
}

/* --- Phone (≤ 480px) --- */
@media (max-width: 480px) {
  /* Nav */
  .nav { padding: 0 16px; height: 56px; }
  .nav-name { font-size: 16px; }
  .nav-links a.nav-hide-mobile { display: none; }
  .nav-links a { padding: 7px 10px; font-size: 13px; }

  /* Hero */
  .hero-content { padding: 76px 16px 48px; }
  .hero-logo { width: 152px; height: 152px; border-radius: 32px; margin-bottom: 18px; }
  .hero-tagline-pill { font-size: 13px; padding: 6px 16px; margin-bottom: 18px; }
  .hero-title { letter-spacing: -1px; margin-bottom: 16px; }
  .hero-subtitle { margin-bottom: 20px; }
  .hero-signup-row { flex-direction: column; }
  .hero-signup-btn { width: 100%; justify-content: center; }
  .hero-proof { font-size: 13px; }
  .scroll-cue { display: none; }

  /* Sections */
  .section { padding: 48px 16px; }
  .section-title { letter-spacing: -0.5px; }
  .section-subtitle { font-size: 16px; }
  .section-label { font-size: 11px; letter-spacing: 1.5px; }

  /* How It Works */
  .section-header { margin-bottom: 28px; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }
  .step-card { padding: 28px 20px 22px; }
  .step-title { font-size: 17px; }
  .step-desc { font-size: 14px; }

  /* Features */
  .features-header { margin-bottom: 28px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 18px; }
  .feature-title { font-size: 18px; }
  .feature-desc { font-size: 14px; }
  .feature-icon-wrap { width: 48px; height: 48px; font-size: 22px; margin-bottom: 16px; }

  /* Stakes */
  .stakes-inner { gap: 28px; }
  .stakes-card-demo { padding: 18px 16px; }
  .balance-amount { font-size: 32px; letter-spacing: -1px; }
  .balance-sub { font-size: 12px; }
  .stake-row { padding: 12px 12px; }
  .stake-row-name { font-size: 13px; }
  .stake-row-sub { font-size: 11px; }
  .stakes-disclaimer { padding: 14px 16px; }
  .stakes-disclaimer p { font-size: 13px; }

  /* Waitlist */
  .waitlist-inner { gap: 28px; }
  .waitlist-card { padding: 24px 18px; }
  .waitlist-card-header { margin-bottom: 20px; padding-bottom: 18px; }
  .waitlist-perks li { font-size: 15px; }

  /* Social */
  .social-inner { gap: 28px; }
  .feed-card { padding: 16px; }
  .feed-goal { font-size: 13px; }
  .feed-reactions { font-size: 12px; gap: 8px; }

  /* CTA Banner */
  .cta-banner { padding: 52px 16px; }
  .cta-sub { font-size: 15px; margin-bottom: 28px; }
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-buttons .btn-primary, .cta-buttons .btn-ghost { width: 100%; text-align: center; }

  /* Footer */
  footer { padding: 32px 16px; }
  .footer-links { gap: 14px; font-size: 13px; }
  .footer-disclaimer { font-size: 11px; }
}
