:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-soft: #f4f1ec;
  --text: #111318;
  --muted: #626a78;
  --subtle: #8a92a0;
  --line: #e6e1d9;
  --line-strong: #d6d0c7;
  --black: #080a0f;
  --blue: #2f6df6;
  --purple: #7c4dff;
  --green: #2f9f62;
  --orange: #ef8b2c;
  --red: #e25555;
  --shadow: 0 18px 55px rgba(35, 30, 22, 0.1);
  --radius: 8px;
  --sidebar: 248px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 248, 0.9);
  border-bottom: 1px solid rgba(230, 225, 217, 0.75);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-menu {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  font-weight: 780;
  font-size: 26px;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 112px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: #20242c;
}

.nav a {
  padding: 10px 0;
}

.nav a:hover,
.footer a:hover,
.article-card:hover h3 {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--line-strong);
}

.menu-lines {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-lines span {
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button,
.button-secondary,
.button-ghost,
.icon-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease, color 0.16s ease;
}

.button {
  background: var(--black);
  color: white;
  border-color: var(--black);
  padding: 0 18px;
  font-weight: 720;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  padding: 0 18px;
  font-weight: 700;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  padding: 0 14px;
  font-weight: 650;
}

.icon-button {
  width: 42px;
  padding: 0;
  background: var(--surface);
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.hero {
  padding: 42px 0 50px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1c2028;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

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

h1 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2,
h3 {
  font-family: var(--font-display);
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: 56px;
}

.hero-copy h1 span {
  display: block;
  color: #4b505a;
}

.hero-copy {
  max-width: 630px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 26px;
}

.hero-actions,
.cta-row,
.control-row,
.form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.founder-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 30px;
  height: 30px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  margin-left: -8px;
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

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

.avatar.blue {
  background: var(--blue);
}

.avatar.green {
  background: var(--green);
}

.avatar.orange {
  background: var(--orange);
}

.avatar.purple {
  background: var(--purple);
}

.avatar.dark {
  background: #20242c;
}

.product-preview {
  min-width: 620px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 158px 1fr;
  overflow: hidden;
}

.preview-sidebar {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: #fdfbf8;
}

.preview-nav {
  display: grid;
  gap: 6px;
}

.preview-nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 7px;
  color: #4e5664;
  font-size: 11px;
  font-weight: 650;
}

.preview-nav span.active {
  color: var(--text);
  background: var(--surface-soft);
}

.mini-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #515966;
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-main {
  padding: 24px;
}

.preview-header,
.dashboard-topbar,
.page-heading-row,
.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  font-size: 31px;
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.preview-header h2 {
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.preview-header p,
.section-heading p,
.blog-hero p,
.article-hero p {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 26px;
}

.metric-card,
.dashboard-card,
.opportunity-card,
.article-card,
.report-card,
.profile-card,
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-card {
  padding: 16px;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 9px;
}

.metric-value {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 760;
  margin-bottom: 8px;
}

.metric-change {
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}

.preview-metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  padding: 10px;
  min-width: 0;
}

.preview-metric span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
}

.preview-metric strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 0 0 10px;
  font-size: 12px;
  font-weight: 720;
}

.preview-competitor-list {
  display: grid;
  gap: 0;
}

.preview-competitor-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.preview-competitor-row:last-child {
  border-bottom: 0;
}

.preview-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 16px;
  font-weight: 900;
}

.preview-logo.logo-missing.blue {
  background: var(--blue);
  border-color: transparent;
  color: white;
}

.preview-logo.logo-missing.purple {
  background: var(--purple);
  border-color: transparent;
  color: white;
}

.preview-logo.logo-missing.black {
  background: var(--black);
  border-color: transparent;
  color: white;
}

.preview-logo.logo-missing.green {
  background: var(--green);
  border-color: transparent;
  color: white;
}

.preview-logo.logo-missing.orange {
  background: var(--orange);
  border-color: transparent;
  color: white;
}

.preview-competitor-copy {
  min-width: 0;
}

.preview-competitor-copy div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
  min-width: 0;
}

.preview-competitor-copy strong {
  font-size: 14px;
  line-height: 1.15;
}

.preview-competitor-copy .tag {
  padding: 3px 7px;
  font-size: 10px;
}

.preview-competitor-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.table-like {
  display: grid;
  gap: 10px;
}

.table-heading,
.opportunity-row,
.competitor-row {
  display: grid;
  align-items: center;
  gap: 16px;
}

