/* Polished homepage add-ons */

.lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.hero-polished {
  position: relative;
  overflow: hidden;
}

.hero-polished::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(0,247,255,0.12), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(0,247,255,0.08), transparent 45%);
  filter: blur(10px);
  animation: floatGlow 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(20px, -10px, 0) scale(1.03); }
}

.pill-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

.pill-soon {
  border-color: rgba(0,247,255,0.6);
  color: var(--neon);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn-ghost {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: 0.25s;
  background: rgba(255,255,255,0.03);
}

.btn-ghost:hover {
  border-color: rgba(0,247,255,0.6);
  color: var(--neon);
  box-shadow: 0 0 14px rgba(0,247,255,0.2);
}

.hero-card {
  max-width: 520px;
  margin: 35px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 18px;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--neon);
  box-shadow: 0 0 12px rgba(0,247,255,0.8);
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
  color: var(--muted);
}

.cards.polished .card {
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cards.polished .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

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

.feature-list {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li {
  margin: 8px 0;
}

.callout {
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,247,255,0.25);
  background: rgba(0,247,255,0.06);
  text-align: center;
}

.callout-title {
  font-weight: bold;
  margin-bottom: 6px;
}

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

.badge-soon {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,247,255,0.5);
  color: var(--neon);
  background: rgba(0,247,255,0.08);
  font-size: 12px;
}

.logo-strip {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.logo-link {
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.logo-link:hover {
  border-color: rgba(0,247,255,0.6);
  color: var(--neon);
}

.navlink.active {
  color: var(--neon);
}

/* Private top bar */

.private-bar {
  width: 100%;
  background: rgba(0, 247, 255, 0.06);
  border-bottom: 1px solid rgba(0, 247, 255, 0.25);
  font-size: 14px;
}

.private-bar-inner {
  max-width: 1200px; /* match your container width */
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.private-bar-inner div:first-child {
  text-align: left;
}

.private-links a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--text);
}

.private-links a:hover {
  color: var(--neon);
}

/* ===============================
   Private Header Bar
================================= */

.private-bar {
  width: 100%;
  background: rgba(0, 247, 255, 0.05);
  border-bottom: 1px solid rgba(0, 247, 255, 0.2);
  font-size: 14px;
}

.private-bar-inner {
  max-width: 1200px; /* match your container width */
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.private-user {
  font-weight: 600;
  color: var(--neon);
}

.private-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.private-link {
  text-decoration: none;
  color: var(--text);
  transition: 0.2s ease;
}

.private-link:hover {
  color: var(--neon);
}

.private-logout {
  opacity: 0.7;
}

.private-logout:hover {
  opacity: 1;
}