/* ============ Social Pulse — Landing ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette */
  --bg: #08060f;
  --bg2: #0d0a1c;
  --bg3: #120f26;
  --card: #161327;
  --card-2: #1c1938;
  --border: #2a2547;
  --border-soft: #1f1b38;

  --pink: #f472b6;
  --pink-2: #ec4899;
  --pink-deep: #be185d;
  --violet: #a78bfa;
  --violet-2: #8b5cf6;
  --amber: #fcd34d;
  --cyan: #67e8f9;

  --text: #f5f3ff;
  --text-2: #b8b3d4;
  --text-3: #6b6892;
  --muted: #4b4968;

  --glow-pink: 244 114 182;
  --glow-violet: 167 139 250;

  /* Type */
  --f-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
html, body { color: var(--text); font-family: var(--f-body); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  background: transparent;
  position: relative;
}
html { background: var(--bg); }
/* Animated pulsing gradient — fixed full-viewport layer behind everything */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: -2;
  background:
    radial-gradient(80% 70% at 20% 30%, rgba(167,139,250,0.45) 0%, transparent 70%),
    radial-gradient(75% 70% at 80% 20%, rgba(244,114,182,0.38) 0%, transparent 70%),
    radial-gradient(90% 80% at 70% 85%, rgba(139,92,246,0.40) 0%, transparent 70%),
    radial-gradient(70% 70% at 15% 80%, rgba(236,72,153,0.30) 0%, transparent 70%),
    linear-gradient(140deg, #0d0a1c 0%, #120f26 50%, #0a0816 100%);
  animation: page-pulse 2.4s ease-in-out infinite;
  will-change: filter;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 50% 0%, transparent 0%, rgba(8,6,15,0.3) 70%, rgba(8,6,15,0.7) 100%);
  pointer-events: none;
}
/* Gentle heartbeat — brightness only, no transform (prevents banding/seams) */
@keyframes page-pulse {
  0%   { filter: brightness(0.97) saturate(1);    }
  10%  { filter: brightness(1.03) saturate(1.04); }
  20%  { filter: brightness(0.99) saturate(1);    }
  30%  { filter: brightness(1.02) saturate(1.03); }
  40%  { filter: brightness(0.97) saturate(1);    }
  100% { filter: brightness(0.97) saturate(1);    }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* ===== Noise / ambient ===== */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 14px 28px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: linear-gradient(180deg, rgba(8,6,15,0.72) 0%, rgba(8,6,15,0.35) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-display); font-size: 28px; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo em { font-style: normal; color: var(--pink); font-weight: 600; }

/* Animated bulb logo */
.bulb {
  position: relative; width: 46px; height: 46px; flex-shrink: 0;
  display: inline-block;
}
.bulb-img-static {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(244,114,182,0.35));
}

/* large bulb */
.bulb-lg { width: 64px; height: 64px; }

/* ===== Hero pulse (full-width EKG + fixed-size labels & icons) ===== */
.hero-pulse {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hero-pulse-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 80% at 20% 30%, rgba(244,114,182,0.10) 0%, transparent 55%),
    radial-gradient(60% 70% at 50% 20%, rgba(167,139,250,0.12) 0%, transparent 55%),
    radial-gradient(60% 70% at 80% 75%, rgba(139,92,246,0.10) 0%, transparent 55%);
}
.hero-pulse-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 50% 50%, transparent 0%, rgba(8,6,15,0.15) 75%, rgba(8,6,15,0.65) 100%);
}
.hero-pulse-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-pulse-overlay {
  position: absolute; inset: 0; pointer-events: none;
}
.hp-label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(8,6,15,0.95), 0 0 14px rgba(8,6,15,0.85);
  white-space: nowrap;
}
.hp-label.above { margin-top: -34px; }
.hp-label.below { margin-top:  46px; }

