/* ============================================================
   PrivaPaid — Custom Theme
   Dark theme overrides for Bootstrap 5.3.2 + custom components
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root,
[data-bs-theme="dark"] {
  --bs-body-bg: #08080d;
  --bs-body-color: #c0c0cc;
  --bs-emphasis-color: #ffffff;

  --bg-dark: #08080d;
  --bg-card: #111119;
  --bg-card-hover: #161622;
  --accent: #c9506b;
  --accent-glow: rgba(201, 80, 107, 0.10);
  --accent-light: #d4738a;
  --green: #34d399;
  --red: #f87171;
  --white: #ffffff;
  --gray-100: #f0f0f5;
  --gray-300: #b8b8c8;
  --gray-500: #80809a;
  --gray-700: #222233;
  --purple: #8b5cf6;
  --teal: #0ea5e9;

  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ===== LOCALE BAR ===== */
.locale-bar {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 1029;
  background: rgba(17, 17, 25, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0 0.6rem;
  overflow: visible;
}

.locale-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding-top: 5px;
}

.locale-bar-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.locale-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.lang-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

a.lang-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

span.lang-link.active {
  color: var(--accent);
  background: var(--accent-glow);
  border-color: rgba(201, 80, 107, 0.4);
}

.pp-footer .lang-link {
  color: rgba(255, 255, 255, 0.4);
}

.pp-footer a.lang-link:hover {
  color: var(--accent);
}

.pp-footer span.lang-link.active {
  color: var(--accent);
}

/* ===== BASE ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-300);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: -0.02em;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--accent-light); }

.accent { color: var(--accent); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.pp-nav {
  padding: 14px 0;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
  background: rgba(8, 8, 13, 0.82);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.pp-logo {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  letter-spacing: -0.01em !important;
}
.pp-logo .accent { color: var(--accent) !important; }

.pp-logo-img { border-radius: 8px; }

.pp-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-logo-icon svg { width: 16px; height: 16px; fill: var(--bg-dark); }

.pp-logo-icon-sm {
  width: 22px;
  height: 22px;
}
.pp-logo-icon-sm svg { width: 13px; height: 13px; }

.pp-nav-link {
  color: var(--gray-500) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0;
  transition: color 0.25s ease !important;
}

.pp-nav-link:hover,
.pp-nav-link:focus { color: var(--white) !important; }

.navbar-toggler:focus { box-shadow: none; }

/* ===== BUTTONS ===== */
.btn-privapaid {
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 600;
  border: none;
  border-radius: 980px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}

.btn-privapaid:hover {
  background: var(--accent-light);
  color: var(--white) !important;
  transform: scale(1.02);
  box-shadow: 0 4px 24px rgba(201, 80, 107, 0.25);
}

.btn-privapaid:active {
  transform: scale(0.98);
}

.btn-privapaid-lg {
  padding: 14px 32px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-privapaid-lg svg { width: 15px; height: 15px; fill: currentColor; }

.btn-privapaid-xl {
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-privapaid-xl svg { width: 17px; height: 17px; fill: currentColor; }

.btn-outline-privapaid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-300);
  padding: 14px 32px;
  border-radius: 980px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-privapaid:hover {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  transform: scale(1.02);
}

/* ===== SECTION HEADINGS ===== */
.pp-section { padding: 120px 0; position: relative; }

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 64px;
}

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

.pp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(201, 80, 107, 0.05) 0%, rgba(108, 63, 197, 0.02) 35%, transparent 65%);
  pointer-events: none;
}

.pp-hero-shield {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  animation: shieldPulse 6s ease-in-out infinite;
}

.pp-hero-shield svg { width: 100%; height: 100%; }

.pp-hero h1 {
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1;
  margin-bottom: 20px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.pp-hero h1 .accent { color: var(--accent); }

.pp-hero-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--gray-300);
  font-weight: 400;
  margin-bottom: 16px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.pp-hero-tagline {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.7;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.pp-hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 64px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  flex-wrap: wrap;
}

