@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600&display=swap');


:root {
  --bg: #050814;
  --bg-alt: #060b1c;
  --bg-soft: #0b1329;
  --card: #111a35;
  --card-soft: #141f3d;
  --accent: #eeb34d;
  --accent-soft: rgba(59, 130, 246, 0.15);
  --accent-strong: #2563eb;
  --accent-pill: #38bdf8;
  --success: #22c55e;
  --danger: #ef4444;
  --text: #e5ecff;
  --text-soft: #9ca9d9;
  --border-subtle: rgba(148, 163, 184, 0.2);
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.85);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --nav-height: 76px;
  --max-width: 1120px;
  /* Brand blues / backgrounds (already similar in your file) */
  --bg-deep: #050b25;
  --bg-main: #050814;
  --bg-alt: #060b1c;
  --bg-soft: #0b1329;

  --surface-card: #111a35;
  --surface-card-soft: #141f3d;

  /* Text colors */
  --text-main: #e5ecff;
  --text-soft: #9ca9d9;
  --text-muted: #64748b;

  /* Existing accent (kept as brand cyan) */
  --brand-blue: #2aa7ff; /* main brand cyan */
  --brand-blue-soft: rgba(42, 167, 255, 0.18);

  /* NEW: Accent system */
  --accent-mint: #2affd9;      /* futuristic glow, matches logo core */
  --accent-mint-soft: rgba(42, 255, 217, 0.18);

  --accent-gold: #eeb34d;      /* premium, CTAs, “important” */
  --accent-gold-soft: rgba(238, 179, 77, 0.25);

  --accent-violet: #8a5cff;    /* depth, subtle gradients */
  --accent-violet-soft: rgba(138, 92, 255, 0.24);

  /* Status / semantic colors */
  --status-success: #22c55e;
  --status-success-soft: rgba(34, 197, 94, 0.16);

  --status-warning: #f97316;
  --status-warning-soft: rgba(249, 115, 22, 0.17);

  --status-danger: #ef4444;
  --status-danger-soft: rgba(239, 68, 68, 0.18);

  /* Shadows / borders */
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.85);
  --border-subtle: rgba(148, 163, 184, 0.2);

  /* Semantic tokens (what the UI actually uses) */
  --cta-primary-bg: var(--accent-gold);
  --cta-primary-text: #173a8c;
  --cta-secondary-bg: rgba(15, 23, 42, 0.9);
  --cta-secondary-border: rgba(148, 163, 184, 0.38);

  --chip-info-bg: rgba(59, 130, 246, 0.18);
  --chip-info-border: rgba(59, 130, 246, 0.55);

  --glow-mint: var(--accent-mint-soft);
  --glow-blue: rgba(59, 130, 246, 0.40);
  --glow-violet: var(--accent-violet-soft);

  --divider-glow: var(--glow-blue);
}


el.classList.remove("glow-anim");
void el.offsetWidth; // forces reflow
el.classList.add("glow-anim");



* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 40%, #000 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(26px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.96),
    rgba(2, 6, 23, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0 0, #4ade80, transparent 55%),
    radial-gradient(circle at 100% 0, #38bdf8, transparent 55%),
    radial-gradient(circle at 50% 100%, #6366f1, transparent 55%);
  position: relative;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-mark::after {
  content: "G";
  font-weight: 800;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.94);
  text-shadow: 0 0 20px rgba(15, 23, 42, 0.75);
}

.nav-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-title-main {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.nav-title-sub {
  font-size: 0.72rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-link {
  color: var(--text-soft);
  transition: color 0.18s ease, opacity 0.18s ease;
  opacity: 0.85;
}

.nav-link:hover {
  color: var(--text);
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-pill);
  padding: 0.68rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, border-color 0.15s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.55);
  color: #0b1020;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-soft);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.9);
  color: var(--text);
  background: rgba(15, 23, 42, 0.9);
}

.btn-icon {
  font-size: 1.08rem;
  line-height: 1;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  font-size: 0.7rem;
  color: #bbf7d0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* HERO */
.hero {
  padding: 3.2rem 0 3.6rem;
}

@media (min-width: 900px) {
  .hero {
    padding: 4rem 0 4.6rem;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero-kicker-pill {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: #bae6fd;
  font-size: 0.72rem;
}

.hero-kicker-text {
  color: var(--text-soft);
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #60a5fa, #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.7rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-note-pill {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-soft);
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-foot strong {
  color: var(--text);
  font-weight: 600;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-soft);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.8);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero-card {
    padding: 1.8rem 1.7rem;
  }
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hero-chip {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.55);
}

.hero-tagline {
  font-size: 0.75rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-tagline-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.4);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.hero-metric {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.hero-metric-label {
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.hero-metric-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-metric-value.positive {
  color: #4ade80;
}

.hero-metric-value.neutral {
  color: #38bdf8;
}

.hero-metric-value.warning {
  color: #fbbf24;
}

.hero-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  margin-top: 0.15rem;
  background: rgba(22, 101, 52, 0.5);
  color: #bbf7d0;
}

.hero-list {
  margin-bottom: 1.2rem;
}

.hero-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.hero-list-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: var(--accent-pill);
}

.hero-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
}

.hero-footer-label {
  color: var(--text-soft);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero-badge-small {
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #bfdbfe;
  background: rgba(15, 23, 42, 0.9);
}

.hero-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.55), transparent 60%);
  filter: blur(18px);
  opacity: 0.55;
  top: -45px;
  right: -90px;
  pointer-events: none;
}

.hero-orb-bottom {
  position: absolute;
  width: 280px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.4), transparent 65%);
  filter: blur(20px);
  opacity: 0.45;
  bottom: -90px;
  left: -100px;
  pointer-events: none;
}

/* SECTIONS */
section {
  padding: 2.8rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 3.4rem 0;
  }
}

.section-header {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.feature-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.65);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.26), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 13px;
  background: rgba(30, 64, 175, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.8);
}

.feature-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #bfdbfe;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.45);
}

.feature-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.9);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.feature-list li {
  display: flex;
  gap: 0.3rem;
  align-items: flex-start;
  margin-top: 0.15rem;
}

.feature-list li span {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.9);
}

