/* =============================================
   AxoraStore — Influencer Hub CSS
   Covers: index.html highlight section + influencer.html full page
   ============================================= */

/* ============================================
   INDEX PAGE — HIGHLIGHT SECTION
   ============================================ */

/* ---- Section wrapper ---- */
.influencer-highlight {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: left;
}

.infl-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(247,179,43,0.08) 0%, rgba(167,139,250,0.07) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.infl-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Left column ---- */
.infl-official-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,179,43,0.1);
  border: 1px solid rgba(247,179,43,0.3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #f7b32b;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.infl-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.infl-gradient {
  background: linear-gradient(135deg, #f7b32b 0%, #ff6b6b 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.infl-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.infl-sub strong { color: var(--color-text); }

/* Perks */
.infl-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.infl-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.infl-perk-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(247,179,43,0.1);
  border: 1px solid rgba(247,179,43,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #f7b32b;
}

.infl-perk strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--color-text);
}

.infl-perk p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Live count */
.infl-live-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}
.infl-live-dot {
  width: 8px; height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulseDot 1.8s ease infinite;
  flex-shrink: 0;
}
.infl-count-num {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-success);
  min-width: 3ch;
}

/* CTA button */
.infl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f7b32b 0%, #ff6b6b 50%, #a78bfa 100%);
  color: #fff;
  border-radius: 60px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  box-shadow: 0 6px 28px rgba(247,179,43,0.35);
  position: relative;
  overflow: hidden;
}

.infl-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff9a00 0%, #ff6b6b 50%, #c084fc 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.infl-cta-btn:hover::before { opacity: 1; }
.infl-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(247,179,43,0.5);
  color: #fff;
}

.infl-cta-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  position: relative; z-index: 1;
  animation: inflIconSpin 3s ease-in-out infinite;
}
@keyframes inflIconSpin {
  0%,100%  { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(15deg) scale(1.1); }
}

.infl-cta-btn > span { position: relative; z-index: 1; }
.infl-cta-arrow { position: relative; z-index: 1; font-size: 13px; transition: transform 0.3s; }
.infl-cta-btn:hover .infl-cta-arrow { transform: translateX(4px); }

/* ---- Right column — card ---- */
.infl-right { position: relative; }

.infl-card {
  background: linear-gradient(145deg, #0d1830 0%, #111a2e 100%);
  border: 1px solid rgba(247,179,43,0.25);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(247,179,43,0.1);
  position: relative;
  overflow: hidden;
  animation: cardLevitate 4s ease-in-out infinite;
}

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

.infl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f7b32b, #ff6b6b, #a78bfa);
}

.infl-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.infl-card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.infl-card-logo i { color: #f7b32b; font-size: 16px; }
.infl-card-logo strong { font-weight: 800; color: var(--color-text); }

.infl-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-success);
}
.infl-card-dot {
  width: 7px; height: 7px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulseDot 1.8s ease infinite;
}

.infl-card-date {
  font-size: 11px;
  color: var(--color-text-dim);
  margin-bottom: 20px;
}

.infl-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.infl-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.infl-metric-val {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg,#f7b32b,#ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 1.5em;
}

.infl-metric-lbl {
  font-size: 10px;
  color: var(--color-text-dim);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.infl-card-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 16px;
}

.infl-payout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.infl-payout-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-success);
}

.infl-payout-amount {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 900;
  color: #f7b32b;
  text-shadow: 0 0 20px rgba(247,179,43,0.4);
  transition: all 0.3s;
}

.infl-payout-sub {
  font-size: 10px;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

.infl-platforms {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.infl-plat {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--color-text-muted);
  transition: all 0.3s;
}
.infl-plat:hover { background: rgba(247,179,43,0.1); color: #f7b32b; border-color: rgba(247,179,43,0.3); }

/* Floating badges */
.infl-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.fb-tl { top: -14px; left: -14px; color: #f7b32b; border-color: rgba(247,179,43,0.25); animation: floatBadge1 3s ease-in-out infinite; }
.fb-br { bottom: -14px; right: -14px; color: var(--color-primary); border-color: rgba(79,140,255,0.25); animation: floatBadge2 3.5s ease-in-out infinite; }
.fb-tl i, .fb-br i { font-size: 14px; }

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

/* ============================================
   INFLUENCER.HTML — FULL PAGE
   ============================================ */

/* Back button */
.ih-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 7px 16px;
  transition: all 0.2s;
}
.ih-back-btn:hover { color: var(--color-primary); border-color: rgba(79,140,255,0.3); }

/* Hero */
.ih-hero {
  position: relative;
  z-index: 1;
  padding: 110px 0 80px;
  text-align: center;
  overflow: hidden;
}
.ih-hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at top, rgba(247,179,43,0.12) 0%, rgba(167,139,250,0.08) 40%, transparent 70%);
  pointer-events: none;
}

