/* OBG — Design System v2 (2026-05-15 rebrand)
   Confident dark monochrome with a single electric-lime accent.
   Editorial type, tighter weights, less rainbow gradient. */

:root {
  /* Surfaces — near-pure black, minimal elevation steps */
  --bg: #08080b;
  --bg-2: #0c0c10;
  --surface: #131318;
  --surface-2: #1a1a21;
  --surface-3: #25252e;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Brand — single electric-lime accent, used sparingly */
  --primary: #c4ff12;
  --primary-2: #a3da00;
  --primary-glow: #d6ff5e;
  --on-primary: #08080b;     /* text on top of primary surface */
  --accent: #c4ff12;         /* alias, same as primary in this brand */
  --accent-soft: rgba(196, 255, 18, 0.14);
  --warning: #ffb547;
  --danger: #ff6b6b;
  --success: #c4ff12;

  /* Text — neutral grayscale only, no purple tint */
  --text: #fafafa;
  --text-muted: #8b8b95;
  --text-dim: #555560;

  /* Effects */
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 16px 50px -16px rgba(196, 255, 18, 0.45);
  --radius: 14px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Gradients — restrained, monochrome with a single warm pop */
  --grad-primary: linear-gradient(135deg, #c4ff12 0%, #a3da00 100%);
  --grad-aurora:  linear-gradient(135deg, #fafafa 0%, #8b8b95 70%);
  --grad-sunset:  linear-gradient(135deg, #fafafa 0%, #c4ff12 100%);
  --grad-text:    linear-gradient(180deg, #fafafa 0%, #8b8b95 100%);

  /* Layout */
  --max-w: 1280px;
  --nav-h: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;            /* drop from 700 → editorial 500 */
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; letter-spacing: -0.015em; }

p { color: var(--text-muted); }

a {
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease;
}

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

img, svg { display: block; max-width: 100%; }

/* Subtle film grain — keep, but lower opacity to feel cleaner */
.bg-noise::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Aurora — kill the blobs entirely in v2 (cleaner, less template-y) */
.aurora { display: none; }
.aurora::before, .aurora::after { content: none; }

.aurora::before {
  background: radial-gradient(circle, rgba(196,255,18,0.18) 0%, transparent 70%);
  top: -20%; left: -10%;
}

.aurora::after {
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -25%; right: -15%;
  animation-delay: -9s;
}

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

/* Layout container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(7, 8, 15, 0.6);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--grad-primary);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 6px 20px rgba(196, 255, 18, 0.45);
  background-image: url('../assets/logo-rw.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

/* Legacy gradient sheen — only shows on the rounded corners where the SVG
   sits over a darker brand color. Kept subtle so it doesn't fight the mark. */
.brand-mark::before,
.brand-mark::after { content: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--primary-glow);
  color: var(--on-primary);
  box-shadow: 0 20px 60px -16px rgba(196, 255, 18, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-google {
  background: white;
  color: #1f1f1f;
  border-color: white;
  font-weight: 500;
}

.btn-google:hover {
  background: #f5f5f5;
  color: #1f1f1f;
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-pill-tag {
  background: var(--grad-primary);
  color: white;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
}

.text-gradient {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 520px;
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}

.orb-ring:nth-child(2) {
  inset: 8%;
  animation-duration: 80s;
  animation-direction: reverse;
}

.orb-ring:nth-child(3) { inset: 16%; animation-duration: 100s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.orb-center {
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-primary);
  position: relative;
  box-shadow: 0 0 120px rgba(196, 255, 18, 0.5), inset -20px -20px 60px rgba(0,0,0,0.3);
  animation: pulse 4s ease-in-out infinite;
}

.orb-center::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.4), transparent 50%);
}

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

.satellite {
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  z-index: 3;
}

.satellite.s1 { top: 10%; left: 50%; transform: translateX(-50%); }
.satellite.s2 { top: 30%; right: 0%; }
.satellite.s3 { bottom: 30%; right: 5%; }
.satellite.s4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.satellite.s5 { bottom: 30%; left: 5%; }
.satellite.s6 { top: 30%; left: 0%; }

/* Section base */
.section {
  padding: 100px 0;
  position: relative;
}

.section-tight { padding: 70px 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-glow);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(196, 255, 18, 0.1);
  border: 1px solid rgba(196, 255, 18, 0.25);
  border-radius: var(--radius-full);
}

.section-header p {
  font-size: 1.1rem;
  margin-top: 18px;
}

/* Logo strip */
.logo-strip {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.logo-strip-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.7;
  transition: all .2s ease;
}

.logo-item:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  color: var(--text);
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196, 255, 18, 0.12);
  border: 1px solid rgba(196, 255, 18, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  margin-bottom: 22px;
}

.card-icon.accent {
  background: rgba(20, 228, 183, 0.12);
  border-color: rgba(20, 228, 183, 0.25);
  color: var(--accent);
}

.card-icon.sunset {
  background: rgba(255, 126, 182, 0.12);
  border-color: rgba(255, 126, 182, 0.25);
  color: var(--accent-2);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.25;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  margin: 16px 0 10px;
}

.step p { font-size: 0.95rem; }

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.08;
  transition: opacity .3s ease;
}