/* HOW IT WORKS */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.1rem 1.1rem 1.2rem;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.28rem;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* PRICING */
.pricing-layout {
  display: grid;
  gap: 1.3rem;
}

@media (min-width: 900px) {
  .pricing-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

.pricing-illustration {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 4px);
  margin-bottom: 1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.pricing-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.28), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.pricing-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #bfdbfe;
  margin-bottom: 0.2rem;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pricing-price {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-soft);
}

.pricing-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.pricing-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.pricing-list li span {
  color: #22c55e;
  font-size: 1rem;
  line-height: 1.1;
}

.pricing-tagline {
  font-size: 0.8rem;
  color: #bfdbfe;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.pricing-tagline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
}

.pricing-secondary {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.1rem 1.2rem 1.3rem;
}

.pricing-secondary-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pricing-secondary-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.pricing-tier-row {
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .pricing-tier-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pricing-tier {
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 0.8rem 0.9rem;
  font-size: 0.86rem;
}

.pricing-tier-name {
  font-weight: 600;
  margin-bottom: 0.05rem;
}

.pricing-tier-price {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.pricing-tier-note {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  gap: 1rem;
}

@media (min-width: 880px) {
  .testimonials {
    grid-template-columns: 1.25fr 1fr;
  }
}

.quote-card {
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "“";
  position: absolute;
  font-size: 4.5rem;
  top: -0.7rem;
  right: 1.2rem;
  color: rgba(55, 65, 81, 0.7);
  font-family: "Georgia", serif;
}

.quote-text {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quote-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #4ade80);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 700;
  font-size: 0.9rem;
}

.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
}

.quote-name {
  font-weight: 600;
}

.quote-role {
  color: var(--text-soft);
}

.mini-grid {
  display: grid;
  gap: 0.7rem;
}

.mini-stat {
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.26);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.mini-stat strong {
  color: var(--text);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.2rem;
}

/* CTA SECTION */
.cta {
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.9rem 1.6rem 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 3rem;
}

@media (min-width: 880px) {
  .cta {
    padding: 2.1rem 2.2rem 2.3rem;
  }
}

.cta-inner {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 800px) {
  .cta-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.cta-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.cta-note {
  font-size: 0.8rem;
  color: #bfdbfe;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.85);
}

.cta-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.cta-checklist li span {
  font-size: 0.9rem;
  color: #22c55e;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.5rem 0 2rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.4rem;
  }
  .hero-foot {
    align-items: flex-start;
  }
  .hero-foot > div:first-child {
    flex: 1 1 100%;
  }
}

/* Smaller beta badge */
.nav-badge {
  font-size: 0.65rem;     /* smaller text */
  padding: 2px 6px;       /* smaller padding */
  gap: 4px;               /* less space between dot and text */
  border-radius: 6px;     /* softer shape */
  transform: translateY(1px); /* nudges it down for better alignment */
}

/* Smaller dot */
.nav-badge-dot {
  width: 6px;
  height: 6px;
}

/* Auth pages -------------------------------------------------- */

.auth-body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #2aa7ff22 0, transparent 60%),
                radial-gradient(circle at bottom, #eeb34d22 0, transparent 60%),
                #050b25; /* or your existing site background */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-container {
    max-width: 380px;
    width: 100%;
    background: rgba(23, 58, 140, 0.9);
    padding: 35px 32px 30px;
    border-radius: 16px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
    border: 1px solid rgba(234, 242, 251, 0.1);
}

.auth-container h1 {
    color: #eaf2fb;
    margin-bottom: 6px;
    font-size: 1.8rem;
}

.auth-subtitle {
    color: #adc4da;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.auth-form label {
    color: #adc4da;
    font-size: 0.85rem;
}

.auth-form input {
    padding: 11px 13px;
    border-radius: 10px;
    border: 1px solid #2aa7ff55;
    background: #102858;
    color: #eaf2fb;
    font-size: 0.95rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.auth-form input::placeholder {
    color: #6e85a5;
}

.auth-form input:focus {
    outline: none;
    border-color: #2aa7ff;
    background: #173a8c;
    box-shadow: 0 0 0 2px #2aa7ff33;
}

.auth-form button {
    margin-top: 8px;
    padding: 11px;
    background: #eeb34d;
    color: #173a8c;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    font-size: 0.98rem;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.auth-form button:hover {
    background: #f5c766;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(238, 179, 77, 0.45);
}

.auth-form button:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(238, 179, 77, 0.3);
}

.auth-error,
.auth-success {
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-align: left;
}

.auth-error {
    background: rgba(255, 75, 90, 0.16);
    border: 1px solid rgba(255, 75, 90, 0.4);
    color: #ffd8dd;
}

.auth-success {
    background: rgba(60, 215, 130, 0.16);
    border: 1px solid rgba(60, 215, 130, 0.4);
    color: #d3ffe7;
}

.auth-footer {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #adc4da;
}

.auth-footer a {
    color: #2aa7ff;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Dashboard layout tweaks (if used on auth pages wrapper) */
.dash-shell {
  min-height: 100vh;
  background: radial-gradient(circle at top, #2aa7ff22 0, transparent 60%),
              radial-gradient(circle at bottom, #eeb34d22 0, transparent 60%),
              #050b25;
}

.dash-shell-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.2rem;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}




.dash-topbar-title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dash-topbar-title h1 {
  font-size: 1.4rem;
  margin: 0;
}

.dash-topbar-title span {
  font-size: 0.85rem;
  color: #9ca9d9;
}



/* Simple table styling for dashboards */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  color: #e5ecff;
}

.table thead {
  background: rgba(15, 23, 42, 0.85);
}

.table th,
.table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  text-align: left;
}

.table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca9d9;
}

.table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.6);
}

.table tbody tr:hover {
  background: rgba(37, 99, 235, 0.18);
}

/* Toast / inline message */
.inline-msg {
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}

.inline-msg span.icon {
  font-size: 1rem;
  margin-top: 1px;
}

.inline-msg.success {
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(22, 163, 74, 0.4);
  color: #bbf7d0;
}

.inline-msg.error {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fecaca;
}

/* Simple form controls */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.8rem;
  color: #9ca9d9;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  color: #e5ecff;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 2.4rem;
}

