:root {
  color-scheme: dark;
  --ink: #f4f7f5;
  --muted: #aeb8b6;
  --dim: #77817e;
  --charcoal: #0a110f;
  --panel: #101a17;
  --panel-strong: #14231f;
  --line: rgba(244, 247, 245, 0.13);
  --green: #65f4b2;
  --blue: #59c7ff;
  --amber: #ffd166;
  --red: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family:
    "Inter", "Segoe UI", Roboto, Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(9, 17, 15, 0.78);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 5vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 760;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, rgba(68, 240, 160, 0.18), rgba(93, 183, 255, 0.14));
  border: 1px solid rgba(68, 240, 160, 0.35);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand-mark svg {
  height: 26px;
  width: 26px;
}

.brand-mark path:first-child {
  fill: rgba(68, 240, 160, 0.18);
  stroke: var(--green);
  stroke-width: 2;
}

.brand-mark path:last-child {
  fill: var(--ink);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.header-cta,
.primary-button,
.secondary-button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 720;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.header-cta,
.primary-button {
  background: var(--green);
  color: #07100d;
}

.header-cta:hover,
.primary-button:hover {
  background: #7cffbf;
}

.secondary-button {
  border-color: var(--line);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: rgba(244, 247, 245, 0.35);
}

.hero {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 64px) 54px;
  position: relative;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-product-image {
  height: 92%;
  min-height: 620px;
  object-fit: cover;
  object-position: 56% center;
  opacity: 0.54;
  position: absolute;
  right: -8%;
  top: 4%;
  width: min(76vw, 1180px);
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 17, 15, 0.98) 0%, rgba(10, 17, 15, 0.86) 41%, rgba(10, 17, 15, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 17, 15, 0.1), rgba(10, 17, 15, 1));
  inset: 0;
  position: absolute;
  z-index: 1;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: 82px;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 860px;
}

