:root {
  --navy: #0b1d3a;
  --blue: #1a4ed8;
  --blue-mid: #3b73f5;
  --blue-pale: #ebf0ff;
  --blue-pale-2: #f4f7ff;
  --teal: #0a8c80;
  --teal-pale: #e6f5f3;
  --slate: #3d526b;
  --mid: #7a8fa6;
  --faint: #aab8cc;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #f0f4fa;
  --border: #e2e8f2;
  --border-strong: #cbd4e6;
  --success: #0a7a55;
  --success-bg: #e8f7f2;
  --success-border: #b0ddd0;
  --warn: #9a6200;
  --warn-bg: #fef7e6;
  --warn-border: #f5d382;
  --danger: #c0392b;
  --danger-bg: #fef0ee;
  --danger-border: #f5b0a8;
  --persona-chloe: #1a4fd8;
  --persona-marcus: #0a9688;
  --persona-aria: #5b2ee0;
  --persona-felix: #c97b00;
  --persona-nova: #0a7a4a;
  --persona-sage: #3d526b;
  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.06), 0 1px 2px rgba(11, 29, 58, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 29, 58, 0.08), 0 2px 4px rgba(11, 29, 58, 0.04);
  --shadow-lg: 0 12px 32px rgba(11, 29, 58, 0.1), 0 4px 8px rgba(11, 29, 58, 0.05);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 18%, rgba(26, 78, 216, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 249, 252, 0.98));
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
}

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

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 242, 0.72);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header-wrap.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.94);
}

.site-header {
  width: min(1200px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
}

.site-brand-logo {
  width: clamp(120px, 11vw, 168px);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.mobile-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.16s ease;
}

.site-nav a:hover,
.mobile-nav a:hover,
.site-nav a.active,
.mobile-nav a.active {
  color: var(--navy);
}

.site-nav a.active {
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--navy);
  border-radius: var(--r-md);
  padding: 9px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 16px;
  gap: 14px;
  flex-wrap: wrap;
}

.mobile-nav.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-mid);
}

.btn-secondary {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface-2);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(26, 78, 216, 0.2);
  color: var(--blue);
}

.btn-ghost:hover {
  background: var(--blue-pale);
}

.btn-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-white-fill {
  background: #fff;
  color: var(--navy);
}

.btn-white-fill:hover {
  background: #f4f7ff;
}

.marketing-page {
  overflow: hidden;
}

.page-section {
  padding: 88px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-label {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

.section-subtitle {
  max-width: 720px;
  color: var(--slate);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

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

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

  50% {
    opacity: 0.4;
  }
}

@keyframes tickerFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero {
  padding: 56px 0 40px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 72px);
}

.hero-copy {
  animation: heroUp 0.6s var(--ease-out) both;
}

.hero-kicker,
.hero-title,
.hero-subtitle,
.hero-actions,
.trust-strip {
  opacity: 0;
  transform: translateY(20px);
  animation: heroUp 0.5s var(--ease-out) forwards;
}

.hero-kicker {
  animation-delay: 0s;
}

.hero-title {
  margin: 20px 0 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.02;
  animation-delay: 0.08s;
}

.hero-title-accent {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(26, 78, 216, 0.3);
  text-underline-offset: 6px;
}

.hero-subtitle {
  max-width: 470px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  animation-delay: 0.16s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  animation-delay: 0.24s;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  animation-delay: 0.32s;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mid);
  font-size: 13px;
}

