@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --cobalt: #0047ab;
  --cobalt-dark: #003a8c;
  --cobalt-tint: #e8f0fc;
  --panel: #f3f7fe;
  --ink: #0e1a2b;
  --slate: #4e5d75;
  --muted: #7c8aa0;
  --line: #e3e9f2;
  --amber: #b96a15;
  --amber-bg: #fdf4e7;
  --coral: #c14e28;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(24, 54, 97, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

#rr-root {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  #rr-root {
    overflow-x: clip;
  }
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

a {
  color: var(--cobalt);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid rgba(0, 71, 171, 0.24);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
}

h1,
h2 {
  font-weight: 800;
}

h3,
h4 {
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.boot-screen {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
}

.boot-failed {
  align-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}

.boot-failed h1 { margin: 14px 0 0; font-size: clamp(24px, 5vw, 34px); }
.boot-failed p { margin: 0; color: var(--slate); }
.boot-failed .btn { justify-self: center; margin-top: 8px; }

.boot-dot,
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cobalt);
  animation: pulse 1.25s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% { opacity: 0.35; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.12); }
}

.brand-mark {
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-mark span {
  color: var(--cobalt);
}

.top-nav,
.app-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(227, 233, 242, 0.86);
  backdrop-filter: blur(14px);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.top-nav .brand-mark,
.app-bar .brand-mark {
  margin-right: auto;
}

.nav-link,
.text-button {
  border: 0;
  background: none;
  color: var(--slate);
  font-weight: 600;
}

.nav-link:hover,
.text-button:hover {
  color: var(--cobalt);
  text-decoration: none;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1.5px solid transparent;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  transition: 160ms ease;
}

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

.btn-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 7px 18px rgba(0, 71, 171, 0.18);
}

.btn-primary:hover {
  background: var(--cobalt-dark);
}

.btn-outline {
  border-color: var(--line);
  color: var(--slate);
}

.btn-outline:hover {
  border-color: #b7c9e4;
  color: var(--cobalt);
}

.btn-quiet {
  min-height: 36px;
  padding: 0 12px;
  background: var(--panel);
  color: var(--cobalt);
}

.btn-danger {
  border-color: rgba(193, 78, 40, 0.25);
  color: var(--coral);
}