.ih-official-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,179,43,0.1);
  border: 1px solid rgba(247,179,43,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #f7b32b;
  margin-bottom: 24px;
}

.ih-hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.ih-grad {
  background: linear-gradient(135deg, #f7b32b 0%, #ff6b6b 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ih-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.ih-hero-sub strong { color: var(--color-text); }

.ih-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ih-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f7b32b, #ff6b6b, #a78bfa);
  color: #fff;
  border-radius: 60px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 6px 28px rgba(247,179,43,0.4);
  transition: all 0.3s;
}
.ih-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(247,179,43,0.55); color: #fff; }

.ih-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 60px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.ih-btn-ghost:hover { border-color: rgba(247,179,43,0.4); color: #f7b32b; }

/* Hero stats */
.ih-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 20px 36px;
  box-shadow: 0 0 40px rgba(247,179,43,0.07);
}

.ih-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px;
}

.ih-hstat-num {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f7b32b, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ih-hstat-num sup { font-size: 0.55em; }

.ih-hstat-lbl {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  text-align: center;
}

.ih-hstat-div {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Sections */
.ih-section { text-align: center; }
.ih-section .section-desc { margin: 0 auto 48px; }

/* Journey steps */
.ih-journey {
  max-width: 700px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.ih-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 24px;
  align-items: start;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ih-step.ih-visible { opacity: 1; transform: translateX(0); }

.ih-step-node {
  width: 56px; height: 56px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.ih-step-icon {
  width: 48px; height: 48px;
  background: var(--color-surface);
  border: 2px solid rgba(247,179,43,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #f7b32b;
  position: relative; z-index: 1;
  transition: all 0.4s;
}
.ih-step.ih-visible .ih-step-icon {
  background: rgba(247,179,43,0.08);
  border-color: rgba(247,179,43,0.5);
  box-shadow: 0 0 20px rgba(247,179,43,0.15);
}

.ih-step-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(247,179,43,0.15);
  animation: nodePing 2.5s ease-out infinite;
}

.ih-step-node-gold .ih-step-icon {
  color: var(--color-success);
  border-color: rgba(34,197,94,0.4);
}
.ih-step.ih-visible .ih-step-node-gold .ih-step-icon {
  background: rgba(34,197,94,0.08);
  box-shadow: 0 0 20px rgba(34,197,94,0.2);
}

.ih-step-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
  margin-bottom: 0;
}
.ih-step.ih-visible .ih-step-content {
  border-color: rgba(247,179,43,0.18);
  box-shadow: 0 4px 24px rgba(247,179,43,0.05);
}
.ih-step-content::before {
  content:'';
  position:absolute;top:0;left:0;right:0;height:2px;
  background: linear-gradient(90deg, #f7b32b, #ff6b6b, #a78bfa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.3s;
}
.ih-step.ih-visible .ih-step-content::before { transform: scaleX(1); }

.ih-step-num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f7b32b, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

.ih-step-content h3 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ih-step-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.ih-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-success);
  margin-top: 12px;
}

/* Step connector */
.ih-step-conn {
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ih-conn-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(247,179,43,0.3), rgba(247,179,43,0.05));
  margin-left: 0;
  position: relative;
  overflow: hidden;
}
.ih-conn-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f7b32b;
  box-shadow: 0 0 8px rgba(247,179,43,0.7);
  position: absolute;
  left: -2px; top: -6px;
  animation: dotSlide 1.8s ease-in-out infinite;
}

