/* =============================================
   UYOOP V2 — www.uyoop.fr
   Landing page — Infrastructure souveraine
   Directeur Artistique : illustrer avant d'expliquer
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core */
  --bg-deep: #000000;
  --bg-primary: #050505;
  --bg-card: rgba(17, 17, 17, 0.6);
  --bg-card-hover: rgba(26, 26, 26, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #777777;
  --accent: #00ff00;
  --accent-glow: rgba(0, 255, 0, 0.12);
  --accent-dim: #00cc88;
  --border: #222222;
  --border-glass: rgba(255, 255, 255, 0.06);

  /* 4 Pôles — TLD colors */
  --net: #00ffff;
  --com: #ff00ff;
  --biz: #ff3333;
  --org: #ffaa00;

  --net-glow: rgba(0, 255, 255, 0.15);
  --com-glow: rgba(255, 0, 255, 0.15);
  --biz-glow: rgba(255, 51, 51, 0.15);
  --org-glow: rgba(255, 170, 0, 0.15);

  /* Fonts */
  --font-brand: 'Comfortaa', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-blur: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--bg-deep);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--text-primary);
}

/* --- Green "u" brand accent (global) --- */
.u {
  color: var(--accent);
}

/* --- Shared --- */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.section--compact {
  min-height: 60vh;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* --- Branded divider between sections --- */
.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

/* Brand divider — 4 pole dots */
.bd-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0 3px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.bd-net { background: var(--net); }
.bd-com { background: var(--com); }
.bd-biz { background: var(--biz); }
.bd-org { background: var(--org); }

.brand-divider::before,
.brand-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.brand-divider::before {
  margin-right: 1.5rem;
}

.brand-divider::after {
  margin-left: 1.5rem;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* --- Background: Aurora --- */
.bg-aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-aurora::before,
.bg-aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: aurora 25s ease-in-out infinite alternate;
}

.bg-aurora::before {
  width: 500px;
  height: 500px;
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.4;
}

.bg-aurora::after {
  width: 400px;
  height: 400px;
  bottom: 15%;
  right: 10%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.06), transparent 70%);
  opacity: 0.3;
  animation-delay: -12s;
}

@keyframes aurora {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% + 40px);
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.9) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.nav-logo {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo-img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.3));
  transition: opacity 0.3s;
}

.nav-logo-img:hover {
  opacity: 0.8;
}

.nav-contact {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* ========================================
   SECTION 1 — HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-logo {
  position: absolute;
  width: clamp(280px, 45vw, 550px);
  height: auto;
  opacity: 0.06;
  filter: drop-shadow(0 0 80px rgba(0, 255, 0, 0.2));
  z-index: 0;
  pointer-events: none;
  animation: logo-pulse 8s ease-in-out infinite alternate;
}

@keyframes logo-pulse {
  0% { opacity: 0.04; filter: drop-shadow(0 0 60px rgba(0, 255, 0, 0.15)); }
  100% { opacity: 0.08; filter: drop-shadow(0 0 100px rgba(0, 255, 0, 0.25)); }
}

.hero-brand {
  position: relative;
  z-index: 1;
  font-family: var(--font-brand);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-slogan {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-tagline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse-down 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes pulse-down {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   SECTION 2 — LE CONSTAT
   ======================================== */
.constat {
  background: var(--bg-primary);
}

.constat-content {
  max-width: 750px;
  text-align: center;
}

.constat-counter {
  margin-bottom: 3rem;
}

.constat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  opacity: 0.15;
  margin-bottom: 0.5rem;
}

.constat-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.constat-detail {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 2.2;
  margin-bottom: 2.5rem;
}

.constat-detail strong {
  color: var(--text-primary);
  font-weight: 500;
}

.constat-question {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
}

.constat-question em {
  font-style: normal;
  color: var(--accent);
}

/* ========================================
   SECTION 3 — LES 4 PÔLES (Écosystème)
   ======================================== */
.poles {
  background: var(--bg-deep);
}

.poles-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* Logo brand — logo + text */
.logo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.logo-brand img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.3));
}