.landing {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 104px 24px 80px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 71, 171, 0.08), transparent 25%),
    radial-gradient(circle at 85% 0%, rgba(0, 71, 171, 0.05), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -110px;
  width: 620px;
  height: 180px;
  border: 1px solid rgba(0, 71, 171, 0.09);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.kicker,
.eyebrow,
.section-label {
  margin-bottom: 12px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
}

.hero-sub {
  max-width: 670px;
  margin: 0 auto 32px;
  color: var(--slate);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-search {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 8px;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.hero-search .search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 8px;
}

.segmented {
  width: max-content;
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  padding: 3px;
  border-radius: 10px;
  background: var(--panel);
}

.segment {
  min-width: 86px;
  padding: 6px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.segment.active {
  background: #fff;
  color: var(--cobalt);
  box-shadow: 0 2px 8px rgba(24, 54, 97, 0.08);
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.optional-label {
  color: #a6b0c0;
  font-weight: 600;
  text-transform: none;
}

.field input,
.field textarea,
.modal input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  outline: none;
}

.field input,
.modal input {
  min-height: 46px;
  padding: 0 12px;
}

.field textarea {
  min-height: 116px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.modal input:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.08);
}

.full-field {
  grid-column: 1 / -1;
}

.linkedin-details {
  grid-column: 1 / -1;
  padding: 2px 4px 5px;
}

.linkedin-details summary {
  width: max-content;
  cursor: pointer;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.linkedin-details summary::-webkit-details-marker {
  display: none;
}

.linkedin-details .field {
  margin-top: 10px;
}

.linkedin-upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.file-button {
  min-height: 38px;
  cursor: pointer;
}

.file-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.search-submit {
  min-height: 46px;
  padding-inline: 21px;
}

.sample-link {
  display: inline-flex;
  margin-top: 24px;
  border: 0;
  background: none;
  color: var(--cobalt);
  font-weight: 700;
}

.autocomplete {
  position: absolute;
  z-index: 80;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  display: none;
  max-height: 210px;
  overflow: auto;
  padding: 6px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(14, 26, 43, 0.14);
}

.autocomplete.open {
  display: block;
}

.autocomplete button {
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  text-align: left;
  font-size: 13px;
}

.autocomplete button:hover {
  background: var(--panel);
  color: var(--cobalt);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}

.stat {
  display: grid;
  gap: 2px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  font-size: 25px;
  font-weight: 800;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.landing-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 92px 24px;
}

.landing-section h2 {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

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

.how-steps article {
  padding: 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.how-steps article > span,
.tab-number {
  display: inline-grid;
  place-items: center;
  background: var(--cobalt-tint);
  color: var(--cobalt);
  font-weight: 800;
}

.how-steps article > span {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 8px;
  font-size: 12px;
}

.how-steps h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.how-steps p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.comparison-eyebrow {
  margin-top: 68px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-card,
.card,
.pricing-card,
.hypothesis-card,
.identity-card,
.content-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.compare-card {
  padding: 28px;
}

.compare-card.ready {
  background: linear-gradient(150deg, #fff 15%, var(--panel));
  border-color: #c8d8f0;
}

.compare-card h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.plain-list,
.check-list,
.read-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--slate);
  border-top: 1px solid var(--line);
}

.plain-list li::before,
.check-list li::before {
  position: absolute;
  left: 2px;
  font-weight: 800;
}

.plain-list li::before {
  content: "×";
  color: var(--coral);
}

.check-list li::before {
  content: "✓";
  color: var(--cobalt);
}

.sample-section {
  background: var(--panel);
  max-width: none;
}

.sample-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.hypothesis-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(24, 54, 97, 0.08);
}

.hypothesis-cell {
  min-height: 150px;
  padding: 26px;
}

.hypothesis-cell + .hypothesis-cell {
  border-left: 1px solid var(--line);
}

.hypothesis-cell.probe {
  background: var(--cobalt-tint);
}

.cell-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hypothesis-cell p {
  margin-bottom: 0;
  color: var(--slate);
}

.hypothesis-cell.probe p {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.pricing-card.featured {
  border-color: var(--cobalt);
  box-shadow: 0 18px 45px rgba(0, 71, 171, 0.12);
}

.best-value {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cobalt);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price {
  margin: 8px 0 22px;
  font-size: 34px;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.pricing-card p {
  min-height: 48px;
  color: var(--slate);
}

.pricing-card .btn {
  margin-top: auto;
}

.site-footer {
  padding: 32px 5vw 44px;
  border-top: 1px solid var(--line);
  background: #fbfcfe;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.site-footer p {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer strong {
  color: var(--slate);
}

.footer-map {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 auto 18px;
}

.footer-map a,
.footer-map button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
}

.copyright {
  margin-top: 12px !important;
}

.recent-company-band {
  padding: 26px 5vw;
  border-block: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.recent-company-band > span {
  display: block;
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
}

.recent-company-band > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

.recent-company-band button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
}

.recent-company-band small {
  display: block;
  margin-top: 11px;
  color: var(--muted);
}

.app-bar {
  padding: 0 22px;
}

.new-search {
  color: var(--cobalt);
}

.saved-chip,
.avatar {
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.saved-chip {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--slate);
  font-size: 12px;
}

.avatar-wrap {
  position: relative;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cobalt-tint);
  color: var(--cobalt);
}

.avatar-menu {
  position: absolute;
  top: 47px;
  right: 0;
  min-width: 140px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.avatar-menu button {
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  text-align: left;
}

.avatar-menu button:hover {
  background: var(--panel);
}

.workspace {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 68px;
  align-self: start;
  height: calc(100vh - 68px);
  overflow: auto;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: #fbfcfe;
}

.sidebar-title {
  margin: 0 8px 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sidebar-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-title-row button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cobalt);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.recent-list {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
}

.recent-item {
  width: 100%;
  display: grid;
  gap: 1px;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  text-align: left;
}

.recent-item:hover,
.recent-item.active {
  background: var(--cobalt-tint);
}

.recent-item strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-item span {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.following-preview {
  display: grid;
  gap: 7px;
}

.following-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border: 1px dashed #cbd6e6;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
  opacity: 0.75;
}

.soon {
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--amber-bg);
  color: var(--amber);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workspace-main {
  min-width: 0;
  padding: 28px clamp(18px, 4vw, 50px) 70px;
  background: #fff;
}

.empty-workspace {
  min-height: calc(100vh - 170px);
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.empty-workspace .search-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--cobalt-tint);
  color: var(--cobalt);
  font-size: 27px;
}

.empty-workspace h1 {
  margin-bottom: 8px;
  font-size: 34px;
}

.empty-workspace p {
  max-width: 470px;
  color: var(--slate);
}

.status-bar {
  position: sticky;
  top: 68px;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -28px calc(-1 * clamp(18px, 4vw, 50px)) 20px;
  padding: 9px clamp(18px, 4vw, 50px);
  border-bottom: 1px solid #c9d8ee;
  background: rgba(232, 240, 252, 0.96);
  color: var(--cobalt-dark);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.status-spinner {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 3px solid #bed0e9;
  border-top-color: var(--cobalt);
  border-radius: 50%;
  animation: status-spin 0.8s linear infinite;
}

@keyframes status-spin { to { transform: rotate(360deg); } }

.status-percent {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.status-track,
.brief-progress-track,
.usage-track {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #cbd9ed;
}

.status-track i,
.brief-progress-track i,
.usage-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--cobalt);
  transition: width 300ms ease;
}

.brief-progress-track {
  height: 8px;
  margin-bottom: 14px;
}

.loading-shell {
  max-width: 980px;
  margin: 24px auto;
}

.loading-head {
  margin-bottom: 22px;
}

.loading-head h2 {
  margin-bottom: 5px;
  font-size: 28px;
}

.loading-head p {
  color: var(--slate);
}

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

.teaser-load-card {
  min-height: 210px;
  padding: 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.teaser-load-card.ready {
  border-color: #a9c4e9;
  background: var(--panel);
}

.teaser-load-card.active {
  border: 2px solid var(--cobalt);
  box-shadow: 0 12px 28px rgba(0, 71, 171, 0.12);
}

.load-status {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 22px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
}

.load-status .status-spinner {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.load-number {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--cobalt-tint);
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 800;
}

.teaser-load-card.ready .load-number {
  width: auto;
  min-width: 31px;
  padding-inline: 7px;
  border-radius: 999px;
  background: var(--cobalt);
  color: #fff;
}

@media (min-width: 721px) and (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.shimmer-line {
  height: 10px;
  margin: 10px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf1f6 25%, #f8faff 45%, #edf1f6 65%);
  background-size: 220% 100%;
  animation: shimmer 1.4s linear infinite;
}

.shimmer-line.short {
  width: 58%;
}

@keyframes shimmer {
  to { background-position: -220% 0; }
}

.load-status {
  margin-top: 25px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.pyramid-loader {
  width: 220px;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 32px auto;
}

.pyramid-level {
  height: 28px;
  border: 1px solid #abc2e4;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.pyramid-level:nth-child(1) { width: 33%; }
.pyramid-level:nth-child(2) { width: 66%; }
.pyramid-level:nth-child(3) { width: 100%; }

.pyramid-level::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cobalt);
  transform: translateY(100%);
  animation: pyramid-fill 1.8s ease-in-out infinite;
}

.pyramid-level:nth-child(2)::after { animation-delay: 0.3s; }
.pyramid-level:nth-child(3)::after { animation-delay: 0.6s; }

@keyframes pyramid-fill {
  0%, 20% { transform: translateY(100%); }
  55%, 80% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

.identity-strip {
  position: sticky;
  top: 68px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -28px calc(-1 * clamp(18px, 4vw, 50px)) 20px;
  padding: 8px clamp(18px, 4vw, 50px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--slate);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.identity-strip strong {
  color: var(--ink);
}

.profile-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.profile-nav-stack {
  position: sticky;
  top: 68px;
  z-index: 20;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.98);
}

.mobile-profile-context {
  display: none;
}

.identity-card {
  position: relative;
  overflow: hidden;
  padding: clamp(25px, 4vw, 42px);
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 71, 171, 0.12), transparent 34%),
    linear-gradient(135deg, #fff 10%, var(--panel));
  border-color: #cad9ef;
}

.identity-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -94px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(0, 71, 171, 0.11);
  border-radius: 50%;
}

.identity-main {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.identity-card h1 {
  margin: 3px 0 6px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.04;
}

.identity-title {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.identity-company {
  margin-bottom: 18px;
  color: var(--cobalt);
  font-size: 17px;
  font-weight: 700;
}

.archetype-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--slate);
  font-size: 13px;
}

.badge,
.estimate-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  background: var(--amber-bg);
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.badge {
  padding: 6px 9px;
  font-size: 9px;
}

.estimate-badge {
  margin-left: 3px;
  padding: 2px 6px;
  font-size: 8px;
  vertical-align: middle;
}

.identity-actions {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 7px;
}

.autosave-note {
  align-self: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.purpose-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0;
}

.purpose-row > span {
  margin-right: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purpose-chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.purpose-chip.active {
  border-color: var(--cobalt);
  background: var(--cobalt-tint);
  color: var(--cobalt);
}

.read-box {
  margin-bottom: 22px;
  padding: 22px 24px;
  border-left: 4px solid var(--cobalt);
  border-radius: 4px var(--radius) var(--radius) 4px;
  background: var(--panel);
}

.read-box h2 {
  margin-bottom: 11px;
  font-size: 17px;
}

.read-list {
  display: grid;
  gap: 8px;
}

.read-list li {
  position: relative;
  padding-left: 18px;
  color: var(--slate);
}

.read-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.talk-tips {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.talk-tips h4 {
  margin: 0 0 10px;
  font-size: 13px;
}

.talk-tips dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.talk-tips dl > div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 8px;
}

.talk-tips dt {
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.talk-tips dd {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.assessment-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 700;
}

.tab-working {
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--cobalt);
  color: #fff;
  font-size: 8px;
}

.tab {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tab-number {
  width: 23px;
  height: 23px;
  border-radius: 6px;
  font-size: 10px;
}

.tab.active .tab-number {
  background: var(--cobalt);
  color: #fff;
}

.tab.active {
  color: var(--cobalt);
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--cobalt);
}

.tab .pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 5px;
}

.tab-panel {
  position: relative;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 15px;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
}

.meeting-test-heading {
  margin-top: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.content-card {
  padding: 22px;
}

.content-card h3 {
  margin-bottom: 13px;
  font-size: 15px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card.wide {
  grid-column: 1 / -1;
}

.insight-text {
  color: var(--slate);
}

.subtle-callout {
  margin-top: 13px;
  padding: 10px 12px;
  border-radius: 9px;
  background: var(--amber-bg);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
}

.journey-card {
  overflow-x: auto;
  padding: 25px 20px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}

.journey-timeline {
  min-width: 790px;
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
}

.journey-stop {
  position: relative;
  padding: 24px 15px 0 0;
  border-top: 2px solid #c8d6e9;
}

.journey-stop::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--cobalt);
  border-radius: 50%;
  background: #fff;
}

.journey-stop.edu::before {
  border-color: var(--amber);
  background: var(--amber);
}

.journey-stop.current::before {
  background: var(--cobalt);
}

.journey-years {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.edu-tag {
  padding: 2px 4px;
  border-radius: 4px;
  background: var(--amber-bg);
  color: var(--amber);
  font-size: 7px;
}

.journey-stop strong,
.journey-stop span {
  display: block;
}

.journey-stop strong {
  font-size: 13px;
}

.journey-stop span {
  color: var(--slate);
  font-size: 11px;
}

.journey-note {
  margin-top: 7px;
  color: var(--muted) !important;
}

.trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 11px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.trail i {
  color: var(--cobalt);
  font-style: normal;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 11px;
}

.pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--cobalt-tint);
  color: var(--cobalt-dark);
  font-size: 10px;
  font-weight: 700;
}

.pill.nonprofit {
  background: var(--amber-bg);
  color: var(--amber);
}

.muted-line {
  color: var(--muted);
  font-size: 12px;
}

.insight-hero {
  padding: 27px;
  border: 1.5px solid #cbd9ee;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--panel));
}

.insight-hero h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.insight-hero p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 16px;
}

.type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.temperament-label,
.evidence-line {
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 13px;
}

.evidence-line {
  margin-top: 16px;
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.type-compare {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  gap: 14px;
  padding: 20px;
  border: 1.5px solid #cad9ef;
  border-radius: var(--radius);
  background: var(--cobalt-tint);
}

.type-compare label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.type-compare select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #aac1e2;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}

.compare-result {
  padding: 14px;
  border-radius: 10px;
  background: #fff;
}

.compare-result p {
  margin: 6px 0 0;
  color: var(--slate);
}

.meeting-purpose-panel {
  margin-bottom: 22px;
  padding: 18px;
  border: 1.5px solid #cad9ef;
  border-radius: var(--radius);
  background: var(--panel);
}

.plan-working {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 18px;
  border: 1.5px solid #b9ccea;
  border-radius: var(--radius);
  background: var(--panel);
}

.plan-working p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.meeting-purpose-panel > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meeting-purpose-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.meeting-purpose-panel > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.type-mark {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.strategy-hypotheses {
  display: grid;
  gap: 10px;
}

.strategy-hypotheses .hypothesis-card {
  box-shadow: none;
}

.strategy-hypotheses .hypothesis-cell {
  min-height: 120px;
  padding: 20px;
}

.plan-grid,
.pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 14px;
}

.plan-opening {
  padding: 16px;
  border-radius: 10px;
  background: var(--cobalt-tint);
  color: var(--cobalt-dark);
  font-weight: 700;
}

.sequence {
  counter-reset: sequence;
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.sequence li {
  counter-increment: sequence;
  position: relative;
  padding-left: 34px;
  color: var(--slate);
}

.sequence li::before {
  content: counter(sequence);
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel);
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 800;
}

.watchout-list,
.pain-list,
.objection-list,
.bring-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.watchout-list li,
.pain-list li,
.objection-list li,
.bring-list li {
  position: relative;
  padding-left: 22px;
  color: var(--slate);
}

.watchout-list li::before {
  content: "!";
  position: absolute;
  left: 1px;
  color: var(--amber);
  font-weight: 800;
}

.pain-list li::before,
.bring-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cobalt);
  font-weight: 800;
}

.pain-list .unlikely::before {
  content: "×";
  color: var(--coral);
}

.objection-list li {
  padding: 11px 12px;
  border-radius: 9px;
  background: var(--panel);
}

.objection-list strong,
.objection-list span {
  display: block;
}

.objection-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.sources-card {
  margin-top: 22px;
  padding: 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
}

.sources-card h3 {
  margin-bottom: 10px;
  font-size: 13px;
}

.sources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
}

.locked-wrap {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
}

.locked-content {
  user-select: none;
  filter: blur(7px);
  opacity: 0.55;
  pointer-events: none;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.68));
}