.pp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* ===== FORK CARDS ===== */
.pp-fork-card {
  display: block;
  text-decoration: none;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  text-align: center;
}
.pp-fork-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.pp-fork-card-creators:hover { border-color: rgba(201, 80, 107, 0.5); box-shadow: 0 8px 40px rgba(201, 80, 107, 0.1); }
.pp-fork-card-operators:hover { border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 8px 40px rgba(139, 92, 246, 0.1); }
.pp-fork-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.pp-fork-card-creators .pp-fork-icon { background: rgba(201, 80, 107, 0.15); color: var(--accent); }
.pp-fork-card-operators .pp-fork-icon { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.pp-fork-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.pp-fork-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pp-fork-cta {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pp-fork-card-creators .pp-fork-cta { color: var(--accent); }
.pp-fork-card-operators .pp-fork-cta { color: #8b5cf6; }

.pp-hero-stat { text-align: center; }

.pp-hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  letter-spacing: -0.02em;
}

.pp-hero-stat-label {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* Sub-page hero (smaller) */
.pp-hero-sub {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-hero-sub::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 80, 107, 0.04) 0%, rgba(108, 63, 197, 0.015) 40%, transparent 70%);
  pointer-events: none;
}

.pp-hero-sub h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.pp-hero-sub .pp-hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS ===== */
.pp-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.pp-card:hover {
  border-color: rgba(255,255,255,0.08);
  transform: scale(1.015);
  background: var(--bg-card-hover);
}

.pp-card-accent-top::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 80, 107, 0.3), transparent);
}

.pp-card-accent-orange::before { background: linear-gradient(90deg, transparent, rgba(201, 80, 107, 0.3), transparent); }
.pp-card-accent-green::before { background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), transparent); }
.pp-card-accent-purple::before { background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent); }
.pp-card-accent-teal::before { background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent); }
.pp-card-accent-red::before { background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.3), transparent); }

.pp-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pp-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Badges */
.pp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 980px;
  margin-bottom: 16px;
}

.pp-badge-orange { background: rgba(201, 80, 107, 0.1); color: var(--accent); }
.pp-badge-green { background: rgba(52, 211, 153, 0.1); color: var(--green); }
.pp-badge-purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }

/* Card icons */
.pp-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.pp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.25s ease;
}

.pp-card:hover .pp-card-link { gap: 10px; }

/* ===== PROBLEM CARDS ===== */
.pp-problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.pp-problem-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.08);
  transform: scale(1.015);
}

.pp-problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.pp-problem-icon-red { background: rgba(248, 113, 113, 0.08); color: var(--red); }
.pp-problem-icon-orange { background: rgba(201, 80, 107, 0.08); color: var(--accent); }

.pp-problem-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.pp-problem-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== PILLAR CARDS ===== */
.pp-pillar {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.pp-pillar:hover {
  border-color: rgba(255,255,255,0.08);
  transform: scale(1.015);
}

.pp-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.pp-pillar-icon-purple { background: rgba(139, 92, 246, 0.08); color: var(--purple); }
.pp-pillar-icon-orange { background: rgba(201, 80, 107, 0.08); color: var(--accent); }
.pp-pillar-icon-green { background: rgba(52, 211, 153, 0.08); color: var(--green); }

.pp-pillar h3 { font-size: 19px; margin-bottom: 12px; font-weight: 600; }
.pp-pillar p { font-size: 15px; line-height: 1.65; color: var(--gray-500); margin-bottom: 0; }

/* ===== PRIVACY TREND CHART ===== */
.pp-trend-chart-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px 16px;
}
.pp-trend-source {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin: 12px 0 0;
}
.pp-trend-source a {
  color: var(--accent-light);
  text-decoration: none;
}
.pp-trend-source a:hover {
  text-decoration: underline;
}

/* ===== COMPARISON BARS ===== */
.comp-bar {
  display: grid;
  grid-template-columns: 140px 1fr 100px;
  align-items: center;
  gap: 16px;
}

.comp-bar-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-300);
}
.comp-bar-name.highlight { color: var(--accent); }

.comp-bar-track {
  height: 40px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  overflow: hidden;
}

.comp-bar-fill {
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
}

.comp-bar-fill-red { background: rgba(248, 113, 113, 0.2); }
.comp-bar-fill-orange { background: rgba(201, 80, 107, 0.2); }
.comp-bar-fill-blue { background: rgba(59, 130, 246, 0.2); }
.comp-bar-fill-green { background: rgba(52, 211, 153, 0.25); }

.comp-bar-fee {
  font-size: 13px;
  color: var(--gray-500);
  text-align: right;
}

.comp-callout {
  background: var(--bg-card);
  border: 1px solid rgba(201, 80, 107, 0.1);
  border-radius: 14px;
  padding: 24px 32px;
  text-align: center;
  font-size: 16px;
  color: var(--gray-300);
  font-weight: 500;
  line-height: 1.6;
}
.comp-callout strong { color: var(--accent); }

/* ===== HOW IT WORKS ===== */
.pp-step { text-align: center; position: relative; }