@media (max-width: 720px) {
  .hp-label { display: none; }
}
.hp-badge {
  position: absolute;
  width: 36px; height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(8,6,15,0.7), 0 0 0 1px rgba(255,255,255,0.06), 0 0 20px rgba(103,232,249,0.15);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; color: var(--text-2); letter-spacing: 0.01em;
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Sign in: visually distinct from in-page anchors — it's an auth action, not a section jump.
   Higher-contrast text + subtle outlined pill so it reads as a button without competing with the
   gradient primary CTA next to it. */
.nav-links .nav-signin {
  color: var(--text);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.35);
  background: rgba(255, 255, 255, 0.03);
  transition: color .2s, border-color .2s, background .2s;
}
.nav-links .nav-signin:hover {
  color: var(--text);
  border-color: rgba(244, 114, 182, 0.65);
  background: rgba(255, 255, 255, 0.06);
}
/* The underline-slide effect is for in-page anchors; suppress it on the sign-in pill. */
.nav-links .nav-signin::after { display: none; }

@media (max-width: 780px) {
  .nav-links .nav-link { display: none; }
  /* Sign in is an auth action, not an in-page anchor — keep it reachable on mobile. */
  .nav-links .nav-signin { display: inline-flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.005em; transition: transform .2s, box-shadow .3s, background .2s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-2) 50%, var(--violet-2) 100%);
  color: #0a0612; font-weight: 700;
  box-shadow: 0 10px 32px -8px rgba(var(--glow-pink), 0.7), 0 2px 6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 40px -8px rgba(var(--glow-pink), 0.9), 0 2px 6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(244,114,182,0.35); }

.btn-arrow { transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 140px;
  display: flex; flex-direction: column;
}
.hero-top {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 40px;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: clamp(280px, 38vh, 420px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 5%, black 90%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, black 5%, black 90%, transparent 100%);
}
.hero-visual .hero-pulse { position: absolute; inset: 0; }
.hero-pulse-veil {
  background: radial-gradient(70% 60% at 50% 50%, transparent 0%, rgba(8,6,15,0.06) 80%, rgba(8,6,15,0.2) 100%) !important;
}
.hero-bottom {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-filler-below {
  padding: 120px 24px 80px; text-align: center; overflow: hidden;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(244,114,182,0.08); border: 1px solid rgba(244,114,182,0.2);
  font-size: 12px; color: var(--text-2); letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-eyebrow .pill {
  background: rgba(244,114,182,0.2); color: var(--pink);
  padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.hero h1 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(34px, 5.4vw, 80px);
  line-height: 1.02; letter-spacing: -0.045em;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
}
.hero h1 em {
  font-style: normal; font-weight: 700;
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  position: relative;
}
.hero h1 .muted, .hero h1 em.muted { color: var(--text-3); font-style: normal; -webkit-text-fill-color: var(--text-3); background: none; }

.hero p.lede {
  font-size: clamp(16px, 1.3vw, 19px); color: var(--text-2);
  max-width: 580px; margin: 28px auto 0; line-height: 1.55;
}

.hero-ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }

.hero-meta {
  margin-top: 72px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  justify-content: center; color: var(--text-3); font-size: 12.5px;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }
.hero-meta strong { color: var(--text-2); font-weight: 500; }

/* ===== Dreamscape canvas ===== */
.dreamscape {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.ds-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 45% at 20% 28%, rgba(167,139,250,0.18) 0%, transparent 60%),
    radial-gradient(55% 50% at 80% 35%, rgba(244,114,182,0.20) 0%, transparent 60%),
    radial-gradient(80% 60% at 50% 95%, rgba(139,92,246,0.14) 0%, transparent 65%),
    linear-gradient(180deg, #08060f 0%, #0d0a1c 40%, #08060f 100%);
}
.ds-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
}
.ds-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(8,6,15,0.7) 100%);
}

/* Floating media objects */
.floater {
  position: absolute;
  will-change: transform, opacity;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
}
.floater.deep { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)) blur(1.2px); opacity: 0.55; }
.floater.mid  { filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5)); opacity: 0.85; }
.floater.near { filter: drop-shadow(0 14px 36px rgba(0,0,0,0.55)); opacity: 1; }