.table-heading {
  grid-template-columns: 1.4fr 0.6fr 1.3fr;
  color: var(--muted);
  font-size: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.opportunity-row {
  grid-template-columns: 1.4fr 0.6fr 1.3fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.opportunity-row:last-child {
  border-bottom: 0;
}

.opportunity-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
}

.opportunity-icon,
.feature-icon,
.status-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  flex: 0 0 auto;
}

.opportunity-icon.blue {
  background: #e9f0ff;
  color: var(--blue);
}

.opportunity-icon.purple {
  background: #f0eaff;
  color: var(--purple);
}

.opportunity-icon.orange {
  background: #fff0df;
  color: var(--orange);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 760;
}

.badge.green {
  color: #187143;
  background: #e4f4ea;
}

.badge.yellow {
  color: #87600e;
  background: #fff1cd;
}

.badge.blue {
  color: #194fb8;
  background: #e8f0ff;
}

.badge.purple {
  color: #5a2bd8;
  background: #efe9ff;
}

.badge.gray {
  color: #596273;
  background: #eef0f4;
}

.badge.red {
  color: #b42323;
  background: #fde8e8;
}

.section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.market-read-heading {
  max-width: 900px;
}

.market-read-heading h2 {
  font-size: 36px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.market-read-heading h2 span {
  display: block;
  white-space: nowrap;
}

.market-read-heading p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-heading h2,
.blog-hero h1,
.article-hero h1 {
  font-size: 56px;
  line-height: 1.04;
}

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

.step {
  position: relative;
}

.step h3,
.dashboard-card h3,
.article-card h3,
.profile-card h3,
.report-card h3 {
  margin-bottom: 8px;
  letter-spacing: 0;
}

.step p,
.dashboard-card p,
.article-card p,
.profile-card p,
.report-card p {
  color: var(--muted);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-weight: 850;
}

.value-grid,
.use-case-grid,
.blog-grid,
.report-grid,
.profile-grid,
.dashboard-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3d4553;
}

.check,
.x-mark {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
}

.check {
  color: var(--green);
  background: #e8f6ee;
}

.x-mark {
  color: var(--red);
  background: #fdeaea;
}

.decision-brief {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 55px rgba(35, 30, 22, 0.07);
}

.brief-header,
.brief-summary,
.brief-item,
.brief-plan {
  display: grid;
  gap: 14px;
}

.brief-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  margin-bottom: 20px;
}

.brief-header h3 {
  font-size: 25px;
  line-height: 1.15;
  margin: 4px 0 0;
  letter-spacing: 0;
}