.form-field textarea {
  min-height: 80px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6);
}

/* Tiny helper text */
.form-help {
  font-size: 0.78rem;
  color: #64748b;
}

/* Simple badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
border: 1px solid rgba(238, 179, 77, 0.55);
  color: #e5ecff;
  background: rgba(15, 23, 42, 0.8);
}

.badge-muted {
  border-color: rgba(148, 163, 184, 0.2);
  color: #94a3b8;
}

/* Generate-policy specific tweaks */
.policy-output {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.9rem;
  line-height: 1.6;
  max-height: 420px;
  overflow: auto;
  white-space: pre-wrap;
}

.policy-output h2,
.policy-output h3,
.policy-output h4 {
  margin-top: 0.8rem;
  margin-bottom: 0.45rem;
}

.policy-output h2 {
  font-size: 1.05rem;
}

.policy-output h3 {
  font-size: 0.98rem;
}

.policy-output h4 {
  font-size: 0.92rem;
}

.policy-output ul,
.policy-output ol {
  padding-left: 1.4rem;
}

/* Simple pill tabs for policy sections */
.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.tab-pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  color: #eeb34d;
  cursor: pointer;
}

.tab-pill.active {
  border-color: #3b82f6;
  background: rgba(37, 99, 235, 0.22);
  color: #e5ecff;
}

/* Beta admin / signup tweaks */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(56, 189, 248, 0.55);
  background: rgba(15, 23, 42, 0.9);
  color: #e0f2fe;
}

.badge-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.badge-soft {
  border-color: rgba(148, 163, 184, 0.4);
  color: #e5ecff;
}

/* Simple inline link button */
.link-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #22c55e;
  text-decoration: underline;
  cursor: pointer;
}

.link-button:hover {
  color: #4ade80;
}

/* Simple "danger" link style for destructive actions */
.danger-link {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #f97316;
  text-decoration: underline;
  cursor: pointer;
}

.danger-link:hover {
  color: #fb923c;
}

.cancel-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #94a3b8;
  text-decoration: underline;
  cursor: pointer;
}

.cancel-button:hover {
  color: #64748b;
}

.dash-header-actions {
    margin-left: auto;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

/* ---------------------------------------------------------
   Modern Form Enhancements for Policy Generator
---------------------------------------------------------- */

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Section blocks */
.form-section {
    background: rgba(37, 67, 165, 0.25);
    border: 1px solid rgba(42, 167, 255, 0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
}

.form-section-header {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.form-section-header h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #eaf2fb;
}

.form-section-header p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #adc4da;
}

/* Icon styling */
.form-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    background: rgba(42, 167, 255, 0.18);
    color: #2aa7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Two-column layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 800px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

/* Pill Checkbox Grid */
.pill-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 620px) {
    .pill-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Pill Checkbox Design */
.pill-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(23, 58, 140, 0.35);
    border: 1px solid rgba(42, 167, 255, 0.15);
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.18s ease;
}

.pill-checkbox:hover {
    background: rgba(23, 58, 140, 0.5);
    border-color: rgba(42, 167, 255, 0.35);
}

/* Hide default checkbox */
.pill-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: #2aa7ff;
}

.pill-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pill-title {
    color: #eaf2fb;
    font-weight: 600;
    font-size: 0.95rem;
}

.pill-desc {
    color: #adc4da;
    font-size: 0.8rem;
}

/* Input / textarea refinement */
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(23, 58, 140, 0.4);
    border: 1px solid rgba(42, 167, 255, 0.3);
    color: #eaf2fb;
    padding: 0.75rem 0.9rem;
    border-radius: 0.75rem;
    font-size: 0.92rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adc4da;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 1px solid #2aa7ff;
    border-color: #2aa7ff;
}

/* Helper text */
.form-helper {
    font-size: 0.8rem;
    margin: 0.4rem 0 0;
    color: #adc4da;
}

/* Status messaging */
.status-text {
    font-size: 0.85rem;
    color: #adc4da;
}

.status-error {
    color: #eeb34d !important;
}

.status-success {
    color: #2aa7ff !important;
}

/* Preview card alignment tweaks */
/* Policy preview pane – light document on dark app */
/* Force the policy preview to look like a clean white document */
/* Generate-policy preview – white doc, single spacing */
/* Generate-policy specific tweaks */
.policy-output {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  /* background: rgba(15, 23, 42, 0.95);  <-- can remove this too */
  font-size: 0.9rem;
  /* REMOVE these two lines: */
  /* line-height: 1.6; */
  /* white-space: pre-wrap; */
  max-height: 420px;
  overflow: auto;
}


/* ---------------------------------------------------------
   Loading indicator for Policy Generator
---------------------------------------------------------- */

.loading-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #adc4da;
}

.spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(173, 196, 218, 0.4);
    border-top-color: #2aa7ff;
    animation: gov-spin 0.7s linear infinite;
}

.loading-text {
    font-size: 0.82rem;
    opacity: 0.9;
}

/* Simple spin animation */
@keyframes gov-spin {
    to {
        transform: rotate(360deg);
    }
}
.table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th,
.data-table td {
    padding: 0.55rem 0.5rem;
    border-bottom: 1px solid rgba(173, 196, 218, 0.25);
    text-align: left;
}

.data-table th {
    font-weight: 600;
    color: #eaf2fb;
    font-size: 0.85rem;
    opacity: 0.9;
}

.data-table tr:hover td {
    background: rgba(23, 58, 140, 0.35);
}




/* ---------------------------------------------------------
   Profile page layout
---------------------------------------------------------- */

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2fr);
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.8);
}

.profile-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.profile-avatar {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(42, 167, 255, 0.6);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.8);
  background: radial-gradient(circle at top, #2aa7ff55, transparent 60%);
}

.profile-basic-text {
  text-align: center;
  margin-bottom: 0.5rem;
}

.profile-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.profile-headline {
  font-size: 0.85rem;
  color: #9ca9d9;
  margin-bottom: 0.3rem;
}

.profile-email {
  font-size: 0.8rem;
  color: #64748b;
}

.profile-sidebar-note {
  font-size: 0.78rem;
  color: #9ca9d9;
  margin-top: 0.4rem;
}

