/* ============================================
   Rentibly — Shared Stylesheet (Light Theme)
   ============================================ */

:root {
  /* Precision-light palette (P0-approved): warm paper, ink navy, one amber accent */
  --bg: #FBFBF9;
  --bg-soft: #F6F5F1;
  --bg-muted: #F0EFEA;
  --border: #E7E5DF;
  --border-soft: #EFEDE7;
  --ink: #0B1120;
  --ink-mid: #1F2937;

  /* Legacy aliases — values flipped for light theme */
  --navy: #FBFBF9;          /* page background */
  --navy-light: #F6F5F1;    /* alt section bg */
  --navy-mid: #E7E5DF;      /* borders */
  --navy-card: #FFFFFF;     /* mock body bg */
  --white: #0B1120;         /* now: primary dark text */
  --slate: #5B6472;
  --slate-light: #1F2937;
  --slate-dark: #9CA3AF;

  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --amber-dark: #A16207;    /* ochre — accent text on light, AA-safe */
  --amber-soft: #FDF3E0;

  --green: #177E4D;
  --green-soft: #E3F3EA;
  --red: #B3372B;

  /* Type: grotesque carries structure; Playfair is the italic accent only */
  --font-display: 'Familjen Grotesk', 'DM Sans', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
  --maxw: 1140px;
  --radius: 16px;

  --shadow-sm: 0 1px 2px rgba(11, 17, 32, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 17, 32, 0.06), 0 1px 3px rgba(11, 17, 32, 0.04);
  --shadow-lg: 0 20px 50px rgba(11, 17, 32, 0.08), 0 4px 12px rgba(11, 17, 32, 0.04);
  --shadow-xl: 0 40px 80px rgba(11, 17, 32, 0.11), 0 10px 30px rgba(11, 17, 32, 0.05);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-mid);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── Navigation ───────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(251, 251, 249, 0.85);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-dropdown-trigger::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger::after { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem;
  min-width: 540px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: var(--bg-soft); }
.nav-dropdown-item-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.nav-dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.nav-dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--slate);
  line-height: 1.4;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  font-family: var(--font-body);
}
.btn:hover {
  background: #1F2937;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(11, 17, 32, 0.18);
}
.btn-lg { padding: 0.95rem 1.85rem; font-size: 0.95rem; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
}
.btn-amber {
  background: var(--amber);
  color: var(--ink);
}
.btn-amber:hover {
  background: var(--amber-light);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--slate);
  border: none;
}
.btn-ghost:hover {
  color: var(--ink);
  background: transparent;
  transform: none;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Generic layout ──────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 2rem; position: relative; }
.section-tight { padding: 4.5rem 2rem; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.section-header h2 em {
  font-style: italic;
  color: var(--amber-dark); font-family: var(--font-serif); font-weight: 500;
}
.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Hero variants ───────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  background:
    radial-gradient(ellipse 900px 600px at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    var(--bg);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--amber);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--amber-dark);
  margin-bottom: 1.75rem;
  background: var(--amber-soft);
  animation: fadeInUp 0.7s ease both;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--amber-dark); font-family: var(--font-serif); font-weight: 500;
}
.hero p.lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.3s both;
  flex-wrap: wrap;
}

/* Page-level hero (smaller) */
.page-hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 700px 380px at 50% 0%, rgba(245, 158, 11, 0.07) 0%, transparent 65%),
    var(--bg);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
  color: var(--ink);
}
.page-hero h1 em { font-style: italic; color: var(--amber-dark); font-family: var(--font-serif); font-weight: 500;
}
.page-hero p.lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* ── Trust strip ──────────────────────── */
.trust-strip {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  background: var(--bg-soft);
}
.trust-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-mid);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* ── Mock UI ──────────────────────── */
.mock-window {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin: 4rem auto 0;
  max-width: 980px;
  position: relative;
  z-index: 1;
}
.mock-window-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #D1D5DB;
}
.mock-dots span:nth-child(1) { background: #EF4444; }
.mock-dots span:nth-child(2) { background: #FBBF24; }
.mock-dots span:nth-child(3) { background: #10B981; }
.mock-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--slate);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.mock-body {
  background: #FFFFFF;
  padding: 1.5rem;
  min-height: 440px;
}

/* Mock dashboard */
.mock-dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  height: 420px;
}
.mock-sidebar {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem 0.75rem;
}
.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 0.15rem;
}
.mock-sidebar-item.active {
  background: var(--amber-soft);
  color: var(--amber-dark);
}
.mock-sidebar-item-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-dark);
}
.mock-sidebar-item.active .mock-sidebar-item-dot { background: var(--amber); }
.mock-main {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.mock-stat {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
}
.mock-stat-label {
  font-size: 0.65rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.mock-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 600;
}
.mock-stat-trend {
  font-size: 0.7rem;
  color: var(--green);
  margin-top: 0.2rem;
}
.mock-rows {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}
.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr 80px 90px;
  align-items: center;
  padding: 0.7rem 0.95rem;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-mid);
}
.mock-row:last-child { border-bottom: none; }
.mock-row-head { color: var(--slate); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; background: var(--bg-soft); }
.mock-pill {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--green-soft);
  color: #047857;
}
.mock-pill.warn { background: var(--amber-soft); color: var(--amber-dark); }
.mock-pill.muted { background: var(--bg-muted); color: var(--slate); }

