:root {
  --bg: #ffffff;
  --bg-strong: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #121212;
  --muted: #5e5a56;
  --line: rgba(18, 18, 18, 0.1);
  --shadow: 0 18px 40px rgba(18, 18, 18, 0.04);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  display: none;
}

.page-glow-right {
  display: none;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-logo {
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: min(11.25rem, 42vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.nav-link {
  color: rgba(18, 18, 18, 0.8);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.35rem 0;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  transform: translateY(-1px);
  color: var(--ink);
}

.nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-link[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: rgba(138, 106, 59, 0.85);
}

.section {
  padding: 4.5rem 0;
}

.hero {
  min-height: calc(100vh - 5rem);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 1.25rem;
}

.dual-hero {
  min-height: calc(100vh - 8rem);
}

.dual-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.1rem);
}

.guest-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.1rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.73rem;
  font-weight: 800;
  color: #8a6a3b;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

h1 {
  max-width: none;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.35rem, 9vw, 6.6rem);
  font-weight: 800;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.lede,
.section-heading p,
.benefit-card p,
.waitlist-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.proof-row {
  width: min(100%, 1020px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.proof-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proof-stat,
.proof-title,
.proof-copy {
  margin: 0;
}

.proof-stat {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
}

.proof-title {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.proof-copy {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.audience-grid,
.feature-grid {
  width: min(100%, 1020px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.audience-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  text-align: left;
}

.audience-card .button {
  margin-top: 1rem;
}

.card-eyebrow {
  margin: 0 0 0.7rem;
  color: #8a6a3b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audience-card h2,
.feature-card h3 {
  max-width: none;
}

.audience-card h2 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1;
  text-wrap: balance;
}

.audience-card p,
.feature-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-section .section-heading {
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  padding-top: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.16);
}

.button-secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(18, 18, 18, 0.1);
}

.button-small {
  min-height: 2.9rem;
  padding: 0 1.15rem;
  font-size: 0.95rem;
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.14);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

h2 {
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
}

.section-heading p:last-child {
  max-width: 38rem;
  margin-top: 1rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.benefit-card,
.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.waitlist {
  padding-bottom: 6rem;
}

.section-anchor {
  position: relative;
  top: -1.25rem;
}

.waitlist-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.75rem;
  background: var(--surface-strong);
}

.waitlist-copy h2 {
  max-width: 10ch;
  margin-top: 0.2rem;
}

.waitlist-form {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.waitlist-form input[type="email"] {
  width: 100%;
  min-height: 3.5rem;
  padding: 0 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 18, 18, 0.16);
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.waitlist-form input[type="email"]:focus {
  outline: 2px solid rgba(138, 106, 59, 0.32);
  outline-offset: 2px;
}

.form-note,
.site-footer {
  font-size: 0.94rem;
}

.hidden-field,
.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;
}

.site-footer {
  padding: 0 0 2rem;
  color: rgba(18, 18, 18, 0.48);
  text-align: center;
}

.research-main {
  padding-bottom: 3rem;
}

.research-hero {
  min-height: auto;
  align-content: start;
  justify-items: start;
  text-align: left;
  gap: 1rem;
  padding-top: 3.25rem;
  padding-bottom: 2.75rem;
}

.research-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5rem);
}

.research-hero .lede {
  max-width: 47rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.research-meta {
  max-width: 45rem;
  margin: 0;
  color: rgba(18, 18, 18, 0.62);
  font-size: 0.96rem;
  line-height: 1.65;
}

.stat-grid,
.insight-grid,
.analysis-grid,
.source-grid,
.download-grid {
  width: 100%;
  display: grid;
  gap: 1rem;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.5rem;
}

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

.analysis-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

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

.matrix-grid,
.coverage-grid {
  width: 100%;
  display: grid;
  gap: 1rem;
}

.matrix-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.coverage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.stat-card,
.insight-card,
.analysis-card,
.source-card,
.download-card,
.table-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.45rem;
  background:
    linear-gradient(180deg, rgba(138, 106, 59, 0.08), rgba(255, 255, 255, 0)),
    var(--surface);
}

.stat-value,
.table-metric {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label,
.table-label {
  margin: 0.6rem 0 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.insight-card,
.analysis-card,
.source-card,
.download-card {
  padding: 1.5rem;
}

.matrix-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.matrix-card-strong {
  background:
    linear-gradient(180deg, rgba(138, 106, 59, 0.16), rgba(255, 255, 255, 0.24)),
    var(--surface);
}

.matrix-card-owner {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.06), rgba(255, 255, 255, 0.3)),
    var(--surface);
}

.matrix-card-guest {
  background:
    linear-gradient(180deg, rgba(138, 106, 59, 0.1), rgba(18, 18, 18, 0.02)),
    var(--surface);
}

.matrix-card-mixed {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.03), rgba(138, 106, 59, 0.08)),
    var(--surface);
}