.profile-sidebar-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-sidebar-item {
  font-size: 0.82rem;
  color: #e5ecff;
  margin-bottom: 0.25rem;
}

.profile-sidebar-label {
  color: #9ca9d9;
  margin-right: 0.25rem;
}

/* Main column */
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-form .form-section {
  margin-bottom: 1rem;
}

/* Checkbox label alignment in profile form */
.profile-form .form-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #e5ecff;
}

.profile-form .form-checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

/* Account Hub layout */
.account-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 1.3rem;
}

@media (max-width: 900px) {
  .account-hub-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.account-hub-column {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.account-hub-title-row {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.4rem;
}

.account-hub-avatar-wrap {
  flex-shrink: 0;
}

.account-hub-avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 2px solid rgba(42, 167, 255, 0.7);
  object-fit: cover;
  background: radial-gradient(circle at top, #2aa7ff55, transparent 60%);
}

.account-hub-basic {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.account-hub-name {
  font-weight: 600;
  font-size: 1rem;
}

.account-hub-headline {
  font-size: 0.85rem;
  color: #9ca9d9;
}

.account-hub-email {
  font-size: 0.8rem;
  color: #64748b;
}

.account-hub-meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.account-hub-meta-item {
  font-size: 0.82rem;
  color: #e5ecff;
}

.account-hub-label {
  display: block;
  font-size: 0.75rem;
  color: #9ca9d9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.account-hub-bio {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #e5ecff;
}

.account-hub-empty {
  font-size: 0.82rem;
  color: #94a3b8;
}

.account-hub-section {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(5, 12, 40, 0.95);
  padding: 0.85rem 0.9rem;
}

.account-hub-section-title {
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.account-hub-ai-usage {
  font-size: 0.84rem;
  color: #e5ecff;
  margin-bottom: 0.5rem;
}

.account-hub-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.account-hub-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.account-hub-link {
  font-size: 0.8rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  color: #e5ecff;
  text-decoration: none;
}

.account-hub-link:hover {
  border-color: #2aa7ff;
}

.account-hub-foot {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #9ca9d9;
}

/* Account Hub profile card */
.account-profile-box {
    background: rgba(10, 20, 55, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    color: #eaf2fb;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.account-profile-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.account-profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #2aa7ff;
    background: rgba(42,167,255,0.15);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.account-profile-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.account-profile-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.account-profile-headline {
    font-size: 0.9rem;
    color: #9bb3d9;
}

.account-profile-email {
    font-size: 0.85rem;
    color: #6c7fa9;
}

.account-profile-section {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.account-profile-label {
    font-size: 0.72rem;
    color: #89a2c4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.account-profile-value {
    font-size: 0.88rem;
    line-height: 1.4;
}

.account-profile-footer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #8ea4c8;
}

/* Account Hub overall stack: profile card + account settings form */
.account-hub-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Profile card only; doesn't alter form inputs */
.account-profile-box {
  background: rgba(10, 20, 55, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  color: #eaf2fb;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.account-profile-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.account-profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #2aa7ff;
  background: rgba(42, 167, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.account-profile-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.account-profile-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.account-profile-headline {
  font-size: 0.9rem;
  color: #9bb3d9;
}

.account-profile-email {
  font-size: 0.85rem;
  color: #6c7fa9;
}

.account-profile-section {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.account-profile-label {
  font-size: 0.72rem;
  color: #89a2c4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-profile-value {
  font-size: 0.88rem;
  line-height: 1.4;
}

.account-profile-footer {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #8ea4c8;
}

.account-hub-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.account-profile-box {
  background: rgba(10, 20, 55, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  color: #eaf2fb;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.account-profile-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.account-profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #2aa7ff;
  background: rgba(42, 167, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.account-profile-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.account-profile-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.account-profile-headline {
  font-size: 0.9rem;
  color: #9bb3d9;
}

.account-profile-email {
  font-size: 0.85rem;
  color: #6c7fa9;
}

.account-profile-section {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.account-profile-label {
  font-size: 0.72rem;
  color: #89a2c4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-profile-value {
  font-size: 0.88rem;
  line-height: 1.4;
}

.account-profile-footer {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #8ea4c8;
}

/* FORCE all policy preview areas to look like a printed document */
.policy-output,
.policy-preview,
.policy-preview-container,
.live-preview,
.preview-pane,
.policy-content,
.generated-policy,
#policy-output,
#policyPreview {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 18px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0,0,0,0.15) !important;
    line-height: 1.4 !important;
}

/* Final policy preview typography – single spaced */
.policy-output {
  line-height: 1.2 !important;    /* nice, tight lines */
  white-space: normal !important;  /* don’t preserve extra blank lines */
}

.policy-output p,
.policy-output li {
  margin: 0 0 4px !important;      /* small gap between bullets/paragraphs */
}



.dash-main-card {
    position: relative;
}

.dash-datetime {
    margin-left: auto;           /* pushes it to the right */
    font-size: 0.9rem;
    color: #adc4da;
    opacity: 0.9;
    padding-right: 4px;          /* tiny nudge */
}

    
#policy-hub .table {
  margin-bottom: 0 !important;
}
#policy-hub .policy-output {
  margin-top: 0.15rem !important;
  padding-top: 0.7rem !important;
}    
    

/* ---------------------------------------------------------
   Member profile (public view)
---------------------------------------------------------- */

.member-profile-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(10, 20, 55, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.member-profile-header {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: flex-start;
}

.member-profile-main {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.member-profile-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.member-profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #eaf2fb;
}

.member-profile-headline {
  font-size: 0.95rem;
  color: #cbd5ff;
}

.member-profile-company {
  font-size: 0.9rem;
  color: #a5b4fc;
  margin-top: 0.15rem;
}

.member-profile-meta {
  font-size: 0.8rem;
  color: #8ea4c8;
  margin-top: 0.1rem;
}

.member-profile-cta {
  display: flex;
  align-items: flex-start;
}

.member-profile-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.member-profile-section {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 0.85rem;
}

@media (max-width: 720px) {
  .member-profile-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .member-profile-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.member-profile-section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #94a3b8;
}

.member-profile-section-content {
  font-size: 0.92rem;
  color: #e5ecff;
}

.member-profile-bio {
  margin: 0;
  line-height: 1.55;
}

.member-profile-bio-empty {
  color: #64748b;
  font-style: italic;
}

.member-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem;
}

.member-profile-chip-block {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.member-profile-chip-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.member-profile-chip-text {
  font-size: 0.9rem;
  color: #e5ecff;
  text-align: left;
  /* white-spatexalignce: pre-wrap; */
}

.member-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.member-profile-link-pill {
  font-size: 0.82rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e2e8f0;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.9);
}

.member-profile-link-pill:hover {
  border-color: rgba(56, 189, 248, 0.7);
  color: #f9fafb;
}

.member-profile-footer-note {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #8ea4c8;
}

@media (max-width: 640px) {
  .dash-main-card .btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
  }
}

/* ---------------------------------
   Option A: Clean white "G" + cyan glow
----------------------------------*/
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Soft cyan halo on dark bg */
  background:
    radial-gradient(circle at center,
      rgba(42, 167, 255, 0.28) 0,
      transparent 60%);
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.45),
    0 0 26px rgba(42, 167, 255, 0.85);

  overflow: hidden;
  animation: govLogoGlow 4.5s ease-in-out infinite;
}

/* Inner ring so it feels like a floating badge */
.nav-logo-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%,
      rgba(42, 167, 255, 0.4),
      rgba(5, 11, 37, 0.95) 55%);
}

/* The letter itself – clean white */
.nav-logo-mark::after {
  content: "G";
  position: relative;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.02em;

  /* Glow around the letter so it feels lit from within */
  text-shadow:
    0 0 10px rgba(42, 167, 255, 0.9),
    0 0 18px rgba(42, 167, 255, 0.7);
}

/* Slow, subtle pulsing glow */
@keyframes govLogoGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(148, 163, 184, 0.45),
      0 0 22px rgba(42, 167, 255, 0.7);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(148, 163, 184, 0.6),
      0 0 34px rgba(42, 167, 255, 0.95);
    transform: translateY(-1px);
  }
}


/* Topbar layout helper (if not there already) */
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

/* Quick actions container */
.dash-quick-actions {
  position: relative;
  margin-left: 0.3rem;      /* tiny gap from datetime pill */
}

/* Icon button */
.quick-actions-trigger {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 30% 0,
              rgba(42, 167, 255, 0.5),
              rgba(10, 19, 55, 0.98));
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #eeb34d;
  font-size: 1.1rem;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.quick-actions-trigger:hover {
  transform: translateY(-1px);
  border-color: #eeb34d;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 1);
}

.quick-actions-icon {
  transform: translateY(-1px);
}

/* Dropdown panel */
.quick-actions-menu {
  position: relative;
  top: 110%;
  left: 0;
  min-width: 230px;
  border-radius: 14px;
  border: 1px solid rgba(42, 167, 255, 0.45);
  background:
    radial-gradient(circle at top,
      rgba(42, 167, 255, 0.26),
      rgba(5, 12, 40, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
  padding: 0.6rem 0;
  font-size: 0.86rem;
  color: #eeb34d;
  z-index: 30;

  opacity: 0;
  transform: translateY(-4px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

/* Open state toggled via JS */
.quick-actions-menu.open {
  opacity: 1;
  transform: translateY(4px) scale(1);
  pointer-events: auto;
}

.quick-actions-header {
  padding: 0.35rem 0.85rem 0.45rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color:#eeb34d;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.quick-actions-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  color: #eaf2fb;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.quick-actions-item span {
  width: 1.2rem;
  text-align: center;
  opacity: 0.9;
}

.quick-actions-item:hover {
  background: rgba(42, 167, 255, 0.16);
  color: #ffffff;
}

.quick-actions-danger {
  color: #facc15;
}

.quick-actions-danger:hover {
  background: rgba(248, 113, 113, 0.18);
  color: #fee2e2;
}

/* On small screens, keep it from overflowing */
@media (max-width: 480px) {
  .quick-actions-menu {
    right: -8px;
  }
}

.quick-actions-btn {
  position: fixed;
  top: 1rem;       /* distance from top of screen */
  left: 1rem;      /* distance from left of screen */
  z-index: 9999;   /* keep it above panels/cards */
}

@media (max-width: 640px) {
  .quick-actions-btn {
    top: 0.6rem;
    left: 0.6rem;
    transform: scale(0.9);
  }
}


/* Top bar layout */
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.dash-topbar-title h1 {
  margin: 0;
}

.dash-topbar-title span {
  font-size: 0.85rem;
  color: #9ca9d9;
}

/* Keep datetime on the right, then the icon */
.dash-datetime {
  margin-left: auto;
  font-size: 0.9rem;
  color: #adc4da;
}

/* Top bar layout */
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.dash-topbar-title h1 {
  margin: 0;
}

.dash-topbar-title span {
  font-size: 0.85rem;
  color: #9ca9d9;
}

/* Datetime on the right */
.dash-datetime {
  margin-left: auto;
  font-size: 0.9rem;
  color: #adc4da;
}

/* Quick actions wrapper */
.dash-quick-actions {
  position: relative;
  margin-left: 0rem;
}

/* Icon button */
.quick-actions-trigger {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 30% 0,
              rgba(42, 167, 255, 0.55),
              rgba(10, 19, 55, 0.98));
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #eaf2fb;
  font-size: 1.1rem;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.quick-actions-trigger:hover {
  transform: translateY(-1px);
  border-color: #2aa7ff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 1);
}

.quick-actions-icon {
  transform: translateY(-1px);
}

/* DROPDOWN PANEL (HIDDEN BY DEFAULT) */
.quick-actions-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 230px;
  border-radius: 14px;
  border: 1px solid rgba(42, 167, 255, 0.45);
  background:
    radial-gradient(circle at top,
      rgba(42, 167, 255, 0.26),
      rgba(5, 12, 40, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
  padding: 0.6rem 0;
  font-size: 0.86rem;
  color: #eeb34db;
  z-index: 30;

  /* KEY PART: hide on all devices until .open is added */
  display: none;
}

/* When JS toggles .open, show it */
.quick-actions-menu.open {
  display: block;
}

.quick-actions-header {
  padding: 0.35rem 0.85rem 0.45rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca9d9;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.quick-actions-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  color: #eaf2fb;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.quick-actions-item span {
  width: 1.2rem;
  text-align: center;
  opacity: 0.9;
}

.quick-actions-item:hover {
  background: rgba(42, 167, 255, 0.16);
  color: #ffffff;
}

.quick-actions-danger {
  color: #facc15;
}

.quick-actions-danger:hover {
  background: rgba(248, 113, 113, 0.18);
  color: #fee2e2;
}

/* Keep it inside the screen on very small devices */
@media (max-width: 480px) {
  .quick-actions-menu {
    right: -8px;
  }
}

/* --- Hard override for quick actions dropdown (mobile-safe) --- */

/* Always hidden by default on all screen sizes */
.quick-actions-menu {
  display: none !important;
  position: absolute;
  top: 110%;
  right: 0;
}

/* Only shown when JS toggles .open */
.quick-actions-menu.open {
  display: block !important;
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-quick-actions {
  margin-left: 0; /* Remove previous right-side spacing */
}

.dash-topbar-title {
  margin-right: auto; /* Push date/time to the right */
}
/* Put the quick-actions button in the upper-left of the main dashboard card */
.dash-main-card {
  position: relative; /* already present, but safe to keep */
}

/* Override previous layout positioning */
.dash-quick-actions {
  position: absolute;
  top: 0.9rem;      /* distance from top of the dashboard card */
  left: 1rem;       /* distance from left edge of the card */
  margin-left: 0;   /* cancel any old flex spacing */
}

/* --- Mobile fix for hub display area --- */
@media (max-width: 480px) {

  .dash-bottom {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;

    /* Make it breathe better on small screens */
    padding: 0.9rem 1rem;

    /* Make the panel look cleaner on mobile */
    border-radius: 12px;
  }

  .hub-panel {
    padding: 0.9rem 1rem;  /* inside content padding */
  }
}

/* Mobile tweak: tighten hub cards + content width */
@media (max-width: 480px) {

  /* Top hub cards row */
  .dash-hub-cards {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    gap: 0.6rem; /* slightly smaller gaps between cards */
  }

  /* Each hub card */
.hub-card {
  position: relative;
  background: radial-gradient(circle at top, #111827 0, #020617 60%);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}
}
@media (max-width: 480px) {

  .dash-hub-cards {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    gap: 0.6rem;
  }

  .hub-card {
    width: 100%;
    max-width: 100%;
  }

  /* Bottom display section (hub content area) */
  .dash-bottom {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;

    padding: 0.9rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  }

  /* Inner content panel (white card, etc.) */
  .hub-panel {
    padding: 0.9rem 0.8rem;
  }
}
/* Mobile layout fix for policy list delete buttons */
@media (max-width: 480px) {
  .dash-policy-item {
    flex-direction: column;      /* stack content + button */
    align-items: stretch;
  }

  .dash-policy-link {
    display: block;
  }

  .dash-policy-actions {
    margin-left: 0;
    margin-top: 0.4rem;
    align-self: flex-end;        /* move delete button to bottom-right */
  }

  .policy-delete-btn {
    font-size: 0.8rem;
    padding: 0.22rem 0.7rem;
  }
}

.hub-card.active {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 12px rgba(42, 167, 255, 0.4);
}

.hub-card.active {
    border: 1px solid rgba(42, 167, 255, 0.9);
    box-shadow: 0 0 15px rgba(42, 167, 255, 0.35);
}

/* Overall row wrapper */
.hub-row {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

/* This is JUST the glow, it won't affect layout */
.hub-row-glow-layer {
  position: absolute;
  inset: -40px 8%; /* top/bottom/left/right “inset” */
  background: radial-gradient(
    circle,
    rgba(42, 167, 255, 0.22) 0%,
    rgba(42, 167, 255, 0.10) 35%,
    transparent 75%
  );
  filter: blur(60px);
  opacity: 0.9;               /* adjust to taste */
  pointer-events: none;
  z-index: 0;                 /* under the cards */
}

/* Your existing card row now just sits above the glow */
.hub-row-inner {
  position: relative;
  z-index: 1;
  /* keep your existing flex/grid styles here, e.g.: */
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, 
     rgba(42,167,255,.15), transparent 60%),
     radial-gradient(circle at 80% 80%, 
     rgba(238,179,77,.12), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.card {
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 80%;
  height: 20px;
  transform: translateX(-50%);
  background: radial-gradient(
     ellipse,
     rgba(42,167,255,0.25) 0%,
     transparent 80%
  );
  filter: blur(18px);
  z-index: -1;
}

.card:hover {
  filter: drop-shadow(0 0 12px rgba(56,189,248,0.27));
}

.dashboard-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,167,255,0.15), transparent 70%);
  filter: blur(45px);
  top: -80px;
  right: -120px;
  pointer-events: none;
  z-index: 0;
}

.btn {
  /* keep your padding, radius, etc as-is */
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, border-color 0.15s ease, color 0.12s ease;
}

.btn-primary {
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  box-shadow: 0 18px 45px rgba(238, 179, 77, 0.45);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 26px 60px rgba(238, 179, 77, 0.65);
}

.btn-ghost {
  border-color: var(--cta-secondary-border);
  background: var(--cta-secondary-bg);
  color: var(--text-soft);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.9);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.95);
}

.nav-badge {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #bbf7d0;
}

/* Info chips (like “Open form”, “Coming soon”) */
.badge,
.hero-chip {
  background: rgba(15, 23, 42, 0.9);
border: 1px solid rgba(238, 179, 77, 0.55);
  color: var(--text-soft);
}

/* Status-flavoured badges */
.badge-success {
  background: var(--status-success-soft);
  border-color: var(--status-success);
  color: #bbf7d0;
}

.badge-warning {
  background: var(--status-warning-soft);
  border-color: var(--status-warning);
  color: #fed7aa;
}

.dashboard-orb-top {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-blue), transparent 60%);
  filter: blur(35px);
  top: -80px;
  right: -120px;
  pointer-events: none;
  z-index: 0;
}

.dashboard-orb-bottom {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-mint), transparent 65%);
  filter: blur(40px);
  bottom: -120px;
  left: -140px;
  pointer-events: none;
  z-index: 0;
}

/* Wrapper around the hub row + orbs */
.hub-ambient-wrap {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Base orb style */
.ambient-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(42, 255, 217, 0.32) 0%,
        rgba(42, 255, 217, 0.12) 40%,
        transparent 70%
    );
    filter: blur(38px);
    pointer-events: none;
    z-index: 0;
}

/* Left orb (more mint, closer) */
.ambient-orb-left {
    top: -40px;
    left: -80px;
}

/* Right orb (a bit lower to stagger the light) */
.ambient-orb-right {
    top: 40px;
    right: -90px;
}

/* Make sure the actual cards sit ABOVE the orbs */
.hub-row-inner {
    position: relative;
    z-index: 1;
}

@keyframes orbBreath {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.ambient-orb {
    animation: orbBreath 16s ease-in-out infinite;
}



/* ---------------------------------------------------------
   Governance Playbooks Hub
---------------------------------------------------------- */

.playbooks-shell {
  background: radial-gradient(circle at top left, rgba(42, 167, 255, 0.14), rgba(5, 12, 40, 0.96));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Header */

.playbooks-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.playbooks-header-main {
  max-width: 540px;
}

.playbooks-title {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.playbooks-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca9d9;
}

.playbooks-header-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

@media (max-width: 720px) {
  .playbooks-header-meta {
    align-items: flex-start;
  }
}

/* Layout */

.playbooks-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.6fr);
  gap: 1.2rem;
  margin-top: 0.4rem;
}

@media (max-width: 980px) {
  .playbooks-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Sidebar */

.playbooks-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.playbooks-filter-card,
.playbooks-runbooks-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.9rem 0.95rem 1rem;
}

.playbooks-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.playbooks-filter-header h3,
.playbooks-runbooks-header h3 {
  margin: 0;
  font-size: 0.95rem;
}

.playbooks-filter-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #9ca9d9;
}

.playbooks-filter-count .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.playbooks-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  color: #e5ecff;
  padding: 0.5rem 0.6rem;
  font-size: 0.88rem;
}

.playbooks-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6);
}

