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

:root {
  --bg:          #0a0e1a;
  --bg2:         #111827;
  --bg3:         #1a2235;
  --border:      rgba(255,255,255,0.08);
  --border-lit:  rgba(255,255,255,0.15);
  --text:        #f0f4ff;
  --text2:       #8b9cc8;
  --text3:       #5a6a8a;
  --accent:      #4f8ef7;
  --accent2:     #7c5fe6;
  --accent-glow: rgba(79,142,247,0.25);
  --green:       #34d399;
  --red:         #f87171;
  --yellow:      #fbbf24;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:   'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  --max:         1160px;
  --nav-h:       64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Nav ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; letter-spacing: -0.3px;
}

.nav-logo .logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

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

.nav-links a {
  font-size: 14px; color: var(--text2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

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

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: 0.2s;
}

.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; color: var(--text2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 12px; text-align: center; }
.mobile-nav a:hover { color: var(--text); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #3d7ef5;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border-lit);
}
.btn-secondary:hover {
  color: var(--text);
  border-color: var(--border-lit);
  background: rgba(255,255,255,0.05);
}

.btn-enterprise {
  background: rgba(52,211,153,0.82);
  color: #0d1117;
  border: none;
}
.btn-enterprise:hover {
  background: rgba(52,211,153,0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(52,211,153,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(79,142,247,0.1);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 14px;
}

.btn-azure {
  background: #0078d4;
  color: #fff;
  gap: 10px;
}
.btn-azure:hover {
  background: #106ebe;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,120,212,0.4);
}

.btn-azure .azure-icon {
  width: 18px; height: 18px;
}

/* ─── Hero ──────────────────────────────────────────────────── */
#hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center top, rgba(79,142,247,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.3);
  border-radius: 100px;
  font-size: 13px; color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  max-width: 1040px;
  margin: 0 auto 24px;
}

h1 .gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-social-proof {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  color: var(--text2);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-social-proof span {
  display: flex; align-items: center; gap: 6px;
}

.hero-social-proof .check { color: var(--green); }

/* ─── Teams Preview ─────────────────────────────────────────── */
.teams-preview {
  max-width: 760px;
  margin: 64px auto 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 200px 1fr;
  height: 430px;
  font-family: 'Segoe UI', var(--font);
}

/* Left: chat list */
.teams-list-panel {
  background: #1a1a1a;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.teams-list-header {
  padding: 12px 12px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.teams-list-title { font-size: 15px; font-weight: 700; color: #e8e8e8; flex: 1; }

.teams-search-bar {
  margin: 0 8px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

.teams-list-section {
  padding: 4px 12px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}

.teams-ci {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  margin: 1px 4px;
  border-radius: 5px;
  cursor: default;
}

.teams-ci.active { background: rgba(255,255,255,0.1); }
.teams-ci:not(.active):hover { background: rgba(255,255,255,0.05); }

.tc-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  position: relative;
}

.tc-av.bot { border-radius: 8px; }

.tc-av .presence {
  position: absolute; bottom: -1px; right: -1px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #92c353;
  border: 2px solid #1a1a1a;
}

.tc-info { flex: 1; min-width: 0; }
.tc-name { font-size: 13px; font-weight: 600; color: #e0e0e0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-preview { font-size: 11px; color: #777; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-side { flex-shrink: 0; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.tc-time { font-size: 10px; color: #666; }
.tc-badge {
  background: #6264a7; color: #fff;
  font-size: 9px; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* Right: active chat */
.teams-msg-panel {
  background: #1c1c1c;
  display: flex;
  flex-direction: column;
}

.teams-panel-header {
  height: 46px;
  padding: 0 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.teams-panel-name { font-size: 14px; font-weight: 700; color: #e8e8e8; }
.teams-panel-sub { font-size: 11px; color: #777; }
.teams-panel-acts { margin-left: auto; display: flex; gap: 2px; }
.teams-panel-btn {
  width: 28px; height: 28px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #777; font-size: 16px; cursor: default;
}
.teams-panel-btn:hover { background: rgba(255,255,255,0.08); color: #ccc; }

.teams-messages {
  flex: 1; overflow-y: auto;
  padding: 10px 4px;
  display: flex; flex-direction: column; gap: 2px;
}

.teams-msg {
  display: flex; gap: 10px;
  padding: 5px 12px;
  border-radius: 2px;
}

.teams-msg:hover { background: rgba(255,255,255,0.03); }

.teams-msg-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  margin-top: 1px;
}

.teams-msg-av.bot { border-radius: 8px; }

.teams-msg-body { flex: 1; min-width: 0; }

.teams-msg-header {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 2px;
}

.teams-msg-name { font-size: 13px; font-weight: 700; color: #d8d8d8; }
.teams-msg-ts { font-size: 11px; color: #606060; font-weight: 400; }

.teams-msg-text {
  font-size: 13px; color: #c0c0c0; line-height: 1.55;
}

.teams-msg-text strong { color: #e0e0e0; font-weight: 600; }

.t-tag {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(98,100,167,0.2);
  border: 1px solid rgba(98,100,167,0.3);
  color: #8b8dc0;
  border-radius: 3px;
  font-size: 11px;
}

.teams-draft-card {
  margin-top: 8px;
  padding: 11px 14px;
  background: #252525;
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid #6264a7;
  border-radius: 4px;
}

.tdc-label { font-size: 11px; color: #666; margin-bottom: 3px; }
.tdc-subject { font-size: 13px; font-weight: 700; color: #d8d8d8; margin-bottom: 5px; }
.tdc-body { font-size: 12px; color: #999; line-height: 1.5; margin-bottom: 10px; font-style: italic; }
.tdc-actions { display: flex; gap: 8px; }

.tdc-btn-primary {
  padding: 5px 14px; background: #6264a7; color: #fff;
  border-radius: 4px; font-size: 12px; font-weight: 600;
  border: none; cursor: default; font-family: var(--font);
}

.tdc-btn-secondary {
  padding: 5px 14px; background: transparent; color: #999;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; font-size: 12px; font-weight: 600;
  cursor: default; font-family: var(--font);
}

.teams-compose-area {
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.teams-compose-box {
  background: #2b2b2b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 13px;
  color: #555;
  display: flex; align-items: center; gap: 8px;
}

.teams-compose-ph { flex: 1; }

.teams-compose-icons {
  display: flex; gap: 10px; color: #555; font-size: 14px;
}

.teams-compose-icons .send-icon { color: #6264a7; }

/* ─── Section base ──────────────────────────────────────────── */
section { padding: 96px 0; }

.section-label {
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px; color: var(--text2); max-width: 580px;
  line-height: 1.7;
}

#vs-copilot .section-sub,
#automations .section-sub,
#how .section-sub {
  margin: 0 auto;
}

/* ─── Problem ───────────────────────────────────────────────── */
#problem { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}

.problem-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.problem-card .product-name {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text2);
  margin-bottom: 12px;
}

.problem-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 12px;
  color: var(--text);
}

.problem-card p { font-size: 14px; color: var(--text2); line-height: 1.7; }

.problem-card .verdict {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 13px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.verdict.bad { background: rgba(248,113,113,0.12); color: var(--red); }
.verdict.good { background: rgba(52,211,153,0.12); color: var(--green); }

/* ─── Features ──────────────────────────────────────────────── */
#features .section-intro {
  text-align: center; max-width: 680px;
  margin: 0 auto 56px;
}

#features .section-intro .section-sub,
#problem .section-sub,
#permissions .section-sub {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

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

.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.feature-icon svg { width: 40px; height: 40px; flex-shrink: 0; }
.feature-icon img { width: 40px; height: 40px; display: block; object-fit: contain; }

/* Microsoft product icons — white container so white-bg raster icons look intentional */
.feature-icon-ms {
  width: 44px; height: 44px;
  background: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-icon-ms img { width: 38px; height: 38px; display: block; object-fit: contain; }
.feature-icon-ms svg { width: 34px; height: 34px; flex-shrink: 0; }

.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ─── How It Works ──────────────────────────────────────────── */
#how { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px; margin-top: 56px;
  position: relative;
}

.step { text-align: center; }

.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text2); line-height: 1.7; }

.step-detail {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px; color: var(--text3);
  font-family: var(--font-mono);
}

/* ─── Copilot vs / PA vs sections ──────────────────────────── */
#vs-copilot {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#automations {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(79,142,247,0.04) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.auto-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 48px 0 0;
}

.auto-compare-side {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.auto-compare-side.ac-bad {
  background: var(--bg2);
  border-color: rgba(248,113,113,0.2);
}

.auto-compare-side.ac-good {
  background: rgba(79,142,247,0.05);
  border-color: rgba(79,142,247,0.3);
}

.ac-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}

.ac-bad .ac-label { color: var(--red); }
.ac-good .ac-label { color: var(--accent); }

.ac-steps {
  padding-left: 18px; color: var(--text2);
  font-size: 13px; line-height: 2.1; margin: 0;
}

.ac-quote {
  font-size: 17px; color: var(--text);
  font-style: italic; line-height: 1.6;
  margin: 0 0 28px;
}

.ac-verdict {
  font-size: 13px; font-weight: 700;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.ac-verdict.bad { color: var(--red); }
.ac-verdict.good { color: var(--green); }

.auto-list { display: flex; flex-direction: column; gap: 12px; }

.auto-rule {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; color: var(--text);
  transition: border-color 0.2s;
}

.auto-rule:hover { border-color: var(--border-lit); }

.auto-rule .lightning { color: var(--accent); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.auto-rule .rule-text { line-height: 1.6; }
.auto-rule .rule-text em {
  font-style: normal;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ─── Data / Compliance ─────────────────────────────────────── */
#data {
  background: linear-gradient(135deg, rgba(79,142,247,0.06) 0%, rgba(124,95,230,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#data .two-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
  align-items: start;
}

.data-flow { display: flex; flex-direction: column; gap: 8px; }

.flow-node {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
}

.flow-node .icon { font-size: 18px; }
.flow-node .label { color: var(--text); font-weight: 500; }
.flow-node .sublabel { color: var(--text2); font-size: 11px; margin-left: auto; }

.flow-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  padding: 2px 0;
}

.data-points { display: flex; flex-direction: column; gap: 20px; }

.data-point {
  display: flex; gap: 14px; align-items: flex-start;
}

.data-point .dp-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(52,211,153,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.data-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.data-point p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ─── Comparison ────────────────────────────────────────────── */
#compare { }

.scale-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 12px;
}
.scale-table th {
  text-align: right;
  padding: 10px 12px;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text2);
}
.scale-table th:first-child { text-align: left; }
.scale-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  text-align: right;
}
.scale-table tr:last-child td { border-bottom: none; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  font-size: 14px;
}

.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.compare-table th.highlight {
  background: rgba(79,142,247,0.08);
  color: var(--accent);
  border-left: 1px solid rgba(79,142,247,0.2);
  border-right: 1px solid rgba(79,142,247,0.2);
}

.compare-table th.col-feature { text-align: left; color: var(--text3); }

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text2);
}

.compare-table td.col-feature {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.compare-table td.highlight {
  background: rgba(79,142,247,0.05);
  border-left: 1px solid rgba(79,142,247,0.15);
  border-right: 1px solid rgba(79,142,247,0.15);
}

.compare-table tr:last-child td.highlight {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.compare-table .yes { color: var(--green); font-weight: 600; }
.compare-table .no  { color: var(--red); }
.compare-table .partial { color: var(--yellow); }

/* ─── Pricing ───────────────────────────────────────────────── */
#pricing { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

#pricing .layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }

.price-card {
  background: var(--bg);
  border: 1px solid var(--border-lit);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.price-card.enterprise::before {
  background: linear-gradient(90deg, rgba(52,211,153,0.85), rgba(52,211,153,0.35));
}

.price-tag {
  margin-bottom: 24px;
}

.price-tag .amount {
  font-size: 52px; font-weight: 800; letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
}

.price-tag .amount sup { font-size: 24px; letter-spacing: 0; vertical-align: super; }
.price-tag .period { font-size: 16px; color: var(--text2); margin-top: 4px; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }

.price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text2);
}

.price-features .check { color: var(--green); flex-shrink: 0; margin-top: 2px; }

.azure-cost {
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.azure-cost h4 { font-size: 13px; font-weight: 700; color: var(--text2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }

.cost-table { width: 100%; border-collapse: collapse; }
.cost-table td { padding: 7px 0; font-size: 13px; color: var(--text2); }
.cost-table td:last-child { text-align: right; color: var(--text); font-weight: 500; }
.cost-table tr { border-bottom: 1px solid var(--border); }
.cost-table tr:last-child { border-bottom: none; }

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

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%; text-align: left;
  padding: 18px 24px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--text);
  font-family: var(--font);
}

.faq-q .chevron {
  flex-shrink: 0;
  color: var(--text3);
  transition: transform 0.2s;
  font-size: 18px;
}

.faq-item.open .faq-q .chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px; color: var(--text2); line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-a { display: block; }

/* ─── Technical FAQ item ────────────────────────────────────── */
.faq-tech-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 20px;
  vertical-align: middle;
}

.faq-a-tech { padding-top: 20px; }

.tech-stack { display: flex; flex-direction: column; gap: 0; }

.tech-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.7;
}

.tech-row:last-child { border-bottom: none; }

.tech-label {
  font-weight: 700;
  color: var(--text3);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 2px;
}

.tech-detail { color: var(--text2); }
.tech-detail strong { color: var(--text); font-weight: 600; }

/* ─── Technical expand block (data section) ─────────────────── */
.tech-expand-block {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg2);
}

.tech-expand-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tech-expand-label { }

.tech-expand-chevron {
  font-size: 16px;
  transition: transform 0.2s;
}

.tech-expand-block.open .tech-expand-chevron { transform: rotate(90deg); }

.tech-expand-body {
  display: none;
  padding: 14px;
  border-top: 1px solid var(--border);
}

.tech-expand-block.open .tech-expand-body { display: block; }

.tech-flow-detail { display: flex; flex-direction: column; gap: 0; }

.tfd-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
  padding: 4px 0;
}

.tfd-row strong { color: var(--text); }

.tfd-step {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(79,142,247,0.15);
  border: 1px solid rgba(79,142,247,0.3);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.tfd-arrow {
  font-size: 11px;
  color: var(--text3);
  padding-left: 8px;
  line-height: 1;
  margin: 1px 0;
}

/* ─── Permissions panel mock ────────────────────────────────── */
#permissions .layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
#permissions .layout > :first-child {
  padding-top: 68px;
}

.perms-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
  position: relative;
}

.perms-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.perms-panel-title { font-size: 13px; font-weight: 600; color: var(--text); }

.perms-summary { display: flex; gap: 6px; }

.ps-stat {
  display: flex; flex-direction: column; align-items: center;
  min-width: 48px; gap: 2px;
}
.ps-stat-num {
  font-size: 15px; font-weight: 700; line-height: 1;
}
.ps-stat-num.ps-enabled { color: var(--green); }
.ps-stat-num.ps-disabled { color: rgba(248,113,113,0.85); }
.ps-stat-num.ps-locked { color: var(--text3); }
.ps-stat-label {
  font-size: 10px; color: var(--text3); letter-spacing: 0.02em;
}

.perms-cat { padding: 12px 20px; border-bottom: 1px solid var(--border); }
.perms-cat:last-child { border-bottom: none; }

.perms-cat-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 10px;
}

.perm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.perm-row:last-child { border-bottom: none; }

.perm-info { display: flex; align-items: center; gap: 8px; flex: 1; }

.perm-name { font-size: 13px; color: var(--text2); }

.perm-badge {
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 3px; letter-spacing: 0.03em;
  flex-shrink: 0;
}

.perm-badge.read { background: rgba(79,142,247,0.15); color: var(--accent); }
.perm-badge.write { background: rgba(245,158,11,0.12); color: #f59e0b; }

.perm-toggle {
  width: 28px; height: 16px; border-radius: 8px;
  position: relative; flex-shrink: 0;
}

.perm-toggle.ton { background: var(--accent); }
.perm-toggle.ton.write { background: #f59e0b; }
.perm-toggle.toff { background: var(--bg3); border: 1px solid var(--border-lit); }

.perm-toggle::after {
  content: ''; position: absolute;
  width: 12px; height: 12px; border-radius: 50%; background: white; top: 2px;
}

.perm-toggle.ton::after { left: 14px; }
.perm-toggle.toff::after { left: 2px; }

.perm-lock { font-size: 11px; color: var(--text3); display: flex; align-items: center; gap: 4px; }

.perms-body {
  position: relative;
  max-height: 448px;
  overflow: hidden;
  padding-right: 16px;
}
.perms-body::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(transparent, var(--bg2));
  pointer-events: none;
  z-index: 1;
}
.perms-scrollbar {
  position: absolute;
  right: 6px;
  top: 68px;
  bottom: 6px;
  width: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  z-index: 2;
}
.perms-thumb {
  width: 100%;
  height: 44%;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}


/* ─── MC Mock Chat (shared across sections) ─────────────────── */
.vmc-chat {
  margin: 4px 0 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.vmc-row {
  display: flex; align-items: flex-end; gap: 8px;
}
.vmc-user { justify-content: flex-end; }
.vmc-mc   { justify-content: flex-start; }
.vmc-av {
  font-size: 10px; font-weight: 700; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vmc-av-u {
  background: rgba(255,255,255,0.07);
  color: var(--text3);
  border: 1px solid var(--border);
}
.vmc-av-mc {
  background: rgba(79,142,247,0.15);
  color: var(--accent);
  border: 1px solid rgba(79,142,247,0.3);
}
.vmc-bubble-u {
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 14px 14px 4px 14px;
  padding: 9px 13px;
  font-size: 13px; color: var(--text); line-height: 1.5;
  max-width: 80%;
}
.vmc-bubble-mc {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  padding: 9px 13px;
  font-size: 13px; color: var(--text); line-height: 1.5;
  max-width: 80%;
}
.vmc-done {
  font-weight: 700; font-size: 14px; color: var(--text);
}
.vmc-meta {
  font-size: 11px; color: var(--text3); margin-top: 4px; line-height: 1.5;
}

/* ─── Automations mock chat ─────────────────────────────────── */
.auto-chat {
  margin: 40px auto 0;
  max-width: 680px;
}
.auto-chat-label {
  font-size: 13px; font-weight: 500;
  color: var(--text2); margin-bottom: 16px;
}
.auto-chat-inner {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
}
.auto-chat-inner .vmc-bubble-u { font-size: 12px; }
.auto-chat-inner .vmc-bubble-mc { font-size: 12px; }
.auto-chat-inner .vmc-done { font-size: 13px; }

/* ─── Copilot scroll area ───────────────────────────────────── */
.copilot-scroll::-webkit-scrollbar { width: 3px; }
.copilot-scroll::-webkit-scrollbar-track { background: transparent; margin: 10px 0; }
.copilot-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 2px; }
.copilot-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

/* ─── PA flow compact inside card ───────────────────────────── */
.auto-compare-side .pa-showcase { margin-top: 20px; }
.auto-compare-side .pa-showcase-label { margin-bottom: 10px; }
.auto-compare-side .pa-flow { padding: 16px 18px; }
.auto-compare-side .pa-node { max-width: none; }
.auto-compare-side .pa-branches { max-width: none; }
.auto-compare-side .pa-head-title { font-size: 11px; }
.auto-compare-side .pa-body { gap: 3px; padding: 8px 12px; }
.auto-compare-side .pa-row { font-size: 10px; }
.auto-compare-side .pa-lbl { min-width: 90px; }
.auto-compare-side .pa-val.pa-expr { max-width: 160px; }
.auto-compare-side .pa-json { font-size: 9px; padding: 6px 10px; }

/* ─── Tier Compare ──────────────────────────────────────────── */
.tier-compare {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
  margin: 48px 0 0;
  align-items: stretch;
}

.tier-col-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 14px;
}
.tier-col-label-bad  { color: rgba(248,113,113,0.85); }
.tier-col-label-good { color: var(--accent); }

.tier-row {
  display: grid;
  grid-template-columns: 148px 1fr 26px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(248,113,113,0.04);
  border: 1px solid rgba(248,113,113,0.12);
  border-radius: 8px;
}

.tier-price { display: flex; flex-direction: column; gap: 3px; }
.tier-amt   { font-size: 15px; font-weight: 700; color: var(--text); }
.tier-note  { font-size: 11px; color: var(--text2); line-height: 1.35; }
.tier-wall  { font-size: 13px; color: var(--text); line-height: 1.55; opacity: 0.75; }

.tier-badge {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.tier-badge.bad { background: rgba(248,113,113,0.12); color: var(--red); }

.tier-connector {
  font-size: 11px; color: var(--text2); letter-spacing: 0.06em;
  text-align: center; padding: 5px 0;
}

.tier-ms-col { }

.tier-mc-col { display: flex; flex-direction: column; }

.tier-mc-card {
  background: rgba(79,142,247,0.07);
  border: 1px solid rgba(79,142,247,0.3);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-mc-price {
  font-size: 44px; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 2px;
}
.tier-mc-price span { font-size: 18px; font-weight: 500; color: var(--text2); }

.tier-mc-api { font-size: 12px; color: var(--text2); margin-bottom: 16px; }

.tier-mc-features {
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 0; text-align: left;
}
.tier-mc-feat  { font-size: 13.5px; color: var(--text); display: flex; gap: 8px; align-items: center; }
.tier-mc-check { color: var(--green); font-weight: 700; flex-shrink: 0; }

.tier-mc-verdict {
  font-size: 13px; font-weight: 600; color: var(--text);
  line-height: 1.6; padding: 10px 14px; margin-top: auto;
  background: rgba(52,211,153,0.07);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .tier-compare { grid-template-columns: 1fr; }
  .tier-mc-col  { position: static; }
  .tier-row     { grid-template-columns: 120px 1fr 22px; gap: 8px; }
}

/* ─── PA Flow Mock ──────────────────────────────────────────── */
.pa-showcase {
  margin: 48px 0 0;
}
.pa-showcase-label {
  font-size: 13px; font-weight: 500;
  color: var(--text2);
  margin-bottom: 20px;
}
.pa-flow {
  background: #f3f2f1;
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.pa-node {
  background: white;
  border: 1px solid #d0cece;
  border-radius: 3px;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.pa-head {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border-top: 3px solid transparent;
}
.pa-head-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pa-head-title {
  font-size: 12px; font-weight: 600; color: #323130; flex: 1;
  font-family: 'Segoe UI', sans-serif;
}
.pa-head-dots {
  font-size: 13px; color: #8a8886; letter-spacing: 1px; cursor: default;
}
.pa-body {
  padding: 10px 14px;
  display: flex; flex-direction: column; gap: 5px;
}
.pa-row {
  display: flex; align-items: baseline; gap: 8px; font-size: 11px;
  font-family: 'Segoe UI', sans-serif;
}
.pa-lbl { color: #605e5c; min-width: 120px; flex-shrink: 0; }
.pa-val { color: #323130; font-weight: 500; }
.pa-val.pa-expr {
  color: #0078d4;
  font-family: 'Cascadia Code', 'Consolas', monospace;
  font-size: 10px;
  background: rgba(0,120,212,0.08);
  padding: 1px 5px; border-radius: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 220px; display: inline-block;
}
.pa-condition-row {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 4px;
}
.pa-pill {
  background: rgba(0,120,212,0.1); color: #0078d4;
  border: 1px solid rgba(0,120,212,0.25);
  border-radius: 2px; padding: 2px 7px;
  font-size: 10px; font-family: 'Cascadia Code', 'Consolas', monospace;
}
.pa-pill-plain {
  background: #f3f2f1; color: #323130;
  border: 1px solid #c8c6c4; border-radius: 2px;
  padding: 2px 7px; font-size: 11px;
  font-family: 'Segoe UI', sans-serif;
}
.pa-op { font-size: 11px; color: #605e5c; font-family: 'Segoe UI', sans-serif; }
.pa-add-link { font-size: 11px; color: #0078d4; cursor: default; font-family: 'Segoe UI', sans-serif; }
.pa-arrow {
  font-size: 14px; color: #8a8886;
  text-align: center; padding: 5px 0; line-height: 1;
}
.pa-branches {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; width: 100%; max-width: 640px;
  border: 1px solid #d0cece; border-radius: 3px;
  background: white; overflow: hidden;
}
.pa-branch { border-right: 1px solid #d0cece; }
.pa-branch:last-child { border-right: none; }
.pa-branch-hd {
  padding: 7px 12px; font-size: 12px; font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
}
.pa-branch-hd.pa-yes { background: #dff6dd; color: #107c10; border-bottom: 1px solid #b7dfb5; }
.pa-branch-hd.pa-no  { background: #fde7e9; color: #c50f1f; border-bottom: 1px solid #f0b0b3; }
.pa-branch .pa-node { margin: 12px; width: auto; max-width: none; box-shadow: none; }
.pa-branch .pa-arrow { text-align: center; }
.pa-add-action {
  font-size: 11px; color: #0078d4; text-align: center;
  padding: 10px 0; cursor: default;
  font-family: 'Segoe UI', sans-serif;
}
.pa-json-wrap {
  margin-top: 8px;
  border: 1px solid #d0cece; border-radius: 2px; overflow: hidden;
}
.pa-json-hd {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; color: #605e5c;
  padding: 4px 8px; background: #f3f2f1;
  border-bottom: 1px solid #d0cece;
  font-family: 'Segoe UI', sans-serif;
}
.pa-json-badge {
  font-size: 9px; font-weight: 700;
  background: #8764b8; color: white;
  padding: 1px 5px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.pa-json {
  font-size: 10px;
  font-family: 'Cascadia Code', 'Consolas', monospace;
  color: #323130;
  background: #faf9f8;
  margin: 0; padding: 10px 12px;
  line-height: 1.65;
  overflow-x: auto;
  white-space: pre;
}

/* ─── CTA Banner ────────────────────────────────────────────── */
#cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(79,142,247,0.08) 0%, rgba(124,95,230,0.08) 100%);
  border-top: 1px solid var(--border);
}

#cta h2 { max-width: 620px; margin: 0 auto 16px; }
#cta p { color: var(--text2); max-width: 480px; margin: 0 auto 40px; font-size: 17px; }
#cta .cta-actions, #get-started .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }

.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.footer-logo .logo-mark { width: 26px; height: 26px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; }

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text3); transition: color 0.15s; }
.footer-links a:hover { color: var(--text2); }

.footer-copy { font-size: 13px; color: var(--text3); }

/* ─── Back to top ───────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(79,142,247,0.12); border: 1px solid rgba(79,142,247,0.28);
  color: rgba(79,142,247,0.85);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, background 0.15s ease;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: rgba(79,142,247,0.22); }

/* ─── Trust section ─────────────────────────────────────────── */
#trust { background: var(--bg); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.trust-item {
  padding: 28px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.trust-item:hover { border-color: var(--border-lit); transform: translateY(-2px); }
.trust-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.trust-icon svg { width: 32px; height: 32px; }
.trust-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.trust-item p { font-size: 13px; color: var(--text2); line-height: 1.65; margin: 0; }

/* ─── Policy pages ──────────────────────────────────────────── */
.policy-page { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; max-width: 720px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.policy-page h1 { font-size: 36px; letter-spacing: -1px; margin-bottom: 8px; }
.policy-page .updated { color: var(--text3); font-size: 13px; margin-bottom: 48px; }
.policy-page h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; }
.policy-page p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.policy-page ul { padding-left: 20px; margin-bottom: 16px; }
.policy-page ul li { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 6px; }
.policy-page a { color: var(--accent); text-decoration: underline; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #automations .layout, #pricing .layout, #permissions .layout { grid-template-columns: 1fr; gap: 32px; }
  #data .two-plan-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .auto-compare { grid-template-columns: 1fr; }
  .auto-compare-side { overflow-x: hidden; }
  .pa-showcase { overflow-x: auto; max-width: 100%; }
  .pa-flow { min-width: 0; }
  .pa-branches { grid-template-columns: 1fr; }
  .pa-branch { border-right: none; border-bottom: 1px solid #d0cece; }
  .pa-branch:last-child { border-bottom: none; }
  .pa-json { white-space: pre-wrap; word-break: break-all; }
  .pa-condition-row { flex-wrap: wrap; gap: 4px; }
  .pa-pill, .pa-pill-plain { word-break: break-all; max-width: 100%; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
  h1 { letter-spacing: -1px; }
  section { padding: 64px 0; }
  .teams-preview { grid-template-columns: 1fr; height: 480px; }
  .teams-list-panel { display: none; }
}
