/* VendraOps — vendor onboarding & ops portal (distinct from StoreMender / TaskMender) */

:root {
  --slate: #1c2d42;
  --slate-mid: #2a4058;
  --ink: #0f172a;
  --muted: #5c6b7a;
  --line: #dde3ea;
  --bg: #fafbfc;
  --bg-panel: #f1f4f8;
  --white: #ffffff;
  --amber: #b45309;
  --amber-bright: #d97706;
  --amber-soft: #fff7ed;
  --teal: #0d9488;
  --teal-soft: #ccfbf1;
  --warn: #dc2626;
  --warn-soft: #fef2f2;
  --ok: #059669;
  --ok-soft: #ecfdf5;
  --shadow: 0 8px 32px rgba(28, 45, 66, 0.08);
  --shadow-lg: 0 20px 56px rgba(28, 45, 66, 0.12);
  --radius: 10px;
  --radius-lg: 14px;
  --max: 1140px;
  --sans: "Public Sans", system-ui, sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body.auth-page { background: var(--bg-panel); }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

/* Ops announcement — factual product update, not pain-question template */
.announce-bar {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 10px 16px;
  border-bottom: 3px solid var(--amber-bright);
  position: relative;
  z-index: 110;
}

.announce-bar strong { color: #fff; font-weight: 700; }
.announce-bar a {
  color: #fcd34d;
  font-weight: 700;
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--slate);
  border: 2px solid var(--amber-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg { width: 20px; height: 20px; }

.brand-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--slate);
}

.brand-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 6px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover,
.nav-item.open .nav-link,
.nav-item:focus-within .nav-link { color: var(--slate); background: var(--bg-panel); }

.nav-caret {
  width: 5px; height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.45;
}

.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(640px, calc(100vw - 40px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.22s;
  z-index: 50;
  overflow: hidden;
}

.nav-item-center .nav-mega { left: 50%; transform: translateX(-50%) translateY(6px); }
.nav-item-center:hover .nav-mega,
.nav-item-center.open .nav-mega,
.nav-item-center:focus-within .nav-mega { transform: translateX(-50%) translateY(0); }

.nav-mega::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 16px;
}

.nav-item:hover .nav-mega,
.nav-item.open .nav-mega,
.nav-item:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  padding: 18px 20px;
}

.mega-col-title {
  margin: 0 0 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  grid-column: 1 / -1;
}

.mega-col-title:not(:first-child) { margin-top: 8px; }

.mega-link {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate);
  transition: background 0.15s;
}

.mega-link small {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

.mega-link:hover { background: var(--amber-soft); color: var(--amber); }

.mega-foot {
  padding: 10px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg-panel);
}

.mega-foot a { font-size: 0.82rem; font-weight: 700; color: var(--amber); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.86rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--amber-bright);
  color: #fff;
  box-shadow: 0 3px 12px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover { background: var(--amber); transform: translateY(-1px); }

.btn-secondary {
  background: var(--white);
  color: var(--slate);
  border: 1px solid var(--line);
}

.btn-secondary:hover { border-color: var(--amber-bright); color: var(--amber); }

.btn-full { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.text-link { font-weight: 700; color: var(--amber); font-size: 0.88rem; }
.text-link:hover { color: var(--amber-bright); }

/* Hero — ops portal, packet card right */
.home-hero {
  padding: 56px 0 64px;
  background:
    linear-gradient(180deg, var(--bg-panel) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.hero-copy { padding-top: 8px; }

.eyebrow {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--amber-soft);
  border: 1px solid rgba(217, 119, 6, 0.2);
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--slate);
}

.hero-subtitle {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* Vendor review packet card */
.packet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber-bright);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.packet-card-header {
  padding: 14px 18px;
  background: var(--slate);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.packet-card-body {
  padding: 18px;
  font-size: 0.82rem;
  line-height: 1.65;
}

.packet-card-body .label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 12px;
  margin-bottom: 4px;
}

.packet-card-body .label:first-child { margin-top: 0; }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-badge.review { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(217, 119, 6, 0.25); }
.status-badge.ready { background: var(--ok-soft); color: var(--ok); border: 1px solid rgba(5, 150, 105, 0.25); }
.status-badge.missing { background: var(--warn-soft); color: var(--warn); border: 1px solid rgba(220, 38, 38, 0.2); }
.status-badge.waiting { background: var(--bg-panel); color: var(--muted); border: 1px solid var(--line); }

.section { padding: 64px 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--slate);
}

.section-head p { margin: 0; color: var(--muted); }

/* Pain grid — bordered table style, not card grid */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.pain-cell {
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.pain-cell:nth-child(2n) { border-right: 0; }
.pain-cell:nth-last-child(-n+2) { border-bottom: 0; }

.pain-cell h3 {
  margin: 6px 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
}

.pain-cell p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Flow steps — horizontal ops pipeline */
.flow-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.flow-pipeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.flow-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.flow-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 8px;
  background: var(--slate);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg);
  box-shadow: var(--shadow);
}

.flow-step h3 {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate);
}

.flow-step p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* Before / after — ops columns */
.compare-ops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-col {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  background: var(--white);
}