.playbooks-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem;
  margin-top: 0.6rem;
}

@media (max-width: 720px) {
  .playbooks-filter-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.playbooks-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  color: #9ca9d9;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  cursor: pointer;
}

.chip-active,
.chip:hover {
  border-color: #3b82f6;
  color: #e5ecff;
  background: rgba(37, 99, 235, 0.22);
}

.playbooks-actions-row {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Runbooks */

.playbooks-runbooks-header {
  margin-bottom: 0.45rem;
}

.playbooks-runbooks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
  color: #e5ecff;
}

.playbooks-runbooks-list li + li {
  margin-top: 0.35rem;
}

.playbooks-runbook-link {
  font-size: 0.84rem;
}

/* Main column */

.playbooks-main {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Library table */

.playbooks-table-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.9rem 0.95rem 1rem;
}

.playbooks-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
}

.playbooks-table-header h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.playbooks-table-header p {
  margin: 0;
  font-size: 0.82rem;
  color: #9ca9d9;
}

.playbooks-table-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Table rows */

.playbooks-table .row-sub {
  font-size: 0.8rem;
  color: #9ca9d9;
}

.playbooks-table .playbook-row {
  cursor: pointer;
}

.playbooks-table .playbook-row.is-active td {
  background: rgba(37, 99, 235, 0.2);
  border-bottom-color: rgba(59, 130, 246, 0.55);
}

