/* ============================================================================
   SINORA Partner Program — page styles (RTL / Persian)
   Reuses the Sinora visual system (navy + gold) with IRANSans across the whole
   page (bundled locally below). Layout is mostly Tailwind utilities in the
   markup; this file holds the bespoke components and RTL-safe details.
   ========================================================================== */

/* IRANSans — bundled locally so the page works offline / when zipped.
   url() is relative to THIS css file, so it resolves whether the page is
   served from the site root or opened directly as a file. */
@font-face {
  font-family: "IRANSans";
  src: url("fonts/iran-sans.ttf") format("truetype");
  font-weight: normal; /* single regular file; browser synthesizes bold for headings */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "w_Ray Extra Black";
  src: url("fonts/w_Ray Extra Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #030813;
  --navy-900: #071124;
  --navy-800: #0c1a35;
  --gold-400: #f3d18c;
  --gold-500: #d2ab67;
  --gold-600: #b18843;
  --cream: #e8eaf0;
  --muted: #9aa3b2;
  --line: rgba(210, 171, 103, 0.18);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body.pp-body {
  background-color: var(--navy-950);
  background-image: radial-gradient(circle at 85% 8%, rgba(212, 168, 87, 0.30) 0%, rgba(184, 146, 63, 0.08) 38%, var(--navy-950) 62%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: "IRANSans", "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.9;
}

/* Whole page uses IRANSans, including Latin words; keep bidi isolation so
   brand names / Latin labels sit correctly inside RTL text. */
.pp-latin { direction: ltr; unicode-bidi: isolate; }
.pp-serif { font-family: "w_Ray Extra Black", "IRANSans", system-ui, sans-serif; }

/* ---- typographic helpers ---- */
.pp-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 900;
}
.pp-gold-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pp-gold-grad { background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%); }

/* ---- cards ---- */
.pp-card {
  background: rgba(8, 18, 37, 0.7);
  border: 1px solid rgba(210, 171, 103, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pp-card-soft {
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(210, 171, 103, 0.14);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-card-soft * {
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-card-soft:hover {
  background: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(210, 171, 103, 0.22), 0 0 25px rgba(210, 171, 103, 0.14);
}
.pp-card-soft:hover .pp-step-num {
  color: var(--navy-950) !important;
}
.pp-card-soft:hover .pp-step-line {
  background: linear-gradient(90deg, var(--navy-950), transparent) !important;
}
.pp-card-soft:hover h3 {
  color: var(--navy-950) !important;
}
.pp-card-soft:hover p {
  color: rgba(3, 8, 19, 0.8) !important;
}
.pp-card-soft:hover .pp-latin {
  color: var(--navy-950) !important;
}

/* ---- buttons ---- */
.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.95rem 1.8rem;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.pp-btn-primary {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  color: var(--navy-950);
  box-shadow: 0 10px 30px -12px rgba(210, 171, 103, 0.55);
}
.pp-btn-primary:hover { transform: translateY(-1px); opacity: 0.96; }
.pp-btn-ghost {
  border: 1px solid rgba(210, 171, 103, 0.4);
  color: var(--gold-400);
  background: transparent;
}
.pp-btn-ghost:hover { background: rgba(210, 171, 103, 0.08); }
.pp-btn:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }
.hero-income-cta {
  border-color: rgba(243, 209, 140, 0.72);
  background: rgba(210, 171, 103, 0.08);
  box-shadow: 0 12px 28px -16px rgba(210, 171, 103, 0.72);
}
.hero-income-cta:hover {
  background: rgba(210, 171, 103, 0.16);
  box-shadow: 0 16px 34px -16px rgba(210, 171, 103, 0.85);
  transform: translateY(-1px);
}

/* ---- header / footer ---- */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(3, 8, 19, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(210, 171, 103, 0.12);
}
.pp-header img { height: 30px; width: auto; }
.pp-footer { border-top: 1px solid rgba(210, 171, 103, 0.1); }

/* ---- flow path (محتوا → لید → ...) ---- */
.pp-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.pp-flow-pill {
  border: 1px solid rgba(210, 171, 103, 0.28);
  background: rgba(8, 18, 37, 0.5);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 13.5px;
  color: #d8dce6;
  white-space: nowrap;
}
.pp-flow-pill.is-end {
  border-color: rgba(210, 171, 103, 0.6);
  color: var(--gold-400);
  font-weight: 600;
}
.pp-flow-sep { color: rgba(210, 171, 103, 0.55); flex: 0 0 auto; }

/* ---- step cards ---- */
.pp-step-num {
  font-family: "IRANSans", system-ui, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold-500);
  font-weight: 700;
}
.pp-step-line { width: 42px; height: 3px; background: linear-gradient(90deg, var(--gold-400), transparent); }

/* ---- checklist ---- */
.pp-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.pp-check svg { flex: 0 0 auto; margin-top: 4px; color: var(--gold-400); }
.pp-x svg { color: rgba(220, 120, 110, 0.85); }

/* ---- calculator ---- */
.pp-field-label { font-size: 13px; color: var(--muted); margin-bottom: 0.5rem; display: block; font-weight: 800; }

.pp-select,
.pp-input,
.pp-textarea {
  width: 100%;
  background: rgba(3, 8, 19, 0.6);
  border: 1px solid rgba(210, 171, 103, 0.22);
  border-radius: 12px;
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 15px;
  text-align: right;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pp-textarea { min-height: 120px; resize: vertical; line-height: 1.8; }
.pp-select:focus,
.pp-input:focus,
.pp-textarea:focus {
  outline: none;
  border-color: rgba(210, 171, 103, 0.6);
  box-shadow: 0 0 0 3px rgba(210, 171, 103, 0.12);
}
.pp-select { appearance: none; background-image: none; cursor: pointer; }

/* stepper */
.pp-stepper { display: flex; align-items: center; gap: 0; }
.pp-stepper button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: var(--gold-400);
  background: rgba(3, 8, 19, 0.6);
  border: 1px solid rgba(210, 171, 103, 0.22);
  cursor: pointer;
  transition: background 0.15s ease;
}
.pp-stepper button:hover { background: rgba(210, 171, 103, 0.1); }
.pp-stepper button:focus-visible { outline: 2px solid var(--gold-400); outline-offset: -2px; }
.pp-stepper .pp-stepper-dec { border-radius: 0 12px 12px 0; }
.pp-stepper .pp-stepper-inc { border-radius: 12px 0 0 12px; }
.pp-stepper output {
  min-width: 64px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-top: 1px solid rgba(210, 171, 103, 0.22);
  border-bottom: 1px solid rgba(210, 171, 103, 0.22);
  background: rgba(3, 8, 19, 0.4);
}

.pp-result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(210, 171, 103, 0.14);
}
.pp-result-row:last-child { border-bottom: none; }
.pp-result-total { font-size: 1.7rem; font-weight: 700; color: var(--gold-400); font-family: "IRANSans", sans-serif; }

.pp-rate-badge {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  background: rgba(210, 171, 103, 0.12);
  border: 1px solid rgba(210, 171, 103, 0.35);
  color: var(--gold-400);
  font-weight: 700;
}

/* ---- highlighted boxes ---- */
.pp-highlight {
  border: 1px solid rgba(210, 171, 103, 0.35);
  background: linear-gradient(180deg, rgba(210, 171, 103, 0.08), rgba(210, 171, 103, 0.02));
  border-radius: 14px;
}
.pp-lock {
  border: 1px solid rgba(210, 171, 103, 0.22);
  background: rgba(3, 8, 19, 0.5);
  border-radius: 14px;
  position: relative;
}

/* ---- form checkboxes ---- */
.pp-consent { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; font-weight: 700; }
.pp-consent input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--gold-500); flex: 0 0 auto; cursor: pointer; }

