:root {
  --ink: #0d2b31;
  --ink-2: #143d45;
  --control: #3f7e6a;
  --control-2: #6db195;
  --paper: #f5f1e8;
  --paper-2: #e7decd;
  --surface: #fffdf7;
  --surface-muted: #ede7da;
  --text: #26383d;
  --muted: #687571;
  --line: rgba(13, 43, 49, 0.13);
  --gold: #d7b46a;
  --amber: #bd8131;
  --red: #a44738;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(13, 43, 49, 0.16);
  --shadow-soft: 0 14px 38px rgba(13, 43, 49, 0.09);
  --radius: 7px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(13, 43, 49, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 43, 49, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
  font-family: "IBM Plex Sans", Avenir, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: fixed;
  inset: 16px auto auto 50%;
  width: min(var(--container), calc(100% - 32px));
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 241, 232, 0.28);
  border-radius: 14px;
  color: var(--white);
  background: rgba(13, 43, 49, 0.34);
  box-shadow: 0 18px 54px rgba(6, 24, 29, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  color: var(--ink);
  border-color: rgba(13, 43, 49, 0.1);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 14px 42px rgba(13, 43, 49, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 214px;
  padding: 5px 8px;
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 24px rgba(6, 24, 29, 0.16);
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav a {
  padding: 9px 9px;
  border-radius: 9px;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.site-header[data-scrolled="true"] .nav {
  border-color: rgba(13, 43, 49, 0.08);
  background: rgba(13, 43, 49, 0.04);
}

.site-header[data-scrolled="true"] .nav a:hover {
  background: rgba(13, 43, 49, 0.07);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 740;
  letter-spacing: 0;
}

.header-cta {
  padding: 10px 15px;
  color: var(--ink);
  background: var(--gold);
}

.site-header[data-scrolled="true"] .header-cta {
  color: var(--white);
  background: var(--control);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 118px 0 54px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 24, 29, 0.92) 0%, rgba(13, 43, 49, 0.78) 42%, rgba(13, 43, 49, 0.14) 76%),
    linear-gradient(0deg, rgba(6, 24, 29, 0.64), rgba(6, 24, 29, 0.08) 48%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: max(18px, calc((100vw - var(--container)) / 2));
  padding-top: 12px;
}

.eyebrow,
.section-label,
.package-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-label {
  color: var(--control);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: "Sora", Avenir, "Segoe UI", sans-serif;
  font-size: 5.45rem;
  font-weight: 760;
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-family: "Sora", Avenir, "Segoe UI", sans-serif;
  font-size: 3.55rem;
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-family: "Sora", Avenir, "Segoe UI", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.22;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-conversion {
  width: min(620px, 100%);
  margin: 30px 0 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(63, 126, 106, 0.22), rgba(255, 255, 255, 0.07)),
    rgba(6, 24, 29, 0.28);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero-conversion p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 14px;
}

.button {
  padding: 13px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--control);
  box-shadow: 0 18px 40px rgba(63, 126, 106, 0.28);
}

.button.primary:hover {
  transform: translateY(-1px);
  background: #285f51;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.button.ghost-dark {
  color: var(--ink);
  border-color: rgba(16, 47, 54, 0.22);
  background: rgba(255, 255, 255, 0.54);
}

.button.wide {
  width: 100%;
}

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

.trust-row span {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 9px 10px 9px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  line-height: 1.26;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.12);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: 560px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 5vw, 76px) 0 clamp(18px, 5vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.value-strip {
  width: min(var(--container), calc(100% - 48px));
  margin: -40px auto 78px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) repeat(3, minmax(190px, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 43, 49, 0.14);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 28px 76px rgba(13, 43, 49, 0.18);
}

.value-strip > * {
  min-height: 178px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(246, 242, 233, 0.92)),
    var(--surface);
}

.value-intro {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 12% 14%, rgba(215, 180, 106, 0.24), transparent 38%),
    linear-gradient(160deg, #102f36, #0b252b);
}

.value-intro span,
.value-strip article span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-intro strong {
  margin-top: 12px;
  color: var(--white);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.72rem;
  line-height: 1.06;
}

.value-strip article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 11px;
  border-left: 1px solid rgba(13, 43, 49, 0.1);
}

.value-strip article h2 {
  margin: 0;
  max-width: 260px;
  font-size: 1.16rem;
  line-height: 1.18;
}

.value-strip article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.value-strip article::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 24px;
  width: 42px;
  height: 3px;
  background: var(--gold);
}

.section {
  padding: 96px 24px;
}

.section > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.intro {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(13, 43, 49, 0.08);
  background:
    linear-gradient(135deg, rgba(13, 43, 49, 0.055), transparent 38%),
    linear-gradient(120deg, rgba(255, 253, 247, 0.98), rgba(238, 242, 237, 0.94));
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 43, 49, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 43, 49, 0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 72%);
  pointer-events: none;
}

.intro > * {
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: 86px;
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 126px;
}

.intro-copy h2 {
  max-width: 520px;
}

.intro-copy > span {
  display: inline-flex;
  margin-top: 26px;
  padding: 9px 12px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.72);
  font-weight: 820;
}

.intro p,
.section-heading p,
.report-grid p,
.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.principles {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 28px;
}

.principles::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(63, 126, 106, 0.18), rgba(63, 126, 106, 0.58), rgba(63, 126, 106, 0.18));
}

.principles article,
.report-items article,
.faq-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: var(--shadow-soft);
}

.principles article {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 20px;
  align-items: start;
  margin-bottom: 14px;
}

.principles article h3,
.principles article p {
  grid-column: 2;
}

.principles article .code {
  grid-row: 1 / span 2;
}

.principles article .code {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(63, 126, 106, 0.22);
  border-radius: 50%;
  color: var(--control);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(13, 43, 49, 0.08);
}

.principles article::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(215, 180, 106, 0.14);
}

.visual-feature {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 0 0 96px;
}

.feature-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 24, 29, 0.52));
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.feature-image-note {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 36px);
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(13, 43, 49, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.feature-image-note span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-image-note strong {
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
}

.feature-copy {
  position: relative;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(247, 242, 232, 0.84)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-copy h2 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: 2.72rem;
  line-height: 1.04;
}

.feature-copy::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(215, 180, 106, 0.8);
  border-radius: 50%;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.42;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--control);
  box-shadow: 0 0 0 5px rgba(63, 126, 106, 0.1);
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.decision {
  padding-top: 0;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
}

