@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ms-bg: #070b1a;
  --ms-bg-2: #0b1226;
  --ms-bg-3: #0e1a38;
  --ms-glass-bg: rgba(255, 255, 255, 0.045);
  --ms-glass-border: rgba(255, 255, 255, 0.09);
  --ms-indigo: #6366f1;
  --ms-indigo-dark: #4338ca;
  --ms-cyan: #22d3ee;
  --ms-green: #34d399;
  --ms-gold: #f59e0b;
  --ms-danger: #ef4444;
  --ms-muted: #64748b;
  --ms-muted-light: #94a3b8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ms-bg);
  color: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

#root {
  background:
    radial-gradient(ellipse 900px 500px at 12% 0%, rgba(99, 102, 241, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 700px 420px at 88% 4%, rgba(34, 211, 238, 0.13) 0%, transparent 60%),
    linear-gradient(160deg, var(--ms-bg) 0%, var(--ms-bg-2) 50%, var(--ms-bg-3) 100%);
  min-height: 100vh;
}

.ms-main {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding-left: clamp(14px, 3vw, 40px);
  padding-right: clamp(14px, 3vw, 40px);
}

/* ── Animations ── */
@keyframes msFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes msScan {
  from { top: 0%; }
  to   { top: 100%; }
}
@keyframes msSlideIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes msPop {
  0%   { opacity: 0; transform: scale(0.85); }
  60%  { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes msPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
}

.ms-fade-up   { animation: msFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.ms-delay-1   { animation-delay: 0.08s; }
.ms-delay-2   { animation-delay: 0.18s; }
.ms-delay-3   { animation-delay: 0.28s; }
.ms-delay-4   { animation-delay: 0.38s; }
.ms-delay-5   { animation-delay: 0.48s; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 26, 0.9);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ms-indigo) 30%, var(--ms-cyan) 70%, transparent 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 26px; }
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ms-muted-light);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ms-indigo), var(--ms-indigo-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  transition: box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
}
.nav-cta:hover { box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5); transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  padding: clamp(72px, 12vw, 128px) 0 clamp(56px, 8vw, 96px);
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 1.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .gradient {
  background: linear-gradient(120deg, #818cf8, var(--ms-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--ms-indigo), var(--ms-indigo-dark));
  color: #fff;
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
  transition: box-shadow 0.2s, transform 0.1s;
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(99, 102, 241, 0.55); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.btn-secondary:hover { border-color: rgba(148, 163, 184, 0.6); background: rgba(255, 255, 255, 0.05); transform: translateY(-2px); }
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ms-muted-light);
  font-weight: 500;
}
.hero-trust-item .icon { font-size: 15px; }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  font-size: 11px;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}
.section-header p { font-size: 15px; color: #94a3b8; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── Features ── */
.features { padding: clamp(48px, 8vw, 96px) 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.feature-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: var(--ms-glass-bg);
  border: 1px solid var(--ms-glass-border);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-accent, rgba(99, 102, 241, 0.4));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--card-accent, rgba(99, 102, 241, 0.15)) inset;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: #f1f5f9; margin-bottom: 0.5rem; }