.pp-radio-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pp-radio {
  border: 1px solid rgba(210, 171, 103, 0.22);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 14px;
  color: #d0d5df;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  font-weight: 700;
}
.pp-radio input { position: absolute; opacity: 0; pointer-events: none; }
.pp-radio:has(input:checked) {
  border-color: rgba(210, 171, 103, 0.7);
  background: rgba(210, 171, 103, 0.12);
  color: var(--gold-400);
}
.pp-radio:focus-within { outline: 2px solid var(--gold-400); outline-offset: 2px; }

/* error + success */
.pp-error { color: #e9a3a0; font-size: 13.5px; }
.pp-form-error-box {
  border: 1px solid rgba(220, 120, 110, 0.4);
  background: rgba(220, 120, 110, 0.08);
  border-radius: 12px;
  color: #f0b6b3;
}
.pp-success {
  border: 1px solid rgba(210, 171, 103, 0.4);
  background: linear-gradient(180deg, rgba(210, 171, 103, 0.1), rgba(210, 171, 103, 0.02));
  border-radius: 16px;
}

/* dividers / section rhythm */
.pp-hr { height: 1px; background: linear-gradient(90deg, transparent, rgba(210, 171, 103, 0.2), transparent); }
.pp-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
@media (min-width: 1024px) { .pp-section { padding-top: 6rem; padding-bottom: 6rem; } }

.pp-disclaimer {
  font-size: 12.5px;
  color: #8b93a3;
  line-height: 1.9;
  border-inline-start: 2px solid rgba(210, 171, 103, 0.3);
  padding-inline-start: 0.9rem;
}

/* ---- Value Cycle Section bespoke styles ---- */
.value-cycle-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 87, 0.08) 0%, rgba(3, 8, 19, 0) 70%);
}