.decision-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid rgba(63, 126, 106, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(246, 242, 233, 0.82)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.decision-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 2px;
  background: var(--gold);
  opacity: 0.82;
}

.decision-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--control);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.decision-grid h3 {
  max-width: 230px;
  font-size: 1.24rem;
}

.decision-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.decision-output {
  display: inline-flex;
  align-self: end;
  width: fit-content;
  margin-top: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(215, 180, 106, 0.22);
  font-size: 0.82rem;
  font-weight: 820;
}

.code {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--control);
  font-weight: 820;
}

.scope {
  padding: 0 24px;
}

.scope-panel {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(340px, 1.14fr);
  gap: 58px;
  padding: 56px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 96% 12%, rgba(215, 180, 106, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(215, 180, 106, 0.12), transparent 42%),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.scope-panel h2 {
  color: var(--white);
  font-size: 2.8rem;
}

.scope-copy p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.scope-content {
  display: grid;
  gap: 18px;
  align-content: center;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  position: relative;
  min-height: 118px;
  padding: 18px 18px 18px 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.42;
}

.scope-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(215, 180, 106, 0.13);
}

.scope-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1rem;
  line-height: 1.16;
}

.scope-list span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.scope-note {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.92rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 34px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.price-card.muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 241, 232, 0.9)),
    var(--surface);
}

.price-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(215, 180, 106, 0.18), transparent 34%),
    linear-gradient(160deg, #102f36, #0b2228);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(16, 47, 54, 0.28);
}

.price-card.featured h3,
.price-card.featured .package-kicker {
  color: var(--white);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 820;
}

.package-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(56, 132, 108, 0.2);
  border-radius: 999px;
  color: var(--control);
  background: rgba(56, 132, 108, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .package-badge {
  border-color: rgba(215, 180, 106, 0.36);
  color: var(--gold);
  background: rgba(215, 180, 106, 0.12);
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 2.05rem;
}

.price-card .card-top p {
  max-width: 470px;
}

.package-list {
  display: grid;
  gap: 10px;
  min-height: 276px;
  margin: 28px 0 16px;
  padding: 0;
  list-style: none;
}

.price-card .package-list li {
  position: relative;
  padding-left: 22px;
}

.price-card .package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--control);
}

.price-card.featured li::before {
  background: var(--gold);
}

.package-note {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(56, 132, 108, 0.08);
  font-size: 0.92rem;
  line-height: 1.45;
}

.featured .package-note {
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

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

.price-table div {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.featured .price-table div {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
}

.price-table span,
.price-table em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.featured .price-table span,
.featured .price-table em {
  color: rgba(255, 255, 255, 0.7);
}

.price-table strong {
  color: var(--ink);
  font-size: 1.45rem;
}

.featured .price-table strong {
  color: var(--white);
}

.launch-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(215, 180, 106, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(215, 180, 106, 0.22), rgba(255, 250, 240, 0.88));
  color: #604315;
}

.launch-note span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 850;
  white-space: nowrap;
}

.launch-note p {
  margin: 0;
  color: #604315;
}

.portfolio-offer {
  position: relative;
  overflow: hidden;
  padding: 92px 24px;
  background:
    linear-gradient(90deg, rgba(215, 180, 106, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 180, 106, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(215, 180, 106, 0.18), transparent 32%),
    linear-gradient(135deg, #102f36, #0b2228);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.portfolio-panel {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.portfolio-panel h2,
.portfolio-panel h3 {
  color: var(--white);
}

.portfolio-head {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 360px);
  gap: 48px;
  align-items: end;
}

.portfolio-head p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.portfolio-summary {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(215, 180, 106, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.portfolio-summary span,
.tier-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-summary strong {
  color: var(--white);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.portfolio-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

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

.portfolio-steps article,
.portfolio-pricing div {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(8px);
}

.portfolio-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(215, 180, 106, 0.12);
  font-weight: 850;
}

.portfolio-steps h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.portfolio-steps p,
.portfolio-pricing p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-pricing strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--gold);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.portfolio-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.portfolio-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-top: 6px;
}

.portfolio-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1.15fr);
  gap: 74px;
  align-items: center;
}

.report-copy {
  display: grid;
  align-content: center;
}

.report-benefits {
  display: grid;
  gap: 10px;
  max-width: 580px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.report-benefits li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(13, 43, 49, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.74);
  color: var(--ink);
  font-weight: 680;
}

.report-benefits li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--control);
  box-shadow: 0 0 0 5px rgba(56, 132, 108, 0.1);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--control);
  font-weight: 820;
}

.report-actions,
.report-cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.report-preview {
  min-height: 460px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(245, 241, 232, 0.9)),
    var(--white);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(13, 43, 49, 0.08);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 8px 16px;
  border-bottom: 1px solid rgba(16, 47, 54, 0.1);
  color: var(--ink);
}

.preview-header span,
.preview-header em,
.preview-insights span,
.preview-footer span {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preview-header strong {
  display: block;
  margin-top: 2px;
  font-size: 1.12rem;
}

.preview-metrics {
  display: grid;
  grid-template-columns: 0.8fr 0.75fr 1fr;
  gap: 10px;
  margin: 16px 0 0;
}

.preview-metrics div {
  padding: 14px;
  border: 1px solid rgba(13, 43, 49, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.preview-metrics span,
.preview-metrics em {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-metrics strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
}

.preview-visual {
  position: relative;
  height: 228px;
  margin: 18px 0 12px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(13, 43, 49, 0.14);
}

.preview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 43, 49, 0.04), rgba(13, 43, 49, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  pointer-events: none;
}

.preview-tag {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(13, 43, 49, 0.76);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 820;
}

.status-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  text-align: center;
}

.ok {
  color: #1f5e43;
  background: #dceee6;
}

.watch {
  color: #78510d;
  background: #f5e7c8;
}

.check {
  color: #7b2f25;
  background: #efd7d2;
}

.pin {
  position: absolute;
  z-index: 3;
  min-width: 42px;
  height: 30px;
  padding: 0 9px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--white);
  background: var(--amber);
  box-shadow: 0 14px 32px rgba(13, 43, 49, 0.28);
  font-size: 0.78rem;
  font-weight: 850;
}

.p1 {
  top: 34%;
  left: 33%;
}

.p2 {
  top: 58%;
  left: 55%;
  background: var(--control);
}

.p3 {
  top: 40%;
  right: 14%;
  background: var(--red);
}

