/* ==========================================================================
   AssetManagerAI — Landing Page Styles
   Palette: Navy #0F172A + Sky #0EA5E9 on light slate, marketing-forward
   ========================================================================== */

:root {
  --navy-900: #0F172A;
  --navy-800: #1E293B;
  --navy-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-150: #EAEFF5;
  --slate-125: #EEF2F7;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --sky-400: #38BDF8;
  --sky-500: #0EA5E9;
  --sky-600: #0284C7;
  --white: #FFFFFF;
  --success: #059669;
  --warning: #B45309;
  --danger: #DC2626;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.10), 0 8px 16px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 20px 60px rgba(14, 165, 233, 0.25);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3 { margin: 0 0 0.5em; line-height: 1.2; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
a { color: var(--sky-600); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--sky-500); }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--slate-125);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy-900);
}
.section-sub {
  font-size: 18px;
  color: var(--slate-600);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-600);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--sky-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.28);
}
.btn-primary:hover {
  background: var(--sky-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--slate-300);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--slate-50);
  color: var(--navy-900);
  border-color: var(--slate-400);
  transform: translateY(-1px);
}
.hero-secondary-cta {
  margin-bottom: 24px;
}
.hero-secondary-cta svg { transition: transform 0.15s ease; }
.hero-secondary-cta:hover svg { transform: translateY(2px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--slate-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  text-decoration: none;
}
.wordmark-asset { color: var(--navy-900); }
.wordmark-manager { color: var(--navy-900); }
.wordmark-ai {
  color: var(--sky-500);
  margin-left: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a:hover { color: var(--navy-900); }
.site-nav .nav-login { color: var(--navy-900); font-weight: 600; }
.site-nav .btn { color: var(--white); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(14, 165, 233, 0.25), transparent 60%),
    radial-gradient(600px 300px at 10% 20%, rgba(56, 189, 248, 0.15), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, #0A1528 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 19px;
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--slate-400);
}
.hero-meta strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.hero .eyebrow {
  color: var(--sky-400);
}
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .form-note {
  color: var(--slate-400);
}
.hero .form-legal {
  color: var(--slate-400);
}
.hero .form-legal a {
  color: var(--slate-300);
  text-decoration-color: rgba(255, 255, 255, 0.25);
}
.hero .form-legal a:hover {
  color: var(--white);
  text-decoration-color: var(--sky-400);
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 0 10px;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.form-note {
  font-size: 13px;
  color: var(--slate-500);
  margin: 0;
}
.form-legal {
  font-size: 12px;
  color: var(--slate-500);
  margin: 6px 0 0;
  max-width: 480px;
}
.form-legal a {
  color: var(--slate-600);
  text-decoration: underline;
  text-decoration-color: var(--slate-300);
  text-underline-offset: 2px;
}
.form-legal a:hover {
  color: var(--sky-600);
  text-decoration-color: var(--sky-500);
}
.form-legal-light {
  color: var(--slate-400);
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}
.form-legal-light a {
  color: var(--slate-300);
  text-decoration-color: rgba(255, 255, 255, 0.25);
}
.form-legal-light a:hover {
  color: var(--white);
  text-decoration-color: var(--sky-400);
}
.form-success {
  padding: 14px 18px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: var(--success);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  max-width: 480px;
}
.form-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
}

/* Hero Video / Coming Soon */
.hero-video { position: relative; }
.video-card {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 70% 30%, rgba(14, 165, 233, 0.25), transparent 60%);
  pointer-events: none;
}
.video-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  background: #0B1220;
  overflow: hidden;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  gap: 14px;
}
.play-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  border: 2px solid var(--sky-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-400);
  padding-left: 4px;
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.3);
}
.video-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.video-subtitle {
  font-size: 13px;
  color: var(--slate-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(14, 165, 233, 0.10);
  color: var(--sky-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 15px;
  color: var(--slate-600);
  margin: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.step-number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sky-500);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--slate-600);
  margin: 0;
}

/* Document Intelligence */
.doc-intel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.doc-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 20px;
}
.doc-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}
.doc-group:last-child { border-bottom: none; }
.doc-group-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.doc-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.doc-group li {
  font-size: 15px;
  color: var(--navy-900);
  padding-left: 18px;
  position: relative;
}
.doc-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-500);
}

.doc-preview { position: sticky; top: 96px; }
.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--slate-100), var(--slate-50));
  border: 1px dashed var(--slate-300);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.screenshot-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
}
.screenshot-sub {
  font-size: 13px;
  color: var(--slate-500);
}

.capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.capability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 500;
}
.cap-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Capability Cards (Inside Every Lease and Loan section) */
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.capability-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.capability-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
}
.capability-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.10);
  color: var(--sky-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.capability-icon svg { width: 18px; height: 18px; }
.capability-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
  line-height: 1.3;
}
.capability-card p {
  font-size: 13px;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.5;
}

/* Intelligence Layers */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.intel-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.intel-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.intel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.intel-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--sky-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.intel-icon svg { width: 26px; height: 26px; }
.intel-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.intel-card p {
  font-size: 15px;
  color: var(--slate-600);
  margin: 0;
}

/* See It Work — interactive doc-type tabs (standalone section) */
.siw-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.siw-tab {
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.15s ease;
}
.siw-tab:hover {
  border-color: var(--sky-500);
  color: var(--navy-900);
}
.siw-tab.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}
.siw-tab.is-active:hover {
  background: var(--navy-800);
}

.siw-panels { position: relative; }
.siw-panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: none;
}
.siw-panel.is-active {
  display: block;
  animation: siw-fade 0.2s ease;
}
@keyframes siw-fade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.siw-panel-header {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--slate-200);
  background: linear-gradient(180deg, var(--slate-50), var(--white));
}
.siw-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.siw-meta {
  font-size: 13px;
  color: var(--slate-600);
}

.siw-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
}
.siw-column {
  padding: 24px 28px;
}
.siw-column + .siw-column {
  border-left: 1px solid var(--slate-200);
}
.siw-column-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 14px;
}
.siw-terms {
  list-style: none;
  padding: 0;
  margin: 0;
}
.siw-terms li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--slate-200);
}
.siw-terms li:last-child { border-bottom: none; }
.siw-term-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14.5px;
  margin-bottom: 4px;
}
.siw-term-row .term-name { color: var(--slate-600); font-weight: 500; }
.siw-term-row .term-value { color: var(--navy-900); font-weight: 600; text-align: right; }

/* Compound term (multi-part extractions like Cure Periods, Reporting Cadence) */
.siw-term-compound { padding: 12px 0; }
.siw-term-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: 8px;
}
.siw-term-sublist {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.siw-term-sublist li {
  font-size: 13.5px;
  color: var(--navy-800);
  padding: 0 0 0 14px;
  border: none;
  position: relative;
  line-height: 1.55;
}
.siw-term-sublist li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky-500);
}
.siw-term-sublist strong {
  color: var(--navy-900);
  font-weight: 600;
}

.siw-flags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.siw-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 28px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}
.siw-attribution {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.siw-disclaimer {
  font-size: 12px;
  color: var(--slate-500);
  font-style: italic;
}

.siw-coming-soon {
  padding: 72px 32px;
  text-align: center;
  color: var(--slate-500);
}
.siw-coming-soon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-400);
  margin-bottom: 16px;
}
.siw-coming-soon h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.siw-coming-soon p {
  font-size: 14px;
  color: var(--slate-600);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section closer line */
.section-closer {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-800);
  font-style: italic;
}
.section-caveat {
  text-align: center;
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 14px;
  color: var(--slate-500);
}

/* Hero Showcase Card (replaces video placeholder) */
.hero-showcase { position: relative; }
.showcase-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.showcase-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-500) 0%, var(--sky-400) 100%);
}
.showcase-header {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--slate-200);
}
.showcase-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge-doc {
  background: rgba(14, 165, 233, 0.10);
  color: var(--sky-600);
}
.badge-deal {
  background: var(--slate-100);
  color: var(--navy-800);
}
.badge-time {
  background: rgba(5, 150, 105, 0.10);
  color: var(--success);
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-variant-numeric: tabular-nums;
}
.badge-time svg { flex-shrink: 0; }
.showcase-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-section {
  padding: 18px 24px;
  border-bottom: 1px solid var(--slate-200);
}
.showcase-section:last-of-type { border-bottom: none; }
.showcase-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 12px;
}
.showcase-terms {
  list-style: none;
  padding: 0;
  margin: 0;
}
.showcase-terms li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--slate-200);
  font-size: 14px;
}
.showcase-terms li:last-child { border-bottom: none; }
.term-name { color: var(--slate-600); font-weight: 500; }
.term-value { color: var(--navy-900); font-weight: 600; }
.term-source {
  color: var(--slate-400);
  font-size: 12px;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
}

