:root {
  --plum: #3F2C3C;
  --lavender: #94629F;
  --mauve: #C29DB5;
  --sand: #D4C8CF;
  --mist: #ECE9F0;
  --paper: #F6F6FE;
  --beacon-50: var(--paper);
  --beacon-100: var(--mist);
  --beacon-200: var(--sand);
  --beacon-300: var(--mauve);
  --beacon-400: var(--mauve);
  --beacon-500: var(--lavender);
  --beacon-600: var(--lavender);
  --beacon-700: var(--plum);
  --beacon-800: var(--plum);
  --beacon-900: var(--plum);
  --surface: #FFFFFF;
  --border: var(--sand);
  --muted: color-mix(in srgb, var(--plum) 72%, var(--paper));
  --map-surface: #F4F5F7;
}

*, *::before, *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--beacon-50);
  color: var(--beacon-900);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.narrow { width: min(100% - 32px, 920px); }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--beacon-200);
  background: rgba(246, 246, 254, 0.9);
  backdrop-filter: blur(14px);
}

.nav-row {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup, .brand-link, .nav-links, .nav-actions {
  display: flex;
  align-items: center;
}

.brand-lockup { gap: 10px; }
.brand-link { text-decoration: none; }
.brand-link:first-child { opacity: 0.62; }
.brand-link:first-child:hover { opacity: 0.9; }
.brand-link img { display: block; width: auto; }
.proprise-logo { height: 18px; }
.beacon-logo { height: 24px; }
.brand-divider { color: var(--sand); font-size: 11px; }

.nav-links { gap: 30px; }
.nav-links a {
  color: var(--plum);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { color: var(--beacon-600); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--beacon-800); color: white; }
.button-primary:hover { background: var(--beacon-900); }
.button-accent { background: var(--beacon-800); color: white; }
.button-accent:hover { background: color-mix(in srgb, var(--plum) 82%, var(--lavender)); }
.button-light { border-color: var(--beacon-300); background: white; color: var(--beacon-800); }
.button-light:hover { border-color: var(--beacon-500); color: var(--beacon-600); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--beacon-800);
  cursor: pointer;
}

.menu-button svg { width: 24px; height: 24px; }
.mobile-menu { display: none; border-top: 1px solid var(--beacon-200); }
.mobile-menu.is-open { display: block; }
.mobile-menu-inner { display: grid; gap: 4px; padding-block: 20px 24px; }
.mobile-menu a:not(.button) { padding: 10px 0; color: var(--plum); text-decoration: none; }
.mobile-menu .button { margin-top: 10px; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--beacon-200);
  padding: 144px 0 92px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 98, 159, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  background: rgba(148, 98, 159, 0.25);
  content: "";
  filter: blur(120px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 76px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--beacon-600); }
.breadcrumb .current { color: var(--beacon-700); font-weight: 600; }
.breadcrumb .divider { color: var(--beacon-300); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--beacon-600);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--beacon-500);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(40px, 4.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero h1 em { color: var(--beacon-500); font-weight: 500; }
.hero-copy { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.search-frame {
  border: 1px solid var(--beacon-300);
  background: white;
  box-shadow: 0 34px 90px -58px rgba(63, 44, 60, 0.75);
}

.frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  border-bottom: 1px solid var(--beacon-200);
  padding: 0 16px;
  background: #F8F9FA;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.window-controls { display: flex; gap: 6px; }
.window-controls span { width: 7px; height: 7px; background: var(--beacon-200); }
.frame-body { display: grid; gap: 12px; padding: 18px; }
.direction-card { border: 1px solid var(--border); padding: 18px; background: var(--mist); }
.direction-card.beacon-card { border-color: var(--beacon-400); background: var(--beacon-50); }
.direction-label { margin: 0 0 8px; color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.direction-card.beacon-card .direction-label { color: var(--beacon-600); }
.direction-title { margin: 0; font-size: 17px; font-weight: 650; line-height: 1.4; }
.direction-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; margin-top: 14px; }
.direction-step { border: 1px solid var(--beacon-200); padding: 9px 8px; background: white; color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 9px; line-height: 1.35; text-align: center; text-transform: uppercase; }
.direction-arrow { color: var(--beacon-400); font-family: "JetBrains Mono", monospace; font-size: 12px; }

.section { padding: 72px 0; }
.section-white { border-block: 1px solid var(--beacon-200); background: white; }
.section-dark { position: relative; overflow: hidden; background: var(--beacon-900); color: white; }
.section-dark::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(194, 157, 181, 0.14) 1px, transparent 1px); background-size: 26px 26px; content: ""; }
.section-dark > .container { position: relative; z-index: 1; }
.section-dark .eyebrow { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); color: var(--beacon-300); }