/* Preview */

.playbooks-preview-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.95rem 1rem 1.05rem;
}

.playbooks-preview-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.playbooks-preview-header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
}

.playbooks-preview-header p {
  margin: 0;
  font-size: 0.86rem;
  color: #9ca9d9;
}

.playbooks-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

/* Tabs */

.playbooks-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.3rem 0 0.7rem;
}

.playbooks-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.playbooks-tab-content {
  font-size: 0.88rem;
  color: #e5ecff;
}

.playbooks-tab-content h4 {
  margin: 0 0 0.35rem;
  font-size: 0.94rem;
}

.playbooks-tab-content p {
  margin: 0 0 0.45rem;
}

.playbooks-tab-content ul,
.playbooks-tab-content ol {
  margin: 0.1rem 0 0;
  padding-left: 1.2rem;
}

.playbooks-checklist {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0;
}

.playbooks-checklist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
}

.playbooks-checklist input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* Helpers */

.is-hidden {
  display: none;
}

/* ---------------------------------------------------------
   Governance Playbooks Hub
---------------------------------------------------------- */

.playbooks-shell {
  background: radial-gradient(circle at top left, rgba(42, 167, 255, 0.14), rgba(5, 12, 40, 0.96));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Header */

.playbooks-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.playbooks-header-main {
  max-width: 540px;
}

.playbooks-title {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.playbooks-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca9d9;
}

.playbooks-header-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

@media (max-width: 720px) {
  .playbooks-header-meta {
    align-items: flex-start;
  }
}

/* Layout */

.playbooks-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.6fr);
  gap: 1.2rem;
  margin-top: 0.4rem;
}