/* Mock chat (inbox) */
.mock-inbox {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  height: 420px;
}
.mock-conv-list {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  padding: 0.4rem;
}
.mock-conv {
  padding: 0.6rem 0.65rem;
  border-radius: 8px;
  margin-bottom: 0.1rem;
}
.mock-conv.active { background: var(--amber-soft); }
.mock-conv-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.2rem;
}
.mock-conv-name { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.mock-conv-time { font-size: 0.62rem; color: var(--slate); }
.mock-conv-msg { font-size: 0.7rem; color: var(--slate); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-conv-ch {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate);
  margin-top: 0.2rem;
}
.mock-conv-ch.wa { color: #128C7E; }
.mock-conv-ch.airbnb { color: #E11D48; }
.mock-conv-ch.email { color: var(--amber-dark); }

.mock-chat {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.mock-bubble {
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  font-size: 0.78rem;
  max-width: 75%;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.mock-bubble.them {
  background: #FFFFFF;
  color: var(--ink-mid);
  border: 1px solid var(--border-soft);
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.mock-bubble.you {
  background: var(--ink);
  color: #FFFFFF;
  align-self: flex-end;
  border-top-right-radius: 4px;
  font-weight: 500;
}
.mock-chat-spacer { flex: 1; }

/* ── Features grid ──────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate);
}
.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-dark);
  letter-spacing: 0.01em;
}
.feature-card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.feature-card:hover .feature-card-link::after { transform: translateX(3px); }

/* ── Two-column feature row ──────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem 0;
}
.split.reverse .split-text { order: 2; }
.split-text .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  color: var(--ink);
}
.split-text h2 em { font-style: italic; color: var(--amber-dark); font-family: var(--font-serif); font-weight: 500;
}
.split-text p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.split-list {
  list-style: none;
  margin-bottom: 1.75rem;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.5;
}
.split-list li strong { color: var(--ink); font-weight: 600; }
.split-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%23B45309' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Stats / metrics row ─────────────── */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.metric {
  text-align: center;
  padding: 2rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.metric-value {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--amber-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 0.82rem;
  color: var(--slate);
}

/* ── Pricing ──────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 60%);
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.price-desc {
  color: var(--slate);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  min-height: 2.4em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-amount-sub {
  color: var(--slate);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  margin-bottom: 1.75rem;
}
.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.price-features li {
  font-size: 0.875rem;
  color: var(--ink-mid);
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%23B45309' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── FAQ ──────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--amber-dark);
  font-weight: 300;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.faq-item.open .faq-a {
  margin-top: 0.85rem;
  max-height: 400px;
}

/* ── CTA box ──────────────────────────── */
.cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #FFFFFF 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  position: relative;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cta-box h2 em { font-style: italic; color: var(--amber-dark); font-family: var(--font-serif); font-weight: 500;
}
.cta-box > p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}
.waitlist-form input {
  flex: 1;
  padding: 0.85rem 1.15rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-form input::placeholder { color: var(--slate-dark); }
.waitlist-form input:focus { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12); }
.waitlist-form button {
  padding: 0.85rem 1.5rem;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.waitlist-form button:hover {
  background: #1F2937;
  box-shadow: 0 8px 24px rgba(11, 17, 32, 0.18);
}
.waitlist-note {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 1rem;
  position: relative;
}
.waitlist-success {
  display: none;
  color: var(--amber-dark);
  margin-top: 1rem;
  font-weight: 500;
  position: relative;
}

/* ── Integrations grid ───────────────── */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.integration-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.integration-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.integration-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 700;
}
.integration-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.integration-category {
  font-size: 0.7rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.integration-status {
  margin-top: 0.6rem;
  font-size: 0.66rem;
  color: #047857;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.integration-status.soon { color: var(--slate-dark); }
.integration-status.planned { color: var(--slate-dark); font-style: italic; }
.integration-desc {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.5;
  margin-top: 0.5rem;
  text-align: left;
}

/* ── Integrations directory toolbar ───── */
.int-toolbar { max-width: var(--maxw); margin: 0 auto; }
#int-search {
  width: 100%;
  max-width: 460px;
  display: block;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1.15rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#int-search:focus { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12); }
.int-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
.cat-chip {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s;
}
.cat-chip:hover { color: var(--ink); border-color: var(--slate-dark); }
.cat-chip.active { background: var(--ink); border-color: var(--ink); color: #FFFFFF; }
.int-empty { text-align: center; color: var(--slate); padding: 3rem 0 1rem; }

/* ── Quote / testimonial ─────────────── */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-block blockquote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  color: var(--amber);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.quote-author { color: var(--slate); font-size: 0.9rem; }
.quote-author strong { color: var(--ink); display: block; font-weight: 600; }

/* ── Footer ──────────────────────────── */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
  position: relative;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}
.footer-brand span { color: var(--amber); }
.footer-tagline {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--slate);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-bottom-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.78rem;
}
.footer-bottom-links a:hover { color: var(--ink); }

/* ── Animations ──────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────── */
/* ============================================
   Precision-light enterprise homepage (P1)
   Grotesque structure, serif accents, one amber
   voice, product-forward hero with annotations.
   ============================================ */

/* ── Enterprise hero ── */
.hero-ent {
  flex-direction: column;
  min-height: auto;
  padding: 10.5rem 2rem 0;
  background:
    radial-gradient(760px 380px at 50% -60px, rgba(245, 158, 11, 0.07) 0%, transparent 65%),
    var(--bg);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber-dark);
  margin-bottom: 1.1rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-ent h1 { animation: fadeInUp 0.6s ease 0.06s both; }
.hero-ent .lead { animation: fadeInUp 0.6s ease 0.12s both; }
.hero-ent .hero-cta { animation: fadeInUp 0.6s ease 0.18s both; }

/* Proof row (count-up metrics) */
.proof-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.4rem 0 2.6rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.24s both;
}
.proof { text-align: center; }
.proof b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.proof span {
  font-size: 0.7rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Surface switcher tabs */
.hero-tabs {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-tab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.05rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--slate);
  transition: all 0.15s;
}
.hero-tab:hover { color: var(--ink); border-color: var(--slate-dark); }
.hero-tab[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #FFFFFF; }

/* Product frame */
.hero-frame-wrap {
  max-width: 980px;
  margin: 0 auto;
  animation: fadeInUp 0.7s ease 0.36s both;
}
.hero-frame {
  position: relative;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  background: #FFFFFF;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero-frame-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
}
.hero-frame-url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate);
}
.hero-panel { display: none; position: relative; }
.hero-panel.on { display: block; animation: panelIn 0.35s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hero-panel .app-shot { border-radius: 0; }
.hero-panel .mock-body { min-height: 380px; }

/* Annotation pins */
.pin {
  position: absolute;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  z-index: 4;
  box-shadow: 0 0 0 4px rgba(11, 17, 32, 0.08);
}
.pin::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 5;
}
.pin:hover::after, .pin:focus-visible::after { opacity: 1; }

/* ── Marquee trust strip (kept) ── */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 3rem; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Real screenshot / product video when present; CSS mock fallback otherwise */
.app-shot, .app-video { width: 100%; display: block; }
.app-video { aspect-ratio: 16 / 10; object-fit: cover; background: var(--bg-soft); }
.app-shot-fallback { display: none; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-ent h1, .hero-ent .lead, .hero-ent .hero-cta,
  .hero-eyebrow, .proof-row, .hero-tabs, .hero-frame-wrap { animation: none !important; }
  .hero-panel.on { animation: none; }
}

@media (max-width: 860px) {
  .hero-ent { padding-top: 8.5rem; }
  .proof-row { gap: 1.75rem; }
  .pin { display: none; }
}

@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
  .split.reverse .split-text { order: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-dropdown-menu { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: #FFFFFF;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section, .section-tight { padding: 3.5rem 1.25rem; }
  .hero, .page-hero { padding: 7rem 1.25rem 3rem; }
  .mock-dash, .mock-inbox { grid-template-columns: 1fr; height: auto; }
  .mock-sidebar, .mock-conv-list { display: none; }
  .mock-stats { grid-template-columns: repeat(2, 1fr); }
  .waitlist-form { flex-direction: column; }
}


/* ============================================
   V4 — Reference-grade layout language
   (Guesty/RentalReady-class: left-aligned
   editorial headers, rounded feature theaters,
   pill buttons, collages, personas, logo rail)
   ============================================ */
:root { --maxw: 1240px; --radius-xl: 28px; }

/* Pill buttons */
.btn, .waitlist-form button { border-radius: 100px; }
.btn-lg { padding: 1rem 2rem; }

/* ── Left-aligned section header row ── */
.sh-row {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.sh-row .eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--amber-dark); margin-bottom: 0.9rem;
}
.sh-row h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 650; line-height: 1.06; letter-spacing: -0.03em;
  color: var(--ink); max-width: 21ch;
}
.sh-row h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--amber-dark); }
.sh-row .sh-sub { color: var(--slate); max-width: 52ch; margin-top: 1rem; font-size: 1.02rem; line-height: 1.7; }
.sh-row .sh-cta { display: flex; gap: 0.75rem; flex-shrink: 0; padding-bottom: 0.35rem; }

/* ── Feature theater ── */
.theater {
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 4vw, 4rem);
  overflow: hidden;
  position: relative;
}
.theater + .theater { margin-top: 1.5rem; }
.theater-dark {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(245, 158, 11, 0.13) 0%, transparent 60%),
    linear-gradient(160deg, #101a30 0%, #0B1120 55%);
  color: #E7EAF2;
}
.theater-light { background: #FFFFFF; border: 1px solid var(--border); }
.theater-soft { background: var(--bg-soft); border: 1px solid var(--border-soft); }
.theater-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.theater-grid.flip { grid-template-columns: 1.08fr 0.92fr; }
.theater h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 650; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 1.1rem; color: var(--ink);
}
.theater-dark h3 { color: #FFFFFF; }
.theater h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--amber-dark); }
.theater-dark h3 em { color: var(--amber-light); }
.theater p.tlead { color: var(--slate); font-size: 1rem; line-height: 1.7; margin-bottom: 1.4rem; max-width: 46ch; }
.theater-dark p.tlead { color: #A8B1C4; }

/* Chips row */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.4rem; }
.chip-tag {
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
  padding: 0.34rem 0.8rem; border-radius: 6px;
  background: var(--amber-soft); color: var(--amber-dark);
}
.theater-dark .chip-tag { background: rgba(255, 255, 255, 0.1); color: #E7EAF2; }

/* Arrow bullets */
.arrow-list { list-style: none; margin: 0 0 1.75rem; }
.arrow-list li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  padding: 0.42rem 0; font-size: 0.97rem; line-height: 1.55; color: var(--ink-mid);
}
.theater-dark .arrow-list li { color: #C6CDDC; }
.arrow-list li::before { content: '\2192'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.arrow-list li strong { color: var(--ink); font-weight: 600; }
.theater-dark .arrow-list li strong { color: #FFFFFF; }

/* Theater outline CTA on dark */
.theater-dark .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,0.28); }
.theater-dark .btn-outline:hover { border-color: var(--amber); color: #FFFFFF; background: rgba(245,158,11,0.1); box-shadow: none; }

/* ── Product collage ── */
.collage { position: relative; }
.collage-main {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(11, 17, 32, 0.1);
  box-shadow: 0 30px 70px rgba(11, 17, 32, 0.22);
  background: #FFFFFF;
}
.theater-dark .collage-main { border-color: rgba(255, 255, 255, 0.14); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5); }
.collage-main img, .collage-main video { width: 100%; display: block; }
.collage-float {
  position: absolute; z-index: 3;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(11, 17, 32, 0.1);
  box-shadow: 0 24px 60px rgba(11, 17, 32, 0.3);
  background: #FFFFFF;
  width: 44%;
}
.collage-float img { width: 100%; display: block; }
.cf-br { right: -4%; bottom: -8%; }
.cf-tr { right: -4%; top: -8%; }
.cf-bl { left: -4%; bottom: -8%; }
.collage-pill {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 100px;
  padding: 0.45rem 0.95rem; font-size: 0.74rem; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-lg); white-space: nowrap;
}
.collage-pill .ok { color: var(--green); font-weight: 800; }