.preview-insights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.preview-insights article {
  padding: 14px;
  border: 1px solid rgba(13, 43, 49, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
}

.preview-insights strong {
  display: block;
  margin: 5px 0 3px;
  color: var(--ink);
  font-size: 0.94rem;
}

.preview-insights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.preview-footer span {
  color: rgba(255, 255, 255, 0.62);
}

.preview-footer strong {
  color: var(--gold);
  font-size: 0.92rem;
}

.thermal-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.8fr);
  gap: 46px;
  align-items: center;
  margin-top: 64px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.thermal-band > img,
.thermal-band .thermal-compare {
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: var(--radius);
}

.thermal-band > img {
  object-fit: cover;
}

.thermal-band h3 {
  color: var(--white);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 2.35rem;
  font-weight: 720;
}

.thermal-band p {
  color: rgba(255, 255, 255, 0.76);
}

.thermal-keypoints {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.thermal-keypoints article {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.thermal-keypoints span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.thermal-keypoints strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.25;
}

.thermal-compare {
  --position: 50%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #102f36;
  isolation: isolate;
}

.thermal-compare-large {
  aspect-ratio: 16 / 9;
  min-height: 440px;
}

.thermal-compare-small {
  aspect-ratio: 4 / 3;
}

.thermal-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-base {
  z-index: 1;
}

.compare-overlay {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(16, 47, 54, 0.18), 0 18px 45px rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 47, 54, 0.84);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.compare-divider span::before,
.compare-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.compare-divider span::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare-divider span::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.thermal-compare input {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(13, 43, 49, 0.76);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-label-left {
  left: 16px;
}

.compare-label-right {
  right: 16px;
}

.report-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.report-items article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 188px;
}

.report-items article > span {
  width: fit-content;
  margin-bottom: 10px;
  color: var(--control);
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 850;
}

.report-items h3 {
  margin: 0;
  font-size: 1.14rem;
}

.report-items p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.method {
  position: relative;
  overflow: hidden;
  padding: 104px 24px;
  background:
    radial-gradient(circle at 8% 16%, rgba(56, 132, 108, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(13, 43, 49, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 43, 49, 0.04) 1px, transparent 1px),
    #ded7c8;
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.method-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.method-head {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 390px);
  gap: 58px;
  align-items: end;
  margin-bottom: 42px;
}

.method-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.method-summary {
  padding: 24px;
  border: 1px solid rgba(13, 43, 49, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: var(--shadow-soft);
}

.method-summary span {
  color: var(--control);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-summary strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.28rem;
  line-height: 1.18;
}

.method-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 132, 108, 0.08), rgba(56, 132, 108, 0.45), rgba(56, 132, 108, 0.08));
}

.steps li {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(13, 43, 49, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.76);
  box-shadow: var(--shadow-soft);
}

.steps span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border: 1px solid rgba(56, 132, 108, 0.18);
  border-radius: 50%;
  color: var(--control);
  background: #f5f1e8;
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 850;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.steps p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.steps strong {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 43, 49, 0.1);
  color: var(--control);
  font-size: 0.86rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.faq-grid article {
  min-height: 230px;
}

.faq-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--control);
  background: rgba(56, 132, 108, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 480px);
  gap: 72px;
  padding: 96px max(24px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.14), transparent 34%),
    var(--ink);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-points {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}

.contact-points span {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
}

.contact-points span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(215, 180, 106, 0.12);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-form-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-form-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--control);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-head strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 750;
}

.form-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ced8d3;
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--ink);
  background: #fbf8f0;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(63, 126, 106, 0.18);
  border-color: var(--control);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 64px 64px;
}