.section-heading { max-width: 790px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(30px, 3.2vw, 34px); line-height: 1.12; letter-spacing: -0.015em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-dark .section-heading p { color: var(--beacon-100); }

.direction-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--beacon-200); background: white; }
.direction-panel { padding: 40px; }
.direction-panel + .direction-panel { border-left: 1px solid var(--beacon-200); background: var(--beacon-800); color: white; }
.direction-panel h3 { margin-bottom: 14px; font-size: 28px; line-height: 1.2; }
.direction-panel p { margin: 0; color: var(--muted); }
.direction-panel + .direction-panel p { color: var(--beacon-100); }
.number-label { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; margin-bottom: 22px; background: var(--beacon-100); color: var(--beacon-700); font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 700; }
.direction-panel + .direction-panel .number-label { background: var(--beacon-500); color: white; }

.table-wrap { overflow-x: auto; border: 1px solid var(--beacon-200); background: white; }
.comparison-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { border-bottom: 1px solid var(--beacon-200); border-right: 1px solid var(--beacon-200); padding: 20px 22px; text-align: left; vertical-align: top; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table thead th { background: var(--mist); color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
.comparison-table thead th:last-child { background: var(--beacon-800); color: white; }
.comparison-table tbody td:first-child { width: 22%; color: var(--beacon-800); font-size: 13px; font-weight: 700; }
.comparison-table tbody td { color: var(--muted); font-size: 14px; line-height: 1.6; }
.comparison-table tbody td:last-child { background: var(--beacon-50); color: var(--beacon-900); }
.source-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.source-note a { color: var(--beacon-700); }

.right-choice {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  border: 1px solid var(--beacon-300);
  background: white;
}
.right-choice-label { display: flex; align-items: center; padding: 40px; background: var(--beacon-800); color: white; }
.right-choice-label h2 { margin: 0; font-size: 34px; line-height: 1.15; }
.right-choice-copy { padding: 40px; }
.right-choice-copy p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }

.proof-band { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; border: 1px solid rgba(194, 157, 181, 0.3); padding: 34px; background: rgba(255,255,255,0.05); }
.proof-mark { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--beacon-500); color: white; font-family: "Playfair Display", serif; font-size: 26px; }
.proof-band p { margin: 0; color: white; font-family: "Playfair Display", serif; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.35; }
.proof-band a { color: var(--beacon-100); font-size: 13px; font-weight: 700; white-space: nowrap; }

.faq-list { border-top: 1px solid var(--beacon-300); }
.faq-list details { border-bottom: 1px solid var(--beacon-300); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; cursor: pointer; font-family: "Playfair Display", serif; font-size: 22px; font-weight: 500; line-height: 1.35; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 22px; right: 4px; content: "+"; color: var(--beacon-600); font-family: "JetBrains Mono", monospace; font-size: 22px; }
.faq-list details[open] summary::after { content: "x"; }
.faq-answer { max-width: 820px; padding: 0 54px 24px 0; color: var(--muted); }
.faq-answer p { margin: 0; }

.cta-section { padding: 76px 0; text-align: center; }
.cta-section h2 { max-width: 760px; margin: 0 auto 22px; font-size: clamp(32px, 3.6vw, 38px); line-height: 1.08; }
.cta-section p { max-width: 620px; margin: 0 auto 34px; color: var(--beacon-100); font-size: 17px; }

.site-footer { border-top: 1px solid var(--beacon-200); padding: 60px 0 34px; background: var(--beacon-50); color: var(--muted); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 24px; width: auto; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: var(--muted); }
.footer-heading { margin: 0 0 16px; color: var(--beacon-500); font-family: "Inter", sans-serif; font-size: 10px; font-weight: 750; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--beacon-600); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--beacon-200); padding-top: 26px; color: var(--muted); font-size: 12px; }

.sticky-mobile-cta { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .menu-button { display: inline-flex; }
  .hero { padding-top: 116px; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .search-frame { max-width: 640px; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-panel + .direction-panel { border-top: 1px solid var(--beacon-200); border-left: 0; }
  .right-choice { grid-template-columns: 1fr; }
  .proof-band { grid-template-columns: auto 1fr; }
  .proof-band a { grid-column: 2; }
}

@media (max-width: 640px) {
  body { padding-bottom: 68px; }
  .container, .narrow { width: min(100% - 32px, 1280px); }
  .nav-row { min-height: 64px; }
  .proprise-logo { height: 16px; }
  .beacon-logo { height: 21px; }
  .hero { padding: 108px 0 68px; }
  .hero h1 { font-size: 42px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .direction-flow { grid-template-columns: 1fr; }
  .direction-arrow { transform: rotate(90deg); text-align: center; }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 32px; }
  .direction-panel, .right-choice-label, .right-choice-copy { padding: 28px; }
  .right-choice-label h2 { font-size: 30px; }
  .proof-band { grid-template-columns: 1fr; padding: 26px; }
  .proof-band a { grid-column: 1; white-space: normal; }
  .faq-list summary { font-size: 19px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .sticky-mobile-cta { position: fixed; inset: auto 0 0; z-index: 60; display: block; border-top: 1px solid var(--beacon-200); padding: 10px 16px; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); }
  .sticky-mobile-cta .button { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

.beacon-v2 *,
.beacon-v2 *::before,
.beacon-v2 *::after {
  border-radius: 0 !important;
}

.beacon-pre-hidden {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.beacon-pre-hidden.beacon-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .beacon-pre-hidden {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