.feature-card p { font-size: 14px; color: #94a3b8; line-height: 1.6; }

/* ── How it works ── */
.how-it-works { padding: clamp(48px, 8vw, 96px) 0; border-top: 1px solid rgba(255,255,255,0.04); }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: var(--ms-glass-bg);
  border: 1px solid var(--ms-glass-border);
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ms-indigo), var(--ms-indigo-dark));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  animation: msPulse 2.5s ease-in-out infinite;
}
.step h3 { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 0.5rem; }
.step p { font-size: 14px; color: #94a3b8; line-height: 1.6; }

/* ── Demo section ── */
.demo-section { padding: clamp(48px, 8vw, 96px) 0; border-top: 1px solid rgba(255,255,255,0.04); }
.demo-wrapper {
  background: rgba(4, 8, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.7);
}
.demo-topbar {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dot { width: 11px; height: 11px; border-radius: 50%; }
.demo-dot.red    { background: #ef4444; }
.demo-dot.yellow { background: #f59e0b; }
.demo-dot.green  { background: #22c55e; }
.demo-url {
  font-size: 12px;
  color: #475569;
  font-family: 'SFMono-Regular', Consolas, monospace;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 12px;
  border-radius: 5px;
  flex: 1;
  text-align: center;
}
.demo-step-tabs { display: flex; gap: 4px; }
.demo-tab {
  padding: 4px 11px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.demo-tab:hover { background: rgba(255,255,255,0.06); color: #94a3b8; }
.demo-tab.active {
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.45);
  color: #a5b4fc;
}
.demo-body { padding: 20px; }

/* Jira issue mockup */
.jira-wrap {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  color: #172b4d;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.jira-header-bar {
  background: #0052cc;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.jira-header-bar .sep { opacity: 0.4; margin: 0 2px; }
.jira-layout { display: grid; grid-template-columns: 1fr 220px; }
.jira-main-col { padding: 18px 20px; }
.jira-key-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.jira-key-badge {
  background: #e3f2fd;
  color: #0052cc;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.jira-status-pill {
  background: #deebff;
  color: #0052cc;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.jira-issue-title {
  font-size: 18px;
  font-weight: 600;
  color: #172b4d;
  margin-bottom: 14px;
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.jira-field-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #5e6c84;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.jira-desc-text { color: #172b4d; line-height: 1.6; margin-bottom: 8px; font-size: 13px; }
.jira-code {
  background: #f4f5f7;
  border: 1px solid #dfe1e6;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: 'SFMono-Regular', Consolas, 'Lucida Console', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: #172b4d;
  margin: 8px 0 10px;
  position: relative;
  overflow: hidden;
}
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(99,102,241,0.9) 50%, transparent 100%);
  top: 0;
  animation: msScan 1.2s linear infinite;
  pointer-events: none;
}
.secret-token {
  display: inline;
  padding: 1px 3px;
  border-radius: 3px;
  transition: background 0.4s, color 0.4s;
}
.jira-code.detected .secret-token {
  background: rgba(222, 53, 11, 0.12);
  color: #de350b;
  font-weight: 600;
}

/* Comments */
.jira-comments { margin-top: 14px; padding-top: 12px; border-top: 1px solid #ebecf0; }
.jira-comment {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fffbf5;
  border-left: 3px solid #ff991f;
  border-top: 1px solid #ff991f33;
  border-right: 1px solid #ff991f22;
  border-bottom: 1px solid #ff991f22;
  animation: msSlideIn 0.45s ease both;
}
.comment-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #4338ca);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.comment-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.comment-author { font-size: 12px; font-weight: 700; color: #172b4d; }
.comment-time { font-size: 11px; color: #97a0af; }
.comment-body { font-size: 12px; color: #172b4d; line-height: 1.55; }
.comment-body .alert-title { font-weight: 700; color: #de350b; margin-bottom: 3px; }
.comment-body ul { margin: 4px 0 6px 14px; }
.comment-body li { margin-bottom: 2px; color: #403294; }
.comment-body .note { color: #de350b; font-size: 11px; margin-top: 4px; }

/* Sidebar */
.jira-sidebar-col { padding: 16px; background: #f8f9fa; border-left: 1px solid #ebecf0; }
.jira-sf { margin-bottom: 14px; }
.jira-sf-label { font-size: 11px; font-weight: 600; color: #5e6c84; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.jira-sf-val { font-size: 12px; color: #172b4d; }
.label-area { display: flex; flex-wrap: wrap; gap: 4px; min-height: 20px; }
.jira-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.jira-label-tag.risk    { background: #ff5630; color: #fff; animation: msPop 0.4s ease both; }
.jira-label-tag.pii     { background: #ff991f; color: #fff; animation: msPop 0.4s ease both; }
.jira-label-tag.resolved { background: #36b37e; color: #fff; animation: msPop 0.4s ease both; }
.label-none { font-size: 11px; color: #97a0af; font-style: italic; }

/* Demo footer */
.demo-footer {
  padding: 12px 20px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.demo-step-info { font-size: 13px; color: #64748b; }
.demo-step-info strong { color: var(--ms-indigo); font-weight: 700; }
.demo-nav { display: flex; gap: 8px; }
.demo-btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.demo-btn:hover:not(:disabled) { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.demo-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.demo-btn.primary {
  background: linear-gradient(135deg, var(--ms-indigo), var(--ms-indigo-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(99,102,241,0.4);
}
.demo-btn.primary:hover { box-shadow: 0 6px 20px rgba(99,102,241,0.55); }

/* ── Pricing ── */
.pricing { padding: clamp(48px, 8vw, 96px) 0; border-top: 1px solid rgba(255,255,255,0.04); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 740px;
  margin: 0 auto;
}
.pricing-card {
  padding: 2rem;
  border-radius: 1.25rem;
  background: var(--ms-glass-bg);
  border: 1px solid var(--ms-glass-border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(99, 102, 241, 0.06);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.15), 0 20px 60px rgba(0,0,0,0.5);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ms-indigo), var(--ms-indigo-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-name { font-size: 22px; font-weight: 700; color: #f1f5f9; margin-bottom: 0.25rem; }
.pricing-price { font-size: 48px; font-weight: 800; color: #f8fafc; line-height: 1; margin: 0.5rem 0 0.25rem; }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
.pricing-price sub { font-size: 15px; color: #64748b; font-weight: 500; }
.pricing-desc { font-size: 13px; color: #64748b; margin-bottom: 1.5rem; line-height: 1.5; min-height: 36px; }
.pricing-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #cbd5e1; padding: 5px 0; line-height: 1.45; }
.pricing-features .check { color: var(--ms-green); flex-shrink: 0; margin-top: 1px; }
.pricing-features .cross { color: #334155; flex-shrink: 0; margin-top: 1px; }
.pricing-features .dim { color: #334155; }
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.pricing-cta.outline { border: 1px solid rgba(255,255,255,0.15); color: #e2e8f0; }
.pricing-cta.outline:hover { background: rgba(255,255,255,0.06); }
.pricing-cta.filled {
  background: linear-gradient(135deg, var(--ms-indigo), var(--ms-indigo-dark));
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}
.pricing-cta.filled:hover { box-shadow: 0 8px 28px rgba(99,102,241,0.55); transform: translateY(-1px); }

/* ── Launch banner ── */
.launch-banner {
  margin-bottom: 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(34,211,238,0.06) 100%);
  border: 1px solid rgba(99,102,241,0.3);
  padding: 1.5rem 2rem;
  box-shadow: 0 0 0 1px rgba(99,102,241,0.08) inset, 0 8px 40px rgba(0,0,0,0.3);
}
.launch-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.launch-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.launch-banner-inner > div { flex: 1; min-width: 200px; }
.launch-banner-inner strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.3rem;
}
.launch-banner-inner p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.55;
}
.pricing-coming-soon {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.pricing-badge-soft {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  margin-bottom: 0.75rem;
}

/* ── Trust ── */
.trust { padding: clamp(40px, 6vw, 64px) 0; border-top: 1px solid rgba(255,255,255,0.04); }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.trust-icon { font-size: 22px; }
.trust-label { font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Footer ── */
footer {
  background: rgba(7, 11, 26, 0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand img { height: 22px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 13px; color: #334155; line-height: 1.65; max-width: 210px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { font-size: 13px; color: #475569; transition: color 0.15s; }
.footer-col a:hover { color: #94a3b8; }
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 12px; color: #334155; }
.footer-bottom a { color: #475569; transition: color 0.15s; }
.footer-bottom a:hover { color: #64748b; }

/* ── Legal pages ── */
.legal-hero {
  padding: 100px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 3rem;
}
.legal-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #f8fafc; margin-bottom: 0.5rem; }
.legal-hero p { font-size: 13px; color: #475569; margin-top: 0.4rem; }
.legal-content {
  max-width: 860px;
  padding-bottom: 80px;
}
.legal-body {
  background: rgba(248, 250, 252, 0.97);
  border-radius: 1.25rem;
  padding: clamp(24px, 4vw, 52px);
  color: #1e293b;
  font-size: 15px;
  line-height: 1.75;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.legal-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 2rem 0 0.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e2e8f0;
}
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 1.25rem 0 0.4rem;
}
.legal-body p { color: #334155; margin-bottom: 0.75rem; }
.legal-body ul, .legal-body ol { margin: 0.5rem 0 0.75rem 1.5rem; }
.legal-body li { color: #334155; margin-bottom: 0.35rem; }
.legal-body strong { color: #0f172a; }
.legal-body a { color: #4f46e5; text-decoration: underline; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 14px; }
.legal-body th, .legal-body td { padding: 9px 12px; border: 1px solid #e2e8f0; text-align: left; vertical-align: top; }
.legal-body th { background: #f1f5f9; font-weight: 600; color: #0f172a; }
.legal-note {
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.2);
  border-left: 4px solid var(--ms-indigo);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 1.25rem 0;
  font-size: 13px;
  color: #4338ca;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .jira-layout { grid-template-columns: 1fr; }
  .jira-sidebar-col { border-left: none; border-top: 1px solid #ebecf0; }
  .demo-step-tabs { display: none; }
  .demo-url { display: none; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .demo-footer { flex-direction: column; align-items: flex-start; }
}