.thanks-screen {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 34px;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.thanks-brand {
  position: static;
  width: 220px;
}

.thanks-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.thanks-card h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.thanks-card p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.8fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 54px max(24px, calc((100vw - var(--container)) / 2));
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 94% 16%, rgba(215, 180, 106, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(215, 180, 106, 0.1), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0c252b;
  background-size: auto, 76px 76px, auto;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  width: 190px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
}

.footer-brand p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-links a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  border-color: rgba(215, 180, 106, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.footer-cta {
  display: grid;
  justify-items: end;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.footer-cta span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-page {
  background:
    linear-gradient(180deg, rgba(16, 47, 54, 0.05), transparent 420px),
    var(--paper);
}

.report-header {
  position: sticky;
  inset: 14px auto auto auto;
  width: calc(100% - 40px);
  max-width: none;
  margin: 14px 20px 0;
  transform: none;
  gap: 12px;
}

.report-header .brand {
  flex: 0 0 188px;
  width: 188px;
}

.report-header .nav {
  flex: 1 1 auto;
  justify-content: center;
}

.report-header .header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.sample-report {
  padding-top: 96px;
}

.report-demo {
  padding-top: 96px;
}

.report-dashboard {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 56px;
}

.report-context {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid rgba(13, 43, 49, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.14), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.report-context span {
  display: block;
  margin-bottom: 10px;
  color: var(--control);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-context h1 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.report-context p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.report-context-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.report-context-actions small {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
  text-align: right;
}

.report-dashboard-shell {
  overflow: hidden;
  border: 1px solid rgba(13, 43, 49, 0.12);
  border-radius: var(--radius);
  background: #f7f9f7;
  box-shadow: var(--shadow);
}

.dash-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(360px, 1.25fr) minmax(260px, 0.8fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.dash-logo,
.dash-title,
.dash-date-box {
  padding: 24px;
}

.dash-logo {
  display: grid;
  gap: 10px;
  align-content: center;
  background: var(--surface);
}

.dash-logo img {
  width: 214px;
}

.dash-logo span {
  color: var(--control);
  font-weight: 800;
}

.dash-title h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.dash-facsimile {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(215, 180, 106, 0.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(215, 180, 106, 0.1);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dash-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.dash-date-box {
  display: grid;
  gap: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.dash-date-box div {
  display: grid;
  gap: 2px;
}

.dash-date-box span,
.dash-kpi-strip span,
.dash-card-title span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-date-box strong {
  color: var(--white);
}

.dash-hero-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(240px, 0.9fr) minmax(190px, 0.7fr) minmax(250px, 0.85fr);
  margin: 0 18px;
  border: 1px solid rgba(13, 43, 49, 0.1);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.dash-building {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.dash-data-list,
.dash-health,
.dash-bars {
  padding: 22px;
  border-left: 1px solid var(--line);
}

.dash-data-list h2,
.dash-health h2,
.dash-card-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  text-transform: uppercase;
}

.dash-data-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(13, 43, 49, 0.08);
}

.dash-data-list span,
.dash-bars span,
.area-status span,
.maintenance-list span,
.mini-history span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.dash-data-list strong,
.dash-bars strong {
  color: var(--ink);
}

.dash-health {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.dash-score {
  display: grid;
  width: 134px;
  height: 134px;
  place-items: center;
  margin: 16px 0 8px;
  border: 16px solid #e4dfd8;
  border-left-color: var(--control);
  border-top-color: var(--control);
  border-radius: 50%;
}

.dash-score strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.dash-score span {
  margin-top: -36px;
  color: var(--muted);
}

.dash-health p {
  margin: 0;
  color: var(--control);
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-bars {
  display: grid;
  align-content: center;
  gap: 12px;
}

.dash-bars div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.dash-bars em {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 43, 49, 0.1);
}

.dash-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #2f87d9;
}

.dash-kpi-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.dash-kpi-strip div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.dash-kpi-strip div:last-child {
  border-right: 0;
}

.dash-kpi-strip span {
  display: block;
  margin-bottom: 5px;
}

.dash-kpi-strip strong {
  color: var(--white);
}

.dash-read-guide {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.15fr;
  gap: 12px;
  margin: 0 18px 18px;
}

.dash-read-guide section {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(13, 43, 49, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
}

.dash-read-guide span {
  color: var(--control);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dash-read-guide strong,
.guide-legend {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.guide-legend {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
}

.guide-legend em {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.admin-brief {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.35fr);
  gap: 14px;
  margin: 0 18px 18px;
}

.brief-copy,
.brief-actions {
  border: 1px solid rgba(13, 43, 49, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
}

.brief-copy {
  padding: 22px;
}

.brief-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--control);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-copy h2 {
  margin-bottom: 12px;
  font-size: 1.72rem;
  line-height: 1.12;
}

.brief-copy p {
  margin: 0;
  color: var(--muted);
}

.brief-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.brief-status div {
  padding: 12px;
  border: 1px solid rgba(13, 43, 49, 0.09);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.brief-status span {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.brief-status strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.12rem;
  line-height: 1;
}

.brief-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.brief-actions div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.brief-actions div:last-child {
  border-right: 0;
}

.brief-actions strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  line-height: 1.2;
}

.brief-actions span {
  color: var(--muted);
  font-size: 0.94rem;
}

.dash-card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  padding: 0 18px 18px;
}

.dash-card {
  grid-column: span 6;
  padding: 18px;
  border: 1px solid rgba(13, 43, 49, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(13, 43, 49, 0.05);
}

.dash-card-wide {
  grid-column: span 6;
}

.dash-card-full {
  grid-column: 1 / -1;
}

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

.dash-card-title span {
  color: var(--control);
}

.roof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
}

.roof-main {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.roof-main img,
.thermal-panel img,
.attention-grid img,
.roof-gallery > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roof-gallery > div {
  display: grid;
  gap: 10px;
}

.roof-gallery > div img {
  height: 100px;
  border-radius: var(--radius);
}

.thermal-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 10px;
}

.thermal-panel img {
  height: 330px;
  border-radius: var(--radius);
}

.thermal-scale {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.thermal-scale em {
  border-radius: 999px;
  background: linear-gradient(180deg, #ffdc4a, #e45b35, #6f2a83, #182f74);
}

.dash-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff8e8;
}

.dash-alert strong {
  color: var(--ink);
}

.dash-alert p {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.dash-alert span {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--amber);
  font-weight: 850;
  text-transform: uppercase;
}

.area-status,
.maintenance-list,
.mini-history {
  display: grid;
  gap: 10px;
}

.area-status div,
.maintenance-list div,
.mini-history div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ok-dot {
  background: #3f7e6a;
}

.watch-dot {
  background: #d7b46a;
}

.alert-dot {
  background: #a44738;
}

.crit-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.crit-table div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 82px;
  gap: 8px;
  align-items: center;
  padding: 11px;
  border-bottom: 1px solid var(--line);
}

.crit-table div:last-child {
  border-bottom: 0;
}

.crit-table span {
  color: var(--muted);
}

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

.attention-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.attention-grid img {
  height: 150px;
}

.attention-grid div {
  display: grid;
  gap: 7px;
  padding: 12px;
}

.attention-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.attention-grid dl {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 6px 8px;
  margin: 2px 0 0;
}

.attention-grid dt {
  color: var(--control);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.attention-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.decision-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.decision-cards article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 174px;
  padding: 14px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.decision-cards article.urgent {
  border-top-color: var(--red);
}

.decision-cards article > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.decision-cards strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1rem;
}

.decision-cards h3 {
  margin: 0;
  font-size: 1rem;
}

.decision-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.38;
}

.decision-cards article > span {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.88);
  font-size: 0.78rem;
  font-weight: 820;
}

.mini-history {
  grid-template-columns: repeat(4, 1fr);
}

.mini-history div {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.mini-history strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.5rem;
}

.fascicle-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.fascicle-index span {
  min-height: 48px;
  padding: 10px 11px;
  border: 1px solid rgba(13, 43, 49, 0.09);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(245, 241, 232, 0.72);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.25;
}

.dash-disclaimer {
  margin: 0 18px 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff7f5;
}

.dash-disclaimer strong {
  color: var(--red);
}

.dash-disclaimer p {
  margin: 4px 0 0;
  color: #68433d;
}

.deliverable-report {
  display: grid;
  gap: 18px;
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0 76px;
}

.report-paper {
  padding: 30px;
  border: 1px solid rgba(13, 43, 49, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 16px 46px rgba(13, 43, 49, 0.08);
}

.report-cover-sheet {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 43, 49, 0.98), rgba(13, 43, 49, 0.78)),
    url("assets/real-hero-condominio.webp") center / cover;
  box-shadow: var(--shadow);
}

.report-cover-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 48px;
}

.report-cover-top img {
  width: 188px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.96);
}

.report-cover-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 46px;
  align-items: end;
}

.report-cover-grid h1 {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 4.1rem;
  line-height: 0.96;
}

.report-cover-grid p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.cover-data {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.cover-data div,
.report-data-grid div {
  display: grid;
  gap: 2px;
}

.cover-data span,
.cover-summary span,
.report-data-grid span,
.action-grid span,
.signature-box span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cover-data strong {
  color: var(--white);
}

.cover-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.cover-summary div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.cover-summary strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--gold);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.32rem;
}

.cover-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.dashboard-overview {
  padding: 0;
  overflow: hidden;
}

.dashboard-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(230px, 0.9fr) minmax(190px, 0.65fr) minmax(220px, 0.8fr);
  gap: 0;
  align-items: stretch;
}

.dashboard-main > img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.dashboard-data,
.health-panel,
.health-bars {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.dashboard-data h2,
.health-panel h2 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.dashboard-data div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(13, 43, 49, 0.09);
}

.dashboard-data span,
.health-bars span,
.dashboard-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-data strong,
.health-bars strong,
.dashboard-strip strong {
  color: var(--ink);
}

.health-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.health-ring {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  margin: 2px auto 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, var(--surface) 70%, transparent 71%),
    conic-gradient(var(--control) calc(var(--score) * 1%), rgba(13, 43, 49, 0.11) 0);
}

.health-ring strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.health-ring span {
  margin-top: -42px;
  color: var(--muted);
}

.health-panel p {
  margin: 0;
  color: var(--control);
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.health-bars {
  display: grid;
  align-content: center;
  gap: 13px;
}

.health-bars div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.health-bars em {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 43, 49, 0.1);
}

.health-bars em::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--control), #2f87d9);
}