.brief-kicker,
.brief-summary p,
.brief-plan span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brief-summary {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brief-summary p {
  margin: 0 0 4px;
}

.brief-summary strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.brief-score {
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: white;
  font-size: 27px;
  line-height: 1;
  font-weight: 850;
}

.brief-stack {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.brief-item {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

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

.brief-item strong,
.brief-plan strong {
  display: block;
  line-height: 1.25;
}

.brief-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.brief-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 850;
}

.brief-icon.blue {
  background: #e9f0ff;
  color: var(--blue);
}

.brief-icon.green {
  background: #e6f4eb;
  color: var(--green);
}

.brief-icon.orange {
  background: #fff0df;
  color: var(--orange);
}

.brief-plan {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.brief-plan div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf8;
}

.brief-plan span {
  display: block;
  margin-bottom: 6px;
}

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

.dashboard-card,
.opportunity-card,
.article-card,
.report-card,
.profile-card {
  padding: 24px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.card-icon.blue {
  background: #e9f0ff;
  color: var(--blue);
}

.card-icon.green {
  background: #e6f4eb;
  color: var(--green);
}

.card-icon.orange {
  background: #fff0df;
  color: var(--orange);
}

.card-icon.purple {
  background: #efe9ff;
  color: var(--purple);
}

.cta-band {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1.15;
}

.form-row input,
.search-input,
.select-input {
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.form-row input {
  min-width: 260px;
  flex: 1;
}

.form-row input:focus,
.search-input:focus,
.select-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.form-message {
  color: var(--green);
  min-height: 22px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(120px, 160px));
  gap: 24px;
}

.footer h4 {
  color: var(--text);
  margin: 0 0 10px;
  font-size: 14px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
  font-size: 14px;
}

.blog-hero,
.article-hero {
  padding: 70px 0 36px;
}

.article-hero {
  padding-bottom: 8px;
}

.article-hero .article-layout {
  padding-bottom: 14px;
}

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

.blog-grid.single {
  grid-template-columns: minmax(0, 760px);
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.article-card .meta,
.article-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.article-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.article-card p {
  flex: 1;
}

.feature-article {
  min-height: 260px;
}

.feature-article h3 {
  font-size: 30px;
}

.article-link {
  font-weight: 780;
  color: var(--blue);
}

.article-layout {
  width: min(790px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 80px;
}

.article-body {
  color: #303744;
  font-size: 19px;
  padding-top: 0;
}

.article-body h2 {
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.18;
}

.article-body ul {
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-note {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 30px 0;
  color: #2f3642;
}

.app-page {
  background: #fcfbf9;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--line);
  background: #fbfaf8;
  padding: 28px 20px;
}

.sidebar .brand {
  font-size: 26px;
}

.side-nav {
  margin-top: 46px;
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #252a33;
  font-weight: 700;
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--surface-soft);
}

.side-nav .nav-icon {
  color: #4d5665;
}

.side-nav a.active .nav-icon,
.side-nav a:hover .nav-icon {
  color: var(--text);
}

.dashboard-main {
  min-width: 0;
  padding: 34px 34px 50px;
}

.dashboard-topbar {
  min-height: 44px;
  margin-bottom: 28px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #3d4553;
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 760;
}

.breadcrumb-separator {
  color: var(--subtle);
  font-size: 12px;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.live-status span:first-child {
  color: var(--green);
  font-weight: 800;
}

.dashboard-view {
  display: none;
}

.dashboard-view.active {
  display: block;
}

.page-heading {
  margin-bottom: 26px;
}

.page-heading h1 {
  font-size: 54px;
  line-height: 1.02;
  margin-bottom: 8px;
}

.page-heading p {
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.stat-card {
  padding: 18px;
}

.stat-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 900;
}

.stat-icon .nav-icon {
  width: 20px;
  height: 20px;
}

.stat-icon.blue {
  background: #e9f0ff;
  color: var(--blue);
}

.stat-icon.green {
  background: #e5f4ea;
  color: var(--green);
}

.stat-icon.purple {
  background: #efe9ff;
  color: var(--purple);
}

.stat-icon.orange {
  background: #fff0df;
  color: var(--orange);
}

.stat-icon.gray {
  background: #eef0f4;
  color: #596273;
}

.stat-value {
  font-size: 29px;
  font-weight: 780;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-value.compact {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 760;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-grid.two {
  grid-template-columns: 1fr 1fr;
}

.dashboard-grid.main-side {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.signal-list,
.compact-list,
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.signal-list li,
.compact-list li,
.feature-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #3d4553;
}

.signal-score {
  min-width: 44px;
  text-align: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  padding: 4px 7px;
}

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

.search-input {
  width: min(360px, 100%);
}

.select-input {
  min-width: 170px;
}

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

.competitor-group {
  display: grid;
  gap: 10px;
}

.competitor-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}

.competitor-group-heading h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.competitor-group-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.competitor-row {
  grid-template-columns: minmax(280px, 0.9fr) minmax(520px, 1.45fr);
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 42px 16px 18px;
  position: relative;
}

.competitor-row > * {
  min-width: 0;
}

.competitor-row.has-profile {
  cursor: pointer;
}

.competitor-row.has-profile:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 30px rgba(35, 30, 22, 0.06);
}

.competitor-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  padding: 2px 0;
}

.logo-tile {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 24px;
}

.provider-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 8px;
  background: var(--surface);
}

.logo-tile .provider-logo {
  padding: 10px;
}

.logo-fallback {
  display: none;
}

.logo-missing .provider-logo {
  display: none;
}

.logo-missing .logo-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-tile.logo-missing.blue {
  background: var(--blue);
  border-color: transparent;
  color: white;
}

.logo-tile.logo-missing.purple {
  background: var(--purple);
  border-color: transparent;
  color: white;
}

.logo-tile.logo-missing.black {
  background: #202020;
  border-color: transparent;
  color: white;
}

.logo-tile.logo-missing.green {
  background: var(--green);
  border-color: transparent;
  color: white;
}

.logo-tile.logo-missing.orange {
  background: var(--orange);
  border-color: transparent;
  color: white;
}

.logo-tile.logo-missing.gray {
  background: #647084;
  border-color: transparent;
  color: white;
}

.competitor-title {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 7px;
}

.competitor-title h3 {
  margin: 0;
  font-size: 19px;
}

.competitor-name-link {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}

.competitor-name-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.competitor-name-link::after {
  content: "\2197";
  display: inline-block;
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-1px);
}

.competitor-name-link:hover::after,
.competitor-name-link:focus-visible::after {
  color: var(--blue);
}

.competitor-name-link:focus-visible {
  color: var(--blue);
  border-radius: 4px;
  outline: 2px solid rgba(68, 126, 247, 0.28);
  outline-offset: 3px;
  text-decoration: underline;
}

.competitor-positioning {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.competitor-insights {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-self: stretch;
  min-width: 0;
  border-left: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(250, 248, 242, 0.46), rgba(255, 255, 255, 0));
}

.competitor-field {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 4px 18px;
  position: relative;
}

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

.row-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #6a7280;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.field-mark {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.field-mark::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
}

.core-wedge .field-mark {
  background: #f1f8f2;
}

.core-wedge .field-mark::before {
  background: #2f9f62;
}

.founder-takeaway .field-mark {
  background: #f2f5ff;
}

.founder-takeaway .field-mark::before {
  background: #4568e8;
}

.row-value {
  font-weight: 780;
  overflow-wrap: break-word;
}

.row-value.text-value {
  color: #242d3a;
  font-size: 14px;
  font-weight: 690;
  line-height: 1.45;
}

.row-arrow {
  color: var(--muted);
  font-weight: 900;
  font-size: 22px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.empty-state {
  display: none;
  padding: 34px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
}

.empty-state.active {
  display: block;
}

.profile-hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.profile-hero h1 {
  font-size: 58px;
  margin-bottom: 4px;
}

.profile-snapshot {
  display: grid;
  gap: 0;
  margin-bottom: 26px;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-highlight-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #ffffff;
  padding: 16px 18px;
}

.profile-highlight-card > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.profile-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  border: 1px solid #d9e2f4;
  border-radius: 999px;
  background: #f3f7ff;
  color: #244476;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
}

.profile-chip:nth-child(2n) {
  border-color: #dcebdd;
  background: #f1f8f2;
  color: #2f6139;
}

.profile-chip:nth-child(3n) {
  border-color: #eadfcf;
  background: #fbf5ec;
  color: #74512c;
}

.profile-fact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.profile-fact {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.profile-fact-fit {
  border-right: 1px solid var(--line);
}

.profile-fact:last-child {
  border-right: 0;
}

.profile-fact span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.profile-fact p {
  margin: 0;
  color: #303744;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.profile-fact-role p {
  font-weight: 500;
}

.profile-pricing-card {
  display: grid;
  gap: 16px;
  background: #ffffff;
}

.profile-research-card {
  margin-top: 18px;
}

.profile-pricing-heading {
  display: grid;
  gap: 6px;
  max-width: 980px;
}

.profile-pricing-heading h3 {
  margin: 0;
}

.profile-price-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.profile-price-row {
  display: flex;
  flex-direction: column;
  min-height: 184px;
  gap: 8px;
  border: 1px solid #e4dfd6;
  border-radius: var(--radius);
  background: #fdfcf9;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(35, 30, 22, 0.035);
}

.profile-price-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.profile-price-row:last-child {
  border-bottom: 1px solid var(--line);
}

.profile-price-label {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  text-transform: none;
}

.profile-price-row strong {
  color: #111318;
  font-size: 19px;
  line-height: 1.25;
  white-space: nowrap;
}

.profile-price-billing {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  border: 1px solid #cfe5d4;
  border-radius: 999px;
  background: #f1f8f2;
  color: #2f6139;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-price-row p {
  color: #596273;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.38;
}

.profile-price-fees {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.profile-price-fees span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  margin: 0;
  border: 1px solid #e1ded7;
  border-radius: 999px;
  background: #f7f5f0;
  color: #596273;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.2;
  text-transform: none;
}

.profile-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-fact .profile-fit-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f7f4;
  color: #303744;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: none;
}

.profile-tabs {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  overflow-x: auto;
}

.profile-tabs button {
  border: 0;
  background: transparent;
  padding: 0 0 14px;
  color: var(--muted);
  font-weight: 760;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.profile-tabs button.active {
  color: var(--blue);
  border-color: var(--blue);
}

.profile-grid {
  grid-template-columns: 0.75fr 1.25fr;
  margin-bottom: 18px;
}

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

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

.essay-card {
  margin-bottom: 18px;
}

.essay-card p {
  color: #303744;
  font-size: 17px;
  line-height: 1.68;
}

.compact-list li span:last-child,
.feature-list li span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.info-stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.info-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.info-line strong {
  display: block;
  margin-bottom: 2px;
}

.info-line span {
  color: var(--muted);
}

.takeaway-list {
  display: grid;
  gap: 14px;
}

.takeaway {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.takeaway strong {
  display: block;
  margin-bottom: 3px;
}

.takeaway p {
  margin: 0;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: #eef0f4;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.bar.yellow span {
  background: #f5aa20;
}

.bar.red span {
  background: var(--red);
}

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

.opportunity-card h3 {
  font-size: 22px;
  line-height: 1.16;
}

.opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

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

.report-list {
  display: grid;
  gap: 14px;
}

.report-list-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.report-list-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 30px rgba(35, 30, 22, 0.06);
}

.report-list-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.18;
}

.report-list-card p {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--muted);
}

.report-list-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.report-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.market-report {
  padding: 0;
  overflow: hidden;
}

.report-cover {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
  border-bottom: 1px solid var(--line);
}

.report-cover h3 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 1.04;
}

