:root {
  --postly-blue: #061f86;
  --postly-blue-dark: #041255;
  --postly-ink: #08364b;
  --postly-line: #dfe6f1;
  --postly-bg: #f7f9fc;
  --postly-panel: #ffffff;
  --postly-teal: #08746d;
  --postly-gold: #c9a227;
  --postly-red: #d13a2f;
  --postly-muted: #617384;
  --white: #ffffff;
}

.hb-raw-main {
  gap: 38px;
}

.hb-raw-hero {
  min-height: 0;
}

.hb-raw-hero .hb-hero-copy h1 {
  max-width: 780px;
}

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

.hb-raw-kpis article {
  min-height: 178px;
}

.hb-raw-section {
  display: grid;
  gap: 18px;
}

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

.hb-raw-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(7, 23, 82, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(7, 23, 82, 0.08);
}

.hb-raw-card .hb-section-copy {
  max-width: none;
}

.hb-raw-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 82, 0.1);
  border-radius: 8px;
  background: #fff;
}

.hb-raw-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, auto);
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border-top: 1px solid rgba(7, 23, 82, 0.08);
}

.hb-raw-table div:first-child {
  border-top: 0;
}

.hb-raw-table-wide div {
  grid-template-columns: minmax(0, 1.25fr) minmax(120px, 0.35fr) minmax(180px, 0.6fr);
}

.hb-raw-table-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hb-raw-table-compact div:nth-child(2) {
  border-top: 0;
}

.hb-raw-table span,
.hb-raw-table i {
  min-width: 0;
  color: rgba(14, 41, 67, 0.72);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.35;
}