@media (max-width: 980px) {
  .playbooks-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Sidebar */

.playbooks-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.playbooks-filter-card,
.playbooks-runbooks-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.9rem 0.95rem 1rem;
}

.playbooks-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.playbooks-filter-header h3,
.playbooks-runbooks-header h3 {
  margin: 0;
  font-size: 0.95rem;
}

.playbooks-filter-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #9ca9d9;
}

.playbooks-filter-count .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.playbooks-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  color: #e5ecff;
  padding: 0.5rem 0.6rem;
  font-size: 0.88rem;
}

.playbooks-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6);
}

.playbooks-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem;
  margin-top: 0.6rem;
}

@media (max-width: 720px) {
  .playbooks-filter-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.playbooks-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  color: #9ca9d9;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  cursor: pointer;
}

.chip-active,
.chip:hover {
  border-color: #3b82f6;
  color: #e5ecff;
  background: rgba(37, 99, 235, 0.22);
}

.playbooks-actions-row {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Runbooks */

.playbooks-runbooks-header {
  margin-bottom: 0.45rem;
}

.playbooks-runbooks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
  color: #e5ecff;
}

.playbooks-runbooks-list li + li {
  margin-top: 0.35rem;
}

.playbooks-runbook-link {
  font-size: 0.84rem;
}