.showcase-flags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flag {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}
.flag-critical {
  background: rgba(220, 38, 38, 0.04);
  border-color: rgba(220, 38, 38, 0.25);
}
.flag-warning {
  background: rgba(180, 83, 9, 0.05);
  border-color: rgba(180, 83, 9, 0.25);
}
.flag-severity {
  flex-shrink: 0;
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}
.flag-critical .flag-severity {
  background: var(--danger);
  color: var(--white);
}
.flag-warning .flag-severity {
  background: var(--warning);
  color: var(--white);
}
.flag-body { flex: 1; min-width: 0; }
.flag-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 2px;
}
.flag-desc {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
  margin-top: 4px;
}
.flag-source {
  font-size: 12px;
  color: var(--slate-500);
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  margin-top: 4px;
}

.showcase-footer {
  padding: 12px 24px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.showcase-attribution {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.showcase-disclaimer {
  font-size: 11px;
  color: var(--slate-500);
  font-style: italic;
  line-height: 1.4;
}

/* AI Insights */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}
.insight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(14, 165, 233, 0.10);
  color: var(--sky-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.insight-icon svg { width: 24px; height: 24px; }
.insight-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.insight-card p {
  font-size: 15px;
  color: var(--slate-600);
  margin: 0;
}

.pulse-callout {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(56, 189, 248, 0.04));
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
}
.pulse-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-600);
}
.pulse-callout p {
  font-size: 15px;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.6;
}

/* Platform Cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.platform-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}
.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--sky-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.platform-icon svg { width: 26px; height: 26px; }
.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.platform-card > p {
  font-size: 15px;
  color: var(--slate-600);
  margin-bottom: 18px;
  line-height: 1.6;
}
.platform-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--slate-200);
  padding-top: 18px;
}
.platform-bullets li {
  font-size: 14px;
  color: var(--navy-800);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.platform-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--sky-500);
  border-radius: 2px;
}

/* Personas */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.persona-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 3px solid var(--sky-500);
}
.persona-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.persona-card p {
  font-size: 14px;
  color: var(--slate-600);
  margin: 0 0 16px;
  line-height: 1.55;
}
.persona-highlight {
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(14, 165, 233, 0.06);
  border-left: 3px solid var(--sky-500);
  border-radius: 0 6px 6px 0;
  min-height: 180px;
  box-sizing: border-box;
}
.persona-highlight-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-600);
  margin-bottom: 4px;
}
.persona-highlight-text {
  font-size: 13px;
  color: var(--navy-800);
  line-height: 1.55;
}
.persona-highlight-text strong {
  color: var(--navy-900);
  font-weight: 600;
}
.persona-card {
  display: flex;
  flex-direction: column;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, #0A1528 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(14, 165, 233, 0.20), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  max-width: 720px;
}
.cta h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta p {
  font-size: 18px;
  color: var(--slate-300);
  margin-bottom: 32px;
}
.cta-trust {
  font-size: 15px !important;
  color: var(--slate-300) !important;
  margin: -16px 0 28px !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.waitlist-form-large {
  margin: 0 auto 12px;
}
.form-note-light { color: var(--slate-400); }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: var(--slate-400);
  padding: 56px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}
.wordmark-footer { color: var(--white); font-size: 20px; display: inline-block; }
.wordmark-footer .wordmark-asset,
.wordmark-footer .wordmark-manager { color: var(--white); }
.footer-tagline {
  color: var(--slate-400);
  font-size: 14px;
  margin: 12px 0 0;
}
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--slate-300);
  font-size: 14px;
  font-weight: 500;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate-500);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .hero { padding: 64px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 17px; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .section-head h2, .cta h2 { font-size: 32px; }
  .section-sub { font-size: 16px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .intel-grid { grid-template-columns: repeat(2, 1fr); }
  .intel-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .pulse-callout { grid-template-columns: 1fr; gap: 12px; padding: 24px; }

  .siw-grid { grid-template-columns: 1fr; }
  .siw-column + .siw-column {
    border-left: none;
    border-top: 1px solid var(--slate-200);
  }

  .showcase-section { padding: 16px 20px; }
  .showcase-header { padding: 18px 20px 14px; }
  .showcase-footer { padding: 12px 20px; }

  .doc-intel-grid { grid-template-columns: 1fr; gap: 40px; }
  .doc-preview { position: static; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .site-nav { gap: 14px; }
  .site-nav a:not(.btn):not(.nav-login) { display: none; }

  .hero h1 { font-size: 36px; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .hero-meta > div { flex: 1 1 45%; }

  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }

  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }

  .doc-group ul { grid-template-columns: 1fr; }
  .capabilities { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }

  .siw-tab { padding: 8px 14px; font-size: 13px; }
  .siw-tabs { gap: 6px; }
  .siw-column { padding: 18px 20px; }
  .siw-footer { padding: 12px 20px; }
  .section-closer { font-size: 16px; margin-top: 36px; }

  .showcase-terms li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .showcase-terms .term-source {
    font-size: 11px;
    grid-column: 1;
  }

  .section-head h2, .cta h2 { font-size: 28px; }
}

/* ==========================================================================
   Legal Pages (privacy.html, terms.html)
   ========================================================================== */

.legal-hero {
  background: var(--slate-125);
  border-bottom: 1px solid var(--slate-200);
  padding: 64px 0 48px;
}
.legal-hero .container { max-width: 880px; }
.legal-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.legal-meta {
  font-size: 14px;
  color: var(--slate-600);
  margin: 0;
}
.legal-meta strong { color: var(--navy-900); font-weight: 600; }

.legal-disclaimer {
  margin: 32px 0 0;
  padding: 16px 20px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  font-size: 14px;
  line-height: 1.55;
}
.legal-disclaimer strong { color: var(--navy-900); }

.legal-body {
  padding: 56px 0 96px;
}
.legal-body .container {
  max-width: 880px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  padding: 20px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.legal-toc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.legal-toc li {
  padding: 5px 0;
  counter-increment: toc;
  font-size: 13px;
  line-height: 1.4;
}
.legal-toc li::before {
  content: counter(toc, decimal-leading-zero) ".  ";
  color: var(--slate-400);
  font-weight: 600;
}
.legal-toc a {
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.15s ease;
}
.legal-toc a:hover { color: var(--sky-600); }

.legal-content {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--navy-800);
  min-width: 0;
}
.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sky-500);
  display: inline-block;
  scroll-margin-top: 100px;
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 28px 0 10px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul, .legal-content ol {
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--sky-600); }
.legal-content a:hover { color: var(--sky-500); text-decoration: underline; }
.legal-content strong { color: var(--navy-900); font-weight: 600; }