/* ── Hero v4 ── */
.hero-v4 {
  padding: 9.5rem 2rem 5rem;
  background:
    radial-gradient(900px 460px at 12% -10%, rgba(245, 158, 11, 0.09) 0%, transparent 62%),
    var(--bg);
}
.hero-v4-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 4.5rem); align-items: center;
}
.hero-v4 .eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--amber-dark); margin-bottom: 1.1rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-v4 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  font-weight: 650; line-height: 1.04; letter-spacing: -0.032em;
  color: var(--ink); margin-bottom: 1.35rem;
  animation: fadeInUp 0.6s ease 0.06s both;
}
.hero-v4 h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--amber-dark); }
.hero-v4 .lead {
  font-size: 1.12rem; line-height: 1.7; color: var(--slate);
  max-width: 46ch; margin-bottom: 1.9rem;
  animation: fadeInUp 0.6s ease 0.12s both;
}
.hero-v4 .hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2rem; animation: fadeInUp 0.6s ease 0.18s both; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; animation: fadeInUp 0.6s ease 0.24s both; }
.hero-badge-tile {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1px solid var(--border); background: #FFFFFF; border-radius: 10px;
  padding: 0.5rem 0.9rem; font-size: 0.76rem; font-weight: 600; color: var(--ink-mid);
}
.hero-badge-tile b { color: var(--green); font-weight: 800; }
.hero-v4 .collage { animation: fadeInUp 0.8s ease 0.28s both; }