/* Earning grid */
.ih-earn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ih-earn-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.3s;
}
.ih-earn-card:hover {
  border-color: rgba(247,179,43,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(247,179,43,0.06);
}

.ih-earn-card-gold {
  background: rgba(247,179,43,0.04);
  border-color: rgba(247,179,43,0.2);
}

.ih-earn-icon {
  width: 48px; height: 48px;
  background: rgba(247,179,43,0.1);
  border: 1px solid rgba(247,179,43,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #f7b32b;
  margin: 0 auto 14px;
}
.ih-earn-icon.gold { color: #f7b32b; }

.ih-earn-platform {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}
.ih-earn-rate {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.ih-earn-platforms-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-dim);
}

/* ============================================
   RATES TABLE — EARNING STRUCTURE
   ============================================ */

.ih-rates-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 40px;
}

/* One platform block */
.ih-rates-platform {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
}

/* Platform header bar */
.ih-rates-plat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-main);
  letter-spacing: 0.3px;
}
.ih-rates-plat-header i { font-size: 18px; }
.instagram-bg { background: linear-gradient(90deg, rgba(225,48,108,0.18), rgba(225,48,108,0.06)); border-bottom: 1px solid rgba(225,48,108,0.2); color: #f06292; }
.facebook-bg  { background: linear-gradient(90deg, rgba(24,119,242,0.18), rgba(24,119,242,0.06)); border-bottom: 1px solid rgba(24,119,242,0.2);  color: #64b5f6; }
.tiktok-bg    { background: linear-gradient(90deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)); border-bottom: 1px solid rgba(255,255,255,0.1); color: #e0e0e0; }
.youtube-bg   { background: linear-gradient(90deg, rgba(255,68,68,0.18), rgba(255,68,68,0.06));   border-bottom: 1px solid rgba(255,68,68,0.2);   color: #ef5350; }

/* Cards row inside a platform block */
.ih-rates-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
/* Solo (TikTok — only 1 type) */
.ih-rate-card-solo {
  grid-column: 1 / -1;
}

.ih-rate-card {
  padding: 20px 24px;
  border-right: 1px solid var(--color-border);
  position: relative;
}
.ih-rate-card:last-child { border-right: none; }

/* Premium badge (YouTube Full Video) */
.ih-rate-card-premium {
  background: rgba(247,179,43,0.03);
}
.ih-rate-premium-badge {
  position: absolute;
  top: 12px; right: 14px;
  background: linear-gradient(90deg, #f7b32b, #ff6b6b);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* Content-type badge */
.ih-rate-type-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Rate rows */
.ih-rate-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.ih-rate-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ih-rate-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  min-width: 68px;
}
.ih-rate-metric i { font-size: 12px; color: #a78bfa; }

.ih-rate-formula {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--color-text);
  flex: 1;
}

.ih-rate-cap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(247,179,43,0.08);
  border: 1px solid rgba(247,179,43,0.2);
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 11.5px;
  font-weight: 700;
  color: #f7b32b;
  white-space: nowrap;
}
.ih-rate-cap i { font-size: 10px; }
.ih-rate-cap-at {
  color: var(--color-text-dim);
  font-weight: 500;
  margin-left: 2px;
}

/* Max per post total */
.ih-rate-max-total {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  background: var(--color-surface2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 6px;
}
.ih-rate-max-total i { color: #a78bfa; }
.ih-rate-max-total strong { color: var(--color-text); font-size: 14px; }
.gold-total strong { color: #f7b32b !important; }

/* ============================================
   NEW CALCULATOR UI
   ============================================ */

/* Platform tabs */
.ih-calc-plat-tabs,
.ih-calc-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ih-calc-plat-tab,
.ih-calc-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.ih-calc-plat-tab:hover,
.ih-calc-type-tab:hover {
  border-color: rgba(167,139,250,0.4);
  color: var(--color-text);
}
.ih-calc-plat-tab.active,
.ih-calc-type-tab.active {
  background: rgba(167,139,250,0.12);
  border-color: rgba(167,139,250,0.5);
  color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(167,139,250,0.08);
}
.ih-calc-plat-tab i,
.ih-calc-type-tab i { font-size: 14px; }

/* Active rate display card */
.ih-calc-rate-card {
  background: var(--color-surface);
  border: 1px solid rgba(247,179,43,0.2);
  border-radius: 14px;
  padding: 16px 18px;
  transition: all 0.3s;
}
.ih-calc-rate-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.ih-calc-rate-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ih-calc-rate-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.ih-calc-rate-item i { color: #a78bfa; width: 14px; }
.ih-calc-rate-cap-tag {
  margin-left: auto;
  background: rgba(247,179,43,0.1);
  border: 1px solid rgba(247,179,43,0.2);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #f7b32b;
}
.ih-calc-rate-item-max {
  border-top: 1px solid var(--color-border);
  padding-top: 8px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--color-text) !important;
}
.ih-calc-rate-item-max strong { color: #f7b32b; }

/* Cap notes under inputs */
.ih-calc-cap-note {
  font-size: 11.5px;
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 7px;
  line-height: 1.45;
  transition: all 0.25s;
}
.ih-calc-cap-note.capped {
  background: rgba(255,107,107,0.08);
  color: #ff6b6b;
  border: 1px solid rgba(255,107,107,0.2);
}
.ih-calc-cap-note.ok {
  background: rgba(74,222,128,0.07);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.2);
}

/* Breakdown enhancements */
.calc-row-header {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-dim) !important;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 4px;
}
.calc-row-subtotal {
  border-top: 1px solid var(--color-border) !important;
  padding-top: 6px !important;
  margin-top: 4px;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}
.calc-capped {
  display: inline-block;
  font-size: 10.5px;
  color: #ff6b6b;
  font-weight: 600;
  margin-left: 4px;
}

/* Multi-post summary */
.ih-calc-multi-posts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(167,139,250,0.07);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 12px;
  margin-bottom: 6px;
}
.ih-calc-multi-eq {
  font-size: 13px;
  color: var(--color-text-muted);
}
.ih-calc-multi-total {
  font-size: 15px;
  font-weight: 800;
  color: #a78bfa;
}

/* ============================================
   PRELAUNCH BANNER (keep existing styles below)
   ============================================ */
/* Pre-launch bonus banner (original) */
.ih-prelaunch-banner {
  background: linear-gradient(135deg, rgba(247,179,43,0.08), rgba(255,107,107,0.06));
  border: 1px solid rgba(247,179,43,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
}
.ih-pb-left { display: flex; gap: 18px; align-items: flex-start; flex: 1; }
.ih-pb-icon {
  width: 48px; height: 48px;
  background: rgba(247,179,43,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #f7b32b;
  flex-shrink: 0;
}
.ih-pb-left strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.ih-pb-left p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }
.ih-pb-left em { color: #f7b32b; font-style: normal; font-weight: 700; }

.ih-pb-badge {
  background: linear-gradient(135deg, #f7b32b, #ff6b6b);
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(247,179,43,0.3);
  animation: badgePulse 2s ease-in-out infinite;
  cursor: pointer;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 4px 20px rgba(247,179,43,0.3); }
  50%      { box-shadow: 0 4px 32px rgba(247,179,43,0.6); }
}

/* Platforms grid */
.ih-plat-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.ih-plat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 130px;
  transition: all 0.3s;
  cursor: default;
}
.ih-plat-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.ih-plat-card span { font-size: 13px; font-weight: 700; }
.ih-plat-types { font-size: 10px !important; color: var(--color-text-dim) !important; font-weight: 500 !important; }

.ih-plat-icon { font-size: 30px; }
.instagram { color: #e1306c; }
.tiktok    { color: #fff; }
.youtube   { color: #ff0000; }
.facebook  { color: #1877f2; }

/* Join form section */
.ih-join-section { text-align: center; }

.ih-join-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid rgba(247,179,43,0.2);
  border-radius: 28px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.ih-join-glow {
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(247,179,43,0.1), transparent 70%);
  pointer-events: none;
}

.ih-join-header { margin-bottom: 36px; }
.ih-join-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,179,43,0.1);
  border: 1px solid rgba(247,179,43,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #f7b32b;
  margin-bottom: 16px;
}

.ih-join-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.ih-join-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Form */
.ih-form { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.ih-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ih-form-group { display: flex; flex-direction: column; gap: 7px; }
.ih-form-group label { font-size: 13px; font-weight: 600; color: var(--color-text); }

.ih-form-group input,
.ih-form-group select,
.ih-form-group textarea {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.ih-form-group input:focus,
.ih-form-group select:focus,
.ih-form-group textarea:focus {
  border-color: #f7b32b;
  box-shadow: 0 0 0 3px rgba(247,179,43,0.12);
}
.ih-form-group input::placeholder,
.ih-form-group textarea::placeholder { color: var(--color-text-dim); }

.ih-form-group select option { background: var(--color-surface2); }

/* Platform checkboxes */
.ih-platform-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ih-check {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.ih-check:hover { border-color: rgba(247,179,43,0.35); color: #f7b32b; }
.ih-check input[type="checkbox"] { width: 14px; height: 14px; accent-color: #f7b32b; }
.ih-check:has(input:checked) {
  background: rgba(247,179,43,0.08);
  border-color: rgba(247,179,43,0.4);
  color: #f7b32b;
}

.ih-agree-check {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.ih-agree-check:hover { background: transparent; border: none; color: var(--color-text-muted); }
.ih-agree-check input { flex-shrink: 0; margin-top: 2px; }

.ih-form-agree { margin-top: 4px; }

.ih-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f7b32b, #ff6b6b, #a78bfa);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(247,179,43,0.35);
}
.ih-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(247,179,43,0.5); }
.ih-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success */
.ih-form-success {
  text-align: center;
  padding: 20px 0;
}
.ih-success-icon {
  font-size: 56px;
  color: var(--color-success);
  margin-bottom: 16px;
  animation: successPop 0.6s var(--ease) both;
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.2); }
  to   { transform: scale(1); opacity: 1; }
}
.ih-form-success h3 {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.ih-form-success p { color: var(--color-text-muted); line-height: 1.65; max-width: 500px; margin: 0 auto 24px; }
.ih-success-next {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.ih-success-next strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 12px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .5px; }
.ih-success-next ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ih-success-next li { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }

/* ============================================
   NEW SECTIONS — TIERS, CALCULATOR, EXTRAS
   ============================================ */

/* ---- Hero second glow + floating social icons ---- */
.ih-hero-glow-2 {
  position: absolute;
  bottom: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(167,139,250,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.ih-social-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ih-sf {
  position: absolute;
  font-size: 22px;
  opacity: 0.15;
  animation: socialFloat 8s ease-in-out infinite;
}
.ih-sf-1 { top: 15%; left: 8%;  color: #e1306c; animation-delay: 0s;    animation-duration: 9s; }
.ih-sf-2 { top: 55%; left: 5%;  color: #fff;    animation-delay: 1.5s;  animation-duration: 7s; }
.ih-sf-3 { top: 75%; left: 12%; color: #ff0000; animation-delay: 3s;    animation-duration: 11s;}
.ih-sf-4 { top: 20%; right:8%;  color: #1877f2; animation-delay: 0.8s;  animation-duration: 8s; }
.ih-sf-5 { top: 65%; right:6%;  color: #1da1f2; animation-delay: 2.2s;  animation-duration: 10s;}

@keyframes socialFloat {
  0%,100% { transform: translateY(0) rotate(0deg);   opacity: 0.12; }
  50%      { transform: translateY(-20px) rotate(8deg); opacity: 0.22; }
}

/* ---- Pre-launch timer badge ---- */
.ih-pre-timer {
  display: inline-block;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

/* ---- Scroll-reveal utility ---- */
.scroll-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.scroll-hidden.revealed {
  opacity: 1;
  transform: none;
}

/* ---- Handle preview ---- */
.ih-handle-preview {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 8px;
  padding: 7px 12px;
  transition: all 0.3s;
}

/* ---- Dynamic handle fields container ---- */
.ih-handle-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Empty state hint */
.ih-handle-fields:empty::before {
  content: attr(data-empty-hint);
  display: block;
  font-size: 12.5px;
  color: var(--color-text-dim);
  font-style: italic;
  padding: 10px 4px;
}

/* Each platform handle row */
.ih-handle-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  animation: handleRowIn 0.28s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes handleRowIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.ih-handle-row.removing {
  animation: handleRowOut 0.22s ease forwards;
}
@keyframes handleRowOut {
  from { opacity: 1; transform: none;                   max-height: 80px; }
  to   { opacity: 0; transform: translateY(-8px) scale(0.97); max-height: 0; }
}

/* Label with platform colour pill */
.ih-handle-row-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.ih-handle-plat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}
.ih-handle-plat-pill.instagram { background: rgba(225,48,108,0.12); color: #e1306c; }
.ih-handle-plat-pill.tiktok    { background: rgba(255,255,255,0.08); color: #fff;   }
.ih-handle-plat-pill.youtube   { background: rgba(255,0,0,0.12);    color: #ff4444;}
.ih-handle-plat-pill.facebook  { background: rgba(24,119,242,0.12); color: #4f9df8;}

/* Input wrapper with icon */
.ih-handle-input-wrap {
  display: flex;
  align-items: center;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ih-handle-input-wrap:focus-within {
  border-color: rgba(167,139,250,0.5);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.1);
}
.ih-handle-input-wrap.valid {
  border-color: rgba(74,222,128,0.45);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.08);
}

.ih-handle-input-icon {
  padding: 0 13px;
  font-size: 15px;
  opacity: 0.7;
  flex-shrink: 0;
}
.ih-handle-input-icon.instagram { color: #e1306c; }
.ih-handle-input-icon.tiktok    { color: #ccc;    }
.ih-handle-input-icon.youtube   { color: #ff4444; }
.ih-handle-input-icon.facebook  { color: #4f9df8; }

.ih-handle-input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  padding: 11px 14px 11px 0;
  font-size: 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  flex: 1;
  min-width: 0;
}
.ih-handle-input-wrap input::placeholder { color: var(--color-text-dim); }

.ih-handle-tick {
  padding: 0 13px;
  font-size: 14px;
  color: #4ade80;
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.ih-handle-input-wrap.valid .ih-handle-tick { opacity: 1; }

/* Hint text under input */
.ih-handle-hint {
  font-size: 11.5px;
  color: var(--color-text-dim);
  padding-left: 2px;
}

/* ---- Form error message ---- */
.ih-form-error {
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #ff6b6b;
  margin-bottom: 8px;
}

/* ---- Journey animation ---- */
.ih-journey.journey-animate .ih-conn-dot {
  animation-play-state: running;
}

/* ============================================
   INFLUENCER TIERS SECTION
   ============================================ */
.ih-tiers-section {
  background: linear-gradient(180deg, transparent, rgba(247,179,43,0.02) 50%, transparent);
}

.ih-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ih-tier-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}
.ih-tier-card.tier-revealed {
  opacity: 1;
  transform: none;
}
.ih-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

/* Tier colour accents */
.ih-tier-starter   { border-color: rgba(74,222,128,0.2); }
.ih-tier-creator   { border-color: rgba(56,189,248,0.2); }
.ih-tier-influencer{ border-color: rgba(167,139,250,0.3); }
.ih-tier-ambassador{ border-color: rgba(247,179,43,0.3); background: rgba(247,179,43,0.03); }

.ih-tier-featured {
  border-color: rgba(167,139,250,0.5) !important;
  background: rgba(167,139,250,0.05) !important;
  box-shadow: 0 0 0 1px rgba(167,139,250,0.15), 0 8px 32px rgba(167,139,250,0.1);
}

.ih-tier-popular-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.3px;
}

.ih-tier-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.ih-tier-starter   .ih-tier-icon { background: rgba(74,222,128,0.12); color: #4ade80; }
.ih-tier-creator   .ih-tier-icon { background: rgba(56,189,248,0.12);  color: #38bdf8; }
.ih-tier-influencer .ih-tier-icon{ background: rgba(167,139,250,0.12); color: #a78bfa; }
.ih-tier-ambassador .ih-tier-icon{ background: rgba(247,179,43,0.15);  color: #f7b32b; }

.ih-tier-name {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.ih-tier-range {
  font-size: 12px;
  color: var(--color-text-dim);
  font-weight: 500;
  margin-bottom: 16px;
}

.ih-tier-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 16px;
}

.ih-tier-rate {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.ih-tier-mult {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 4px;
}
.gold-mult {
  background: linear-gradient(90deg, #f7b32b, #ff6b6b) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.ih-tier-bonus {
  font-size: 11.5px;
  color: var(--color-text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.ih-tier-bonus i { color: var(--color-gold); }

/* Crown decoration */
.ih-tier-crown {
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, transparent 60%, rgba(167,139,250,0.06));
  border-radius: 0 20px 0 0;
}
.ih-tier-crown-gold {
  background: linear-gradient(135deg, transparent 60%, rgba(247,179,43,0.08));
}

/* ============================================
   PAYOUT CALCULATOR SECTION
   ============================================ */
.ih-calc-section { }

.ih-calc-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

.ih-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ih-calc-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.ih-calc-field label i { color: var(--color-gold); width: 16px; }

.ih-calc-input-wrap {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ih-calc-input-wrap:focus-within {
  border-color: #f7b32b;
  box-shadow: 0 0 0 3px rgba(247,179,43,0.1);
}
.ih-calc-input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-body);
  flex: 1;
  min-width: 0;
}
.ih-calc-unit {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dim);
  background: var(--color-surface2);
  border-left: 1px solid var(--color-border);
}

.ih-calc-bonus-row { margin-top: 4px; }
.ih-bonus-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(247,179,43,0.06);
  border: 1px solid rgba(247,179,43,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.ih-bonus-check:hover { border-color: rgba(247,179,43,0.4); }
.ih-bonus-check i { color: #f7b32b; }
.ih-bonus-check input { accent-color: #f7b32b; flex-shrink: 0; margin-top: 2px; }

/* Result card */
.ih-calc-result {
  background: var(--color-surface);
  border: 1px solid rgba(247,179,43,0.25);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 32px rgba(247,179,43,0.06);
}

.ih-calc-result-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.ih-calc-total {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #f7b32b, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.ih-calc-breakdown {
  background: var(--color-surface2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: left;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-dim);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.calc-row:last-child { border-bottom: none; }
.calc-bonus-row { color: #f7b32b !important; font-weight: 700; }

.ih-calc-note {
  font-size: 10.5px;
  color: var(--color-text-dim);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   CONFETTI DOTS
   ============================================ */
.confetti-dot {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: confettiFall 1.5s ease-out forwards;
}
@keyframes confettiFall {
  0%   { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx, 60px), var(--ty, 200px)) rotate(720deg) scale(0.3); }
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
   ============================================ */
@media (max-width: 1100px) {
  .ih-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .ih-calc-wrap  { grid-template-columns: 1fr; }
  .ih-calc-result { position: static; }
}

@media (max-width: 1024px) {
  .infl-wrap { grid-template-columns: 1fr; gap: 40px; }
  .infl-right { max-width: 400px; margin: 0 auto; }
  .ih-earn-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ih-hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .ih-hstat-div  { width: 60px; height: 1px; }
  .ih-hstat      { padding: 0; }
  .ih-earn-grid  { grid-template-columns: 1fr; }
  .ih-join-wrap  { padding: 32px 20px; }
  .ih-form-row   { grid-template-columns: 1fr; }
  .infl-card     { max-width: 100%; }
  .ih-prelaunch-banner { flex-direction: column; text-align: center; }
  .ih-pb-left    { flex-direction: column; align-items: center; text-align: center; }
  .ih-tiers-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ih-social-floats { display: none; }
  /* Rates table */
  .ih-rates-cards { grid-template-columns: 1fr; }
  .ih-rate-card   { border-right: none; border-bottom: 1px solid var(--color-border); }
  .ih-rate-card:last-child { border-bottom: none; }
  .ih-rate-row    { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ih-rate-formula { width: 100%; }
  /* Calculator */
  .ih-calc-plat-tabs { gap: 6px; }
  .ih-calc-plat-tab  { padding: 8px 12px; font-size: 12px; }
  .ih-calc-multi-posts { flex-direction: column; gap: 4px; text-align: center; }
}

/* ============================================
   OFFICIAL PARTNER PROGRAM — TOP BAR + MODAL
   ============================================ */

/* ---- Announcement Bar ---- */
.opp-bar {
  width: 100%;
  background: linear-gradient(90deg, #0d1526 0%, rgba(167,139,250,0.12) 40%, rgba(247,179,43,0.10) 70%, #0d1526 100%);
  border-bottom: 1px solid rgba(167,139,250,0.2);
  padding: 10px 24px;
  cursor: pointer;
  position: relative;
  z-index: 200;
  transition: background 0.3s;
  user-select: none;
}
.opp-bar:hover {
  background: linear-gradient(90deg, #0d1526 0%, rgba(167,139,250,0.2) 40%, rgba(247,179,43,0.18) 70%, #0d1526 100%);
}
.opp-bar:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: -2px;
}

.opp-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.opp-bar-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(167,139,250,0.6);
  animation: oppPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes oppPulse {
  0%   { box-shadow: 0 0 0 0   rgba(167,139,250,0.6); }
  60%  { box-shadow: 0 0 0 8px rgba(167,139,250,0);   }
  100% { box-shadow: 0 0 0 0   rgba(167,139,250,0);   }
}

.opp-bar-icon {
  color: #f7b32b;
  font-size: 13px;
  flex-shrink: 0;
}

.opp-bar-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.opp-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, #a78bfa, #f7b32b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.opp-bar:hover .opp-bar-cta { opacity: 0.85; }
.opp-bar-cta i { font-size: 10px; -webkit-text-fill-color: #f7b32b; transition: transform 0.25s; }
.opp-bar:hover .opp-bar-cta i { transform: translateX(3px); }

/* ---- Overlay ---- */
.opp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.82);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.opp-overlay.opp-open {
  opacity: 1;
  pointer-events: all;
}

/* ---- Modal panel (slides from right) ---- */
.opp-modal {
  position: fixed;
  top: 0; right: 0;
  width: min(580px, 100vw);
  height: 100vh;
  background: var(--color-bg);
  border-left: 1px solid rgba(167,139,250,0.2);
  z-index: 1000;
  overflow-y: auto;
  padding: 0 0 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 60px rgba(0,0,0,0.5);
  scroll-behavior: smooth;
}
.opp-modal.opp-open {
  transform: translateX(0);
}

/* Scrollbar styling */
.opp-modal::-webkit-scrollbar { width: 4px; }
.opp-modal::-webkit-scrollbar-track { background: transparent; }
.opp-modal::-webkit-scrollbar-thumb { background: rgba(167,139,250,0.3); border-radius: 4px; }

/* Close button */
.opp-modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 16px 20px 0 0;
  width: 36px; height: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
.opp-modal-close:hover {
  background: rgba(167,139,250,0.15);
  color: #a78bfa;
  border-color: rgba(167,139,250,0.35);
  transform: rotate(90deg);
}

/* ---- Modal Header ---- */
.opp-modal-header {
  padding: 20px 32px 28px;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(167,139,250,0.05), transparent);
}

.opp-modal-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(247,179,43,0.1);
  border: 1px solid rgba(247,179,43,0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: #f7b32b;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.opp-modal-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.opp-grad {
  background: linear-gradient(90deg, #a78bfa, #f7b32b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.opp-modal-sub {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- Modal Sections ---- */
.opp-modal-section {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.opp-ms-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.opp-ms-title i { color: #a78bfa; font-size: 15px; }

.opp-ms-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.opp-ms-text strong { color: var(--color-text); }

/* ---- Steps ---- */
.opp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.opp-step-last { border-bottom: none; }

.opp-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid rgba(167,139,250,0.3);
  color: #a78bfa;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-main);
}
.opp-step-gold {
  background: rgba(247,179,43,0.12) !important;
  border-color: rgba(247,179,43,0.4) !important;
  color: #f7b32b !important;
}

.opp-step > div strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}
.opp-step > div p {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- Earn grid ---- */
.opp-earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.opp-earn-item {
  display: flex;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px 14px;
  align-items: flex-start;
}
.opp-earn-gold {
  background: rgba(247,179,43,0.04);
  border-color: rgba(247,179,43,0.2);
}

.opp-earn-item > i {
  font-size: 18px;
  color: #a78bfa;
  width: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.opp-earn-gold > i { color: #f7b32b; }

.opp-earn-item strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 4px;
}
.opp-earn-item p {
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---- Tiers ---- */
.opp-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opp-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.2s;
}
.opp-tier:hover { border-color: rgba(167,139,250,0.3); }

.opp-tier-gold {
  background: rgba(247,179,43,0.04);
  border-color: rgba(247,179,43,0.25) !important;
}
.opp-tier-gold:hover { border-color: rgba(247,179,43,0.45) !important; }

.opp-tier-icon { font-size: 20px; flex-shrink: 0; }

.opp-tier > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.opp-tier strong { font-size: 13px; font-weight: 700; }
.opp-tier-range {
  font-size: 11.5px;
  color: var(--color-text-dim);
}

.opp-tier-mult {
  font-size: 15px;
  font-weight: 900;
  color: #a78bfa;
  font-family: var(--font-main);
  white-space: nowrap;
}
.opp-tier-mult.gold {
  background: linear-gradient(90deg, #f7b32b, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Pre-launch bonus banner ---- */
.opp-bonus-banner {
  margin: 0 32px;
  background: linear-gradient(135deg, rgba(247,179,43,0.08), rgba(255,107,107,0.05));
  border: 1px solid rgba(247,179,43,0.3);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.opp-bonus-banner > i {
  font-size: 20px;
  color: #f7b32b;
  flex-shrink: 0;
  margin-top: 2px;
}

.opp-bonus-banner strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.opp-bonus-banner p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.opp-bonus-banner em { color: #f7b32b; font-style: normal; font-weight: 700; }
.opp-bonus-banner strong.inner { color: var(--color-text); }

/* ---- Platforms ---- */
.opp-plats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.opp-plat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s;
}
.opp-plat:hover { transform: translateY(-2px); }
.opp-plat.instagram { border-color: rgba(225,48,108,0.25); color: #e1306c; }
.opp-plat.tiktok    { border-color: rgba(255,255,255,0.15); }
.opp-plat.youtube   { border-color: rgba(255,0,0,0.25);    color: #ff0000; }
.opp-plat.facebook  { border-color: rgba(24,119,242,0.25); color: #1877f2; }

/* ---- Modal CTA ---- */
.opp-modal-cta {
  padding: 28px 32px;
  text-align: center;
}

.opp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #a78bfa, #f7b32b, #ff6b6b);
  background-size: 200% 200%;
  animation: oppBtnShimmer 3s ease infinite;
  color: #fff;
  border-radius: 14px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 28px rgba(167,139,250,0.35);
}
.opp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(167,139,250,0.5);
  color: #fff;
}
@keyframes oppBtnShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.opp-cta-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-text-dim);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .opp-bar-text { display: none; }
  .opp-modal { width: 100vw; border-left: none; }
  .opp-modal-header,
  .opp-modal-section,
  .opp-modal-cta { padding-left: 20px; padding-right: 20px; }
  .opp-bonus-banner { margin: 0 20px; }
  .opp-earn-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .opp-bar-inner { gap: 7px; }
  .opp-bar-cta { font-size: 12px; }
}