.compare-col.before { border-color: rgba(220, 38, 38, 0.15); background: #fefafa; }
.compare-col.after { border-color: rgba(13, 148, 136, 0.2); background: #f8fdfc; }

.compare-col h4 {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-col.before h4 { color: var(--warn); }
.compare-col.after h4 { color: var(--teal); }

.compare-col ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.compare-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature tiles — 3x2 with left accent */
.feature-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 20px;
  border-left: 3px solid var(--amber-bright);
  transition: box-shadow 0.15s;
}

.feature-tile:hover { box-shadow: var(--shadow); }

.feature-tile h3 {
  margin: 6px 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--slate);
}

.feature-tile p { margin: 0; font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* Use case rows */
.use-rows { display: grid; gap: 10px; }

.use-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}

.use-row:hover { border-color: rgba(217, 119, 6, 0.35); background: var(--amber-soft); }

.use-row-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--slate);
}

.use-row h3 { margin: 0 0 4px; font-size: 0.98rem; font-weight: 700; color: var(--slate); }
.use-row p { margin: 0; font-size: 0.84rem; color: var(--muted); }
.use-row-arrow { color: var(--amber); font-weight: 800; }

/* Pricing table style */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.pricing-col {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.pricing-col:last-child { border-right: 0; }
.pricing-col.featured { background: var(--amber-soft); }

.plan-name { font-weight: 800; font-size: 0.92rem; margin-bottom: 4px; color: var(--slate); }
.plan-price {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: -0.02em;
}

.plan-price span { font-size: 0.78rem; font-family: var(--sans); color: var(--muted); font-weight: 600; }
.plan-desc { font-size: 0.78rem; color: var(--muted); margin: 8px 0 14px; min-height: 36px; }

.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 6px;
}

.plan-features li {
  font-size: 0.76rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.plan-features li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 800;
}

/* Security panel */
.security-panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

.security-panel h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--slate);
}

.security-panel p { margin: 0 0 16px; color: var(--muted); font-size: 0.92rem; }

.security-panel ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.security-boundary {
  padding: 14px 16px;
  background: var(--bg-panel);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  font-size: 0.86rem;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 44px 48px;
  background: var(--slate);
  color: #fff;
  border-radius: var(--radius-lg);
}

.final-cta h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.final-cta p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }

/* Subpages */
.page-hero {
  padding: 40px 0 28px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.breadcrumb a:hover { color: var(--amber); }

.page-title {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--slate);
}

.lead { margin: 0; color: var(--muted); max-width: 620px; font-size: 1rem; }
.page-body { padding: 44px 0 64px; }

.content-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 { margin: 8px 0 8px; font-size: 1rem; font-weight: 700; color: var(--slate); }
.card p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.page-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

.aside-card {
  padding: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.aside-card h4 { margin: 0 0 8px; font-size: 0.86rem; font-weight: 700; color: var(--slate); }
.aside-card p { margin: 0; font-size: 0.82rem; color: var(--muted); }

.sub-cta {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--amber-soft);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sub-cta h3 { margin: 0 0 4px; font-size: 1.05rem; font-weight: 700; color: var(--slate); }
.sub-cta p { margin: 0; font-size: 0.86rem; color: var(--muted); }

/* Forms */
.form { display: grid; gap: 14px; }
.form-group { display: grid; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--slate); }

.form input, .form select, .form textarea {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--amber-bright);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.form textarea { min-height: 100px; padding: 10px 12px; resize: vertical; }

.upload-zone {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  background: var(--bg-panel);
  cursor: pointer;
}

.upload-zone:hover { border-color: var(--amber-bright); background: var(--amber-soft); }
.upload-zone.is-dragover { border-color: var(--amber-bright); background: var(--amber-soft); }
.upload-zone strong { display: block; margin-bottom: 6px; color: var(--slate); }

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

.doc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.doc-check:has(input:checked) {
  border-color: var(--amber-bright);
  background: var(--amber-soft);
}

.scan-preview {
  padding: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Auth */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-visual {
  padding: 48px;
  background: var(--slate);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-visual h1 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 28px 0 12px;
  line-height: 1.2;
}

.auth-visual p { color: rgba(255, 255, 255, 0.7); max-width: 380px; }

.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.auth-card {
  width: min(100%, 400px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.auth-card h2 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--slate);
}

/* Footer */
.site-footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.65);
  padding: 52px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
}

.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text span { color: rgba(255, 255, 255, 0.5); }

.footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.footer-col h5 {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col a {
  display: block;
  padding: 3px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.footer-col a:hover { color: #fcd34d; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.45); font-weight: 600; }
.footer-bottom-links a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 960px) {
  .announce-bar { font-size: 0.78rem; }
  .hero-layout { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-cell { border-right: 0 !important; }
  .flow-pipeline { grid-template-columns: 1fr; gap: 24px; }
  .flow-pipeline::before { display: none; }
  .compare-ops { grid-template-columns: 1fr; }
  .feature-tiles { grid-template-columns: 1fr; }
  .pricing-table { grid-template-columns: 1fr; }
  .pricing-col { border-right: 0; border-bottom: 1px solid var(--line); }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-split { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .auth-shell { grid-template-columns: 1fr; }
  .mega-grid { grid-template-columns: 1fr; }
  .nav-mega { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; margin-top: 4px; box-shadow: none; }
  .header-row { flex-wrap: wrap; justify-content: center; }
  .nav-main { flex-wrap: wrap; justify-content: center; }
  .doc-checklist { grid-template-columns: 1fr; }
}