/* ── Persona cards ── */
.persona-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.persona {
  border-radius: 22px; padding: 2rem 1.9rem;
  background: linear-gradient(165deg, #131d33 0%, #0B1120 70%);
  color: #E7EAF2; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.persona:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(11, 17, 32, 0.25); }
.persona::after {
  content: ''; position: absolute; right: -70px; top: -70px;
  width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 70%);
}
.persona .p-chip {
  align-self: flex-start; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.32rem 0.75rem; border-radius: 100px;
  background: rgba(245, 158, 11, 0.16); color: var(--amber-light); margin-bottom: 1.2rem;
}
.persona h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 650; letter-spacing: -0.02em; color: #FFFFFF; margin-bottom: 0.6rem; }
.persona p { font-size: 0.92rem; line-height: 1.65; color: #A8B1C4; flex: 1; }
.persona .p-link { margin-top: 1.4rem; font-size: 0.85rem; font-weight: 700; color: var(--amber-light); text-decoration: none; }
.persona .p-link::after { content: ' \2192'; }

/* ── Integration tile rail ── */
.tile-rail { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; max-width: var(--maxw); margin: 0 auto; }
.tile {
  width: 74px; height: 74px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.25rem; color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}
.tile:hover { transform: translateY(-3px) scale(1.04); }
.tile small { font-size: 0.6rem; font-weight: 700; }

/* ── FAQ (reuse .faq) on homepage ── */

@media (max-width: 980px) {
  .hero-v4-grid, .theater-grid, .theater-grid.flip { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .sh-row { flex-direction: column; align-items: flex-start; }
  .collage-float, .collage-pill { display: none; }
  .hero-v4 { padding-top: 8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v4 .eyebrow, .hero-v4 h1, .hero-v4 .lead, .hero-v4 .hero-cta,
  .hero-badges, .hero-v4 .collage { animation: none !important; }
}


/* ============================================
   V5 — Product-illustration kit (choice B):
   hi-fi stylized UI recreations replace real
   screenshots. Enlarged type, plausible fake
   data, brand amber/navy. No real UI shipped.
   ============================================ */

/* App frame */
.ill { background:#FFFFFF; font-family: var(--font-body); }
.ill-bar { height: 34px; background: var(--bg-soft); border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 10px; padding: 0 14px; }
.ill-bar .ill-url { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 0.68rem; color: var(--slate); }
.ill-body { display: grid; grid-template-columns: 148px 1fr; min-height: 340px; }
.ill-side { background: #0F1729; padding: 0.9rem 0.7rem; display: flex; flex-direction: column; gap: 0.28rem; }
.ill-side .ill-brand { color: #FFFFFF; font-weight: 700; font-size: 0.8rem; letter-spacing: -0.01em; padding: 0 0.4rem 0.7rem; }
.ill-side .ill-brand b { color: var(--amber); }
.ill-nav-item { display: flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.5rem; border-radius: 7px;
  font-size: 0.68rem; color: #8A93A8; }
.ill-nav-item::before { content: ''; width: 6px; height: 6px; border-radius: 2px; background: #3A4460; }
.ill-nav-item.on { background: rgba(245, 158, 11, 0.16); color: #FBBF24; font-weight: 600; }
.ill-nav-item.on::before { background: var(--amber); }
.ill-main { padding: 1rem; display: flex; flex-direction: column; gap: 0.8rem; background: #FBFBFA; }
.ill-title { font-family: var(--font-display); font-weight: 650; font-size: 0.95rem; color: var(--ink); letter-spacing: -0.01em; }

/* Needs-action chips */
.ill-alerts { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ill-alert { font-size: 0.62rem; font-weight: 700; padding: 0.3rem 0.6rem; border-radius: 100px; border: 1px solid; }
.ill-alert.red { color: #B3372B; border-color: #F3CBC5; background: #FDF2F0; }
.ill-alert.amb { color: var(--amber-dark); border-color: #F3E2BC; background: var(--amber-soft); }
.ill-alert.grn { color: var(--green); border-color: #C4E5D2; background: var(--green-soft); }

/* KPI tiles */
.ill-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.55rem; }
.ill-kpi { background: #FFFFFF; border: 1px solid var(--border-soft); border-radius: 10px; padding: 0.6rem 0.7rem; }
.ill-kpi .k { font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate); margin-bottom: 0.25rem; }
.ill-kpi .v { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.ill-kpi .d { font-size: 0.58rem; font-weight: 600; margin-top: 0.15rem; }
.ill-kpi .d.up { color: var(--green); } .ill-kpi .d.dn { color: #B3372B; }
.ill-kpi u { display: block; height: 3px; width: 42%; border-radius: 2px; background: var(--amber); margin-top: 0.45rem; text-decoration: none; }

/* Chart card */
.ill-chart { background: #FFFFFF; border: 1px solid var(--border-soft); border-radius: 10px; padding: 0.7rem 0.8rem; flex: 1; min-height: 120px; position: relative; }
.ill-chart .c { font-size: 0.64rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.ill-chart svg { width: 100%; height: calc(100% - 1.3rem); display: block; }
.ill-line path.l { fill: none; stroke: var(--amber); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 620; stroke-dashoffset: 620; }
.reveal.in .ill-line path.l, .no-reveal .ill-line path.l { animation: illdraw 1.6s ease-out 0.3s forwards; }
@keyframes illdraw { to { stroke-dashoffset: 0; } }
.ill-line path.f { fill: url(#illfill); opacity: 0; }
.reveal.in .ill-line path.f, .no-reveal .ill-line path.f { animation: illfade 0.8s ease-out 1.5s forwards; }
@keyframes illfade { to { opacity: 1; } }

/* Table rows */
.ill-rows { background: #FFFFFF; border: 1px solid var(--border-soft); border-radius: 10px; overflow: hidden; }
.ill-row { display: grid; grid-template-columns: 1.5fr 1fr 0.7fr 0.8fr; gap: 0.5rem; align-items: center;
  padding: 0.5rem 0.75rem; font-size: 0.68rem; color: var(--ink-mid); border-bottom: 1px solid var(--border-soft); }
.ill-row:last-child { border-bottom: none; }
.ill-row.h { background: var(--bg-soft); font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate); font-weight: 700; }
.ill-row b { color: var(--ink); font-weight: 600; }
.ill-pill { display: inline-block; padding: 0.14rem 0.5rem; border-radius: 100px; font-size: 0.58rem; font-weight: 700;
  background: var(--green-soft); color: var(--green); justify-self: start; }
.ill-pill.w { background: var(--amber-soft); color: var(--amber-dark); }
.ill-pill.m { background: var(--bg-muted); color: var(--slate); }

/* AI panel */
.ill-ai { background: #FFFFFF; border-radius: 14px; overflow: hidden; font-family: var(--font-body); }
.ill-ai-head { display: flex; align-items: center; gap: 0.55rem; padding: 0.8rem 1rem; border-bottom: 1px solid var(--border-soft); }
.ill-ai-orb { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, #FBBF24, #D97706); box-shadow: 0 2px 8px rgba(245, 158, 11, 0.45);
  position: relative; }
.ill-ai-orb::after { content: '\2726'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #FFFFFF; font-size: 0.7rem; }
.ill-ai-head b { font-size: 0.82rem; color: var(--ink); }
.ill-ai-body { padding: 0.9rem 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ill-ai-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.ill-ai-chip { font-size: 0.6rem; font-weight: 600; color: var(--slate); background: var(--bg-muted); border-radius: 100px; padding: 0.26rem 0.6rem; }
.ill-ask { align-self: flex-end; background: var(--ink); color: #FFFFFF; font-size: 0.72rem; line-height: 1.45;
  padding: 0.5rem 0.8rem; border-radius: 12px 12px 4px 12px; max-width: 85%; }
.ill-ans { align-self: flex-start; background: var(--bg-soft); color: var(--ink-mid); font-size: 0.72rem; line-height: 1.5;
  padding: 0.5rem 0.8rem; border-radius: 12px 12px 12px 4px; max-width: 92%; }
.ill-ans b { color: var(--ink); }
.ill-bars { display: flex; align-items: flex-end; gap: 0.45rem; height: 74px; padding: 0.3rem 0.2rem 0; }
.ill-bars i { flex: 1; border-radius: 4px 4px 0 0; background: var(--amber); transform-origin: bottom; transform: scaleY(0); }
.reveal.in .ill-bars i, .no-reveal .ill-bars i { animation: illgrow 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.ill-bars i:nth-child(2) { animation-delay: 0.12s; opacity: 0.85; }
.ill-bars i:nth-child(3) { animation-delay: 0.24s; opacity: 0.7; }
.ill-bars i:nth-child(4) { animation-delay: 0.36s; opacity: 0.55; }
.ill-bars i:nth-child(5) { animation-delay: 0.48s; opacity: 0.4; }
@keyframes illgrow { to { transform: scaleY(1); } }
.ill-bar-labels { display: flex; gap: 0.45rem; }
.ill-bar-labels span { flex: 1; text-align: center; font-size: 0.54rem; color: var(--slate); }
.ill-input { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--border);
  border-radius: 100px; padding: 0.45rem 0.9rem; font-size: 0.68rem; color: var(--slate-dark); }
.ill-input i { width: 22px; height: 22px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-style: normal; }

/* Inbox illustration */
.ill-inbox { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 330px; }
.ill-convs { border-right: 1px solid var(--border-soft); background: var(--bg-soft); padding: 0.6rem; display: flex; flex-direction: column; gap: 0.3rem; }
.ill-conv { background: transparent; border-radius: 10px; padding: 0.55rem 0.65rem; }
.ill-conv.on { background: #FFFFFF; box-shadow: var(--shadow-sm); }
.ill-conv .t { display: flex; justify-content: space-between; font-size: 0.68rem; font-weight: 700; color: var(--ink); }
.ill-conv .t span { color: var(--slate); font-weight: 500; font-size: 0.58rem; }
.ill-conv .m { font-size: 0.62rem; color: var(--slate); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 0.12rem; }
.ill-ch { display: inline-block; font-size: 0.52rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.28rem; }
.ill-ch.wa { color: #1FA855; } .ill-ch.em { color: var(--amber-dark); } .ill-ch.web { color: #3B5BDB; }
.ill-thread { padding: 0.8rem; display: flex; flex-direction: column; gap: 0.45rem; background: #FFFFFF; }
.ill-thread-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.68rem; font-weight: 700;
  color: var(--ink); padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-soft); }
.ill-bub { max-width: 82%; font-size: 0.7rem; line-height: 1.45; padding: 0.45rem 0.7rem; border-radius: 12px; }
.ill-bub.them { align-self: flex-start; background: var(--bg-muted); color: var(--ink-mid); border-bottom-left-radius: 4px; }
.ill-bub.you { align-self: flex-end; background: #DCF3E1; color: #14532D; border-bottom-right-radius: 4px; }
.ill-draft { border: 1px dashed var(--amber); background: var(--amber-soft); border-radius: 10px; padding: 0.5rem 0.7rem;
  font-size: 0.66rem; color: var(--amber-dark); }
.ill-draft b { display: block; font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }

/* Statement illustration */
.ill-stmt { padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; background: #FBFBFA; min-height: 330px; }
.ill-stmt-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.55rem; }
.ill-stile { border-radius: 10px; padding: 0.65rem 0.7rem; border: 1px solid var(--border-soft); background: #FFFFFF; }
.ill-stile .k { font-size: 0.54rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate); margin-bottom: 0.25rem; }
.ill-stile .v { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: -0.02em; color: var(--ink); }
.ill-stile.net { background: var(--amber-soft); border-color: #F3E2BC; }
.ill-stile.net .v { color: var(--amber-dark); }

/* Calendar illustration */
.ill-cal { padding: 1rem; background: #FBFBFA; min-height: 330px; display: flex; flex-direction: column; gap: 0.45rem; }
.ill-cal-head { display: grid; grid-template-columns: 120px repeat(7, 1fr); gap: 3px; }
.ill-cal-day { text-align: center; font-size: 0.54rem; font-weight: 700; text-transform: uppercase; color: var(--slate); }
.ill-cal-row { display: grid; grid-template-columns: 120px repeat(7, 1fr); gap: 3px; align-items: center; }
.ill-cal-prop { font-size: 0.64rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 0.4rem; }
.ill-cal-cell { height: 26px; border-radius: 5px; background: var(--bg-muted); }
.ill-cal-bar { height: 26px; border-radius: 6px; display: flex; align-items: center; padding: 0 0.5rem;
  font-size: 0.56rem; font-weight: 700; color: #FFFFFF; white-space: nowrap; overflow: hidden; }
.ill-cal-bar.a { background: var(--ink); }
.ill-cal-bar.b { background: var(--amber); color: #0B1120; }
.ill-cal-bar.c { background: var(--green); }
.ill-cal-bar.block { background: repeating-linear-gradient(45deg, #E3E1DA, #E3E1DA 5px, #F0EFEA 5px, #F0EFEA 10px); color: var(--slate); }

@media (max-width: 860px) {
  .ill-body { grid-template-columns: 1fr; }
  .ill-side { display: none; }
  .ill-inbox { grid-template-columns: 1fr; }
  .ill-convs { display: none; }
}


/* ── V5.1: sophisticated inbox illustration ── */
.ill-toolbar { display: flex; align-items: center; gap: 0.35rem; padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--border-soft); background: #FFFFFF; flex-wrap: wrap; }
.ill-tab { font-size: 0.6rem; font-weight: 700; padding: 0.26rem 0.6rem; border-radius: 100px; color: var(--slate); background: var(--bg-muted); }
.ill-tab.on { background: var(--ink); color: #FFFFFF; }
.ill-conv .meta { display: flex; align-items: center; gap: 0.35rem; margin-top: 0.3rem; flex-wrap: wrap; }
.ill-ref { font-family: var(--font-mono); font-size: 0.52rem; color: var(--slate-dark); }
.ill-status { font-size: 0.52rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.12rem 0.42rem; border-radius: 100px; }
.ill-status.new { background: #E8EDFB; color: #3353C8; }
.ill-status.pc { background: var(--amber-soft); color: var(--amber-dark); }
.ill-status.pa { background: #F3E8FB; color: #7E3AA8; }
.ill-status.hold { background: var(--bg-muted); color: var(--slate); }
.ill-sla { font-size: 0.52rem; font-weight: 800; padding: 0.12rem 0.42rem; border-radius: 100px;
  background: #FDF2F0; color: #B3372B; }
.ill-sla.ok { background: var(--green-soft); color: var(--green); }
.ill-agent { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.54rem; font-weight: 700; color: var(--slate); }
.ill-agent i { width: 14px; height: 14px; border-radius: 50%; font-style: normal; font-size: 0.44rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; background: var(--amber-soft); color: var(--amber-dark); }
.ill-thread-head { flex-wrap: wrap; gap: 0.4rem; }
.ill-thread-head .controls { display: flex; align-items: center; gap: 0.35rem; }
.ill-bub { position: relative; }
.ill-bub .stamp { display: block; text-align: right; font-size: 0.5rem; color: rgba(20, 40, 30, 0.5); margin-top: 0.2rem; }
.ill-bub.them .stamp { color: var(--slate-dark); }
.ill-ticks { color: #34B7F1; font-weight: 800; letter-spacing: -0.12em; }
.ill-ticks.sent { color: var(--slate-dark); }


/* ── V5.2: real brand logos ── */
.tile.logo { background: #FFFFFF; border: 1px solid var(--border); }
.tile.logo img { width: 58%; height: 58%; object-fit: contain; border-radius: 8px; }
.integration-icon img { width: 26px; height: 26px; object-fit: contain; border-radius: 6px; }


/* ── V5.2: legacy mock components lifted to illustration fidelity ──
   (feature pages share mock-* markup; this levels them with .ill-*) ── */
.mock-window { border-radius: 16px; border-color: rgba(11, 17, 32, 0.1); box-shadow: 0 30px 70px rgba(11, 17, 32, 0.16); }
.mock-window-bar { height: 34px; }
.mock-url { font-size: 0.68rem; }
.mock-body { background: #FBFBFA; }
.mock-stat { background: #FFFFFF; border-radius: 10px; }
.mock-stat-label { font-size: 0.58rem; }
.mock-stat-value { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.mock-stat-trend { font-size: 0.62rem; font-weight: 600; }
.mock-rows { background: #FFFFFF; border-radius: 10px; }
.mock-row { font-size: 0.72rem; padding: 0.6rem 0.85rem; }
.mock-row-head { font-size: 0.58rem; font-weight: 700; }
.mock-pill { font-size: 0.6rem; font-weight: 700; padding: 0.16rem 0.55rem; background: var(--green-soft); color: var(--green); }
.mock-pill.warn { background: var(--amber-soft); color: var(--amber-dark); }
.mock-pill.muted { background: var(--bg-muted); color: var(--slate); }
.mock-conv-name { font-size: 0.74rem; }
.mock-conv-msg { font-size: 0.66rem; }
.mock-bubble { font-size: 0.74rem; border-radius: 12px; }
.mock-bubble.you { background: #DCF3E1; color: #14532D; font-weight: 500; }
.mock-sidebar { background: #0F1729; border: none; }
.mock-sidebar-item { color: #8A93A8; font-size: 0.7rem; }
.mock-sidebar-item.active { background: rgba(245, 158, 11, 0.16); color: #FBBF24; }
.mock-sidebar-item-dot { background: #3A4460; }
.mock-sidebar-item.active .mock-sidebar-item-dot { background: var(--amber); }


/* ============================================
   V6 — Realism pass: illustrations mirror the
   actual platform anatomy (fictional data).
   ============================================ */

/* Sidebar: real anatomy — search pill, icon nav, slate active w/ amber edge, user card */
.ill-side { background: #0E1526; padding: 0.8rem 0.6rem; }
.ill-search { display: flex; align-items: center; gap: 0.35rem; background: #1A2337; border: 1px solid #253049;
  border-radius: 8px; padding: 0.32rem 0.5rem; font-size: 0.56rem; color: #6B7893; margin-bottom: 0.65rem; }
.ill-search b { color: #8A93A8; font-weight: 600; border-right: 1px solid #253049; padding-right: 0.35rem; }
.ill-nav-item { gap: 0.5rem; padding: 0.38rem 0.5rem; border-radius: 8px; font-size: 0.66rem; }
.ill-nav-item::before { display: none; }
.ill-nav-item svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 1.7; fill: none;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ill-nav-item.on { background: #1E2A44; color: #FFFFFF; position: relative; font-weight: 600; }
.ill-nav-item.on::after { content: ''; position: absolute; left: -0.6rem; top: 20%; bottom: 20%; width: 3px;
  border-radius: 2px; background: var(--amber); }
.ill-nav-item.on svg { stroke: var(--amber); }
.ill-side-foot { margin-top: auto; padding-top: 0.6rem; border-top: 1px solid #1E2A44;
  display: flex; flex-direction: column; gap: 0.5rem; }
.ill-badges-row { display: flex; gap: 0.7rem; font-size: 0.56rem; color: #8A93A8; }
.ill-badges-row span { position: relative; }
.ill-badges-row b { position: absolute; top: -0.55rem; right: -0.8rem; font-size: 0.42rem; font-weight: 800;
  background: var(--amber); color: #0B1120; border-radius: 100px; padding: 0.05rem 0.28rem; }
.ill-badges-row b.red { background: #E5484D; color: #FFFFFF; }
.ill-user { display: flex; align-items: center; gap: 0.45rem; }
.ill-user i { width: 22px; height: 22px; border-radius: 50%; font-style: normal; font-size: 0.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; background: var(--amber); color: #0B1120; flex-shrink: 0; }
.ill-user .n { font-size: 0.6rem; font-weight: 700; color: #E7EAF2; line-height: 1.2; }
.ill-user .r { font-size: 0.5rem; color: #6B7893; }

/* Page header row + segmented time control */
.ill-pagehead { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.6rem; }
.ill-pagehead .sub { font-size: 0.6rem; color: var(--slate); margin-top: 0.1rem; }
.ill-select { font-size: 0.58rem; font-weight: 600; color: var(--ink-mid); background: #FFFFFF;
  border: 1px solid var(--border); border-radius: 7px; padding: 0.3rem 0.55rem; white-space: nowrap; }
.ill-select::after { content: ' \25BE'; color: var(--slate-dark); }
.ill-seg { display: inline-flex; background: var(--bg-muted); border-radius: 100px; padding: 0.14rem; gap: 0.1rem; align-self: flex-end; }
.ill-seg span { font-size: 0.54rem; font-weight: 600; color: var(--slate); padding: 0.22rem 0.55rem; border-radius: 100px; white-space: nowrap; }
.ill-seg span.on { background: #FFFFFF; color: var(--ink); box-shadow: 0 1px 3px rgba(11,17,32,0.12); font-weight: 700; }

/* KPI cards: per-metric color bars, info glyph, sparkline */
.ill-kpi { position: relative; }
.ill-kpi .inf { position: absolute; top: 0.45rem; right: 0.5rem; width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--slate-dark); font-size: 0.42rem; display: flex; align-items: center;
  justify-content: center; font-style: normal; }
.ill-kpi u { width: 46%; }
.ill-kpi u.g { background: #22A06B; } .ill-kpi u.b { background: #3B82F6; }
.ill-kpi u.a { background: var(--amber); } .ill-kpi u.p { background: #8B5CF6; }
.ill-spark { position: absolute; right: 0.55rem; bottom: 0.9rem; width: 34px; height: 16px; }
.ill-spark polyline { fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ill-spark.up polyline { stroke: #22A06B; } .ill-spark.dn polyline { stroke: #E5484D; }

/* Needs-action pills with bold counts + amounts (real format) */
.ill-alert b { font-weight: 800; }
.ill-alert .amt { font-weight: 700; opacity: 0.85; }

/* Chart: dots + axis labels */
.ill-line circle { fill: var(--amber); }
.ill-axis { display: flex; justify-content: space-between; font-size: 0.48rem; color: var(--slate-dark); padding: 0.15rem 0.2rem 0; }

/* AI FAB + messaging pill (dashboard corner furniture) */
.ill-fab { position: absolute; right: 0.9rem; bottom: 0.9rem; width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FBBF24, #D97706); box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
  display: flex; align-items: center; justify-content: center; color: #FFFFFF; font-size: 0.7rem; }

/* ── Inbox: real anatomy ── */
.ilx-head { display: flex; align-items: center; justify-content: space-between; background: #0E1526;
  color: #FFFFFF; padding: 0.55rem 0.9rem; font-size: 0.72rem; font-weight: 700; }
.ilx-head .avs { display: flex; align-items: center; }
.ilx-head .avs i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #0E1526; margin-left: -6px;
  font-style: normal; font-size: 0.42rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.ilx-head .bell { position: relative; margin-left: 0.6rem; font-size: 0.7rem; }
.ilx-head .bell b { position: absolute; top: -0.4rem; right: -0.6rem; font-size: 0.4rem; background: #E5484D;
  border-radius: 100px; padding: 0.04rem 0.24rem; }
.ilx-tabs { display: flex; align-items: center; gap: 0.55rem; padding: 0.5rem 0.8rem; background: #FFFFFF;
  border-bottom: 1px solid var(--border-soft); font-size: 0.6rem; font-weight: 600; color: var(--slate); flex-wrap: wrap; }
.ilx-tabs .t b { font-size: 0.48rem; background: var(--bg-muted); border-radius: 100px; padding: 0.08rem 0.3rem; margin-left: 0.15rem; color: var(--slate); }
.ilx-tabs .t.on { background: var(--amber); color: #0B1120; font-weight: 800; border-radius: 100px; padding: 0.2rem 0.6rem; }
.ilx-tabs .t.on b { background: rgba(11,17,32,0.14); color: #0B1120; }
.ilx-filters { display: flex; gap: 0.35rem; padding: 0.45rem 0.8rem; background: #FFFFFF; border-bottom: 1px solid var(--border-soft); flex-wrap: wrap; }
.ilx-chip { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.56rem; font-weight: 700;
  border: 1px solid var(--border); border-radius: 100px; padding: 0.22rem 0.6rem; color: var(--ink-mid); }
.ilx-chip.on { background: var(--ink); color: #FFFFFF; border-color: var(--ink); }
.ilx-chip .dot { width: 7px; height: 7px; border-radius: 50%; }
.ilx-chip .dot.wa { background: #25D366; } .ilx-chip .dot.em { background: #3B82F6; } .ilx-chip .dot.web { background: #8B5CF6; }
.ilx-av { position: relative; width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  font-size: 0.52rem; font-weight: 800; color: #FFFFFF; display: flex; align-items: center; justify-content: center; }
.ilx-av .wab { position: absolute; right: -2px; bottom: -2px; width: 10px; height: 10px; border-radius: 50%;
  background: #25D366; border: 1.5px solid #FFFFFF; }
.ill-conv { display: flex; gap: 0.5rem; }
.ill-conv .cbody { flex: 1; min-width: 0; }
.ill-conv .t span { color: #D97706; font-weight: 600; }
.ilx-unread { font-size: 0.46rem; font-weight: 800; background: var(--amber); color: #0B1120; border-radius: 100px; padding: 0.08rem 0.3rem; }
/* thread header dark w/ selects */
.ilx-thead { display: flex; align-items: center; justify-content: space-between; gap: 0.4rem;
  background: #0E1526; color: #FFFFFF; padding: 0.55rem 0.8rem; flex-wrap: wrap; }
.ilx-thead .who { display: flex; align-items: center; gap: 0.45rem; font-size: 0.66rem; font-weight: 700; }
.ilx-thead .who small { display: block; font-size: 0.48rem; font-weight: 500; color: #8A93A8; }
.ilx-thead .ctrl { display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; }
.ilx-sel { font-size: 0.52rem; font-weight: 700; border-radius: 100px; padding: 0.2rem 0.55rem; white-space: nowrap; }
.ilx-sel.status { background: var(--amber-soft); color: var(--amber-dark); }
.ilx-sel.plain { background: #FFFFFF; color: var(--ink); }
.ilx-sel::after { content: ' \25BE'; opacity: 0.6; }
/* beige chat like the real thread */
.ilx-chat { background: #EDE6DC; padding: 0.8rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.ilx-date { align-self: center; background: #FFFFFF; border-radius: 100px; font-size: 0.5rem; font-weight: 600;
  color: var(--slate); padding: 0.18rem 0.6rem; box-shadow: var(--shadow-sm); }
.ilx-chat .ill-bub.them { background: #FFFFFF; }
.ilx-chat .ill-bub .who { display: block; font-size: 0.52rem; font-weight: 800; color: #D97706; margin-bottom: 0.1rem; }
.ilx-comp { display: flex; align-items: center; gap: 0.4rem; padding: 0.55rem 0.8rem; background: #FFFFFF; border-top: 1px solid var(--border-soft); }
.ilx-comp .in { flex: 1; border: 1px solid var(--border); border-radius: 100px; padding: 0.35rem 0.7rem; font-size: 0.6rem; color: var(--slate-dark); }
.ilx-comp .send { width: 24px; height: 24px; border-radius: 50%; background: var(--amber); color: #0B1120;
  display: flex; align-items: center; justify-content: center; font-size: 0.6rem; }

/* AI panel: real header icons, suggestion list, confirmation footnote */
.ill-ai-icons { margin-left: auto; display: flex; gap: 0.5rem; color: var(--slate-dark); font-size: 0.62rem; }
.ill-sugg { border: 1px solid var(--border-soft); border-radius: 10px; padding: 0.5rem 0.7rem; font-size: 0.64rem;
  color: var(--ink-mid); display: flex; gap: 0.45rem; align-items: flex-start; }
.ill-sugg b { font-weight: 700; color: var(--ink); }
.ill-sugg.hot { background: var(--amber-soft); border-color: #F3E2BC; }
.ill-sugg small { display: block; font-size: 0.54rem; color: var(--amber-dark); }
.ill-ai-note { font-size: 0.5rem; color: var(--slate-dark); text-align: left; margin-top: 0.25rem; }

/* Owner statements: tinted stat tiles + real colors */
.ill-stile.t-blue { background: #EFF5FE; border-color: #D8E5F9; }
.ill-stile.t-amber { background: #FFF8E8; border-color: #F3E2BC; }
.ill-stile.t-green { background: #EDF9F1; border-color: #CEEEDB; }
.ill-stile.t-blue .k { color: #3661B0; } .ill-stile.t-amber .k { color: var(--amber-dark); } .ill-stile.t-green .k { color: var(--green); }
.ill-gen { font-size: 0.6rem; font-weight: 700; background: var(--amber); color: #0B1120; border-radius: 8px;
  padding: 0.35rem 0.7rem; white-space: nowrap; }
.ill-row .c-or { color: #D97706; font-weight: 600; }
.ill-row .c-gr { color: var(--green); font-weight: 800; }
.ill-row .arrow-date { white-space: nowrap; }


/* ============================================
   V7 — Story layer: the scattered-stack pain
   vs One Software · One OS · One Bill
   ============================================ */

/* The messy stack vs Rentibly */
.stack-vs { display: grid; grid-template-columns: 1.15fr auto 0.85fr; gap: 1.75rem; align-items: center;
  max-width: var(--maxw); margin: 0 auto; }
.stack-mess { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.stack-tool { display: flex; align-items: center; gap: 0.55rem; background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 12px; padding: 0.55rem 0.85rem; box-shadow: var(--shadow-sm); }
.stack-tool img { width: 22px; height: 22px; object-fit: contain; border-radius: 5px; }
.stack-tool .n { font-size: 0.78rem; font-weight: 700; color: var(--ink); line-height: 1.15; }
.stack-tool .p { display: block; font-size: 0.62rem; font-weight: 600; color: #B3372B; }
.stack-tool:nth-child(odd) { transform: rotate(-1.4deg); }
.stack-tool:nth-child(3n) { transform: rotate(1.6deg); }
.stack-tool:nth-child(4n) { transform: rotate(-0.6deg); }
.stack-arrow { font-size: 2rem; color: var(--amber); font-weight: 700; text-align: center; }
.stack-one { background: linear-gradient(165deg, #131d33 0%, #0B1120 70%); border-radius: 22px;
  padding: 2rem 1.9rem; color: #FFFFFF; text-align: center; box-shadow: 0 30px 70px rgba(11, 17, 32, 0.28);
  position: relative; overflow: hidden; }
.stack-one::after { content: ''; position: absolute; right: -60px; top: -60px; width: 190px; height: 190px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent 70%); }
.stack-one .logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.stack-one .logo b { color: var(--amber); }
.stack-one .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-light); margin: 0.7rem 0 0.9rem; }
.stack-one .bill { display: inline-block; background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber-light); font-size: 0.8rem; font-weight: 800; border-radius: 100px; padding: 0.4rem 1.1rem; }
.stack-one p { font-size: 0.82rem; color: #A8B1C4; margin-top: 0.9rem; }

/* Replaces table */
.repl { max-width: 880px; margin: 0 auto; background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; }
.repl-row { display: grid; grid-template-columns: 1fr 44px 1fr; align-items: center;
  padding: 0.95rem 1.5rem; border-bottom: 1px solid var(--border-soft); }
.repl-row:last-child { border-bottom: none; }
.repl-row.head { background: var(--bg-soft); font-size: 0.66rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--slate); padding: 0.7rem 1.5rem; }
.repl-was { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 600; color: var(--slate); }
.repl-was img { width: 22px; height: 22px; object-fit: contain; border-radius: 5px; filter: grayscale(0.4); opacity: 0.85; }
.repl-arrow { text-align: center; color: var(--amber); font-weight: 800; }
.repl-now { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.repl-now small { display: block; font-size: 0.72rem; font-weight: 500; color: var(--slate); }

/* Connect illustration */
.ill-conn { display: grid; grid-template-columns: 128px 1fr; min-height: 320px; }
.ill-conn-side { background: #0E1526; padding: 0.8rem 0.7rem; }
.ill-conn-side .grp { font-size: 0.5rem; font-weight: 800; letter-spacing: 0.1em; color: #6B7893; margin: 0.6rem 0 0.3rem; }
.ill-conn-item { font-size: 0.66rem; color: #8A93A8; padding: 0.28rem 0.45rem; border-radius: 6px; }
.ill-conn-item.on { background: #1E2A44; color: #FFFFFF; font-weight: 600; }
.ill-conn-item .un { float: right; font-size: 0.46rem; font-weight: 800; background: var(--amber); color: #0B1120;
  border-radius: 100px; padding: 0.05rem 0.3rem; margin-top: 0.15rem; }
.ill-conn-main { background: #FBFBFA; padding: 0.9rem; display: flex; flex-direction: column; gap: 0.55rem; }
.ill-meeting { background: #0E1526; border-radius: 12px; padding: 0.8rem; color: #FFFFFF; }
.ill-meeting .mt { display: flex; justify-content: space-between; align-items: center; font-size: 0.66rem; font-weight: 700; margin-bottom: 0.55rem; }
.ill-meeting .rec { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.52rem; font-weight: 800; color: #FF6B6B; }
.ill-meeting .rec::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #FF6B6B; animation: pulse 1.6s infinite; }
.ill-vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
.ill-vid { aspect-ratio: 4/3; border-radius: 8px; display: flex; align-items: flex-end; padding: 0.3rem;
  font-size: 0.5rem; font-weight: 700; color: #FFFFFF; }
.ill-vid i { font-style: normal; background: rgba(0,0,0,0.45); border-radius: 5px; padding: 0.08rem 0.35rem; }
.ill-transcript { background: #FFFFFF; border: 1px solid var(--border-soft); border-radius: 10px; padding: 0.6rem 0.75rem; }
.ill-transcript .tt { display: flex; align-items: center; gap: 0.4rem; font-size: 0.6rem; font-weight: 800; color: var(--ink); margin-bottom: 0.35rem; }
.ill-transcript .tt .ai { background: var(--amber-soft); color: var(--amber-dark); border-radius: 5px; padding: 0.08rem 0.4rem; font-size: 0.5rem; }
.ill-transcript p { font-size: 0.62rem; color: var(--slate); line-height: 1.5; }
.ill-conn-msg { display: flex; gap: 0.45rem; align-items: flex-start; }
.ill-conn-msg i { width: 20px; height: 20px; border-radius: 6px; font-style: normal; font-size: 0.46rem; font-weight: 800;
  color: #FFFFFF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ill-conn-msg .b { font-size: 0.66rem; color: var(--ink-mid); background: #FFFFFF; border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 0.4rem 0.6rem; }
.ill-conn-msg .b b { color: var(--ink); }

@media (max-width: 980px) {
  .stack-vs { grid-template-columns: 1fr; }
  .stack-arrow { transform: rotate(90deg); }
  .repl-row { grid-template-columns: 1fr 30px 1fr; padding: 0.8rem 1rem; }
  .ill-conn { grid-template-columns: 1fr; } .ill-conn-side { display: none; }
}


/* ============================================
   V8 — Software discipline (de-templating):
   one sans, no italic serif accents, SVG icon
   system, white/cool flat ground, rect buttons,
   no rotations/glows/marquee motion.
   ============================================ */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F6F7F9;
  --bg-muted: #EEF0F4;
  --border: #E5E8ED;
  --border-soft: #EEF1F5;
  --slate: #5A6472;
}

/* Kill the italic-serif accent everywhere — one family, colored word only */
.hero-v4 h1 em, .sh-row h2 em, .theater h3 em, .theater-dark h3 em,
.section-header h2 em, .page-hero h1 em, .hero h1 em,
.split-text h2 em, .cta-box h2 em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--amber-dark);
}
.theater-dark h3 em { color: var(--amber-light); }

/* Buttons: rounded-rect, software-grade */
.btn, .waitlist-form button, .hero-v4 .btn-lg, .hero-bright .btn-lg { border-radius: 9px; }
.cat-chip, .hero-tab, .showcase-tab { border-radius: 9px; }

/* Flat grounds — strip decorative washes and glows */
.hero-v4 { background: var(--bg); }
.hero { background: var(--bg); }
.page-hero { background: var(--bg); }
.theater-dark { background: #0B1120; }
.persona { background: #0B1120; }
.persona::after { display: none; }
.stack-one::after { display: none; }
.stack-one { background: #0B1120; }
.cta-box::before { display: none; }
.cta-box { background: var(--bg-soft); }
.stack-tool, .stack-tool:nth-child(odd), .stack-tool:nth-child(3n), .stack-tool:nth-child(4n) { transform: none; }

/* Trust strip: static, no marquee motion */
.marquee { -webkit-mask-image: none; mask-image: none; }
.marquee-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
.marquee-track .trust-logo[aria-hidden="true"] { display: none; }

/* Quote: editorial serif → plain confident sans */
.quote-block blockquote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quote-block blockquote::before { display: none; }

/* Icon system */
.feature-icon { background: var(--amber-soft); border-radius: 10px; }
.feature-icon svg { width: 21px; height: 21px; color: var(--amber-dark); }
.nav-dropdown-item-icon svg { width: 16px; height: 16px; color: var(--amber-dark); }

/* Illustrations: slightly larger, flatter */
.collage-main { box-shadow: 0 18px 44px rgba(11, 17, 32, 0.12); }
.theater-dark .collage-main { box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4); }
.ill-kpi .v { font-size: 1.12rem; }
.ill-row { font-size: 0.73rem; }
.ill-bub { font-size: 0.76rem; }
.ill-conv .t { font-size: 0.74rem; }
.ill-nav-item { font-size: 0.68rem; }
.ill-title { font-size: 1rem; }

/* Personas: flat + hairline */
.persona { border: 1px solid #1E2A44; }

/* Hero badges: cooler */
.hero-badge-tile { border-radius: 8px; }