.pp-step-arrow::after {
  content: '\2192';
  position: absolute;
  right: -18px;
  top: 28px;
  color: rgba(255,255,255,0.15);
  font-size: 20px;
}

.pp-step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 80, 107, 0.08);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pp-step h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pp-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== FEATURE TABLE ===== */
.pp-feature-table {
  width: 100%;
  border-collapse: collapse;
}

.pp-feature-table th,
.pp-feature-table td {
  padding: 16px 14px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pp-feature-table th {
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  padding-bottom: 20px;
}

.pp-feature-table th:last-child { color: var(--accent); font-weight: 700; }
.pp-feature-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
.pp-feature-table td:last-child { background: rgba(201, 80, 107, 0.03); font-weight: 600; }

.pp-feature-table tr:hover td { background: rgba(255,255,255,0.015); }
.pp-feature-table tr:hover td:last-child { background: rgba(201, 80, 107, 0.05); }

.val-good { color: var(--green); }
.val-bad { color: var(--red); }
.val-mid { color: var(--gray-500); }

/* ===== CTA SECTION ===== */
.pp-cta-section {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.pp-cta-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 80, 107, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.pp-cta-section h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.pp-cta-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.pp-cta-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  letter-spacing: -0.02em;
}

.pp-cta-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ===== SECTION DIVIDERS ===== */
.pp-section-border {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.pp-bg-gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0b0b14 100%);
}

/* ===== SOVEREIGNTY VISUAL ===== */
.pp-sovereignty-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}

.pp-sovereignty-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.pp-sovereignty-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.pp-sovereignty-icon-red {
  background: rgba(248, 113, 113, 0.10);
  color: var(--red);
  border: 1px solid rgba(248, 113, 113, 0.20);
}

.pp-sovereignty-icon-green {
  background: rgba(52, 211, 153, 0.10);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.20);
}

.pp-sovereignty-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.pp-sovereignty-caption {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  max-width: 200px;
}

.pp-sovereignty-arrow {
  font-size: 28px;
  color: var(--green);
}

@media (max-width: 575.98px) {
  .pp-sovereignty-visual {
    gap: 24px;
  }
  .pp-sovereignty-side {
    min-width: 120px;
  }
  .pp-sovereignty-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .pp-sovereignty-label {
    font-size: 15px;
  }
}

/* ===== SOVEREIGNTY CTA ===== */
.pp-sovereignty-cta {
  font-size: 12px;
  color: var(--green);
  margin-top: 8px;
  transition: color 0.25s ease;
}
.pp-sovereignty-after:hover .pp-sovereignty-cta {
  color: var(--white);
}
.pp-sovereignty-after:hover .pp-sovereignty-icon-green {
  background: rgba(52, 211, 153, 0.18);
}

/* ===== NODE STEWARDS MODAL ===== */
.pp-modal {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--bs-body-color);
}
.pp-modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}
.pp-modal-header .modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.pp-modal-subtitle {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}
.pp-modal-body {
  padding: 20px 24px;
}

/* ===== GET STARTED MODAL ===== */
.pp-step-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.pp-step-card:last-of-type {
  margin-bottom: 0;
}
.pp-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.pp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.pp-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin: 0;
}
.pp-step-desc {
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 12px;
  line-height: 1.5;
}
.pp-step-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--gray-500);
  font-size: 13px;
}
.pp-step-divider::before,
.pp-step-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.pp-step-fallback-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.pp-steward-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: border-color 0.25s ease;
}
.pp-steward-card:hover {
  border-color: rgba(52, 211, 153, 0.25);
}
.pp-steward-photo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}
.pp-steward-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 18px;
}
.pp-steward-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.pp-steward-verified {
  color: var(--green);
  font-size: 12px;
}
.pp-steward-bio {
  font-size: 13px;
  color: var(--gray-500);
  margin: 8px 0;
}
.pp-steward-meta {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pp-steward-meta a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.25s ease;
}
.pp-steward-meta a:hover {
  color: var(--white);
}
.pp-steward-rating {
  color: #f5a623;
}

/* ===== FOOTER ===== */
.pp-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0;
}

.pp-footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.pp-footer-brand .accent { color: var(--accent); }

.pp-footer-sub {
  font-size: 13px;
  color: var(--gray-500);
}
.pp-footer-sub a { color: var(--accent); }

.pp-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pp-footer-links-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.pp-footer-links-inline a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.25s ease;
}
.pp-footer-links-inline a:hover { color: var(--white); }

.pp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
}

.pp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-footer-links a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.25s ease;
}
.pp-footer-links a:hover { color: var(--white); }