.report-cover p {
  max-width: 900px;
  margin-bottom: 0;
  color: #3d4553;
  font-size: 18px;
}

.report-cover .button-secondary {
  flex: 0 0 auto;
  min-width: 146px;
  white-space: nowrap;
}

.report-body {
  display: grid;
  gap: 28px;
  padding: 30px;
}

.report-section {
  max-width: 980px;
}

.report-section h4 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
}

.report-section p {
  color: #3d4553;
  font-size: 16px;
  margin-bottom: 12px;
}

.report-section p:last-child {
  margin-bottom: 0;
}

.report-lede {
  color: #252c38;
  font-size: 20px;
  line-height: 1.55;
}

.report-category-stack {
  display: grid;
  gap: 0;
  max-width: 980px;
  border-top: 1px solid var(--line);
}

.report-category {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.report-category h4 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.report-category p {
  color: #3d4553;
  font-size: 16px;
  margin-bottom: 10px;
}

.report-category p:last-child {
  margin-bottom: 0;
}

.market-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.market-split {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fcfbf9;
  padding: 16px;
}

.market-split h5 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.2;
}

.market-split p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.report-takeaway {
  max-width: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 22px;
}

.report-card .report-header {
  margin-bottom: 16px;
}

.report-card h3 {
  font-size: 24px;
  line-height: 1.18;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--black);
  color: white;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 760;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.toast.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-preview {
    width: 100%;
    max-width: 820px;
    min-width: 0;
    justify-self: center;
  }

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

  .competitor-row {
    grid-template-columns: 1fr;
    padding-right: 18px;
  }

  .competitor-main {
    grid-column: auto;
  }

  .competitor-insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    background: transparent;
  }

  .profile-fact-grid {
    grid-template-columns: 1fr;
  }

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

  .profile-fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-fact:last-child {
    border-bottom: 0;
  }

  .row-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    min-height: 64px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 10px;
  }

  .brand-logo {
    width: 104px;
  }

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

  .site-menu {
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 30;
    display: none;
    width: auto;
    height: calc(100vh - 65px);
    height: calc(100dvh - 65px);
    flex: 0 0 100%;
    align-items: stretch;
    justify-content: stretch;
    align-content: start;
    gap: 18px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
    overflow-y: auto;
    padding: 24px 20px 28px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-menu.is-open {
    display: grid;
  }

  .nav {
    width: 100%;
    display: grid;
    align-items: stretch;
    justify-items: stretch;
    gap: 4px;
    overflow-x: visible;
    padding-bottom: 0;
    font-size: 21px;
  }

  .nav a {
    display: block;
    width: 100%;
    border-radius: 6px;
    padding: 14px 4px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--surface-soft);
  }

  .header-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

  .header-actions .button,
  .header-actions .button-ghost {
    width: 100%;
    min-height: 50px;
    font-size: 17px;
  }

  .hero {
    padding: 34px 0 42px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .hero-grid {
    gap: 30px;
  }

  h1,
  .section-heading h2,
  .blog-hero h1,
  .article-hero h1,
  .profile-hero h1 {
    font-size: 46px;
    line-height: 1.04;
  }

  .hero-copy h1,
  .page-heading h1,
  .report-cover h3 {
    font-size: 46px;
  }

  .market-read-heading h2 {
    font-size: 34px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-copy p {
    font-size: 17px;
    margin-bottom: 22px;
  }

  .product-preview {
    grid-template-columns: 154px 1fr;
  }

  .preview-sidebar {
    padding: 16px 12px;
  }

  .preview-main {
    padding: 22px;
  }

  .metric-grid,
  .steps,
  .use-case-grid,
  .blog-grid,
  .blog-grid.single,
  .value-grid,
  .cta-band,
  .dashboard-grid.two,
  .dashboard-grid.main-side,
  .profile-grid,
  .profile-grid.two-columns,
  .profile-grid.three,
  .opportunity-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    display: block;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 18px 20px;
  }

  .side-nav {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .side-nav a {
    flex: 0 0 auto;
  }

  .dashboard-main {
    padding: 24px 20px 42px;
  }

  .profile-hero {
    grid-template-columns: auto 1fr;
  }

  .profile-hero .button-secondary {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .profile-price-stack {
    grid-template-columns: 1fr;
  }

  .report-cover {
    flex-direction: column;
  }

  .report-list-card {
    grid-template-columns: 1fr;
  }

  .report-list-meta {
    justify-items: start;
  }

  .market-split-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header-inner {
    padding: 8px 0;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 24px 0 30px;
  }

  .section {
    padding: 38px 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-kicker {
    margin-bottom: 8px;
  }

  .steps,
  .value-grid,
  .use-case-grid,
  .blog-grid,
  .blog-grid.single {
    gap: 14px;
  }

  .step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .step h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
  }

  .step p {
    grid-column: 2;
    margin: 0;
  }

  .dashboard-card,
  .opportunity-card,
  .article-card,
  .report-card,
  .profile-card,
  .decision-brief {
    padding: 18px;
  }

  .check-list {
    gap: 11px;
  }

  .brief-header {
    margin-bottom: 14px;
  }

  .brief-summary {
    padding: 14px;
  }

  .brief-stack {
    gap: 12px;
    margin: 14px 0;
  }

  .brief-plan {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-grid {
    gap: 18px;
  }

  h1,
  .hero-copy h1,
  .section-heading h2,
  .blog-hero h1,
  .article-hero h1,
  .page-heading h1,
  .profile-hero h1,
  .report-cover h3 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-copy h1 {
    margin-top: 14px;
  }

  #field-notes .section-heading h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  #field-notes .feature-article h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .market-read-heading h2 {
    font-size: 30px;
  }

  .section-heading.center.market-read-heading {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .market-read-heading h2 span {
    white-space: normal;
  }

  .market-read-heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .eyebrow {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 11px;
    line-height: 1.15;
  }

  .hero-copy p,
  .article-body {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    width: 100%;
    min-height: 42px;
  }

  .founder-proof {
    align-items: flex-start;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.35;
  }

  .product-preview {
    grid-template-columns: 1fr;
    box-shadow: 0 12px 32px rgba(35, 30, 22, 0.08);
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 16px;
  }

  .preview-header {
    gap: 10px;
  }

  .preview-header h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .preview-header p {
    font-size: 13px;
    margin-bottom: 0;
  }

  .badge {
    padding: 4px 8px;
    font-size: 11px;
  }

  .preview-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0 10px;
  }

  .preview-metric {
    padding: 9px;
  }

  .preview-metric span {
    font-size: 10px;
  }

  .preview-metric strong {
    font-size: 18px;
  }

  .preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 8px;
    font-size: 11px;
  }

  .preview-competitor-row {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 0;
  }

  .preview-competitor-row:nth-child(n+4) {
    display: none;
  }

  .preview-logo {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .preview-competitor-copy strong {
    font-size: 13px;
  }

  .preview-competitor-copy .tag {
    padding: 2px 6px;
    font-size: 9px;
  }

  .preview-competitor-copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .table-heading {
    display: none;
  }

  .opportunity-row {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .brief-plan {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .control-row {
    align-items: stretch;
    flex-direction: column;
  }

  .search-input,
  .select-input {
    width: 100%;
  }

  .competitor-row {
    grid-template-columns: 1fr;
  }

  .competitor-insights {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .competitor-field {
    padding: 3px 0 3px 16px;
  }

  .competitor-field + .competitor-field {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 4px;
  }

  .cta-band {
    padding: 20px;
  }

  .form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-row input,
  .form-row .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