.dashboard-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  color: var(--white);
  background: var(--ink);
}

.dashboard-strip div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.dashboard-strip div:last-child {
  border-right: 0;
}

.dashboard-strip span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.dashboard-strip strong {
  color: var(--white);
}

.report-stats-overview {
  display: grid;
  gap: 18px;
}

.stats-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: end;
}

.stats-heading h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.stats-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.simple-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.simple-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.simple-stats span,
.simple-bars span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-stats strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.55rem;
}

.simple-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.simple-bars {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.simple-bars div {
  display: grid;
  grid-template-columns: 150px minmax(160px, 1fr) 74px;
  gap: 12px;
  align-items: center;
}

.simple-bars em {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 43, 49, 0.1);
}

.simple-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--control);
}

.simple-bars strong {
  color: var(--ink);
  font-size: 0.92rem;
  text-align: right;
}

.deliverable-report .report-section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.deliverable-report .report-section-title span {
  color: var(--control);
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 850;
}

.deliverable-report .report-section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.58rem;
  line-height: 1.16;
}

.executive-brief {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.executive-brief p {
  margin: 0;
  color: var(--text);
}

.compact-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.compact-metrics div {
  padding: 15px;
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.compact-metrics strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.28rem;
}

.compact-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.report-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.report-data-grid div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.7);
}

.report-data-grid span,
.action-grid span,
.signature-box span {
  color: var(--control);
}

.report-data-grid strong {
  color: var(--ink);
}

.monitored-grid,
.point-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.point-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.monitored-grid div,
.point-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.monitored-grid div {
  padding: 16px;
}

.point-cards article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.point-cards figure {
  position: relative;
  margin: 0;
  background: var(--ink);
}

.point-cards img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.point-cards figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(13, 43, 49, 0.78);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.point-cards article > div {
  padding: 16px;
}

.monitored-grid strong,
.point-cards strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.monitored-grid span,
.point-cards p {
  margin: 0;
  color: var(--muted);
}

.point-cards span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--control);
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 850;
}

.point-cards .pill {
  margin-bottom: 10px;
}

.report-photo-layout,
.thermal-document-grid,
.report-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.annotated-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.annotated-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-label,
.map-pin {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
}

.map-label {
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  background: rgba(13, 43, 49, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-pin {
  min-width: 44px;
  padding: 5px 9px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(13, 43, 49, 0.28);
  font-size: 0.78rem;
  transform: translate(-50%, -50%);
}

.map-pin.p01 {
  left: 18%;
  top: 72%;
  background: var(--amber);
}

.map-pin.p02 {
  left: 54%;
  top: 58%;
  background: var(--control);
}

.map-pin.p03 {
  left: 82%;
  top: 56%;
  background: var(--red);
}

.map-pin.p04 {
  left: 73%;
  top: 78%;
  background: #7b2f25;
}

.photo-notes,
.thermal-reading-card,
.signature-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.photo-notes h3,
.thermal-reading-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.photo-notes p,
.thermal-reading-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.photo-notes p:last-child,
.thermal-reading-card p:last-child {
  margin-bottom: 0;
}

.deliverable-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.deliverable-row {
  display: grid;
  grid-template-columns: 76px minmax(170px, 0.9fr) 120px minmax(240px, 1.3fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.74);
}

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

.deliverable-head {
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 850;
}

.deliverable-row p {
  margin: 0;
  color: var(--muted);
}

.thermal-document-grid .thermal-compare {
  min-height: 410px;
}

.deliverable-evidence {
  grid-template-columns: repeat(2, 1fr);
}

.deliverable-evidence img {
  height: 310px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.action-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.action-grid strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--ink);
}

.action-grid p {
  margin: 0;
  color: var(--muted);
}

.history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.history-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 62%, rgba(63, 126, 106, 0.14) 62% 64%, transparent 64%),
    rgba(245, 241, 232, 0.72);
}

.history-line span,
.history-line strong {
  text-align: center;
}

.history-line span {
  color: var(--muted);
  font-size: 0.82rem;
}

.history-line strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.55rem;
}

.history-notes {
  display: grid;
  gap: 10px;
}

.history-notes p,
.archive-list span {
  margin: 0;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(245, 241, 232, 0.72);
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.report-closing {
  align-items: start;
}

.report-closing > div:first-child p {
  margin-bottom: 0;
  color: var(--text);
}

.signature-box strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.5rem;
}

.signature-box p {
  margin-bottom: 0;
  color: var(--muted);
}

.disclaimer-paper {
  border-left: 4px solid var(--red);
  background: #fff7f5;
}

.disclaimer-paper strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
}

.disclaimer-paper p {
  margin: 0;
  color: #68433d;
}

.report-sheet-demo {
  padding: 118px 24px 80px;
}

.sheet-hero,
.sheet-card {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.sheet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 43, 49, 0.96), rgba(13, 43, 49, 0.72)),
    url("assets/real-hero-condominio.webp") center / cover;
  box-shadow: var(--shadow);
}

.sheet-hero h1 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 3.4rem;
  line-height: 1;
}

.sheet-hero p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.sheet-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.sheet-header span,
.sheet-meta span,
.sheet-section-title span {
  color: var(--control);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sheet-header h2 {
  margin: 4px 0 0;
  font-size: 2rem;
}

.sheet-status {
  padding: 9px 12px;
  border-radius: 999px;
  color: #1f5e43;
  background: #dceee6;
  white-space: nowrap;
}

.sheet-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.sheet-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.sheet-meta strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
}