.pp-satsrail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 20px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.pp-satsrail-badge:hover {
  color: #d4a017;
  border-color: rgba(212, 160, 23, 0.3);
}
.pp-satsrail-badge-logo {
  height: 14px;
  width: auto;
}

/* ===== FORM STYLES ===== */
.pp-form .form-control,
.pp-form .form-select {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pp-form .form-control:focus,
.pp-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-card);
  color: var(--white);
}

.pp-form .form-control::placeholder {
  color: var(--gray-500);
}

.pp-form .form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.pp-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ===== CHART CONTAINERS ===== */
.pp-chart-container {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.pp-chart-container canvas {
  max-height: 400px;
}

/* ===== PRICING CARD ===== */
.pp-pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 80, 107, 0.12);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pp-pricing-amount {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.pp-pricing-unit {
  font-size: 14px;
  color: var(--gray-500);
}

/* ===== PLAN CARDS (dynamic) ===== */
.pp-plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-plan-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: scale(1.015);
}

.pp-plan-recommended {
  border-color: rgba(201, 80, 107, 0.2);
  background: linear-gradient(180deg, rgba(201, 80, 107, 0.04) 0%, var(--bg-card) 40%);
}

.pp-plan-recommended::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 20px 20px 0 0;
}

.pp-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 18px;
  border-radius: 980px;
}

.pp-plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.pp-plan-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 24px;
}

.pp-plan-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.pp-plan-price span {
  font-size: 16px;
  color: var(--gray-500);
  font-family: var(--font-body);
  font-weight: 400;
}

.pp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.55;
}

.pp-plan-features li {
  padding: 7px 0;
}

.pp-plan-features i {
  color: var(--green);
  margin-right: 8px;
  font-size: 13px;
}
.pp-plan-features li.disabled {
  color: var(--gray-600);
}
.pp-plan-features li.disabled i {
  color: var(--gray-600);
}

/* ===== VALUE PROPS LIST ===== */
.pp-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pp-value-item:last-child { border-bottom: none; }

.pp-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pp-value-icon-orange { background: rgba(201, 80, 107, 0.08); color: var(--accent); }
.pp-value-icon-green { background: rgba(52, 211, 153, 0.08); color: var(--green); }
.pp-value-icon-purple { background: rgba(139, 92, 246, 0.08); color: var(--purple); }

.pp-value-item h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.pp-value-item p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== EXCHANGE RIBBON ===== */
@keyframes ribbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pp-ribbon-wrap {
  overflow: hidden;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pp-ribbon-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: ribbonScroll 30s linear infinite;
  padding: 28px 0;
}

.pp-ribbon-track:hover { animation-play-state: paused; }

.pp-ribbon-logo {
  height: 44px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.pp-ribbon-logo:hover {
  opacity: 0.8;
  filter: grayscale(0);
  transform: scale(1.06);
}

/* ===== EXCHANGE SEARCH ===== */
.pp-exchange-search-wrap {
  position: relative;
}

.pp-exchange-search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 14px;
}

.pp-exchange-search {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px 12px 40px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  transition: border-color 0.25s ease;
}