@keyframes drift-a {
  0%,100% { transform: translate3d(var(--tx,0px), var(--ty,0px), 0) rotate(var(--r,0deg)); }
  50%     { transform: translate3d(calc(var(--tx,0px) + 14px), calc(var(--ty,0px) - 22px), 0) rotate(calc(var(--r,0deg) + 3deg)); }
}
@keyframes drift-b {
  0%,100% { transform: translate3d(var(--tx,0px), var(--ty,0px), 0) rotate(var(--r,0deg)); }
  50%     { transform: translate3d(calc(var(--tx,0px) - 18px), calc(var(--ty,0px) - 14px), 0) rotate(calc(var(--r,0deg) - 4deg)); }
}
@keyframes drift-c {
  0%,100% { transform: translate3d(var(--tx,0px), var(--ty,0px), 0) rotate(var(--r,0deg)); }
  33%     { transform: translate3d(calc(var(--tx,0px) + 10px), calc(var(--ty,0px) - 10px), 0) rotate(calc(var(--r,0deg) + 2deg)); }
  66%     { transform: translate3d(calc(var(--tx,0px) - 8px), calc(var(--ty,0px) - 18px), 0) rotate(calc(var(--r,0deg) - 2deg)); }
}

/* Subtle halo behind key floaters */
.halo {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,0.5) 0%, transparent 70%);
  filter: blur(20px); pointer-events: none;
}

/* ===== Generic section ===== */
section { position: relative; z-index: 2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(244,114,182,0.12); border: 1px solid rgba(244,114,182,0.32);
  color: var(--pink); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 0 0 4px rgba(244,114,182,0.04);
}
.section-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(34px, 4.2vw, 60px); line-height: 1.02; letter-spacing: -0.045em;
  margin-top: 18px; max-width: 760px;
}
.section-title em { font-style: normal; color: var(--pink); font-weight: 700; }
.section-sub { color: var(--text-2); max-width: 520px; margin-top: 16px; font-size: 16px; }

/* ===== Features ===== */
.features {
  padding: 100px 0 90px;
  position: relative;
}
.features::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8,6,15,0.55) 12%, rgba(8,6,15,0.55) 100%);
  pointer-events: none;
  z-index: -1;
}
.features-head { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 64px; flex-wrap: wrap; }
.features-head > div { max-width: 680px; }

.feature-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 26px;
}

.f-card {
  position: relative; grid-column: span 4;
  background: linear-gradient(160deg, rgba(20,17,42,0.92) 0%, rgba(13,10,28,0.96) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 28px;
  overflow: hidden; transition: transform .4s cubic-bezier(.22,.8,.3,1), border-color .3s, background .3s;
}
.f-card.wide  { grid-column: span 6; }
.f-card.full  { grid-column: span 12; }
.f-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,114,182,0.35);
  background: linear-gradient(160deg, rgba(38,30,72,0.8) 0%, rgba(28,22,50,0.9) 100%);
}
.f-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(244,114,182,0.12), transparent 40%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.f-card:hover::before { opacity: 1; }

.f-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(244,114,182,0.18), rgba(167,139,250,0.18));
  border: 1px solid rgba(244,114,182,0.25);
  margin-bottom: 18px;
  color: var(--pink);
}
.f-card h3 {
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.035em; margin-bottom: 8px; line-height: 1.15;
}
.f-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; }

.f-visual { margin-top: 22px; position: relative; }

/* Mini viz shared */
.spark-wrap {
  border-radius: 12px; background: rgba(8,6,15,0.5); border: 1px solid var(--border-soft);
  padding: 14px; overflow: hidden;
}

@media (max-width: 960px) {
  .f-card, .f-card.wide { grid-column: span 6; }
}
@media (max-width: 640px) {
  .f-card, .f-card.wide, .f-card.full { grid-column: span 12; }
}

/* ===== How it works ===== */
.how { padding: 70px 0; }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .how-inner { grid-template-columns: 1fr; gap: 40px; } }

.steps { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }
.step {
  position: relative; padding: 28px 0 28px 72px;
  border-top: 1px solid var(--border-soft);
  cursor: pointer; transition: padding .3s;
}
.step:last-child { border-bottom: 1px solid var(--border-soft); }
.step .num {
  position: absolute; left: 0; top: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0; color: var(--text-2);
  background: var(--card); border: 1px solid var(--border);
  transition: all .3s;
}
.step h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; transition: color .2s; }
.step p { color: var(--text-3); font-size: 14.5px; max-width: 420px; }
.step.active .num,
.step:hover .num {
  background: linear-gradient(135deg, var(--pink), var(--violet-2));
  color: #0a0612; border-color: transparent;
  box-shadow: 0 0 0 4px rgba(244,114,182,0.12), 0 8px 28px -4px rgba(244,114,182,0.5);
}
.step.active h3 { color: var(--text); }