.lock-card {
  max-width: 350px;
  padding: 24px;
  border: 1px solid #bfd0e8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.lock-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.lock-card p {
  margin-bottom: 16px;
  color: var(--slate);
  font-size: 12px;
}

.error-card {
  padding: 20px;
  border: 1.5px solid rgba(193, 78, 40, 0.28);
  border-radius: var(--radius);
  background: #fff7f4;
}

.error-card h3 {
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 15px;
}

.error-card p {
  margin-bottom: 13px;
  color: var(--slate);
  font-size: 12px;
  white-space: pre-wrap;
}

.candidate-grid,
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.candidate-card,
.leader-card {
  padding: 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: left;
}

.candidate-card:hover,
.leader-card:hover {
  border-color: #a9c2e6;
  background: var(--panel);
}

.candidate-card strong,
.leader-card strong,
.candidate-card span,
.leader-card span {
  display: block;
}

.candidate-card strong,
.leader-card strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.candidate-card span,
.leader-card span {
  color: var(--slate);
  font-size: 12px;
}

.leader-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
}

.results-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.results-header h1 {
  margin-bottom: 3px;
  font-size: 33px;
}

.source-line {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.leader-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.leader-tab {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--slate);
  font-weight: 700;
}

.leader-tab.active {
  border-color: var(--cobalt);
  background: var(--cobalt-tint);
  color: var(--cobalt);
}

.overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: 9vh 20px 30px;
  background: rgba(14, 26, 43, 0.48);
  backdrop-filter: blur(6px);
  overflow: auto;
}

.search-overlay-card,
.modal {
  width: min(900px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(14, 26, 43, 0.2);
}

.search-overlay-card {
  padding: clamp(18px, 4vw, 32px);
}

.search-overlay-card .search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 10px;
}

.overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.overlay-head h2 {
  margin: 0;
  font-size: 25px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--slate);
  font-size: 20px;
}

.modal-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(14, 26, 43, 0.52);
  backdrop-filter: blur(7px);
}

.modal {
  width: min(430px, 100%);
  padding: 28px;
}

.modal h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.modal p {
  color: var(--slate);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.modal-note {
  margin: 10px 0 0;
  color: var(--muted) !important;
  font-size: 10px;
}

.modal-wide {
  width: min(760px, 100%);
}

.checkout-price {
  margin: 10px 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
}

.checkout-row,
.account-grid,
.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-form-grid {
  margin-top: 18px;
}

.profile-form-grid select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.account-panel > .btn {
  margin-bottom: 12px;
}

.usage-card,
.account-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
}

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

.plan-choice {
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.plan-choice.active {
  border-color: var(--cobalt);
  background: var(--cobalt-tint);
}

.plan-choice span,
.plan-choice small,
.selected-plan span {
  color: var(--slate);
}

.selected-plan {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 9px;
  background: var(--panel);
}

.history-tools {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 10px;
  margin: 18px 0;
}

.history-tools select {
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.history-list {
  max-height: 52vh;
  display: grid;
  gap: 7px;
  overflow-y: auto;
}

.history-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.history-open {
  display: grid;
  gap: 3px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.history-open span {
  color: var(--muted);
  font-size: 11px;
}

.history-delete {
  border: 0;
  background: transparent;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
}

.usage-card strong,
.account-grid strong {
  display: block;
  margin-bottom: 9px;
}

.usage-card p {
  margin: 8px 0 0;
  font-size: 11px;
}

.account-grid {
  margin-top: 12px;
}

.account-grid article {
  display: flex;
  flex-direction: column;
}

.account-grid .btn {
  margin-top: auto;
}

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  width: min(470px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid #c8d7ec;
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 45px rgba(14,26,43,.16);
}

.cookie-banner p {
  margin: 0;
  color: var(--slate);
  font-size: 11px;
}

.cookie-banner > div {
  display: flex;
  gap: 6px;
}

.demo-player {
  max-width: 860px;
  min-height: 390px;
  position: relative;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1.5px solid #c9d8ee;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, var(--panel));
  box-shadow: 0 22px 60px rgba(0,71,171,.12);
}

.demo-screen {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 46px;
  opacity: 0;
  transform: translateX(24px);
  transition: 350ms ease;
}

.demo-player[data-demo-step="0"] .demo-search-screen,
.demo-player[data-demo-step="1"] .demo-build-screen,
.demo-player[data-demo-step="2"] .demo-ready-screen {
  opacity: 1;
  transform: none;
}

.demo-screen strong {
  max-width: 650px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.08;
}

.demo-kicker {
  color: var(--cobalt);
  font-weight: 800;
}

.demo-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.demo-fields i,
.demo-progress {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.demo-progress {
  width: min(560px, 75vw);
  height: 12px;
  overflow: hidden;
}

.demo-progress i {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--cobalt);
}

.demo-ready-screen blockquote {
  padding: 18px;
  border-left: 4px solid var(--cobalt);
  background: var(--cobalt-tint);
  font-size: 18px;
  font-weight: 800;
}

.demo-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.demo-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b7c7de;
}

.demo-player[data-demo-step="0"] .demo-dots button:nth-child(1),
.demo-player[data-demo-step="1"] .demo-dots button:nth-child(2),
.demo-player[data-demo-step="2"] .demo-dots button:nth-child(3) { background: var(--cobalt); }

.session-cap {
  max-width: 540px;
  margin: 50px auto;
  padding: 30px;
  border: 1.5px solid #e4c69d;
  border-radius: var(--radius);
  background: var(--amber-bg);
  text-align: center;
}

.session-cap h2 {
  margin-bottom: 8px;
  color: var(--amber);
}

.print-profile {
  display: none;
}

@media (max-width: 899px) {
  .top-nav .nav-link {
    display: none;
  }

  .workspace {
    display: block;
  }

  .sidebar {
    position: sticky;
    top: 68px;
    z-index: 30;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .sidebar-title,
  .following-preview {
    display: none;
  }

  .recent-list {
    display: flex;
    gap: 6px;
    margin: 0;
  }

  .recent-item {
    width: 150px;
    flex: 0 0 auto;
    padding: 7px 9px;
    background: #fff;
    border: 1px solid var(--line);
  }

  .status-bar {
    top: 114px;
  }

  .profile-nav-stack {
    top: 114px;
  }
}

@media (max-width: 720px) {
  .landing,
  .workspace,
  .workspace-main,
  .profile-wrap,
  .profile-nav-stack,
  .identity-card,
  .content-card,
  .sources-card,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }

  .profile-wrap,
  .identity-card,
  .content-card,
  .sources-card {
    overflow-wrap: anywhere;
  }

  .top-nav,
  .app-bar {
    gap: 10px;
    padding: 0 14px;
  }

  .top-nav .text-button,
  .saved-chip {
    display: none;
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
  }

  .mobile-menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }

  .mobile-menu {
    position: absolute;
    z-index: 80;
    top: 58px;
    right: 12px;
    width: min(260px, calc(100vw - 24px));
    display: grid;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(14, 26, 43, 0.16);
  }

  .mobile-menu a,
  .mobile-menu button {
    padding: 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
  }

  .hero {
    padding: 48px 14px 42px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-search .search-fields,
  .search-overlay-card .search-fields,
  .how-steps,
  .comparison,
  .pricing-grid,
  .content-grid,
  .type-row,
  .plan-grid,
  .pain-grid,
  .candidate-grid,
  .leadership-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .teaser-load-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .teaser-load-card {
    min-height: 142px;
    padding: 12px 8px;
  }

  .teaser-load-card h3 {
    font-size: 12px;
  }

  .teaser-load-card .load-number {
    margin-bottom: 14px;
  }

  .teaser-load-card .shimmer-line {
    height: 7px;
  }

  .hypothesis-card,
  .strategy-hypotheses .hypothesis-card {
    grid-template-columns: 1fr;
  }

  .hypothesis-cell,
  .strategy-hypotheses .hypothesis-cell {
    min-height: auto;
  }

  .hypothesis-cell + .hypothesis-cell {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat-band {
    padding-inline: 10px;
  }

  .stat strong {
    font-size: 19px;
  }

  .landing-section {
    padding: 52px 16px;
  }

  .brand-mark {
    font-size: 18px;
  }

  .top-nav .btn-primary {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .workspace-main {
    padding: 18px 10px 56px;
  }

  .profile-wrap {
    padding-left: 0;
  }

  .identity-actions {
    position: static;
    margin-top: 22px;
  }

  .sidebar {
    position: static;
  }

  .status-bar {
    top: 68px;
    margin: -18px -10px 14px;
    padding: 10px 12px;
    background: #e8f0fc;
    font-size: 11px;
  }

  .profile-nav-stack {
    top: 68px;
    margin-inline: -2px;
    background: #fff;
    backdrop-filter: none;
    box-shadow: 0 5px 14px rgba(14,26,43,.06);
  }

  .mobile-profile-context {
    display: grid;
    gap: 2px;
    padding: 9px 10px 7px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-profile-context strong {
    font-size: 12px;
  }

  .mobile-profile-context span {
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .identity-card {
    padding: 22px 18px;
  }

  .identity-card h1 {
    font-size: 34px;
  }

  .identity-title {
    font-size: 16px;
  }

  .identity-company {
    font-size: 15px;
  }

  .archetype-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .identity-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .identity-actions .btn {
    min-height: 38px;
    padding-inline: 6px;
    font-size: 10px;
  }

  .autosave-note {
    width: 100%;
  }

  .tab {
    min-height: 58px;
    gap: 4px;
    padding: 7px 4px;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
  }

  .tab-working {
    position: absolute;
    right: 3px;
    bottom: 2px;
  }

  .insight-hero {
    padding: 20px 17px;
  }

  .insight-hero h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  .content-card {
    padding: 18px;
  }

  .type-compare,
  .checkout-row,
  .account-grid,
  .profile-form-grid,
  .history-tools,
  .plan-choice-grid {
    grid-template-columns: 1fr;
  }

  .meeting-purpose-panel > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose-chip {
    min-height: 40px;
    padding: 7px 8px;
  }

  .recent-company-band > div {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    overflow-x: auto;
  }

  .recent-company-band button {
    flex: 0 0 auto;
  }

  .demo-player {
    min-height: 330px;
  }

  .demo-screen {
    padding: 30px 22px 54px;
  }

  .demo-screen strong {
    font-size: 27px;
  }

  .demo-fields {
    grid-template-columns: 1fr;
  }

  .demo-fields i {
    height: 38px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner > div {
    justify-content: flex-end;
  }

  .footer-map {
    gap: 10px 14px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .search-overlay-card {
    border-radius: 14px;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0.55in;
  }

  body {
    color: #000;
    font-size: 10pt;
  }

  .top-nav,
  .app-bar,
  .workspace,
  .modal-overlay,
  .overlay,
  .status-bar,
  .site-footer,
  .cookie-banner,
  .mobile-menu,
  .screen-only {
    display: none !important;
  }

  .print-profile {
    display: block !important;
  }

  .print-section {
    break-before: page;
    page-break-before: always;
  }

  .print-section:first-child {
    break-before: auto;
    page-break-before: auto;
  }

  .print-section-header {
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cobalt);
    color: var(--cobalt);
    font-size: 11pt;
    font-weight: 800;
  }

  .print-brand {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 9px;
  }

  .print-brand strong {
    color: var(--ink);
    font-size: 15pt;
    letter-spacing: -0.03em;
  }

  .print-brand strong span {
    color: var(--cobalt);
  }

  .print-brand em {
    color: var(--muted);
    font-size: 8pt;
    font-style: normal;
    font-weight: 700;
  }

  .identity-card,
  .content-card,
  .journey-card,
  .hypothesis-card,
  .sources-card {
    box-shadow: none;
    break-inside: avoid;
  }

  .journey-card {
    overflow: visible;
  }

  .journey-timeline {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .journey-stop {
    min-height: 0;
    padding: 14px;
    border: 1px solid #c8d6e9;
    border-radius: 9px;
    break-inside: avoid;
  }

  .journey-stop::before {
    display: none;
  }

  .content-grid,
  .plan-grid,
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strategy-hypotheses {
    gap: 7px;
  }

  .strategy-hypotheses .hypothesis-cell {
    min-height: 88px;
    padding: 12px;
  }

  .locked-content {
    filter: none;
    opacity: 1;
  }

  .lock-overlay {
    display: none;
  }
}