.cat-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.cat-card:hover::before { opacity: 0.15; }

.cat-emoji {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cat-card p { font-size: 0.9rem; }

.cat-card .cat-pay {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* Platforms list */
.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all .3s ease;
}

.platform-card:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}

.platform-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.platform-info { flex: 1; }
.platform-info h3 { font-size: 1.15rem; margin-bottom: 4px; }
.platform-info p { font-size: 0.92rem; }

.platform-tag {
  background: rgba(196, 255, 18, 0.1);
  color: var(--primary-glow);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(196, 255, 18, 0.2);
}

/* Testimonials */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.quote-card::before {
  content: """;
  font-family: 'Space Grotesk';
  font-size: 5rem;
  position: absolute;
  top: 5px;
  right: 22px;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.quote-text {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.6;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.quote-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.quote-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s ease;
}

.faq-item[open] {
  border-color: rgba(196, 255, 18, 0.3);
  background: rgba(196, 255, 18, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-glow);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #1c1f3d 0%, #2a1f5a 50%, #1a0f3a 100%);
  border: 1px solid rgba(196, 255, 18, 0.3);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(196, 255, 18, 0.3), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(20, 228, 183, 0.2), transparent 50%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 2; }

.cta-banner h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--bg-2);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-contact {
  margin-top: 16px;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-contact a:hover {
  color: var(--primary-glow);
  border-bottom-color: var(--primary-glow);
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer ul a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.socials { display: flex; gap: 14px; }

.social-link {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all .2s ease;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Page hero (smaller for inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Login page */
.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 2;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.auth-card > * { position: relative; z-index: 2; }

.auth-card .brand {
  justify-content: center;
  margin-bottom: 26px;
}

.auth-card h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.auth-card .lead {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 28px 0 20px;
}

.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-foot {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-error {
  background: rgba(255, 92, 122, 0.1);
  border: 1px solid rgba(255, 92, 122, 0.3);
  color: var(--danger);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-align: left;
  display: none;
}

.auth-error.show { display: block; }

/* Dashboard */
.dash-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.dash-side {
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  padding: 28px 18px;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.dash-side h4 {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 18px 14px 10px;
}

.side-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.side-nav a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.side-nav a.active {
  background: rgba(196, 255, 18, 0.15);
  color: var(--text);
  border: 1px solid rgba(196, 255, 18, 0.25);
}

.dash-main {
  padding: 36px 40px 60px;
  position: relative;
  z-index: 2;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.dash-header h1 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.dash-header p { font-size: 0.95rem; }

.profile-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.profile-chip img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
}

.profile-chip-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.kpi-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kpi-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.kpi-delta {
  font-size: 0.82rem;
  color: var(--success);
  font-weight: 600;
}

.kpi-delta.down { color: var(--danger); }

/* Project list */
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-title-row h2 {
  font-size: 1.3rem;
  margin: 0;
}

.tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 18px;
}

.tab {
  flex: 1;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
  font-family: inherit;
}

.tab.active {
  background: rgba(196, 255, 18, 0.15);
  color: var(--text);
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}

.project-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity .2s ease;
}

.project-row:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.project-row:hover::before { opacity: 1; }

.project-row.new { border-color: rgba(20, 228, 183, 0.25); }
.project-row.new::before {
  background: var(--accent);
  opacity: 1;
}

.proj-platform {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  color: white;
}

.proj-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.proj-title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.badge-new {
  background: rgba(20, 228, 183, 0.12);
  color: var(--accent);
  border: 1px solid rgba(20, 228, 183, 0.3);
}

.badge-pri {
  background: rgba(255, 126, 182, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(255, 126, 182, 0.3);
}

.badge-active {
  background: rgba(196, 255, 18, 0.12);
  color: var(--primary-glow);
  border: 1px solid rgba(196, 255, 18, 0.3);
}

.badge-pending {
  background: rgba(255, 181, 71, 0.12);
  color: var(--warning);
  border: 1px solid rgba(255, 181, 71, 0.3);
}

.proj-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.proj-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proj-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Empty state */
.empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}

.empty-icon {
  width: 72px;
  height: 72px;
  background: rgba(196, 255, 18, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-glow);
}

.empty h3 {
  margin-bottom: 8px;
}

/* Loader */
.spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

/* Contact form */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.97rem;
  font-family: inherit;
  transition: all .15s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(196, 255, 18, 0.15);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* Long content (privacy / terms) */
.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
}

.prose h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}

.prose p, .prose ul { margin-bottom: 14px; color: var(--text-muted); }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose a { color: var(--primary-glow); text-decoration: underline; }

/* Toasts */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all .25s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(20, 228, 183, 0.4); }
.toast.error { border-color: rgba(255, 92, 122, 0.4); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

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

/* Mobile */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-shell { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-main { padding: 24px 20px; }
  .project-row { grid-template-columns: auto 1fr; }
  .proj-actions { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  /* Tighten the nav grid so the brand mark + wordmark + sign-in pill don't
     fight the hamburger for space at narrow widths. */
  .nav-inner { gap: 8px; }
  .nav-cta { gap: 6px; }
  .brand { gap: 8px; font-size: 1.1rem; }
  .brand-mark { width: 28px; height: 28px; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 22px 24px;
    gap: 18px;
  }
  .hero { padding: calc(var(--nav-h) + 50px) 0 70px; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; padding-top: 24px; }
  .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}

/* ─── Hero v2 (2026-05-15) — confident dark, asymmetric editorial layout ─── */

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}
.hero-glow-violet {
  top: -180px;
  right: -180px;
  width: 640px;
  height: 640px;
  background: rgba(196, 255, 18, 0.25);
}
.hero-glow-emerald {
  bottom: -240px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: rgba(20, 228, 183, 0.10);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, black 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, black 30%, transparent 90%);
}
.hero-inner { position: relative; z-index: 1; }

/* Eyebrow pill with pulsing emerald dot */
.pulse-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
  animation: hero-ping 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
.pulse-dot-emerald { background: #34d399; }
.pulse-dot-emerald::before { background: #34d399; }
@keyframes hero-ping {
  0%   { transform: scale(1);   opacity: 0.75; }
  75%  { transform: scale(2);   opacity: 0;    }
  100% { transform: scale(2);   opacity: 0;    }
}

/* Stat-number unit suffix (sm / %) */
.hero-stat-unit {
  font-size: 0.62em;
  color: var(--text-dim);
  font-weight: 500;
  margin-left: 4px;
  -webkit-text-fill-color: var(--text-dim);
}

/* Product preview mockup — right column */
.hero-mockup-wrap {
  position: relative;
  display: block;
}
.mockup-halo {
  position: absolute;
  inset: -40px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(196, 255, 18, 0.25), rgba(255, 126, 182, 0.10) 50%, rgba(20, 228, 183, 0.10));
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.mockup {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #13131f;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 30px 80px -20px rgba(196, 255, 18, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: perspective(2000px) rotateY(-7deg) rotateX(2deg);
  transition: box-shadow 500ms ease;
}
.mockup:hover {
  box-shadow:
    0 40px 100px -20px rgba(196, 255, 18, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}
.mockup-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.55;
}
.mockup-url {
  margin-left: 8px;
  padding: 2px 8px;
  font-family: 'Space Grotesk', monospace;
  font-size: 10px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}
.mockup-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.mockup-status {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}
.mockup-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #ff4d8d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 0 60px -10px rgba(214, 255, 94, 0.6);
}
.mockup-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
.mockup-line {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  line-height: 1.55;
}
.mockup-controls {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}
.mockup-control {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
}
.mockup-control-danger {
  background: rgba(255, 92, 122, 0.14);
  border-color: rgba(255, 122, 144, 0.25);
  color: #fda4af;
}

/* Floating chips */
.mockup-chip {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.4);
  min-width: 144px;
}
.mockup-chip-light {
  top: -18px;
  right: -22px;
  background: #fff;
  color: #11142a;
  transform: rotate(3deg);
}
.mockup-chip-dark {
  bottom: -22px;
  left: -22px;
  background: #13131f;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text);
  transform: rotate(-2deg);
}
.chip-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 4px;
}
.mockup-chip-dark .chip-label { color: rgba(255, 255, 255, 0.4); }
.chip-score {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.chip-score span {
  font-size: 0.62em;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 400;
  margin-left: 4px;
}
.chip-recommend {
  font-size: 0.7rem;
  color: #047857;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.chip-paid {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.chip-delta {
  font-size: 0.7rem;
  color: rgba(20, 228, 183, 0.85);
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Queue dashboard inside the mockup (replaces the interview UI) */
.mockup-stage-queue {
  align-items: stretch;
  justify-content: flex-start;
  padding: 22px 22px 26px;
  text-align: left;
  gap: 12px;
}
.queue-header {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin: 32px 0 2px;
}
.queue-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.queue-item-dim { opacity: 0.55; }
.queue-plat {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.queue-tag-rose    { background: linear-gradient(135deg, #ff7eb6, #ff4d8d); }
.queue-tag-violet  { background: linear-gradient(135deg, #7c5cff, #5b3df5); }
.queue-tag-emerald { background: linear-gradient(135deg, #14e4b7, #0bb88f); }
.queue-meta { min-width: 0; }
.queue-title {
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.queue-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
}
.queue-rate {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.queue-rate span {
  font-size: 0.7em;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-left: 2px;
}

@media (max-width: 980px) {
  .hero-mockup-wrap { display: none; }
}

/* ─── Pillars section (replaces 6-card "Why OBG" grid) ─── */
.section-pillars { position: relative; }
.pillars-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 64px;
}
.pillars-head .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}
.pillars-head h2 {
  grid-column: 1 / -1;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
}
.pillars-head .pillars-lede {
  grid-column: 1 / -1;
  max-width: 620px;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms ease;
}
.pillar:hover { background: var(--surface); }
.pillar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary-glow);
  margin-bottom: 18px;
}
.pillar h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}
.pillar p {
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.pillar-link {
  margin-top: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms ease;
}
.pillar-link span { transition: transform 200ms ease; }
.pillar-link:hover { gap: 10px; }
.pillar-link:hover span { transform: translateX(2px); }
@media (max-width: 900px) {
  .pillars-head { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
}

/* ─── Footer compliance row ─── */
.footer-compliance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.compliance-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.compliance-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.compliance-badges {
  display: flex;
  gap: 32px;
  align-items: center;
}
.compliance-badges a { display: inline-block; opacity: 0.75; transition: opacity 0.2s ease; }
.compliance-badges a:hover { opacity: 1; }
.compliance-badges img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
}
@media (max-width: 640px) {
  .compliance-badges { gap: 18px; }
  .compliance-badges img { width: 56px; height: 56px; }
}

/* ─── Dashboard · account-status states ───────────────────────────────────── */

.account-state-shell {
  min-height: calc(100vh - var(--nav-h));
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
}
.account-state-container {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.account-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 44px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.account-card.hidden { display: none; }
.account-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.45;
}
.account-card-pending  { color: #ffb547; }
.account-card-verified { color: var(--accent); }
.account-card-rejected { color: var(--danger); }

.account-status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 26px;
}
.account-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.account-dot-amber   { background: #ffb547; box-shadow: 0 0 0 4px rgba(255,181,71,0.18); }
.account-dot-emerald { background: #c4ff12; box-shadow: 0 0 0 4px rgba(196,255,18,0.2); }
.account-dot-rose    { background: #ff5c7a; box-shadow: 0 0 0 4px rgba(255,92,122,0.18); }
.account-eyebrow {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.account-headline {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
}
.account-lede {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin: 0 0 30px;
  max-width: 560px;
}

.account-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.account-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.account-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--primary-glow);
  background: rgba(124,92,255,0.12);
  padding: 6px 10px;
  border-radius: 8px;
  align-self: flex-start;
}
.account-step-title {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}
.account-step-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.account-request-form {
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.account-form-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 8px;
}
.account-form-optional {
  color: var(--text-dim);
  font-weight: 400;
}
.account-request-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  resize: vertical;
  min-height: 90px;
  transition: border-color 200ms ease;
}
.account-request-form textarea:focus {
  outline: none;
  border-color: var(--primary-glow);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.18);
}

/* Onboarding form — multi-field signup */
.onboarding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .onboarding-grid { grid-template-columns: 1fr; }
}

.onboarding-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.onboarding-field-full { grid-column: 1 / -1; }

.onboarding-field input,
.onboarding-field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  transition: border-color 200ms ease;
}

.onboarding-field textarea {
  resize: vertical;
  min-height: 96px;
}

.onboarding-field input:focus,
.onboarding-field textarea:focus {
  outline: none;
  border-color: var(--primary-glow);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
}

.platform-checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.platform-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 150ms ease, border-color 150ms ease;
}

.platform-check input { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }

.platform-check:hover { background: var(--surface-2); border-color: var(--border-strong); }

.platform-check input:checked + span {
  color: var(--primary-glow);
  font-weight: 500;
}

.platform-check:has(input:checked) {
  background: rgba(196, 255, 18, 0.08);
  border-color: rgba(196, 255, 18, 0.4);
}

/* ───────────────────────────────────────────────────────────────────────
   Blog — index grid + individual post layout
   ─────────────────────────────────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.post-card-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.post-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post-card-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.post-card h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0;
}

.post-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.post-card-foot {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 8px;
}

/* Individual post page */
.post-hero {
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

.post-hero .container { max-width: 780px; }

.post-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  line-height: 1.15;
  margin: 14px 0 18px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.post-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
}

.post-hero-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 28px;
}

.post-callout {
  margin: 26px 0;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text);
}

.post-callout strong { color: var(--primary-glow); }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 16px;
}

.post-back:hover { color: var(--primary-glow); }

.post-footer-cta {
  margin-top: 60px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: center;
}

.post-footer-cta h2 {
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.post-footer-cta p {
  color: var(--text-muted);
  margin: 0 0 18px;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.account-disclaimer {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.account-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 26px;
}
.account-meta-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.account-meta-value {
  display: block;
  color: var(--text);
  font-weight: 500;
}
.account-meta-value a { color: var(--primary-glow); }

@media (max-width: 640px) {
  .account-card { padding: 30px 24px; }
  .account-meta { grid-template-columns: 1fr; }
}

/* ─── Contact page · editorial split ─────────────────────────────────────── */

.contact-shell {
  padding: calc(var(--nav-h) + 72px) 0 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-aside h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 14px 0 18px;
}
.contact-lede {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.contact-channel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 30px;
}
.contact-channel-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-channel-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(124,92,255,0.14);
  color: var(--primary-glow);
}
.contact-channel-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-channel-link {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.contact-channel-link:hover { color: var(--primary-glow); }
.contact-channel-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.contact-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  align-items: end;
  padding-top: 6px;
}
.contact-trust-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.contact-trust-unit {
  font-size: 0.55em;
  color: var(--text-dim);
  margin-left: 2px;
  font-weight: 400;
}
.contact-trust-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.contact-form-head {
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.contact-form-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.contact-form-disclaimer {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-dim);
  min-height: 1.2em;
}
.contact-form-disclaimer.success { color: #c4ff12; }
.contact-form-disclaimer.error   { color: var(--danger); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-trust { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .contact-trust { grid-template-columns: 1fr 1fr; }
}

/* Ultra-narrow: drop the brand wordmark; mark + buttons stay. */
@media (max-width: 420px) {
  .brand > span:last-child { display: none; }
}

/* ─── Expertise icons (replace cat-emoji glyphs with proper SVGs) ───────── */
.cat-emoji {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.cat-emoji svg { width: 22px; height: 22px; display: block; }
.cat-card:hover .cat-emoji {
  background: var(--accent-soft);
  border-color: rgba(196, 255, 18, 0.4);
  color: var(--primary);
}

/* ─── Visual band · editorial photo with stat overlay ─────────────────── */
.visual-band {
  padding: 0 0 80px;
}
.visual-band-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  border: 1px solid var(--border);
}
/* Slider — multiple <img> stacked, only one with .is-active visible */
.visual-band-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.visual-band-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 800ms cubic-bezier(.4, 0, .2, 1);
  filter: brightness(0.62) contrast(1.05) saturate(0.92);
}
.visual-band-slide.is-active { opacity: 1; }

/* Dot navigator — pinned bottom-right of the band, doesn't fight the overlay text */
.visual-band-dots {
  position: absolute;
  bottom: 22px;
  right: 28px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.band-dot {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 220ms ease, width 220ms ease;
}
.band-dot:hover { background: rgba(255, 255, 255, 0.42); }
.band-dot.is-active {
  background: var(--primary);
  width: 36px;
}
@media (max-width: 720px) {
  .visual-band-dots { bottom: 16px; right: 18px; }
  .band-dot { width: 22px; }
  .band-dot.is-active { width: 28px; }
}

/* Legacy single-image rule — kept for any other page that still embeds
   .visual-band-img directly. */
.visual-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.65) contrast(1.05) saturate(0.9);
}
.visual-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,8,11,0.05) 0%, rgba(8,8,11,0.55) 55%, rgba(8,8,11,0.92) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(196,255,18,0.10), transparent 50%);
}
.visual-band-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px 44px;
  max-width: 720px;
}
.visual-band-content h2 {
  margin-bottom: 14px;
  color: var(--text);
}
.visual-band-content p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-bottom: 28px;
}
.visual-band-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  align-items: end;
}
.visual-band-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.visual-band-num span {
  font-size: 0.55em;
  color: var(--text-dim);
  font-weight: 400;
  margin-left: 2px;
}
.visual-band-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  margin-top: 6px;
}
@media (max-width: 720px) {
  .visual-band-wrap { min-height: 360px; }
  .visual-band-content { padding: 36px 28px 28px; }
  .visual-band-meta { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ─── About-page team portraits ─────────────────────────────────────────── */
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.team-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
}
.team-linkedin:hover {
  color: var(--text);
  background: rgba(196, 255, 18, 0.10);
  border-color: rgba(196, 255, 18, 0.35);
  transform: translateY(-1px);
}

/* ─── Testimonial avatars upgraded to real-photo <img> ─────────────────── */
.quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.quote-avatar {
  overflow: hidden;
  position: relative;
}
.quote-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* ───────────────────────────────────────────────────────────────────────
   Floating support chatbot
   ─────────────────────────────────────────────────────────────────────── */

.sc-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  background: var(--primary);
  color: #08080b;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(196, 255, 18, 0.25), 0 6px 14px rgba(0, 0, 0, 0.5);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.sc-launcher:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(196, 255, 18, 0.32), 0 8px 18px rgba(0, 0, 0, 0.55); }
.sc-launcher.hidden { opacity: 0; pointer-events: none; transform: scale(0.85); }

.sc-launcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(8, 8, 11, 0.12);
}

.sc-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 80px));
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55), 0 12px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}

.sc-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.sc-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.sc-panel-id { display: flex; align-items: center; gap: 12px; }

.sc-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #08080b;
  border: 1px solid var(--border-strong);
}

.sc-panel-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.sc-panel-status {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.sc-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.sc-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
}

.sc-close:hover { color: var(--text); border-color: var(--border-strong); }

.sc-log {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-row { display: flex; }
.sc-row-bot { justify-content: flex-start; }
.sc-row-user { justify-content: flex-end; }

.sc-bubble {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.sc-bubble-bot {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 6px;
}

.sc-bubble-bot a { color: var(--primary-glow); }
.sc-bubble-bot strong { color: var(--text); }

.sc-bubble-user {
  background: var(--primary);
  color: #08080b;
  border-bottom-right-radius: 6px;
  font-weight: 500;
}

.sc-input {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.sc-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sc-quick-btn {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.sc-quick-btn:hover { background: var(--surface-2); transform: translateY(-1px); }

.sc-quick-primary {
  background: rgba(196, 255, 18, 0.12);
  border-color: rgba(196, 255, 18, 0.45);
  color: var(--primary-glow);
}

.sc-quick-primary:hover { background: rgba(196, 255, 18, 0.18); }

.sc-input-form { padding: 12px 14px 14px; }

.sc-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-field-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sc-form input,
.sc-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
}

.sc-form input:focus,
.sc-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 255, 18, 0.15);
}

.sc-form textarea { resize: vertical; min-height: 64px; }

.sc-form-error {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: var(--danger);
  min-height: 1em;
}

.sc-submit {
  margin-top: 4px;
  background: var(--primary);
  color: #08080b;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}

.sc-submit:disabled { opacity: 0.6; cursor: progress; }

.sc-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(8, 8, 11, 0.25);
  border-top-color: #08080b;
  border-radius: 50%;
  animation: sc-spin 0.8s linear infinite;
}

@keyframes sc-spin { to { transform: rotate(360deg); } }

.sc-foot {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  padding: 8px 14px 12px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.sc-foot a { color: var(--text-muted); }

@media (max-width: 480px) {
  .sc-launcher { right: 14px; bottom: 14px; padding: 11px 16px 11px 12px; }
  .sc-launcher-label { display: none; }
  .sc-panel {
    right: 8px;
    left: 8px;
    bottom: 8px;
    width: auto;
    height: min(620px, calc(100vh - 24px));
  }
}