.cycle-card {
  background: rgba(8, 18, 37, 0.65);
  border: 1px solid rgba(210, 171, 103, 0.18);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cycle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(210, 171, 103, 0.1) 0%, rgba(210, 171, 103, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cycle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 171, 103, 0.5);
  box-shadow: 0 25px 50px -12px rgba(210, 171, 103, 0.22);
}

.cycle-card:hover::before {
  opacity: 1;
}

.cycle-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(210, 171, 103, 0.15) 0%, rgba(210, 171, 103, 0.03) 100%);
  border: 1px solid rgba(210, 171, 103, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px -8px rgba(210, 171, 103, 0.2);
}

.cycle-card:hover .cycle-icon-wrap {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  border-color: var(--gold-400);
  box-shadow: 0 10px 30px -10px rgba(210, 171, 103, 0.7);
}

.cycle-card:hover .cycle-icon-wrap svg {
  color: var(--navy-950) !important;
  transform: scale(1.1);
}

.cycle-card:hover .cycle-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 1px solid var(--gold-400);
  opacity: 0.4;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

.cycle-num {
  font-family: "w_Ray Extra Black", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(180deg, rgba(210, 171, 103, 0.2) 0%, rgba(210, 171, 103, 0.01) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 16px;
  user-select: none;
}

.cycle-step-arrow {
  color: rgba(210, 171, 103, 0.4);
  animation: float-arrow 2s ease-in-out infinite;
}

@keyframes float-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-6px); } /* Flow right-to-left in RTL */
}

/* Connector Line Animations */
.animated-connector-svg {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 40px;
  height: 24px;
  z-index: 10;
}

.animated-line {
  stroke: var(--gold-500);
  stroke-dasharray: 6, 4;
  animation: flow-dash-rtl 1s linear infinite;
}

@keyframes flow-dash-rtl {
  to { stroke-dashoffset: 10; } /* Flow right-to-left in RTL */
}

/* ---- Hero Section Animations ---- */

/* Floating particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-400);
  opacity: 0;
  animation: hero-twinkle 4s ease-in-out infinite;
}

@keyframes hero-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
  50% { opacity: 0.7; transform: scale(1.2) translateY(-8px); }
}

/* Orbit glow rings */
.hero-orbit-glow {
  animation: hero-orbit-rotate 25s linear infinite;
  box-shadow: 0 0 40px 4px rgba(215, 174, 79, 0.06);
}
.hero-orbit-glow-inner {
  animation: hero-orbit-rotate 18s linear infinite reverse;
  box-shadow: 0 0 30px 2px rgba(215, 174, 79, 0.04);
}

@keyframes hero-orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Phone float */
.hero-phone-float {
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: rotate(-7deg) translateY(0px); }
  50% { transform: rotate(-7deg) translateY(-14px); }
}

/* Stats bar shimmer */
.hero-stats-bar {
  position: relative;
}
.hero-stats-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(215, 174, 79, 0.04), transparent);
  animation: stats-shimmer 6s ease-in-out infinite;
}