.how-viz {
  position: sticky; top: 100px;
  aspect-ratio: 1.1/1;
  border-radius: 24px; padding: 24px;
  background: linear-gradient(160deg, rgba(28,25,56,0.6) 0%, rgba(14,11,28,0.9) 100%);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

/* ===== Dashboard preview ===== */
.dash-section { padding: 40px 0 80px; }

.dash-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0612;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 80px 160px -40px rgba(124, 58, 237, 0.45),
    0 40px 80px -20px rgba(244,114,182,0.22),
    0 0 0 1px rgba(255,255,255,0.03);
}
.dash-frame-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: rgba(15,11,28,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-frame-dot {
  width: 11px; height: 11px; border-radius: 50%;
  display: inline-block;
  opacity: 0.9;
}
.dash-frame-bar .dash-frame-dot + .dash-frame-dot { margin-left: -4px; }
.dash-frame-url {
  flex: 1;
  margin-left: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 5px 14px;
  border-radius: 8px;
  text-align: center;
  max-width: 360px;
  margin-right: auto;
  margin-left: 14px;
}
.dash-frame-img {
  display: block;
  background: #0a0612;
  position: relative;
}
.dash-frame-img img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.85) contrast(1.03);
}
.dash-frame-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,114,182,0.05) 0%, rgba(167,139,250,0.04) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.dash-wrap {
  position: relative;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(244,114,182,0.4), rgba(167,139,250,0.2) 40%, transparent 80%);
  box-shadow: 0 60px 120px -30px rgba(124, 58, 237, 0.35), 0 30px 60px -15px rgba(244,114,182,0.2);
}
.dash {
  background: linear-gradient(180deg, #120f26 0%, #08060f 100%);
  border-radius: 27px;
  overflow: hidden;
}

.dash-chrome {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(22,19,39,0.8);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #2a2547; }
.dash-dots span:nth-child(1) { background: #ff5f57; opacity: .7; }
.dash-dots span:nth-child(2) { background: #febc2e; opacity: .7; }
.dash-dots span:nth-child(3) { background: #28c840; opacity: .7; }
.dash-url {
  flex: 1; background: var(--bg); border: 1px solid var(--border-soft);
  padding: 6px 14px; border-radius: 8px; font-size: 12px; color: var(--text-3);
  font-family: var(--f-mono);
}
.dash-url b { color: var(--text-2); font-weight: 500; }

.dash-body {
  display: grid; grid-template-columns: 220px 1fr; min-height: 520px;
}
@media (max-width: 820px) { .dash-body { grid-template-columns: 1fr; } .dash-side { display: none; } }

.dash-side {
  background: rgba(10,8,20,0.6); border-right: 1px solid var(--border-soft);
  padding: 22px 16px;
}
.dash-side .dash-org {
  display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 10px;
  background: rgba(244,114,182,0.08); border: 1px solid rgba(244,114,182,0.15);
  margin-bottom: 22px;
}
.dash-side .org-avatar {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); color: #0a0612; font-size: 16px;
}
.dash-side .org-name { font-size: 13px; font-weight: 500; }
.dash-side .org-sub { font-size: 11px; color: var(--text-3); }

.dash-side h4 {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-3); margin: 18px 0 8px; font-weight: 600;
}
.dash-side a {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
  border-radius: 8px; font-size: 13px; color: var(--text-2);
  transition: background .2s, color .2s;
}
.dash-side a:hover { background: rgba(255,255,255,0.03); color: var(--text); }
.dash-side a.active {
  background: rgba(244,114,182,0.1); color: var(--text);
  box-shadow: inset 2px 0 0 var(--pink);
}
.dash-side a .badge {
  margin-left: auto; font-size: 10.5px; font-weight: 600;
  padding: 1px 7px; border-radius: 999px;
  background: var(--pink); color: #0a0612;
}

.dash-main { padding: 24px 28px; }
.dash-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 22px; flex-wrap: wrap; gap: 16px; }
.dash-top h2 {
  font-family: var(--f-display); font-size: 26px; font-weight: 600; letter-spacing: -0.03em;
}
.dash-top p { font-size: 13px; color: var(--text-3); margin-top: 4px; }

.dash-timerange {
  display: flex; background: rgba(255,255,255,0.03); padding: 3px; border-radius: 10px;
  border: 1px solid var(--border-soft);
}
.dash-timerange button {
  padding: 6px 12px; border-radius: 8px; font-size: 12px; color: var(--text-3);
}
.dash-timerange button.active { background: var(--pink); color: #0a0612; font-weight: 600; }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
@media (max-width: 680px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }
.kpi {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 14px;
}
.kpi .label { font-size: 11px; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }
.kpi .value {
  font-family: var(--f-display); font-size: 28px; font-weight: 600; margin-top: 4px;
  letter-spacing: -0.03em;
}
.kpi .delta { font-size: 11.5px; margin-top: 2px; display: inline-flex; align-items: center; gap: 3px; }
.kpi .delta.up { color: #34d399; }
.kpi .delta.down { color: #fb7185; }

.dash-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 14px;
}
@media (max-width: 680px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-panel {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 16px; position: relative; overflow: hidden;
}
.dash-panel h3 {
  font-size: 12.5px; color: var(--text-2); font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center;
}
.dash-panel h3 span { font-size: 11px; color: var(--text-3); }

.scheduled-post {
  display: flex; gap: 10px; padding: 10px; border-radius: 10px;
  border: 1px solid var(--border-soft); background: rgba(10,8,20,0.4);
  margin-bottom: 8px;
}
.scheduled-post:last-child { margin-bottom: 0; }
.scheduled-post .sp-thumb {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #0a0612; font-weight: 600;
}
.scheduled-post .sp-body { flex: 1; min-width: 0; }
.scheduled-post .sp-text { font-size: 12.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scheduled-post .sp-meta { font-size: 11px; color: var(--text-3); margin-top: 3px; }
.scheduled-post .sp-when { font-size: 11px; color: var(--pink); font-family: var(--f-mono); }

/* ===== Final CTA ===== */
.end-cta { padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden; }
.end-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, rgba(244,114,182,0.18), transparent 70%);
  z-index: -1;
}
.end-cta h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 84px); line-height: 1.0; letter-spacing: -0.05em;
  max-width: 900px; margin: 0 auto;
}
.end-cta h2 em { font-style: normal; color: var(--pink); font-weight: 700; }
.end-cta p { color: var(--text-2); margin: 22px auto 36px; max-width: 520px; font-size: 16px; }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 28px 32px; position: relative; z-index: 3;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12.5px; color: var(--text-3); }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-3); font-size: 12px; }