h2 {
  font-size: 52px;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.hero-subhead,
.section-heading p,
.problem-band p,
.split-section p {
  color: var(--muted);
  font-size: 21px;
  max-width: 720px;
}

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

.trust-row {
  color: var(--dim);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 9px;
}

.trust-row span {
  border: 1px solid var(--line);
  padding: 8px 10px;
}

.problem-band,
.section,
.cta-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.problem-band {
  align-items: start;
  background: #f4f7f5;
  color: #0a1311;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.85fr 1fr;
}

.problem-band .eyebrow {
  color: #08754b;
}

.problem-band p {
  color: #33413d;
}

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

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

.feature-grid article {
  background: rgba(244, 247, 245, 0.045);
  border: 1px solid var(--line);
  min-height: 240px;
  padding: 22px;
}

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

.icon {
  align-items: center;
  background: rgba(93, 183, 255, 0.13);
  color: var(--blue);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  margin-bottom: 26px;
  width: 46px;
}

.split-section {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.85fr 1.15fr;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list a {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 20px;
}

.proof-list a:hover {
  border-color: rgba(68, 240, 160, 0.45);
}

.proof-list strong {
  color: var(--ink);
}

.proof-list span {
  color: var(--muted);
}

.report-section {
  background: #0c1513;
  border-top: 1px solid var(--line);
}

.report-preview {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 245px 1fr;
  overflow: hidden;
}

.report-sidebar {
  background: #f4f7f5;
  color: #0a1311;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.report-sidebar strong {
  font-size: 20px;
  margin-bottom: 10px;
}

.report-sidebar span {
  border-top: 1px solid rgba(10, 19, 17, 0.14);
  color: #40504b;
  padding-top: 12px;
}

.report-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.score-panel {
  align-items: center;
  border: 1px solid rgba(255, 209, 102, 0.35);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto auto;
  padding: 18px;
}

.score-panel span {
  color: var(--muted);
}

.score-panel strong {
  color: var(--amber);
  font-size: 42px;
  line-height: 1;
}

.score-panel em {
  color: var(--amber);
  font-style: normal;
  font-weight: 760;
}

.finding {
  background: rgba(244, 247, 245, 0.045);
  border: 1px solid var(--line);
  padding: 18px;
}

.finding strong {
  display: block;
  margin-bottom: 8px;
}

.inline-report-link {
  align-items: center;
  border: 1px solid rgba(101, 244, 178, 0.34);
  color: var(--green);
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  width: fit-content;
}

.inline-report-link:hover {
  background: rgba(101, 244, 178, 0.1);
}

.report-page {
  background: #0a110f;
}

.report-hero {
  padding: 72px clamp(18px, 5vw, 64px) 42px;
}

.report-hero h1 {
  max-width: 980px;
}

.report-hero p {
  color: var(--muted);
  font-size: 21px;
  max-width: 820px;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.report-meta span {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  padding: 9px 12px;
}

.report-document {
  display: grid;
  gap: 28px;
  grid-template-columns: 240px minmax(0, 1fr);
  padding: 24px clamp(18px, 5vw, 64px) 84px;
}

.report-doc-nav {
  align-self: start;
  background: #f4f7f5;
  color: #0a110f;
  display: grid;
  gap: 12px;
  padding: 22px;
  position: sticky;
  top: 100px;
}

.report-doc-nav strong {
  font-size: 18px;
  margin-bottom: 8px;
}

.report-doc-nav a {
  border-top: 1px solid rgba(10, 19, 17, 0.14);
  color: #40504b;
  padding-top: 10px;
}

.report-paper {
  background: #f4f7f5;
  color: #0a110f;
  padding: clamp(26px, 5vw, 64px);
}

.report-paper section + section {
  border-top: 1px solid rgba(10, 19, 17, 0.13);
  margin-top: 44px;
  padding-top: 40px;
}

.report-paper h2 {
  color: #0a110f;
  font-size: 36px;
}

.report-paper h3 {
  color: #0a110f;
}

.report-paper p {
  color: #34443f;
  font-size: 18px;
}

.report-kicker {
  color: #08754b;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.summary-score {
  align-items: center;
  background: #0a110f;
  color: var(--ink);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto auto;
  margin-top: 28px;
  padding: 18px;
}

.summary-score span {
  color: var(--muted);
}

.summary-score strong,
.summary-score em {
  color: var(--amber);
}

.summary-score strong {
  font-size: 32px;
}

.summary-score em {
  font-style: normal;
  font-weight: 800;
}

.finding-table {
  border: 1px solid rgba(10, 19, 17, 0.18);
}

.table-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 100px 110px 1fr;
  padding: 14px 16px;
}

.table-row + .table-row {
  border-top: 1px solid rgba(10, 19, 17, 0.13);
}

.table-head {
  background: #0a110f;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.critical-row {
  background: rgba(255, 107, 107, 0.13);
}

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

.inventory-grid article,
.plan-grid article {
  border: 1px solid rgba(10, 19, 17, 0.16);
  padding: 18px;
}

.inventory-grid strong,
.inventory-grid span,
.inventory-grid em {
  display: block;
}

.inventory-grid span {
  color: #40504b;
  margin: 8px 0 14px;
}

.inventory-grid em {
  color: #08754b;
  font-style: normal;
  font-weight: 800;
}

.permission-path {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  margin-bottom: 24px;
}

.permission-path div {
  background: #0a110f;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  min-height: 64px;
  padding: 16px;
}

.permission-path span {
  background: #08754b;
  height: 2px;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(68, 240, 160, 0.13), rgba(93, 183, 255, 0.09)),
    #101a17;
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-band h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 64px);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 760;
}

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

  h2 {
    font-size: 42px;
  }

  .hero-subhead,
  .section-heading p,
  .problem-band p,
  .split-section p,
  .report-hero p {
    font-size: 19px;
  }

  .hero,
  .problem-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product-image {
    opacity: 0.24;
    right: -42%;
    width: 120vw;
  }

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

  .report-document,
  .inventory-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .report-doc-nav {
    position: static;
  }

  .permission-path {
    grid-template-columns: 1fr;
  }

  .permission-path span {
    height: 18px;
    justify-self: center;
    width: 2px;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subhead,
  .section-heading p,
  .problem-band p,
  .split-section p,
  .report-hero p {
    font-size: 18px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    position: static;
  }

  .nav-links {
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 42px;
  }

  .feature-grid,
  .report-preview {
    grid-template-columns: 1fr;
  }

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

  .report-sidebar {
    display: none;
  }

  .score-panel {
    grid-template-columns: 1fr;
  }

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

  .summary-score {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

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

  .nav-links {
    justify-content: space-between;
  }

  .hero-product-image {
    display: none;
  }
}