.logo-brand > span {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo-brand--sm {
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.logo-brand--sm img {
  width: 36px;
  height: 36px;
}

.logo-brand--sm > span {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.poles-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 3.5rem;
}

.poles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pole-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s,
              box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

/* Glow line at top */
.pole-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 2px;
  transition: opacity 0.4s, left 0.4s, right 0.4s;
  opacity: 0.6;
}

.pole-net::before { background: var(--net); }
.pole-com::before { background: var(--com); }
.pole-biz::before { background: var(--biz); }
.pole-org::before { background: var(--org); }

.pole-card:hover::before {
  opacity: 1;
  left: 10%;
  right: 10%;
}

.pole-net:hover { border-color: rgba(0, 255, 255, 0.3); box-shadow: 0 8px 40px rgba(0, 255, 255, 0.08); }
.pole-com:hover { border-color: rgba(255, 0, 255, 0.3); box-shadow: 0 8px 40px rgba(255, 0, 255, 0.08); }
.pole-biz:hover { border-color: rgba(255, 51, 51, 0.3); box-shadow: 0 8px 40px rgba(255, 51, 51, 0.08); }
.pole-org:hover { border-color: rgba(255, 170, 0, 0.3); box-shadow: 0 8px 40px rgba(255, 170, 0, 0.08); }

.pole-card:hover {
  transform: translateY(-6px);
}

.pole-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pole-icon svg {
  width: 64px;
  height: 64px;
}

.pole-domain {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.pole-net .pole-domain { color: var(--net); }
.pole-com .pole-domain { color: var(--com); }
.pole-biz .pole-domain { color: var(--biz); }
.pole-org .pole-domain { color: var(--org); }

.pole-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.pole-pitch {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.pole-sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--text-muted);
}

/* ========================================
   SECTION 4 — uHub (Le produit)
   ======================================== */
.uhub {
  background: var(--bg-primary);
}

.uhub-content {
  max-width: 900px;
  text-align: center;
}

.uhub-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.uhub-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.uhub-modules {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.uhub-module {
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

/* Module colors by TLD domain */
.mod-net { border-color: rgba(0, 255, 255, 0.2); }
.mod-net:hover { border-color: var(--net); color: var(--net); background: rgba(0, 255, 255, 0.06); }

.mod-com { border-color: rgba(255, 0, 255, 0.2); }
.mod-com:hover { border-color: var(--com); color: var(--com); background: rgba(255, 0, 255, 0.06); }

.mod-biz { border-color: rgba(255, 51, 51, 0.2); }
.mod-biz:hover { border-color: var(--biz); color: var(--biz); background: rgba(255, 51, 51, 0.06); }

.mod-org { border-color: rgba(255, 170, 0, 0.2); }
.mod-org:hover { border-color: var(--org); color: var(--org); background: rgba(255, 170, 0, 0.06); }

.uhub-baseline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
}

.uhub-baseline span {
  color: var(--accent);
}

/* ========================================
   SECTION 5 — L'HUMAIN
   ======================================== */
.humain {
  background: var(--bg-deep);
}

.humain-content {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.humain-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.humain-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.humain-body p:last-child {
  margin-bottom: 0;
}

.humain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.humain-stat {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  text-align: center;
}

.humain-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.humain-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.humain-stat-label span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ========================================
   SECTION 6 — CONVICTIONS (4 piliers)
   ======================================== */
.convictions {
  background: var(--bg-primary);
  min-height: auto;
  padding: 5rem 2rem;
}

.convictions-content {
  max-width: 1000px;
  width: 100%;
}

.convictions-header {
  text-align: center;
  margin-bottom: 3rem;
}

.convictions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.conviction {
  text-align: center;
  padding: 2rem 1rem;
}

.conviction-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conviction-icon svg {
  width: 64px;
  height: 64px;
}

.conviction-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.conviction-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   SECTION 7 — MANIFESTO
   ======================================== */
.manifesto {
  background: var(--bg-deep);
  text-align: center;
  min-height: 50vh;
}

.manifesto-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.manifesto-logo {
  width: clamp(60px, 10vw, 100px);
  height: auto;
  opacity: 0.10;
  filter: drop-shadow(0 0 40px rgba(0, 255, 0, 0.2));
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 750px;
}

.manifesto-text .line-muted {
  color: var(--text-muted);
}

.manifesto-text .line-accent {
  color: var(--accent);
}

.manifesto-sig {
  font-family: var(--font-brand);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ========================================
   SECTION 8 — CTA
   ======================================== */
.cta {
  background: var(--bg-primary);
  text-align: center;
}

.cta-content {
  max-width: 600px;
}

.cta-logo {
  width: 72px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.15));
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.cta-email:hover {
  background: var(--accent-dim);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.25);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  z-index: 1;
  position: relative;
}

.footer-logo {
  width: 36px;
  height: auto;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

.footer-brand {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========================================
   MAINTENANCE MODE
   ======================================== */
body.maintenance .section:not(.hero):not(.cta),
body.maintenance .nav-contact {
  display: none;
}

body.maintenance .hero-tagline::after {
  content: "Maintenance en cours. Nous revenons rapidement.";
  display: block;
  margin-top: 1.5rem;
  color: var(--accent);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .poles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .humain-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .humain-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .convictions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section {
    min-height: auto;
    padding: 3rem 1.2rem;
  }

  .section--compact {
    min-height: auto;
  }

  .hero {
    min-height: 100vh;
    padding-top: 5rem;
  }

  .manifesto {
    min-height: auto;
    padding: 3rem 1.2rem;
  }

  .poles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .pole-card {
    padding: 1.5rem 0.8rem 1.2rem;
  }

  .pole-name {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .pole-pitch {
    font-size: 0.75rem;
  }

  .pole-domain {
    font-size: 1.2rem;
  }

  .convictions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .conviction {
    padding: 1.2rem 0.8rem;
  }

  .humain-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .humain-stat {
    padding: 1.2rem 0.8rem;
  }

  .nav {
    padding: 1rem 1.2rem;
  }

  .nav-contact {
    display: none;
  }

  .uhub-modules {
    gap: 0.4rem;
  }

  .uhub-module {
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
  }

  .constat-num {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .brand-divider {
    padding: 1.5rem 0;
  }
}

/* ========================================
   CODE GIMMICKS — Decorative code-style accents
   ======================================== */

/* Section label prefixes — colored code operators */
.section-label::before {
  font-weight: 400;
  margin-right: 0.5em;
  letter-spacing: 0;
  opacity: 0.6;
}

.poles .section-label::before        { content: '//'; color: var(--net); }
.uhub .section-label::before        { content: '>';  color: var(--accent); }
.humain .section-label::before      { content: '|';  color: var(--com); }
.convictions .section-label::before { content: ':='; color: var(--org); }

/* Pole card sub — colored command prompt */
.pole-sub::before {
  content: '> ';
  opacity: 0.4;
}

.pole-net .pole-sub::before { color: var(--net); }
.pole-com .pole-sub::before { color: var(--com); }
.pole-biz .pole-sub::before { color: var(--biz); }
.pole-org .pole-sub::before { color: var(--org); }

/* Conviction items — pole color accents */
.conv-net .conviction-name { color: var(--net); }
.conv-biz .conviction-name { color: var(--biz); }
.conv-com .conviction-name { color: var(--com); }
.conv-org .conviction-name { color: var(--org); }

/* Manifesto — code-style quote markers */
.manifesto-text .line-muted::before {
  content: '// ';
  opacity: 0.3;
}

.manifesto-text .line-accent::before {
  content: '> ';
  opacity: 0.5;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