.insight-card h3,
.analysis-card h3,
.source-card h3,
.download-card h3 {
  max-width: none;
  margin-bottom: 0.7rem;
}

.insight-card p:last-child,
.analysis-card p:last-child,
.source-card p:last-child,
.download-card p:last-child {
  margin-bottom: 0;
}

.matrix-card h3 {
  max-width: none;
  margin-bottom: 0.7rem;
}

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

.matrix-summary {
  margin-top: 1rem;
}

.chart-header {
  margin-bottom: 1.1rem;
}

.bar-group {
  display: grid;
  gap: 0.8rem;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 10rem) minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.bar-label,
.bar-rating {
  font-size: 0.9rem;
  font-weight: 700;
}

.bar-track {
  position: relative;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.09);
  overflow: hidden;
}

.bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  border-radius: inherit;
  background: linear-gradient(90deg, #8a6a3b 0%, #121212 100%);
}

.table-stack {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.35rem;
}

.table-header {
  padding: 1.4rem 1.4rem 0;
}

.table-header h3 {
  max-width: none;
}

.table-note {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  color: var(--muted);
  line-height: 1.65;
}

.table-scroller {
  overflow-x: auto;
}

.research-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.research-table thead th {
  background: rgba(138, 106, 59, 0.08);
  color: rgba(18, 18, 18, 0.8);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-table th,
.research-table td {
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.58;
}

.research-table thead th {
  border-top: 0;
}

.research-table tbody tr:nth-child(even) {
  background: rgba(18, 18, 18, 0.015);
}

.research-table a {
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(18, 18, 18, 0.06);
}

.pill-strong {
  background: rgba(138, 106, 59, 0.14);
  color: #6c5028;
}

.pill-medium {
  background: rgba(18, 18, 18, 0.08);
  color: rgba(18, 18, 18, 0.72);
}

.pill-light {
  background: rgba(18, 18, 18, 0.04);
  color: rgba(18, 18, 18, 0.58);
}

.compact-list {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.62;
}

.compact-list li + li {
  margin-top: 0.45rem;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.05rem;
}

.opportunity-card {
  margin-top: 1.35rem;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.02), rgba(138, 106, 59, 0.08)),
    var(--surface);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .audience-grid,
  .feature-grid,
  .proof-row,
  .benefit-grid,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

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

  .matrix-grid,
  .insight-grid,
  .source-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading,
  .section-heading p:last-child,
  .waitlist-copy h2,
  h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .site-header {
    padding-top: 1.25rem;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .brand-logo img {
    margin-left: -0.4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    justify-items: center;
  }

  .eyebrow,
  h1,
  .lede,
  .proof-row,
  .hero-actions {
    width: min(100%, 22rem);
    margin-left: auto;
    margin-right: auto;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0.9rem;
    row-gap: 0.85rem;
  }

  .audience-grid,
  .feature-grid,
  .proof-row {
    width: min(100%, 22rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .research-hero {
    justify-items: center;
    text-align: center;
  }

  .research-meta,
  .stat-grid {
    width: min(100%, 22rem);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.9rem, 14vw, 3.95rem);
    letter-spacing: -0.06em;
  }

  .guest-hero h1 {
    font-size: clamp(2.1rem, 9.8vw, 2.7rem);
    line-height: 0.96;
  }

  .guest-hero .hero-line {
    white-space: normal;
  }

  .dual-hero .eyebrow,
  .dual-hero h1,
  .dual-hero .lede,
  .dual-hero .audience-grid {
    width: min(100%, 20.75rem);
  }

  .dual-hero h1 {
    font-size: clamp(1.95rem, 9.4vw, 2.55rem);
    letter-spacing: -0.05em;
    line-height: 0.95;
  }

  .dual-hero .hero-line {
    white-space: normal;
  }

  .dual-hero .lede {
    font-size: 1rem;
  }

  .audience-card {
    padding: 1.35rem;
  }

  .audience-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .feature-card h3 {
    font-size: clamp(1.3rem, 6vw, 1.55rem);
  }

  .brand-logo img {
    width: min(11rem, 56vw);
  }

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

  .bar-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .bar-rating {
    justify-self: start;
  }
}