.hb-raw-table b {
  min-width: 0;
  color: #071752;
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.hb-raw-table-head {
  background: rgba(8, 132, 116, 0.08);
}

.hb-raw-table-head span,
.hb-raw-table-head b,
.hb-raw-table-head i {
  color: #071752;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hb-raw-table code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(7, 23, 82, 0.08);
  color: #071752;
  font-size: 0.92em;
  white-space: normal;
}

@media (max-width: 980px) {
  .hb-raw-kpis,
  .hb-raw-grid,
  .hb-raw-table-compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .hb-raw-kpis article {
    min-height: 0;
  }

  .hb-raw-table-compact div:nth-child(2) {
    border-top: 1px solid rgba(7, 23, 82, 0.08);
  }
}

@media (max-width: 680px) {
  .hb-raw-card {
    padding: 18px;
  }

  .hb-raw-table div,
  .hb-raw-table-wide div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 13px 14px;
  }

  .hb-raw-table b {
    font-size: 0.98rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--postly-ink);
  background: var(--postly-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(223, 230, 241, 0.52);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-link img {
  width: 124px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-action,
.primary-link,
.secondary-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.nav-links a {
  padding: 0 12px;
  color: #375266;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--postly-blue);
  background: #eef3fb;
}

.header-action {
  min-width: 88px;
  padding: 0 16px;
  color: var(--white);
  background: var(--postly-blue);
}

.header-action:hover,
.primary-link:hover {
  background: var(--postly-blue-dark);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-content: center;
  gap: 24px;
  overflow: hidden;
  padding: 132px 28px 80px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 18, 85, 0.9) 0%, rgba(4, 18, 85, 0.72) 38%, rgba(4, 18, 85, 0.2) 100%),
    url("/assets/hero-platform.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(4, 18, 85, 0) 0%, rgba(247, 249, 252, 0.96) 100%);
  pointer-events: none;
}

.hero-copy,
.hero-status {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(680px, 100%);
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--postly-teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7ce0d5;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 5.4rem;
  line-height: 0.95;
  font-weight: 900;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.28rem;
  line-height: 1.48;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.primary-link,
.secondary-link {
  min-width: 132px;
  padding: 0 18px;
}

.primary-link {
  color: var(--white);
  background: var(--postly-blue);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.secondary-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-status {
  width: min(360px, 100%);
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding-left: 16px;
  border-left: 3px solid #7ce0d5;
}

.hero-status span,
.hero-status small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero-status span {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 1.45rem;
}

.hero-status small {
  line-height: 1.4;
}

.metrics-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -44px auto 0;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  background: var(--postly-line);
  box-shadow: 0 24px 60px rgba(20, 57, 77, 0.14);
}

.metrics-strip div {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 20px;
  background: var(--postly-panel);
}

.metrics-strip span,
.feature-card span,
.workflow-list span {
  color: var(--postly-teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metrics-strip strong {
  color: var(--postly-blue-dark);
  font-size: 1rem;
  font-weight: 900;
}

.metrics-strip p,
.feature-card p,
.section-heading p,
.proof-copy p,
.workflow-list p,
.operations-grid p,
.site-footer p {
  margin: 0;
  color: #375266;
  line-height: 1.48;
  font-weight: 700;
}

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

.section-heading {
  width: min(760px, 100%);
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.compact-heading {
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  color: var(--postly-blue-dark);
  font-size: 2.48rem;
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: #102f45;
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 900;
}

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

.feature-card,
.operations-grid article,
.workflow-list article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  background: var(--postly-panel);
}

.feature-card {
  min-height: 214px;
  padding: 20px;
  box-shadow: 0 18px 44px rgba(20, 57, 77, 0.06);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: center;
}

.proof-copy {
  display: grid;
  gap: 14px;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
}

.signal-list div {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-top: 1px solid var(--postly-line);
}

.signal-list dt {
  color: var(--postly-blue-dark);
  font-weight: 900;
}

.signal-list dd {
  margin: 0;
  color: #375266;
  line-height: 1.44;
  font-weight: 720;
}

.product-figure {
  min-width: 0;
  margin: 0;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  overflow: hidden;
  background: var(--postly-panel);
  box-shadow: 0 18px 44px rgba(20, 57, 77, 0.1);
}

.product-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-figure figcaption {
  padding: 12px 14px;
  border-top: 1px solid #dce5ee;
  color: #4b6273;
  font-size: 0.84rem;
  font-weight: 800;
}

.mail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.wide-figure {
  height: 100%;
}

.wide-figure img {
  height: 100%;
  min-height: 440px;
}

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

.workflow-list article {
  padding: 18px;
}

.operations-section {
  padding-top: 96px;
}

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

.operations-grid article {
  min-height: 170px;
  padding: 22px;
}

.operations-grid article:nth-child(2) {
  border-top-color: rgba(201, 162, 39, 0.62);
}

.operations-grid article:nth-child(3) {
  border-top-color: rgba(209, 58, 47, 0.34);
}

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

.site-footer {
  width: min(1180px, calc(100% - 40px));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 92px auto 0;
  padding: 28px 0 38px;
  border-top: 1px solid var(--postly-line);
}

.site-footer img {
  width: 118px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  color: #375266;
  background: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--postly-blue);
  background: #eef3fb;
}

.home-body {
  min-height: 100vh;
  color: #102f45;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9f4 56%, #eef5f1 100%);
}

.home-header {
  width: min(1120px, calc(100% - 48px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 20px 0 14px;
  border-bottom: 1px solid rgba(209, 222, 218, 0.72);
}

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

.home-brand img {
  width: 118px;
  height: auto;
}

.home-header-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #4d6474;
}

.home-header-copy span,
.home-header-copy p {
  margin: 0;
  color: #4d6474;
  font-size: 0.88rem;
  font-weight: 800;
}

.home-header-copy span {
  color: var(--postly-teal);
  text-transform: uppercase;
}

.home-main {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 72px;
  align-items: start;
  margin: 0 auto;
  padding: 72px 0 92px;
}

.home-footer {
  width: min(1120px, calc(100% - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(209, 222, 218, 0.72);
}

.home-footer p {
  margin: 0;
  color: #526879;
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 760;
}

.home-footer p:first-child {
  color: var(--postly-blue-dark);
  font-weight: 900;
  white-space: nowrap;
}

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

.home-footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(209, 222, 218, 0.9);
  border-radius: 8px;
  color: #375266;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.home-footer-links a:hover {
  color: var(--postly-blue);
  background: #eef3fb;
}

.home-intro {
  display: grid;
  gap: 34px;
}

.home-hero-inner {
  width: min(660px, 100%);
  display: grid;
  gap: 16px;
}

.home-intro .eyebrow {
  color: var(--postly-teal);
}

.home-intro h1 {
  max-width: 700px;
  margin: 0;
  color: var(--postly-blue-dark);
  font-size: 4.65rem;
  line-height: 0.96;
  font-weight: 900;
}

.home-lede {
  max-width: 620px;
  margin: 0;
  color: #375266;
  font-size: 1.16rem;
  line-height: 1.56;
  font-weight: 740;
}

.home-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
}

.home-points div {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #dce6e0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.home-points span {
  color: var(--postly-teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.home-points strong {
  color: var(--postly-blue-dark);
  font-size: 1rem;
  font-weight: 900;
}

.home-points p {
  margin: 0;
  color: #526879;
  font-size: 0.9rem;
  line-height: 1.36;
  font-weight: 720;
}

.home-contact {
  align-self: start;
  display: grid;
  gap: 16px;
  width: 100%;
  padding-top: 10px;
}

.contact-copy {
  display: grid;
  gap: 8px;
  padding: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #375266;
  font-size: 0.98rem;
  line-height: 1.48;
  font-weight: 730;
}

.contact-copy h2 {
  margin: 0;
  color: var(--postly-blue-dark);
  font-size: 1.82rem;
  line-height: 1.08;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid #d7e1ea;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(20, 57, 77, 0.12);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--postly-blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd7e3;
  border-radius: 8px;
  color: #102f45;
  background: #fbfdff;
  font: inherit;
  font-weight: 700;
}

.contact-form input {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 12px 13px;
  line-height: 1.45;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7b8d9a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(8, 116, 109, 0.18);
  border-color: var(--postly-teal);
}

.contact-form .form-submit {
  min-height: 50px;
  border-radius: 8px;
  background: var(--postly-blue);
  box-shadow: none;
  font-size: 0.96rem;
}

.contact-form .form-submit:hover {
  background: var(--postly-blue-dark);
}

.field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-result {
  width: min(720px, calc(100% - 40px));
  min-height: 74svh;
  display: grid;
  align-content: center;
  gap: 18px;
  margin: 0 auto;
  padding-top: 88px;
}

.contact-result p {
  margin: 0;
  color: #375266;
  font-size: 1.04rem;
  line-height: 1.55;
  font-weight: 730;
}

.demographics-body {
  min-height: 100vh;
  background: #f4f7fb;
}

.demographics-main {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  gap: 24px;
  margin: 0 auto;
  padding: 112px 0 48px;
}

.demographics-upload {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: 22px;
  align-items: stretch;
}

.upload-copy,
.upload-form,
.upload-guardrails article,
.report-panel,
.report-stat,
.upload-error {
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(20, 57, 77, 0.07);
}

.upload-copy {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 14px;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 18, 85, 0.9), rgba(6, 31, 134, 0.62)),
    url("/assets/hero-platform.jpg") center / cover no-repeat;
}

.upload-copy .eyebrow {
  color: #7ce0d5;
}

.upload-copy h1 {
  font-size: 4.1rem;
}

.upload-lede {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 760;
}

.upload-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
}

.upload-form label {
  display: grid;
  gap: 8px;
}

.upload-form label span {
  color: var(--postly-blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.upload-form input[type="email"],
.upload-form input[type="file"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdbea;
  border-radius: 8px;
  color: #102f45;
  background: #fbfdff;
  font: inherit;
  font-weight: 760;
}

.upload-form input[type="email"] {
  padding: 0 13px;
}

.upload-form input[type="file"] {
  padding: 10px 12px;
}

.form-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.sample-link,
.secondary-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  color: #375266;
  background: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.sample-link:hover,
.secondary-action:hover {
  color: var(--postly-blue);
  background: #eef3fb;
}

.upload-guardrails,
.report-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.upload-guardrails article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.upload-guardrails span,
.report-stat span,
.summary-source {
  color: var(--postly-teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.upload-guardrails strong {
  color: var(--postly-blue-dark);
  font-size: 1rem;
  font-weight: 900;
}

.upload-guardrails p,
.demographics-preview-band p,
.report-subtitle,
.unlock-panel p,
.panel-heading p:not(.eyebrow),
.summary-copy p,
.summary-note,
.report-footnote p {
  margin: 0;
  color: #375266;
  line-height: 1.48;
  font-weight: 720;
}

.demographics-preview-band {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-top: 34px;
}

.demographics-preview-band > div {
  display: grid;
  gap: 12px;
}

.demographics-figure {
  box-shadow: none;
}

.demographics-message {
  min-height: 78vh;
  align-content: center;
}

.upload-error {
  max-width: 720px;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.upload-error h1 {
  color: var(--postly-blue-dark);
  font-size: 2.4rem;
}

.report-hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding-top: 14px;
}

.report-hero h1 {
  color: var(--postly-blue-dark);
  font-size: 3.2rem;
}

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

.report-stat {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.report-stat strong {
  color: var(--postly-blue-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.report-stat small {
  color: #617384;
  font-weight: 800;
  line-height: 1.35;
}

.report-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 14px;
  align-items: start;
}

.report-content,
.targeting-preview-grid {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.report-panel {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.executive-panel {
  gap: 16px;
}

.summary-copy {
  display: grid;
  gap: 12px;
}

.summary-facts {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--postly-line);
}

.summary-facts h3 {
  margin: 0;
  color: var(--postly-blue-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.summary-note {
  padding-top: 12px;
  border-top: 1px solid var(--postly-line);
  color: #617384;
  font-size: 0.94rem;
}

.teaser-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #102f45;
  font-weight: 780;
  line-height: 1.48;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
}

.preview-metrics div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  background: #f8fbff;
}

.preview-metrics span {
  color: #617384;
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-metrics strong {
  color: var(--postly-blue-dark);
  font-size: 1.05rem;
}

.unlock-panel {
  background: #fffdf5;
}

.sticky-report {
  position: sticky;
  top: 88px;
}

.unlock-checklist {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #eadfa8;
  border-radius: 8px;
  background: #fff9dd;
}

.unlock-checklist span {
  color: #102f45;
  font-weight: 850;
  line-height: 1.35;
}

.unlock-panel .primary-link,
.unlock-panel .secondary-action {
  width: 100%;
}

.panel-heading {
  display: grid;
  gap: 7px;
}

.lookalike-card {
  gap: 16px;
}

.demographic-breakdown {
  gap: 18px;
}

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

.breakdown-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  background: #f8fbff;
}

.breakdown-card h3 {
  color: var(--postly-blue-dark);
  font-size: 1rem;
}

.breakdown-card p {
  margin: 6px 0 0;
  color: #375266;
  font-size: 0.9rem;
  line-height: 1.42;
  font-weight: 720;
}

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

.breakdown-metric {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: var(--white);
}

.breakdown-metric span {
  color: #617384;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.breakdown-metric strong {
  color: var(--postly-blue-dark);
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 900;
}

.breakdown-metric small {
  color: #617384;
  line-height: 1.3;
  font-weight: 800;
}

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

.lookalike-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--postly-line);
  border-radius: 8px;
  background: #f8fbff;
}

.lookalike-row span {
  color: #102f45;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.lookalike-row strong {
  color: var(--postly-blue-dark);
  font-weight: 900;
  white-space: nowrap;
}

.lookalike-row small {
  color: #617384;
  font-weight: 800;
  white-space: nowrap;
}

.lookalike-row.locked span {
  color: #617384;
}

.lookalike-row.locked strong,
.lookalike-row.locked small {
  color: transparent;
  text-shadow: 0 0 9px rgba(8, 54, 75, 0.38);
  user-select: none;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.report-table th,
.report-table td {
  padding: 11px 8px;
  border-bottom: 1px solid var(--postly-line);
  text-align: left;
  color: #102f45;
  font-size: 0.9rem;
  font-weight: 820;
}

.report-table th {
  color: #617384;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.locked-row td {
  color: transparent;
  text-shadow: 0 0 9px rgba(8, 54, 75, 0.38);
  user-select: none;
}

.report-footnote {
  display: grid;
  gap: 8px;
  padding: 4px 0 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .home-header {
    width: min(760px, calc(100% - 48px));
  }

  .home-footer {
    width: min(760px, calc(100% - 48px));
  }

  .home-main {
    width: min(760px, calc(100% - 48px));
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 38px;
    padding: 42px 0 68px;
  }

  .home-intro {
    gap: 26px;
  }

  .home-intro h1 {
    max-width: 700px;
    font-size: 3.7rem;
  }

  .home-contact {
    max-width: 540px;
    padding-top: 0;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .metrics-strip,
  .feature-grid,
  .operations-grid,
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-section,
  .mail-layout,
  .demographics-upload,
  .demographics-preview-band,
  .report-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .sticky-report {
    position: static;
  }

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

  .wide-figure img {
    min-height: auto;
  }
}

.hb-body {
  min-height: 100vh;
  color: #102f45;
  background: #f5f8fb;
}

.hb-header,
.hb-main,
.hb-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hb-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #dce5ee;
}

.hb-header-brand,
.hb-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hb-header-brand img {
  width: 112px;
}

.hb-header-brand span,
.hb-header-meta span {
  color: #536b7c;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hb-header-meta span:first-child {
  color: var(--postly-teal);
}

.hb-main {
  display: grid;
  gap: 18px;
  padding: 34px 0 72px;
}

.hb-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 26px;
  align-items: stretch;
}

.hb-hero-copy,
.hb-hero-panel,
.hb-panel,
.hb-metrics article,
.hb-track,
.hb-playbook-grid article,
.hb-data-note {
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(20, 57, 77, 0.08);
}

.hb-hero-copy {
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 18px;
  overflow: hidden;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 246, 0.96)),
    repeating-linear-gradient(90deg, rgba(8, 116, 109, 0.08) 0 1px, transparent 1px 54px);
}

.hb-hero-copy h1 {
  max-width: 780px;
  color: var(--postly-blue-dark);
  font-size: 4.7rem;
  line-height: 0.96;
}

.hb-hero-copy p:not(.eyebrow),
.hb-section-copy p:not(.eyebrow),
.hb-panel-heading p,
.hb-track p,
.hb-playbook-grid p,
.hb-data-note p,
.hb-hero-panel p {
  margin: 0;
  color: #3d5566;
  line-height: 1.52;
  font-weight: 740;
}

.hb-hero-panel {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 30px;
  background: #061f86;
}

.hb-hero-panel span,
.hb-hero-panel p,
.hb-hero-panel small {
  color: rgba(255, 255, 255, 0.82);
}

.hb-hero-panel > span,
.hb-track span,
.hb-playbook-grid span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hb-hero-panel strong {
  color: #ffffff;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 900;
}

.hb-mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 14px;
}

.hb-mini-metrics div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hb-mini-metrics b {
  color: #ffffff;
  font-size: 1.35rem;
}

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

.hb-metrics article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 184px;
  padding: 20px;
}

.hb-metrics span,
.hb-rank-list span,
.hb-region-table span,
.hb-region-table i,
.hb-owner-grid span,
.hb-stack-row span {
  color: #536b7c;
  font-size: 0.78rem;
  font-weight: 900;
}

.hb-metrics span,
.hb-rank-list span,
.hb-region-table i,
.hb-stack-row span {
  text-transform: uppercase;
}

.hb-metrics strong {
  color: var(--postly-blue-dark);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 900;
}

.hb-metrics p {
  margin: 0;
  color: #526879;
  line-height: 1.42;
  font-weight: 720;
}

.hb-section {
  display: grid;
  gap: 18px;
  padding-top: 54px;
}

.hb-section-copy {
  max-width: 820px;
  display: grid;
  gap: 10px;
}

.hb-section-copy h2,
.hb-panel h2 {
  color: var(--postly-blue-dark);
  font-size: 2.35rem;
}

.hb-two-col {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  align-items: start;
}

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

.hb-track {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.hb-track-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--postly-blue);
  font-weight: 900;
}

.hb-track-rental .hb-track-icon {
  background: var(--postly-teal);
}

.hb-track h3,
.hb-playbook-grid h3 {
  color: #102f45;
  font-size: 1.1rem;
}

.hb-track-stat {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #f8fbff;
}

.hb-track-stat strong {
  color: var(--postly-blue-dark);
  font-size: 1.85rem;
}

.hb-card-note {
  padding-top: 12px;
  border-top: 1px solid #dce5ee;
}

.hb-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 14px;
}

.hb-panel {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.hb-panel-heading {
  display: grid;
  gap: 9px;
}

.hb-stack {
  display: grid;
  gap: 12px;
}

.hb-stack-row {
  display: grid;
  grid-template-columns: minmax(132px, 0.38fr) minmax(0, 1fr) 66px;
  gap: 12px;
  align-items: center;
}

.hb-bar {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef5;
}

.hb-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--postly-teal);
}

.hb-w04 { width: 4%; }
.hb-w15 { width: 15%; }
.hb-w33 { width: 33%; }
.hb-w49 { width: 49%; }

.hb-stack-row strong {
  color: var(--postly-blue-dark);
  text-align: right;
}

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

.hb-rank-list div,
.hb-region-table div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #dce5ee;
}

.hb-rank-list b,
.hb-region-table b,
.hb-owner-grid strong {
  color: var(--postly-blue-dark);
  font-size: 1.22rem;
  font-weight: 900;
}

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

.hb-owner-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #f8fbff;
}

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