.pp-exchange-search:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===== EXCHANGE CARDS ===== */
.pp-exchange-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.pp-exchange-card:hover {
  transform: scale(1.015);
  border-color: rgba(201, 80, 107, 0.2);
}
.pp-exchange-logo-wrap {
  text-align: center;
  margin-bottom: 16px;
}
.pp-exchange-logo-wrap img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  border-radius: 8px;
}
.pp-exchange-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pp-exchange-name a {
  color: var(--white);
  text-decoration: none;
}
.pp-exchange-name a:hover {
  color: var(--accent);
}
.pp-exchange-promoted {
  display: inline-block;
  background: rgba(201, 80, 107, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 980px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pp-exchange-meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.pp-exchange-meta i {
  margin-right: 4px;
}
.pp-exchange-notes {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
  line-height: 1.5;
}
.pp-exchange-countries {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pp-exchange-country {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-300);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 980px;
  white-space: nowrap;
}
.pp-exchange-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pp-exchange-link:hover {
  opacity: 0.8;
  color: var(--accent);
}
.pp-exchange-no-results p {
  color: var(--gray-500);
}

/* ===== HANDOFF DIAGRAM ===== */
.pp-handoff {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}
.pp-handoff-box {
  flex: 1;
  max-width: 300px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.pp-handoff-box h4 {
  color: var(--gray-100);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pp-handoff-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.pp-handoff-box ul li {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}
.pp-handoff-box ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pp-handoff-box-orange { border-top: 2px solid rgba(251, 146, 60, 0.5); }
.pp-handoff-box-purple { border-top: 2px solid rgba(139, 92, 246, 0.5); }
.pp-handoff-box-green  { border-top: 2px solid rgba(52, 211, 153, 0.5); }
.pp-handoff-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--gray-500);
  font-size: 24px;
}

/* ===== MATH TABLE ===== */
.pp-math-table { font-size: 13px; }
.pp-math-table th { font-size: 11px; }
.pp-math-highlight td {
  background: rgba(52, 211, 153, 0.08) !important;
  border-top: 1px solid rgba(52, 211, 153, 0.2);
}

/* ===== MINI TABLE (channel dashboard preview) ===== */
.pp-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pp-mini-table th {
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pp-mini-table td {
  color: var(--gray-200);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pp-mini-table tr:last-child td { border-bottom: none; }

/* ===== SECTION PHOTOS ===== */
.pp-section-photo {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.pp-section-photo:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .pp-step-arrow::after { display: none; }
  .pp-handoff { flex-direction: column; align-items: center; }
  .pp-handoff-box { max-width: 100%; width: 100%; }
  .pp-handoff-arrow { transform: rotate(90deg); padding: 12px 0; }
}

@media (max-width: 767.98px) {
  .pp-hero { align-items: flex-start; padding-top: 160px; }
  .pp-section { padding: 80px 0; }
  .pp-hero-stats { gap: 28px; }
  .pp-hero-stat-num { font-size: 24px; }
  .comp-bar { grid-template-columns: 100px 1fr 70px; gap: 8px; }
  .comp-bar-name { font-size: 14px; }
  .pp-feature-table { font-size: 11px; }
  .pp-feature-table th, .pp-feature-table td { padding: 12px 6px; }
  .pp-cta-stats { gap: 32px; }
  .pp-cta-stat-num { font-size: 32px; }
  .pp-footer-links { gap: 10px; }
  .pp-pricing-amount { font-size: 44px; }
}

@media (max-width: 575.98px) {
  .pp-hero-stats { flex-direction: column; gap: 20px; }
  .comp-bar { grid-template-columns: 1fr; gap: 4px; }
  .comp-bar-fee { text-align: left; }
  .pp-cta-stats { flex-direction: column; gap: 24px; }
  .pp-hero-cta-row { flex-direction: column; align-items: center; }
}

/* Demo Gallery */
.pp-demo-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pp-demo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 80, 107, 0.3);
}
.pp-demo-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-100);
  margin: 16px 20px 4px;
}
.pp-demo-card p {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0 20px 20px;
  line-height: 1.6;
}
.pp-demo-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
}
.pp-demo-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pp-demo-card:hover .pp-demo-thumb {
  transform: scale(1.05);
}
.pp-demo-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 24px;
  color: #fff;
}
.pp-demo-card:hover .pp-demo-zoom {
  opacity: 1;
}

/* Demo Modal */
.pp-demo-modal .modal-content {
  background: var(--bg-main, #0d0d0d);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
}
.pp-demo-modal .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  opacity: 0.7;
}
.pp-demo-modal .btn-close:hover { opacity: 1; }
.pp-demo-modal .modal-body img {
  border-radius: 8px;
  max-height: 75vh;
  object-fit: contain;
}
.pp-demo-modal .modal-body h4 {
  color: var(--gray-100);
  font-size: 20px;
  font-weight: 600;
}
.pp-demo-modal .modal-body p {
  color: var(--gray-400);
  font-size: 15px;
  max-width: 600px;
  margin: 8px auto 0;
  line-height: 1.6;
}

/* ============================================================
   /start/ page — sovereign stack step layout
   ============================================================ */
.pp-start-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pp-start-step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  margin-top: 4px;
}
.pp-start-step-num-orange { background: rgba(212,160,23,0.15); color: var(--accent); border: 1px solid rgba(212,160,23,0.3); }
.pp-start-step-num-purple { background: rgba(139,92,246,0.12); color: var(--purple); border: 1px solid rgba(139,92,246,0.25); }
.pp-start-step-num-green  { background: rgba(52,211,153,0.10); color: var(--green);  border: 1px solid rgba(52,211,153,0.25); }
.pp-start-step-body { flex: 1; }
.pp-start-step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 8px;
}
.pp-start-step-desc {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}
.pp-start-step-detail {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
}
.pp-start-step-detail i { flex-shrink: 0; margin-top: 1px; }
.pp-start-step-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: var(--gray-600);
  font-size: 22px;
  margin: 4px 0 4px 14px;
}