@keyframes stats-shimmer {
  0% { left: -60%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Custom Followers Range Slider */
.pp-slider-container {
  display: flex;
  flex-direction: column;
}
.pp-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(210, 171, 103, 0.15);
  border: 1px solid rgba(210, 171, 103, 0.1);
  outline: none;
  margin: 10px 0;
  transition: background 0.3s ease;
}
.pp-range-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  border-radius: 999px;
}
.pp-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  border: 2px solid var(--navy-950);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(210, 171, 103, 0.6), 0 0 0 4px rgba(210, 171, 103, 0.15);
  margin-top: -7px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}
.pp-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 18px rgba(210, 171, 103, 0.9), 0 0 0 6px rgba(210, 171, 103, 0.25);
}
.pp-range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  border: 2px solid var(--navy-950);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(210, 171, 103, 0.6);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pp-range-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

/* Custom Toggle Switch */
.pp-switch-container {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
}
.pp-switch-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pp-switch-slider {
  width: 44px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(210, 171, 103, 0.25);
  border-radius: 999px;
  position: relative;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.pp-switch-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--muted);
  top: 3px;
  right: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}
.pp-switch-checkbox:checked + .pp-switch-slider {
  background-color: rgba(210, 171, 103, 0.12);
  border-color: var(--gold-400);
  box-shadow: 0 0 10px rgba(210, 171, 103, 0.25);
}
.pp-switch-checkbox:checked + .pp-switch-slider::before {
  transform: translateX(-22px);
  background-color: var(--gold-400);
  box-shadow: 0 0 8px rgba(210, 171, 103, 0.6);
}

/* Interactive Tier Cards */
.pp-tier-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8, 18, 37, 0.4);
  border: 1px solid rgba(210, 171, 103, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.pp-tier-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(210, 171, 103, 0.08);
  border: 1px solid rgba(210, 171, 103, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.pp-tier-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--cream);
  transition: color 0.4s ease;
}
.pp-tier-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  border-radius: 6px;
  padding: 1px 6px;
  transition: all 0.4s ease;
}
.pp-tier-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.pp-tier-condition {
  font-size: 11.5px;
  color: var(--muted);
  transition: color 0.4s ease;
}
.pp-tier-indicator {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.5;
  background: rgba(255,255,255,0.03);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

/* Active Tier State */
.pp-tier-card.is-active {
  background: linear-gradient(135deg, rgba(210, 171, 103, 0.08) 0%, rgba(210, 171, 103, 0.01) 100%);
  border-color: rgba(210, 171, 103, 0.6);
  box-shadow: 0 8px 24px -10px rgba(210, 171, 103, 0.3), 0 0 16px rgba(210, 171, 103, 0.06);
  transform: translateY(-2px);
}
.pp-tier-card.is-active .pp-tier-icon-circle {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  border-color: var(--gold-400);
  color: var(--navy-950);
  box-shadow: 0 0 10px rgba(210, 171, 103, 0.4);
  position: relative;
}
.pp-tier-card.is-active .pp-tier-icon-circle::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  opacity: 0.4;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}
.pp-tier-card.is-active .pp-tier-name {
  color: var(--gold-400);
}
.pp-tier-card.is-active .pp-tier-badge {
  background: rgba(210, 171, 103, 0.12);
  border-color: rgba(210, 171, 103, 0.3);
  color: var(--gold-400);
}
.pp-tier-card.is-active .pp-tier-condition {
  color: var(--cream);
}
.pp-tier-card.is-active .pp-tier-indicator {
  opacity: 1;
  color: var(--gold-400);
  background: rgba(210, 171, 103, 0.15);
  border-color: rgba(210, 171, 103, 0.3);
  box-shadow: 0 0 8px rgba(210, 171, 103, 0.15);
}

/* Completed Tier State (past levels) */
.pp-tier-card.is-completed {
  border-color: rgba(210, 171, 103, 0.25);
  background: rgba(8, 18, 37, 0.25);
}
.pp-tier-card.is-completed .pp-tier-icon-circle {
  background: rgba(210, 171, 103, 0.15);
  border-color: rgba(210, 171, 103, 0.3);
  color: var(--gold-400);
}
.pp-tier-card.is-completed .pp-tier-indicator {
  opacity: 0.8;
  color: #34d399; /* Green active mark */
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.2);
}