.hb-rule-list article {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid #dce5ee;
}

.hb-rule-list span {
  color: var(--postly-blue-dark);
  font-weight: 900;
}

.hb-rule-list p {
  margin: 0;
  color: #526879;
  line-height: 1.42;
  font-weight: 720;
}

.hb-region-table {
  border: 1px solid #dce5ee;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(20, 57, 77, 0.08);
}

.hb-region-table div {
  grid-template-columns: minmax(0, 1fr) 100px minmax(170px, 0.36fr);
  padding: 16px 18px;
  border-top: 1px solid #dce5ee;
}

.hb-region-table div:first-child {
  border-top: 0;
}

.hb-region-table i {
  font-style: normal;
  text-align: right;
}

.hb-playbook-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hb-playbook-grid article {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.hb-playbook-grid span {
  color: var(--postly-teal);
}

.hb-data-note {
  padding: 20px;
  box-shadow: none;
}

.hb-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 34px;
  border-top: 1px solid #dce5ee;
}

.hb-footer p {
  margin: 0;
  color: #536b7c;
  font-weight: 800;
}

.hb-footer p:first-child {
  color: var(--postly-blue-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hb-hero,
  .hb-two-col,
  .hb-split,
  .hb-playbook-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hb-hero {
    min-height: 0;
  }

  .hb-hero-copy h1 {
    font-size: 3.65rem;
  }
}

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

  .hb-header {
    min-height: 68px;
  }

  .hb-header-meta {
    display: none;
  }

  .hb-header-brand img {
    width: 104px;
  }

  .hb-main {
    padding-top: 20px;
    gap: 12px;
  }

  .hb-hero-copy,
  .hb-hero-panel,
  .hb-panel,
  .hb-metrics article,
  .hb-track,
  .hb-playbook-grid article {
    padding: 18px;
  }

  .hb-hero-copy h1 {
    font-size: 2.55rem;
  }

  .hb-hero-panel strong {
    font-size: 3.6rem;
  }

  .hb-metrics,
  .hb-track-grid,
  .hb-owner-grid,
  .hb-playbook-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hb-section {
    padding-top: 34px;
  }

  .hb-section-copy h2,
  .hb-panel h2 {
    font-size: 1.72rem;
  }

  .hb-stack-row {
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .hb-stack-row span {
    grid-column: 1 / -1;
  }

  .hb-region-table div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .hb-region-table i {
    text-align: left;
  }

  .hb-footer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand-link img {
    width: 108px;
  }

  .home-header {
    width: min(100% - 32px, 1180px);
    min-height: 64px;
    padding: 16px 0 8px;
  }

  .home-brand img {
    width: 106px;
  }

  .home-header-copy span {
    display: none;
  }

  .header-action {
    min-width: 76px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 86svh;
    padding: 112px 18px 72px;
    background-position: 62% center;
  }

  .home-intro {
    gap: 20px;
  }

  .home-intro h1 {
    font-size: 2.58rem;
    line-height: 1;
  }

  .home-lede {
    font-size: 1rem;
  }

  .home-points {
    display: none;
  }

  .hero-copy {
    gap: 14px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .metrics-strip,
  .feature-grid,
  .operations-grid,
  .visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .metrics-strip,
  .section,
  .home-main,
  .home-footer,
  .site-footer,
  .demographics-main {
    width: min(100% - 24px, 1180px);
  }

  .home-footer {
    display: grid;
    gap: 6px;
    padding: 20px 0 28px;
  }

  .home-main {
    gap: 30px;
    padding: 28px 0 48px;
  }

  .home-contact {
    gap: 14px;
  }

  .contact-copy h2 {
    font-size: 1.46rem;
  }

  .contact-form {
    gap: 12px;
    padding: 16px;
  }

  .contact-form input {
    min-height: 44px;
  }

  .contact-form textarea {
    height: 108px;
    min-height: 108px;
  }

  .contact-form .form-submit {
    min-height: 48px;
  }

  .metrics-strip {
    margin-top: -26px;
  }

  .section {
    padding-top: 64px;
  }

  h2 {
    font-size: 1.64rem;
  }

  .feature-card {
    min-height: 0;
  }

  .product-figure figcaption {
    font-size: 0.78rem;
  }

  .site-footer {
    display: grid;
  }

  .demographics-main {
    padding-top: 88px;
  }

  .upload-copy {
    min-height: 340px;
    padding: 22px;
  }

  .upload-copy h1,
  .report-hero h1 {
    font-size: 2.55rem;
  }

  .upload-form {
    padding: 20px;
  }

  .report-hero {
    display: grid;
    align-items: start;
  }

  .report-stats,
  .upload-guardrails,
  .preview-metrics,
  .breakdown-grid,
  .breakdown-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .lookalike-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .lookalike-row strong,
  .lookalike-row small {
    white-space: normal;
  }

  .footer-links {
    justify-content: stretch;
  }

  .footer-links a {
    width: 100%;
  }
}