/* ===== Scroll reveal utilities ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.22,.8,.3,1), transform .9s cubic-bezier(.22,.8,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Tweaks panel ===== */
.tweaks-panel {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  background: rgba(16,12,32,0.92); backdrop-filter: blur(18px);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 16px; width: 300px;
  box-shadow: 0 24px 60px -15px rgba(0,0,0,0.6);
  font-size: 13px;
}
.tweaks-panel h4 {
  font-family: var(--f-display); font-size: 16px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.tweaks-panel .tw-sub { color: var(--text-3); font-size: 11.5px; margin-bottom: 14px; }
.tweaks-panel label { display: block; font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin: 14px 0 6px; font-weight: 600; }
.tweaks-panel textarea {
  width: 100%; background: rgba(8,6,15,0.7); border: 1px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 8px 10px; font-family: var(--f-body);
  font-size: 13px; resize: vertical; min-height: 64px;
}
.tweaks-panel .seg {
  display: flex; background: rgba(8,6,15,0.6); padding: 3px; border-radius: 10px; border: 1px solid var(--border-soft);
}
.tweaks-panel .seg button {
  flex: 1; padding: 6px; border-radius: 8px; font-size: 12px; color: var(--text-2);
}
.tweaks-panel .seg button.active { background: var(--pink); color: #0a0612; font-weight: 600; }
.tweaks-panel .tw-hint { margin-top: 14px; font-size: 11px; color: var(--text-3); }

/* ===== Utility ===== */
.mono { font-family: var(--f-mono); }
.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