.sheet-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.sheet-photo {
  position: relative;
  min-height: 390px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}

.sheet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sheet-tag,
.sheet-pin {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
}

.sheet-tag {
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  background: rgba(13, 43, 49, 0.76);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sheet-pin {
  min-width: 42px;
  padding: 5px 9px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(13, 43, 49, 0.28);
  font-size: 0.78rem;
}

.sheet-pin.a {
  left: 32%;
  top: 36%;
  background: var(--amber);
}

.sheet-pin.b {
  left: 56%;
  top: 58%;
  background: var(--control);
}

.sheet-pin.c {
  right: 15%;
  top: 38%;
  background: var(--red);
}

.sheet-summary,
.sheet-section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.sheet-summary {
  display: grid;
  align-content: center;
}

.sheet-summary h3,
.sheet-section-title h3 {
  font-size: 1.32rem;
}

.sheet-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 820;
}

.sheet-kpi span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 8px;
  border-radius: var(--radius);
  text-align: center;
}

.sheet-section {
  margin-top: 14px;
}

.sheet-section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.sheet-section-title h3 {
  margin: 0;
}

.sheet-table {
  display: grid;
  gap: 8px;
}

.sheet-table div {
  display: grid;
  grid-template-columns: 56px minmax(160px, 0.8fr) 120px minmax(220px, 1.2fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.72);
}

.sheet-table strong {
  color: var(--ink);
}

.sheet-table span,
.sheet-table p {
  margin: 0;
  color: var(--muted);
}

.sheet-thermal .thermal-compare-large {
  min-height: 390px;
}

.sheet-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.sheet-notes span {
  padding: 12px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(245, 241, 232, 0.78);
  font-size: 0.92rem;
}

.sheet-actions ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.sheet-actions li {
  padding-left: 6px;
}

.sheet-limit {
  margin: 14px 0 0;
  padding: 14px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  color: #7b2f25;
  background: #fff7f5;
  font-size: 0.94rem;
}

.demo-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: end;
  padding: 76px max(24px, calc((100vw - var(--container)) / 2)) 56px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 43, 49, 0.96), rgba(13, 43, 49, 0.78)),
    url("assets/real-hero-condominio.webp") center / cover;
}

.demo-cover h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 4.35rem;
}

.demo-cover p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.demo-meta {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.demo-meta div {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.demo-meta div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.demo-meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.demo-meta strong {
  color: var(--white);
}

.demo-document {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 88px;
}

.demo-alert {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e8;
  color: #604315;
}

.demo-index {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.demo-index a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
  box-shadow: 0 8px 20px rgba(13, 43, 49, 0.05);
}

.demo-index span {
  color: var(--control);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 0.8rem;
  font-weight: 850;
}

.demo-section {
  margin-top: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow-soft);
}

.demo-section-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.demo-section-head > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-family: "Sora", Avenir, sans-serif;
  font-weight: 800;
}

.demo-section-head h2 {
  margin-bottom: 0;
  font-size: 2.15rem;
}

.demo-section-head.compact {
  margin-bottom: 16px;
}

.lead {
  max-width: 880px;
  color: var(--text);
  font-size: 1.16rem;
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.executive-grid .status-card {
  min-height: 150px;
}

.executive-grid .status-card p {
  margin: 8px 0 0;
  color: inherit;
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.evidence-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.evidence-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.evidence-large img {
  height: 440px;
}

.evidence-grid figcaption {
  padding: 16px;
  color: var(--muted);
}

.evidence-grid figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.thermal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.thermal-layout > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.thermal-copy {
  display: grid;
  gap: 18px;
}

.thermal-readout {
  display: grid;
  gap: 10px;
}

.thermal-readout div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.78);
}

.thermal-readout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.thermal-readout p {
  margin-bottom: 0;
}

.thermal-comparison-block {
  display: grid;
  gap: 18px;
  margin: 4px 0 26px;
}

.thermal-comparison-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: end;
}

.thermal-comparison-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.thermal-comparison-copy p {
  margin: 0;
  color: var(--muted);
}

.comparison-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.comparison-notes article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.78);
}

.comparison-notes strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.comparison-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.findings-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 88px 1fr 120px 2fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
}

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

.table-head {
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
}

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

.clean-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--control);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.78);
}

.conclusion-card {
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.conclusion-card .section-label {
  color: var(--gold);
}

.conclusion-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.demo-limitation {
  margin-top: 18px;
  padding: 22px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff7f5;
}

.demo-limitation strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
}

.report-cover {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 390px);
  gap: 72px;
  align-items: end;
  padding: 86px max(24px, calc((100vw - var(--container)) / 2)) 78px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.16), transparent 34%),
    var(--ink);
}

.report-cover h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 4.85rem;
}

.report-cover p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.report-id-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.report-id-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.report-id-card strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.report-document {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: 72px max(24px, calc((100vw - var(--container)) / 2));
}

.report-toc {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid rgba(16, 47, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.report-toc h2 {
  margin-bottom: 14px;
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.report-toc ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.report-sheet {
  margin-bottom: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow-soft);
}

.report-section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 47, 54, 0.1);
}

.report-section-title span {
  color: var(--gold);
  font-weight: 850;
}

.report-section-title h2 {
  margin: 0;
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

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

.data-grid div,
.inspection-grid div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(244, 240, 230, 0.86);
}

.data-grid span,
.inspection-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-grid strong,
.inspection-grid strong {
  color: var(--ink);
}

.summary-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.status-card {
  padding: 16px;
  border-radius: var(--radius);
}

.status-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 760;
}

.status-card strong {
  font-size: 1.5rem;
}

.professional-note {
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e8;
}

.method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.method-list span {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 720;
}