.trust-item svg {
  flex-shrink: 0;
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-demo {
  opacity: 0;
  transform: translateY(32px);
  animation: heroDemoUp 0.6s var(--ease-out) 0.2s forwards;
}

@keyframes heroDemoUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.demo-panel-label,
.mono-label {
  color: var(--mid);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ticker-card {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
  padding: 18px;
  min-height: 130px;
}

.ticker-card.is-animating {
  animation: tickerFade 0.4s var(--ease-out);
}

.ticker-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ticker-persona {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-avatar,
.persona-avatar,
.cta-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
}

.ticker-avatar {
  width: 42px;
  height: 42px;
  font-size: 14px;
}

.ticker-name {
  color: var(--navy);
  font-weight: 700;
}

.ticker-time {
  color: var(--mid);
  font-size: 12px;
}

.ticker-message {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
  min-height: 52px;
}

.mini-map-card {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3fb, #f9fbff);
}

.mini-map {
  position: relative;
  height: 210px;
  background:
    linear-gradient(90deg, rgba(122, 143, 166, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(122, 143, 166, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    radial-gradient(circle at 18% 34%, rgba(26, 78, 216, 0.08), transparent 24%),
    radial-gradient(circle at 78% 58%, rgba(10, 140, 128, 0.08), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #edf3fb 100%);
}

.mini-map::before,
.mini-map::after {
  content: "";
  position: absolute;
  inset: auto;
  background: rgba(61, 82, 107, 0.12);
  border-radius: 999px;
}

.mini-map::before {
  width: 240px;
  height: 8px;
  left: 24px;
  top: 88px;
  transform: rotate(-18deg);
}

.mini-map::after {
  width: 180px;
  height: 8px;
  right: 22px;
  top: 122px;
  transform: rotate(12deg);
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(11, 29, 58, 0.15);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.map-pin-green {
  background: #22c55e;
}

.map-pin-amber {
  background: #f59e0b;
}

.map-pin-red {
  background: #ef4444;
}

.map-pin-blue {
  background: var(--blue);
}

.map-pin-grey {
  background: #94a3b8;
}

.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mid);
  font-size: 12px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.logo-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  padding: 32px 0;
}

.logo-strip-label {
  margin-bottom: 18px;
  text-align: center;
  color: var(--mid);
  font-size: 13px;
}

.logo-strip-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(61, 82, 107, 0.64);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.4px;
  transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.logo-pill:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card,
.persona-card,
.pricing-card,
.browser-frame,
.launch-card,
.tool-card,
.demo-table-card,
.comp-card,
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.pillar-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 255px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}

.pillar-card h3,
.pricing-card h3,
.persona-card h3,
.portal-copy h2,
.module-copy h2,
.launch-card h2,
.demo-table-card h2,
.why-title,
.personas-feature-title {
  margin: 0 0 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--navy);
}

.pillar-card h3 {
  font-size: 22px;
  line-height: 1.15;
}

.pillar-card p,
.persona-card p,
.pricing-copy,
.portal-copy p,
.module-copy p,
.launch-card p,
.tool-card span,
.why-body {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.72;
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.persona-band {
  background: var(--blue-pale-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.persona-card {
  padding: 22px;
}

.persona-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.persona-avatar {
  width: 48px;
  height: 48px;
  font-size: 15px;
}

.persona-domain {
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-full);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
}

.persona-role {
  color: var(--mid);
  font-size: 12px;
  margin-bottom: 12px;
}

.persona-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

.persona-activity {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  color: var(--mid);
  font-size: 12px;
}

.inline-callout {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #b0ddd9;
  border-radius: var(--r-md);
  background: var(--teal-pale);
  color: #0a5c54;
  padding: 12px 16px;
  font-size: 14px;
}

.map-preview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 28px;
}

.map-preview-copy p {
  margin: 0 0 18px;
}

.map-preview-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.map-preview-shell {
  position: relative;
  height: 420px;
  background:
    linear-gradient(90deg, rgba(122, 143, 166, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(122, 143, 166, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 24% 28%, rgba(26, 78, 216, 0.11), transparent 30%),
    radial-gradient(circle at 74% 72%, rgba(10, 140, 128, 0.1), transparent 30%),
    linear-gradient(180deg, #eef4fc 0%, #f9fbff 100%);
  pointer-events: none;
}

.map-preview-shell::before,
.map-preview-shell::after {
  content: "";
  position: absolute;
  background: rgba(61, 82, 107, 0.14);
  border-radius: 999px;
}

.map-preview-shell::before {
  width: 280px;
  height: 10px;
  left: 48px;
  top: 152px;
  transform: rotate(-14deg);
}

.map-preview-shell::after {
  width: 220px;
  height: 10px;
  right: 48px;
  top: 236px;
  transform: rotate(16deg);
}

.map-overlay-button {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.pricing-section {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.pricing-card {
  padding: 26px;
  text-align: left;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--blue);
}

.price-pill {
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-full);
  padding: 4px 10px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.price-value {
  margin-bottom: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

.pricing-features {
  margin: 18px 0 24px;
  padding-left: 18px;
  color: var(--slate);
}

.pricing-note {
  margin-top: 18px;
  color: var(--mid);
  font-size: 13px;
}

.pricing-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 700;
}

.cta-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-buttons,
.hero-actions-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-personas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 22px;
}

.cta-avatar {
  width: 30px;
  height: 30px;
  font-size: 10px;
  border: 2px solid var(--navy);
  margin-left: -8px;
}

.cta-avatar:first-child {
  margin-left: 0;
}

.cta-caption {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.platform-hero,
.portal-hero,
.launch-hero {
  padding: 64px 0 28px;
}

.subhero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.subhero-card h1 {
  margin: 14px 0 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.subhero-card p {
  max-width: 780px;
  color: var(--slate);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

.subhero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.module-stack,
.portal-stack {
  display: grid;
  gap: 24px;
}

.module-section,
.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}

.module-section.reverse,
.portal-section.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.module-section.reverse .module-copy,
.portal-section.reverse .portal-copy {
  order: 2;
}

.module-section.reverse .module-visual,
.portal-section.reverse .portal-visual {
  order: 1;
}

.module-copy p,
.portal-copy p {
  margin-bottom: 16px;
}

.module-points,
.portal-points,
.launch-list {
  margin: 0;
  padding-left: 18px;
  color: var(--slate);
}

.module-points li,
.portal-points li,
.pricing-features li,
.launch-list li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.module-persona {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 13px;
}

.browser-frame {
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}

.browser-address {
  margin-left: auto;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.7);
  color: var(--mid);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.browser-content {
  padding: 20px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.browser-card {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.browser-card strong,
.tool-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.browser-list {
  display: grid;
  gap: 10px;
}

.browser-list-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--slate);
  font-size: 13px;
}

.browser-list-row span:last-child {
  color: var(--mid);
  text-align: right;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-full);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  margin-bottom: 12px;
}

.launch-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.launch-card,
.demo-table-card {
  padding: 26px;
}

.portal-link-grid,
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portal-link-card,
.tool-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.portal-link-card span {
  color: var(--mid);
  font-size: 13px;
}

.site-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.site-table th {
  padding: 12px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-strong);
  color: var(--mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}

.site-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  padding: 38px 0 46px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand-block {
  max-width: 320px;
}

.footer-logo {
  width: min(158px, 100%);
  display: block;
}

.footer-copy {
  margin: 14px 0 0;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: var(--mid);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--navy);
}

.footer-note {
  max-width: 340px;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.7;
  text-align: right;
}

/* Compare page */

.compare-page .hero {
  padding: 80px 0 64px;
  text-align: center;
}

.compare-page section {
  padding: 80px 0;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--navy);
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--slate);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  border: 1px solid var(--success-border);
  border-radius: var(--r-full);
  padding: 5px 14px;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stats-strip {
  margin-bottom: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}

.stat-num span {
  color: var(--blue);
}

.stat-label {
  margin-top: 6px;
  color: var(--mid);
  font-size: 13px;
}

.jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.jump-pill {
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--slate);
  font-size: 13px;
  font-weight: 500;
}

.jump-pill:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue);
}

.matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--surface);
}

.matrix-table thead th {
  padding: 14px 16px;
  text-align: left;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-strong);
  color: var(--mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.matrix-table thead th:first-child {
  min-width: 200px;
  color: var(--faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.th-rentol {
  background: var(--blue-pale) !important;
  border-top: 2px solid var(--blue) !important;
  border-left: 1px solid rgba(26, 78, 216, 0.25) !important;
  border-right: 1px solid rgba(26, 78, 216, 0.25) !important;
  color: var(--blue) !important;
  min-width: 110px;
}

.matrix-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.matrix-table tbody tr:hover {
  background: var(--bg);
}

.matrix-table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--slate);
}

.td-rentol {
  background: var(--blue-pale-2);
  border-left: 1px solid rgba(26, 78, 216, 0.15);
  border-right: 1px solid rgba(26, 78, 216, 0.15);
}

.category-row td {
  padding: 14px 16px 6px;
  border-bottom: 0;
  background: rgba(11, 29, 58, 0.025);
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ic {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.ic-yes {
  background: var(--success-bg);
  color: var(--success);
}

.ic-rentol {
  background: var(--blue-pale);
  color: var(--blue);
}

.ic-part {
  background: var(--warn-bg);
  color: var(--warn);
}

.ic-no {
  background: var(--surface-2);
  color: var(--faint);
}

.best-badge {
  display: inline-block;
  margin-bottom: 4px;
  border-radius: var(--r-full);
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
}

.price-mono,
.price-rentol {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.price-rentol {
  color: var(--blue);
  font-weight: 500;
}

.matrix-table tfoot td {
  padding: 14px 16px;
  border-top: 1px solid var(--border-strong);
  background: var(--surface-2);
}

.tf-rentol {
  background: var(--blue-pale);
  border-left: 1px solid rgba(26, 78, 216, 0.3);
  border-right: 1px solid rgba(26, 78, 216, 0.3);
  border-bottom: 2px solid var(--blue);
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.comp-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.comp-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.comp-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.comp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.comp-name {
  color: var(--navy);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.comp-type {
  color: var(--mid);
  font-size: 12px;
}

.comp-score {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.comp-desc {
  color: var(--slate);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--r-full);
  padding: 3px 10px;
  border: 1px solid;
  font-size: 11px;
  font-weight: 600;
}

.tag-g {
  background: var(--success-bg);
  border-color: var(--success-border);
  color: var(--success);
}

.tag-a {
  background: var(--warn-bg);
  border-color: var(--warn-border);
  color: var(--warn);
}

.tag-r {
  background: var(--danger-bg);
  border-color: var(--danger-border);
  color: var(--danger);
}

.tag-b {
  background: var(--blue-pale);
  border-color: rgba(26, 78, 216, 0.3);
  color: var(--blue);
}

.comp-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 12px;
}

.comp-row-label {
  width: 120px;
  color: var(--mid);
  flex-shrink: 0;
}

.comp-row-val {
  text-align: right;
  color: var(--navy);
  font-weight: 500;
}

.comp-vs {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
}

.comp-vs-label {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.comp-vs-text {
  color: var(--slate);
  font-size: 12px;
  line-height: 1.6;
}

.comp-vs-text strong {
  color: var(--teal);
}

.ai-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}

.ai-table th {
  padding: 10px 16px;
  text-align: left;
  color: var(--mid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ai-table td {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  vertical-align: top;
}

.ai-table td:first-child {
  width: 140px;
  border-radius: var(--r-md) 0 0 var(--r-md);
  color: var(--navy);
  font-weight: 700;
}

.ai-table td:nth-child(2) {
  width: 180px;
  color: var(--slate);
}

.ai-table td:nth-child(3) {
  width: 200px;
}

.ai-table td:last-child {
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--slate);
}

.rentol-row td {
  background: var(--blue-pale-2) !important;
  border-color: rgba(26, 78, 216, 0.2) !important;
}

.rentol-row td:first-child {
  color: var(--blue) !important;
}

.ai-bar {
  height: 5px;
  margin-top: 8px;
  border-radius: var(--r-full);
  overflow: hidden;
  background: var(--surface-2);
}

.ai-bar-fill {
  height: 100%;
  border-radius: var(--r-full);
}

.personas-feature {
  margin-top: 48px;
  padding: 40px;
  background: var(--blue-pale-2);
  border: 1px solid rgba(26, 78, 216, 0.15);
  border-radius: var(--r-xl);
}

.personas-feature-sub {
  max-width: 520px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.persona-mini {
  text-align: center;
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.persona-mini:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.persona-mini .persona-avatar {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  font-size: 14px;
}

.persona-mini-name {
  color: var(--navy);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.persona-mini-role {
  color: var(--mid);
  font-size: 10px;
  line-height: 1.4;
}

.persona-mini-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 7px;
  border-radius: var(--r-full);
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.why-card {
  padding: 24px;
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-body {
  font-weight: 300;
}

@media (max-width: 1100px) {
  .logo-strip-row,
  .pillars-grid,
  .comp-grid,
  .why-grid,
  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .personas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-nav,
  .site-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .home-hero-grid,
  .map-preview-grid,
  .launch-grid,
  .module-section,
  .portal-section,
  .module-section.reverse,
  .portal-section.reverse {
    grid-template-columns: 1fr;
  }

  .module-section.reverse .module-copy,
  .portal-section.reverse .portal-copy,
  .module-section.reverse .module-visual,
  .portal-section.reverse .portal-visual {
    order: initial;
  }

  .pricing-grid,
  .portal-link-grid,
  .tool-grid,
  .pillars-grid,
  .persona-grid,
  .logo-strip-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }

  .personas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container,
  .site-header,
  .mobile-nav {
    width: min(1200px, calc(100% - 28px));
  }

  .home-hero {
    padding-top: 34px;
  }

  .page-section,
  .compare-page .hero {
    padding: 56px 0;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .demo-panel,
  .subhero-card,
  .launch-card,
  .demo-table-card,
  .module-section,
  .portal-section,
  .personas-feature,
  .comp-card,
  .why-card {
    padding: 20px;
  }

  .stats-inner,
  .comp-grid,
  .why-grid,
  .persona-grid,
  .personas-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .ai-table,
  .matrix-table {
    min-width: 720px;
  }

  .trust-strip,
  .footer-links {
    gap: 12px;
  }
}