/* Main column */

.playbooks-main {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Library table */

.playbooks-table-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.9rem 0.95rem 1rem;
}

.playbooks-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
}

.playbooks-table-header h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.playbooks-table-header p {
  margin: 0;
  font-size: 0.82rem;
  color: #9ca9d9;
}

.playbooks-table-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Table rows */

.playbooks-table .row-sub {
  font-size: 0.8rem;
  color: #9ca9d9;
}

.playbooks-table .playbook-row {
  cursor: pointer;
}

.playbooks-table .playbook-row.is-active td {
  background: rgba(37, 99, 235, 0.2);
  border-bottom-color: rgba(59, 130, 246, 0.55);
}

/* Preview */

.playbooks-preview-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.95rem 1rem 1.05rem;
}

.playbooks-preview-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.playbooks-preview-header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
}

.playbooks-preview-header p {
  margin: 0;
  font-size: 0.86rem;
  color: #9ca9d9;
}

.playbooks-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

/* Tabs */

.playbooks-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.3rem 0 0.7rem;
}

.playbooks-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.playbooks-tab-content {
  font-size: 0.88rem;
  color: #e5ecff;
}

.playbooks-tab-content h4 {
  margin: 0 0 0.35rem;
  font-size: 0.94rem;
}

.playbooks-tab-content p {
  margin: 0 0 0.45rem;
}

.playbooks-tab-content ul,
.playbooks-tab-content ol {
  margin: 0.1rem 0 0;
  padding-left: 1.2rem;
}

.playbooks-checklist {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0;
}

.playbooks-checklist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
}

.playbooks-checklist input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* Helpers */

.is-hidden {
  display: none;
}
\/* ---------------------------------------------------------
   Bias & Risk Hub
---------------------------------------------------------- */

.risk-shell {
  background: radial-gradient(circle at top right, rgba(248, 250, 252, 0.02), rgba(5, 12, 40, 0.97));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Header */

.risk-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.risk-header-main {
  max-width: 540px;
}

.risk-title {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.risk-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca9d9;
}

.risk-header-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

@media (max-width: 720px) {
  .risk-header-meta {
    align-items: flex-start;
  }
}

.risk-badge-row {
  display: flex;
  gap: 0.25rem;
}

/* Layout */

.risk-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.6fr);
  gap: 1.2rem;
  margin-top: 0.4rem;
}

@media (max-width: 980px) {
  .risk-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.risk-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.risk-main {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Cards */

.risk-card {
  background: rgba(5, 12, 40, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.9rem 0.95rem 1rem;
}

.risk-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.risk-card-header h3 {
  margin: 0;
  font-size: 0.95rem;
}

.risk-card-text {
  margin: 0;
  font-size: 0.84rem;
  color: #9ca9d9;
}

/* Inputs */

.risk-input,
.risk-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  color: #e5ecff;
  padding: 0.5rem 0.6rem;
  font-size: 0.88rem;
}

.risk-textarea {
  resize: vertical;
  min-height: 120px;
}

.risk-input:focus,
.risk-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6);
}

/* Quick bias check */

.risk-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.risk-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.22rem 0.7rem;
  font-size: 0.78rem;
}

.risk-score-label {
  color: #9ca9d9;
}

.risk-score-value {
  font-weight: 500;
}

.risk-score-neutral {
  color: #e5ecff;
}

.risk-score-low {
  color: #22c55e;
}

.risk-score-medium {
  color: #eab308;
}

.risk-score-high {
  color: #f97316;
}

/* Risk filter chips & pills */

.risk-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.risk-chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  color: #9ca9d9;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  cursor: pointer;
}

.risk-chip-soft {
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(37, 99, 235, 0.2);
  color: #e5ecff;
}

.risk-chip-active,
.risk-chip:hover {
  border-color: #3b82f6;
  color: #e5ecff;
  background: rgba(37, 99, 235, 0.22);
}

.risk-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0.08rem 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
}

.risk-pill-low {
  border-color: rgba(34, 197, 94, 0.8);
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.16);
}

.risk-pill-medium {
  border-color: rgba(234, 179, 8, 0.9);
  color: #fef3c7;
  background: rgba(202, 138, 4, 0.22);
}

.risk-pill-high {
  border-color: rgba(248, 113, 113, 0.95);
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.22);
}

/* Filter row */

.risk-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem;
  margin-top: 0.55rem;
}

@media (max-width: 720px) {
  .risk-filter-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Risk log */

.risk-log-card {
  margin-bottom: 0.2rem;
}

.risk-log-header {
  margin-bottom: 0.55rem;
}

.risk-log-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.btn-sm {
  font-size: 0.78rem;
  padding: 0.26rem 0.55rem;
}

/* Table */

.risk-table .row-sub {
  font-size: 0.8rem;
  color: #9ca9d9;
}

.risk-row {
  cursor: pointer;
}

.risk-row.is-active td {
  background: rgba(37, 99, 235, 0.2);
  border-bottom-color: rgba(59, 130, 246, 0.55);
}

/* Detail */

.risk-detail-card {
  margin-top: 0.1rem;
}

.risk-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
}

/* Tabs */

.risk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.35rem 0 0.7rem;
}

.risk-tab-content {
  font-size: 0.88rem;
  color: #e5ecff;
}

.risk-tab-content h4 {
  margin: 0 0 0.35rem;
  font-size: 0.94rem;
}

.risk-tab-content p {
  margin: 0 0 0.45rem;
}

.risk-tab-content ul {
  margin: 0.1rem 0 0;
  padding-left: 1.2rem;
}

/* Helper */

.is-hidden {
  display: none;
}

.quick-actions-wrapper {
  position: sticky;
  top: 0.75rem;    /* where it sticks */
  z-index: 9999;
}

#quick-actions-btn {
    position: fixed;
    top: 1rem;      /* distance from top of screen */
    left: 1rem;     /* distance from left of screen */
    z-index: 9999;  /* keep it above hubs, panels, etc. */
}

@media (max-width: 768px) {
    #quick-actions-btn {
        top: 0.6rem;
        left: 0.6rem;
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
}