.thermal-reading {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.thermal-reading div {
  padding: 18px;
  border: 1px solid rgba(16, 47, 54, 0.1);
  border-radius: var(--radius);
  background: rgba(244, 240, 230, 0.72);
}

.thermal-reading h3,
.thermal-conclusion h3,
.thermal-limits h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.thermal-reading strong {
  display: block;
  margin: 12px 0 4px;
  color: var(--ink);
}

.thermal-dot {
  display: inline-block;
  width: 34px;
  height: 12px;
  margin-bottom: 14px;
  border-radius: 999px;
}

.thermal-dot.warm {
  background: linear-gradient(90deg, #ffbf3f, #d74c33, #782d72);
}

.thermal-dot.cool {
  background: linear-gradient(90deg, #1b5374, #2789a5, #62d1ce);
}

.thermal-dot.neutral {
  background: linear-gradient(90deg, #687477, #aeb6b2);
}

.thermal-conclusion,
.thermal-limits {
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius);
}

.thermal-conclusion {
  border-left: 4px solid var(--gold);
  background: #fff8e8;
}

.thermal-limits {
  border-left: 4px solid var(--red);
  background: #fff7f5;
}

.thermal-limits ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.image-sheet img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  font-size: 0.96rem;
}

.report-table th,
.report-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(16, 47, 54, 0.1);
  text-align: left;
  vertical-align: top;
}

.report-table th {
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 820;
}

.report-table tr:last-child td {
  border-bottom: 0;
}

.pill {
  display: inline-flex;
  min-width: 64px;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 820;
}

.pill.green {
  color: #1f5e43;
  background: #dceee6;
}

.pill.amber {
  color: #78510d;
  background: #f5e7c8;
}

.pill.red {
  color: #7b2f25;
  background: #efd7d2;
}

.limitation {
  border-color: rgba(164, 71, 56, 0.26);
  background: #fff7f5;
}

.trust-section {
  padding-top: 28px;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: 40px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(13, 43, 49, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 180, 106, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(243, 238, 226, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-panel h2 {
  margin-bottom: 16px;
  font-size: 2.75rem;
}

.trust-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.trust-checks article {
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(13, 43, 49, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.trust-checks span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--control);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-checks strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  line-height: 1.16;
}

.trust-checks p {
  font-size: 0.9rem;
  line-height: 1.42;
}

.use-cases {
  padding-top: 74px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.use-case-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(245, 241, 232, 0.9)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.use-case-grid span {
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.use-case-grid strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.08rem;
  line-height: 1.18;
}

.use-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.package-compare {
  margin-top: 18px;
  border: 1px solid rgba(13, 43, 49, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.compare-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.compare-head strong {
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.1rem;
}

.compare-head span {
  color: var(--muted);
}

.compare-table {
  display: grid;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(110px, 0.34fr) minmax(120px, 0.38fr);
  border-bottom: 1px solid rgba(13, 43, 49, 0.09);
}

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

.compare-row > * {
  padding: 13px 18px;
}

.compare-row strong {
  color: var(--ink);
  text-align: center;
}

.compare-row strong:last-child {
  color: var(--control);
  background: rgba(63, 126, 106, 0.08);
}

.compare-title {
  color: var(--ink);
  background: rgba(13, 43, 49, 0.045);
  font-weight: 820;
}

.report-understand,
.demo-takeaways {
  border: 1px solid rgba(63, 126, 106, 0.16);
  border-radius: var(--radius);
  background: rgba(63, 126, 106, 0.07);
}

.report-understand {
  max-width: 590px;
  margin-top: 22px;
  padding: 18px;
}

.report-understand span,
.demo-takeaways span {
  display: block;
  margin-bottom: 10px;
  color: var(--control);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-understand ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.demo-takeaways {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(280px, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px;
}

.demo-takeaways strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", Avenir, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.demo-takeaways ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-brand small {
  display: block;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-cta a:not(.button) {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(16, 47, 54, 0.06), transparent 420px),
    var(--paper);
}

.legal-document {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 76px;
}

.legal-document h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 5.1rem);
}

.legal-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-document section {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow-soft);
}

.legal-document h2 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.legal-document p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-document a {
  color: var(--control);
  font-weight: 800;
}

.legal-note {
  margin-top: 22px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .nav {
    display: none;
  }

  .intro-grid,
  .value-strip,
  .visual-feature,
  .trust-panel,
  .scope-panel,
  .section-heading,
  .pricing-grid,
  .portfolio-head,
  .portfolio-steps,
  .portfolio-pricing,
  .portfolio-footer,
  .report-grid,
  .thermal-band,
  .demo-cover,
  .thermal-layout,
  .thermal-comparison-copy,
  .split-section,
  .method-head,
  .dash-top,
  .dash-hero-card,
  .dash-read-guide,
  .admin-brief,
  .thermal-panel,
  .sheet-hero,
  .sheet-main,
  .report-cover-grid,
  .report-photo-layout,
  .thermal-document-grid,
  .report-closing,
  .dashboard-main,
  .history-grid,
  .report-cover,
  .report-document,
  .footer,
  .stats-heading,
  .report-context,
  .demo-takeaways,
  .compare-head,
  .contact {
    grid-template-columns: 1fr;
  }

  .report-toc {
    position: static;
  }

  .report-items,
  .steps,
  .faq-grid,
  .portfolio-steps,
  .portfolio-pricing,
  .data-grid,
  .inspection-grid,
  .thermal-reading,
  .executive-grid,
  .evidence-grid,
  .comparison-notes,
  .decision-grid,
  .demo-index,
  .use-case-grid,
  .trust-checks {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-cover {
    gap: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-cta {
    justify-items: start;
  }

  .value-strip {
    margin-top: -24px;
  }

  .value-strip article {
    border-left: 0;
    border-top: 1px solid rgba(13, 43, 49, 0.1);
  }

  .intro-copy {
    position: static;
  }

  .steps::before {
    display: none;
  }

  .sheet-meta,
  .sheet-notes,
  .cover-summary,
  .report-data-grid,
  .compact-metrics,
  .action-grid,
  .dashboard-strip,
  .monitored-grid,
  .point-cards,
  .simple-stats,
  .attention-grid,
  .decision-cards,
  .fascicle-index,
  .brief-actions,
  .mini-history,
  .archive-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-card,
  .dash-card-wide,
  .dash-card-full {
    grid-column: 1 / -1;
  }

  .dash-logo,
  .dash-title,
  .dash-date-box {
    padding: 20px;
  }

  .dash-data-list,
  .dash-health,
  .dash-bars {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .demo-cover h1 {
    font-size: 3.45rem;
  }

  .evidence-large img {
    height: 320px;
  }

  .price-card ul {
    min-height: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-content {
    margin-left: 24px;
  }

  .site-header {
    width: calc(100% - 24px);
    top: 12px;
  }

  .report-header {
    inset: 12px auto auto auto;
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    transform: none;
  }

  .report-header .brand {
    flex-basis: 176px;
    width: 176px;
  }

  .report-context-actions {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 10px auto auto 50%;
    width: calc(100% - 20px);
    gap: 8px;
    padding: 7px;
  }

  .brand {
    width: 142px;
    padding: 6px 8px;
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .report-header {
    inset: 10px auto auto auto;
    width: calc(100% - 20px);
    margin: 10px 10px 0;
    transform: none;
  }

  .report-header .brand {
    flex-basis: 142px;
    width: 142px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 100px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  h1 {
    font-size: 3.05rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-conversion {
    padding: 14px;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .trust-row span {
    min-height: 38px;
  }

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

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .section,
  .method {
    padding: 68px 18px;
  }

  .value-strip {
    width: calc(100% - 36px);
    margin: -18px auto 54px;
  }

  .value-strip > * {
    min-height: auto;
    padding: 20px;
  }

  .value-intro strong {
    font-size: 1.35rem;
  }

  .visual-feature {
    width: calc(100% - 36px);
    padding-bottom: 68px;
  }

  .feature-copy,
  .price-card,
  .report-sheet {
    padding: 22px;
  }

  .portfolio-offer {
    padding: 68px 18px;
  }

  .portfolio-panel {
    padding: 0;
  }

  .portfolio-head {
    gap: 22px;
  }

  .portfolio-steps,
  .portfolio-pricing {
    grid-template-columns: 1fr;
  }

  .portfolio-steps article,
  .portfolio-pricing div {
    min-height: auto;
  }

  .portfolio-action {
    justify-content: flex-start;
  }

  .feature-copy h2 {
    font-size: 1.92rem;
    line-height: 1.08;
  }

  .scope {
    padding: 0 18px;
  }

  .scope-panel {
    padding: 26px;
  }

  .scope-panel h2 {
    font-size: 2.1rem;
  }

  .scope-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scope-list li {
    min-height: auto;
  }

  .launch-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-panel {
    padding: 24px;
  }

  .trust-panel h2 {
    font-size: 2.1rem;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: minmax(132px, 1fr) minmax(82px, 0.5fr) minmax(92px, 0.55fr);
    font-size: 0.88rem;
  }

  .compare-row > * {
    padding: 11px 10px;
  }

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

  .launch-note span {
    width: fit-content;
  }

  .method-head {
    gap: 20px;
    margin-bottom: 28px;
  }

  .steps span {
    margin-bottom: 22px;
  }

  .contact {
    padding: 68px 18px;
  }

  .report-dashboard {
    width: calc(100% - 20px);
    padding-top: 104px;
  }

  .report-context {
    padding: 20px;
  }

  .report-context h1 {
    font-size: 2rem;
  }

  .report-cover {
    padding: 70px 18px 46px;
  }

  .report-cover h1 {
    font-size: 2.85rem;
  }

  .demo-cover {
    padding: 70px 18px 42px;
  }

  .demo-cover h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  .demo-document {
    width: calc(100% - 36px);
    padding: 36px 0 68px;
  }

  .demo-section {
    padding: 22px;
  }

  .demo-section-head {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .demo-section-head > span {
    width: 38px;
    height: 38px;
  }

  .demo-section-head h2 {
    font-size: 1.78rem;
  }

  .demo-alert {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-document {
    padding: 48px 18px;
  }

  .report-items,
  .steps,
  .faq-grid,
  .data-grid,
  .inspection-grid,
  .thermal-reading,
  .preview-metrics,
  .status-strip,
  .executive-grid,
  .evidence-grid,
  .comparison-notes,
  .decision-grid,
  .demo-index,
  .preview-insights,
  .sheet-meta,
  .sheet-kpi,
  .sheet-notes,
  .cover-summary,
  .report-data-grid,
  .compact-metrics,
  .action-grid,
  .dashboard-strip,
  .monitored-grid,
  .point-cards,
  .simple-stats,
  .attention-grid,
  .brief-status,
  .fascicle-index,
  .mini-history,
  .history-line,
  .archive-list,
  .deliverable-evidence,
  .summary-status {
    grid-template-columns: 1fr;
  }

  .trust-checks {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding-top: 112px;
  }

  .deliverable-report {
    width: calc(100% - 28px);
    padding-top: 104px;
  }

  .report-dashboard {
    width: calc(100% - 24px);
    padding-top: 104px;
  }

  .dash-card-grid {
    grid-template-columns: 1fr;
    padding: 0 12px 12px;
  }

  .dash-kpi-strip {
    margin: 12px;
  }

  .dash-kpi-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .dash-kpi-strip div:last-child {
    border-bottom: 0;
  }

  .dash-hero-card {
    margin: 0 12px;
  }

  .dash-data-list div,
  .crit-table div,
  .area-status div,
  .maintenance-list div,
  .dash-bars div {
    grid-template-columns: 1fr;
  }

  .dash-alert {
    grid-template-columns: 1fr;
  }

  .dash-alert span,
  .dash-alert p {
    grid-column: auto;
    grid-row: auto;
  }

  .roof-gallery {
    grid-template-columns: 1fr;
  }

  .roof-gallery > div {
    grid-template-columns: repeat(3, 1fr);
  }

  .thermal-panel img,
  .roof-main {
    min-height: 260px;
    height: 260px;
  }

  .report-paper {
    padding: 20px;
  }

  .report-cover-top,
  .report-cover-grid {
    gap: 22px;
  }

  .report-cover-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .report-cover-grid h1 {
    font-size: 2.55rem;
  }

  .dashboard-main > img {
    min-height: 240px;
  }

  .dashboard-data,
  .health-panel,
  .health-bars {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .dashboard-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .dashboard-strip div:last-child {
    border-bottom: 0;
  }

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

  .annotated-photo {
    min-height: 300px;
  }

  .deliverable-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .deliverable-head {
    display: none;
  }

  .thermal-document-grid .thermal-compare {
    min-height: 280px;
  }

  .simple-bars div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .simple-bars strong {
    text-align: left;
  }

  .point-cards img {
    height: 190px;
  }

  .sheet-hero {
    padding: 26px;
  }

  .sheet-hero h1 {
    font-size: 2.28rem;
  }

  .sheet-card {
    padding: 18px;
  }

  .sheet-header {
    display: grid;
  }

  .sheet-status {
    width: fit-content;
    white-space: normal;
  }

  .sheet-photo {
    min-height: 270px;
  }

  .sheet-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .decision-grid article {
    min-height: auto;
  }

  .thermal-compare,
  .thermal-compare-large,
  .thermal-compare-small {
    min-height: 260px;
  }

  .thermal-layout > img {
    min-height: 280px;
  }

  .evidence-grid img,
  .evidence-large img {
    height: 260px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-head {
    display: none;
  }

  .report-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .report-preview {
    padding: 14px;
  }

  .preview-header,
  .preview-footer {
    flex-direction: column;
  }

  .preview-visual {
    height: 220px;
  }
}