.legal-content .placeholder {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(180, 83, 9, 0.10);
  border: 1px dashed rgba(180, 83, 9, 0.4);
  border-radius: 4px;
  color: var(--warning);
  font-weight: 600;
  font-size: 0.92em;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14.5px;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--slate-200);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: var(--slate-50);
  font-weight: 600;
  color: var(--navy-900);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
  font-size: 14px;
  color: var(--slate-600);
}
.legal-back a {
  color: var(--sky-600);
  font-weight: 500;
}

@media (max-width: 960px) {
  .legal-hero { padding: 48px 0 36px; }
  .legal-hero h1 { font-size: 32px; }
  .legal-body { padding: 40px 0 64px; }
  .legal-body .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-toc {
    position: static;
    padding: 16px 18px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--slate-50);
  }
  .legal-content h2 { font-size: 22px; margin-top: 36px; }
}

/* ==========================================================================
   MailerLite embedded waitlist form — restyle to match site
   Scoped to #mlb2-42649394 (live form container). Sits inside navy .cta.
   ========================================================================== */
#mlb2-42649394.ml-form-embedContainer .ml-form-embedWrapper {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  max-width: 360px !important;
  width: 100% !important;
  margin: 0 auto !important;
}
#mlb2-42649394 .ml-form-embedBody { padding: 0 !important; }

#mlb2-42649394 .ml-form-fieldRow { margin-bottom: 16px !important; text-align: left !important; }

#mlb2-42649394 .ml-field-group label {
  display: block !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--slate-300) !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.01em !important;
}

#mlb2-42649394 input.form-control,
#mlb2-42649394 select.custom-select {
  width: 100% !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  color: var(--navy-900) !important;
  background: var(--white) !important;
  border: 1px solid var(--slate-300) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 14px !important;
  height: auto !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}

#mlb2-42649394 input.form-control:focus,
#mlb2-42649394 select.custom-select:focus {
  outline: none !important;
  border-color: var(--sky-500) !important;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18) !important;
}

#mlb2-42649394 .ml-form-embedSubmit { margin-top: 4px !important; }
#mlb2-42649394.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: var(--white) !important;
  background-color: var(--sky-500) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  padding: 13px 22px !important;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.28) !important;
  transition: all 0.15s ease !important;
}
#mlb2-42649394.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover {
  background-color: var(--sky-600) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35) !important;
}

#mlb2-42649394 .ml-form-successBody h4 { color: var(--white) !important; font-family: var(--font-sans) !important; }
#mlb2-42649394 .ml-form-successBody p { color: var(--slate-300) !important; font-family: var(--font-sans) !important; }

/* Temporarily hide Log In links until app.assetmanagerai.net is publicly reachable.
   Beta testers receive the login URL directly via email.
   To re-enable: delete this rule. */
a[href="https://app.assetmanagerai.net/login"] {
  display: none !important;
}

