/* ══════════════════════════════════════════
   WINLY — AMBASSADOR PAGE STYLES
   ══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  padding: 100px 48px 90px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -180px;
  right: 0;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(200,255,0,0.05) 0%, transparent 65%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero h1 { font-size: 3.6rem; font-weight: 700; letter-spacing: -0.05em; line-height: 1.03; color: #fff; margin-bottom: 22px; }
.hero-body { font-size: 1.05rem; color: var(--sub); line-height: 1.7; max-width: 480px; margin-bottom: 32px; }
.hero-note { margin-top: 4px; }

/* ── AMBASSADOR CARD ── */
.amb-card {
  background: var(--card); border: 1px solid var(--lime-border); border-radius: 16px;
  padding: 28px; position: relative; overflow: hidden;
}
.amb-card::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(200,255,0,0.07), transparent 70%); pointer-events: none;
}
.amb-shield { width: 56px; height: 64px; margin: 0 auto 16px; position: relative; }
.amb-shield svg { width: 100%; height: 100%; }
.amb-badge-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); text-align: center; margin-bottom: 20px; }
.amb-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.amb-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.amb-field-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.amb-field-val { font-size: 13px; font-weight: 600; color: #fff; }
.amb-field-val.lime { color: var(--lime); }
.amb-status {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,255,0,0.1); border: 1px solid var(--lime-border);
  color: var(--lime); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.amb-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); }
.amb-share {
  display: block; width: 100%; background: var(--lime); color: #000;
  padding: 12px; border-radius: 8px; font-weight: 700; font-size: 14px;
  text-align: center; margin-top: 18px; transition: opacity 0.2s;
}
.amb-share:hover { opacity: 0.9; }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 48px; background: var(--surface); border-bottom: 1px solid var(--border); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.how-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; }
.how-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.how-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.how-h { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin-bottom: 8px; }
.how-p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.how-note { font-size: 13px; color: var(--sub); text-align: center; margin-top: 28px; }

/* ── BENEFITS + CALCULATOR ── */
.benefits-section { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 8px; }
.benefit-items { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px; transition: border-color 0.2s;
}
.benefit-item:hover { border-color: var(--border-mid); }
.benefit-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.benefit-h { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.benefit-p { font-size: 12px; color: var(--muted); line-height: 1.55; }
.earn-calc { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.earn-calc-h { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin-bottom: 6px; }
.earn-calc-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.earn-output {
  background: rgba(200,255,0,0.04); border: 1px solid var(--lime-border);
  border-radius: 10px; padding: 20px; margin-top: 4px;
}
.earn-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; color: var(--sub); }
.earn-row:last-child { margin-bottom: 0; }
.earn-row span:last-child { font-weight: 700; color: var(--lime); font-size: 15px; }
.earn-note { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* ── AMBASSADOR PROFILES ── */
.profiles-section { padding: 100px 48px; background: var(--surface); border-bottom: 1px solid var(--border); }
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.profile-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: border-color 0.2s; }
.profile-card:hover { border-color: var(--border-mid); }
.profile-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #000; margin-bottom: 14px;
}
.profile-name { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.profile-info { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.profile-referrals {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--lime-dim); border: 1px solid var(--lime-border);
  color: var(--lime); font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; margin-bottom: 16px;
}
.profile-quote { font-size: 13px; color: var(--sub); line-height: 1.7; font-style: italic; }

/* ── APPLICATION FORM ── */
.apply-section { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.apply-inner { max-width: 600px; margin: 0 auto; }
.apply-card { background: var(--card); border: 1px solid var(--border-mid); border-radius: 16px; padding: 40px; }
.apply-card-h { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.03em; color: #fff; margin-bottom: 6px; }
.apply-card-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.apply-footnote { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero, .how-section, .benefits-section, .profiles-section, .apply-section { padding: 72px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.8rem; }
  .how-grid, .profiles-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
}
