:root {
  --black: #000000;
  --ink: #090909;
  --near-black: #101010;
  --charcoal: #171717;
  --red: #b00000;
  --red-dark: #760000;
  --white: #ffffff;
  --paper: #f6f6f4;
  --soft: #e9e9e6;
  --gray: #999999;
  --mid-gray: #6f6f6f;
  --line-dark: #292929;
  --line-light: #d5d5d1;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
  --shell: min(1180px, calc(100% - 48px));
  --section-space: clamp(5rem, 9vw, 9rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.blueprint-bg {
  position: relative;
  isolation: isolate;
}

.blueprint-bg::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23292929' stroke-width='1'%3E%3Cpath d='M0 0H96V96H0z'/%3E%3Cpath d='M24 0V96M48 0V96M72 0V96M0 24H96M0 48H96M0 72H96' opacity='.45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 96px 96px;
}

.launch-rail {
  position: relative;
  z-index: 1002;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--red);
  font-size: .76rem;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
  text-align: center;
}

.launch-rail strong {
  letter-spacing: .12em;
}

.launch-rail a {
  border-bottom: 1px solid rgba(255,255,255,.65);
  font-weight: 800;
  white-space: nowrap;
}

.launch-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: rgba(0,0,0,.96);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: #3a3a3a;
  box-shadow: 0 15px 50px rgba(0,0,0,.45);
}

.header-shell {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 122px;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.primary-nav a {
  position: relative;
  padding: 16px 0;
  color: #dcdcdc;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .2s ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="true"] {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  min-width: 132px;
  padding: 15px 20px;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  text-align: center;
  transition: background .2s ease, color .2s ease;
}

.primary-nav .nav-cta:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  min-width: 76px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--line-dark);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-lines {
  display: grid;
  width: 18px;
  gap: 5px;
}

.menu-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 34vw;
  height: 100%;
  border-left: 1px solid rgba(176,0,0,.32);
  content: "";
  background: #090909;
  transform: skewX(-8deg) translateX(8vw);
  transform-origin: bottom;
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 140px);
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(44px, 6vw, 88px);
  padding-block: clamp(76px, 10vw, 142px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 28px;
  color: #cfcfcf;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span::before {
  width: 22px;
  height: 1px;
  content: "";
  background: var(--red);
}

.hero-logo {
  width: clamp(210px, 27vw, 340px);
  margin: 0 0 24px -16px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6.25vw, 6.75rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 34px;
  color: #d7d7d7;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s var(--ease), color .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: #626262;
}

.button-secondary:hover {
  border-color: var(--white);
}

.hero-note {
  display: flex;
  max-width: 620px;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  color: #929292;
  font-size: .82rem;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  margin-top: .52em;
  border: 1px solid var(--red);
  content: "";
  flex: 0 0 auto;
  transform: rotate(45deg);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.diagnostic-card {
  position: relative;
  max-width: 590px;
  margin-left: auto;
  border: 1px solid #343434;
  background: var(--near-black);
  box-shadow: var(--shadow);
}

.diagnostic-card::before,
.diagnostic-card::after {
  position: absolute;
  width: 32px;
  height: 32px;
  content: "";
  pointer-events: none;
}

.diagnostic-card::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
}

.diagnostic-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.diagnostic-header {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid #303030;
  color: #b9b9b9;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
}

.live-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(176,0,0,.16);
}

.house-map {
  width: calc(100% - 30px);
  margin: 20px auto 8px;
  overflow: visible;
}

.map-lines path {
  fill: none;
  stroke: #4a4a4a;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.network-routes path {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-dasharray: 8 7;
  vector-effect: non-scaling-stroke;
}

.map-node circle:first-child {
  fill: var(--red);
}

.map-node circle:nth-child(2) {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
}

.map-node text {
  fill: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.coverage-rings circle {
  fill: none;
  stroke: rgba(176,0,0,.35);
  stroke-width: 2;
  stroke-dasharray: 3 5;
}

.diagnostic-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding: 18px;
  border-top: 1px solid #303030;
  color: #bdbdbd;
  font-size: .66rem;
  letter-spacing: .04em;
}

.diagnostic-list span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diagnostic-list i {
  width: 6px;
  height: 6px;
  background: var(--red);
  flex: 0 0 auto;
}

.diagram-label {
  margin: 0;
  padding: 12px 18px;
  border-top: 1px solid #303030;
  color: #717171;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-strip {
  border-top: 1px solid #2a2a2a;
  background: #050505;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid #252525;
  color: #d3d3d3;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span:first-child {
  border-left: 1px solid #252525;
}

.trust-grid span::before {
  width: 5px;
  height: 5px;
  margin-right: 10px;
  content: "";
  background: var(--red);
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-light {
  color: var(--black);
  background: var(--paper);
}

.section-index {
  margin-bottom: 20px;
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.section-heading-wide {
  max-width: 1050px;
}

.section-heading h2,
.split-heading h2,
.deliverables-copy h2,
.principles-title h2,
.founder-copy h2,
.faq-intro h2,
.start-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: uppercase;
}

.section-heading h2 span,
.start-copy h2 span {
  color: var(--red);
}

.section-heading > p:last-child,
.section-lede {
  max-width: 760px;
  color: inherit;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.7;
  opacity: .75;
}

.split-heading {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
  gap: clamp(34px, 6vw, 90px);
  margin-bottom: clamp(50px, 8vw, 100px);
}

.split-heading .section-index {
  padding-top: 12px;
}

.problem-section {
  overflow: hidden;
}

.problem-section::before {
  position: absolute;
  top: 0;
  right: 6vw;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--line-light);
}

.roof-question {
  position: relative;
  display: grid;
  min-height: 360px;
  align-content: center;
  padding: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  overflow: hidden;
}

.roof-question::after {
  position: absolute;
  top: 48%;
  right: 5%;
  width: 35%;
  height: 1px;
  content: "";
  background: var(--red);
  transform: rotate(-34deg);
  transform-origin: right;
}

.roof-question p {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 700;
}

.roof-question h3 {
  position: relative;
  z-index: 2;
  max-width: 890px;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 6vw, 6.9rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .92;
  text-transform: uppercase;
}

.roof-question-mark {
  position: absolute;
  right: 8%;
  bottom: -34%;
  color: transparent;
  font-family: Georgia, serif;
  font-size: clamp(20rem, 45vw, 42rem);
  line-height: 1;
  -webkit-text-stroke: 2px rgba(176,0,0,.25);
}

.blindspot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(56px, 8vw, 104px);
  border: 1px solid var(--black);
}

.blindspot-card {
  min-height: 400px;
  padding: clamp(34px, 5vw, 68px);
  background: var(--white);
}

.blindspot-card + .blindspot-card {
  border-left: 1px solid var(--black);
}

.blindspot-card-dark {
  color: var(--white);
  background: var(--black);
}

.card-kicker,
.comparison-label,
.assessment-label {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.blindspot-card h3 {
  max-width: 480px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  text-transform: uppercase;
}

.blindspot-card h3 em {
  color: var(--red);
  font-style: normal;
}

.blindspot-card > p {
  max-width: 510px;
  font-size: 1.05rem;
  opacity: .72;
}

.check-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #dedede;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
  content: "";
}

.comparison-section {
  overflow: hidden;
  background: var(--black);
}

.comparison-section::before {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 1px;
  height: 100%;
  content: "";
  background: #252525;
}

.comparison-table {
  position: relative;
  display: grid;
  border: 1px solid #343434;
  grid-template-columns: 1fr 86px 1fr;
}

.comparison-column {
  padding: clamp(34px, 5vw, 66px);
}

.comparison-common {
  color: #a8a8a8;
  background: #090909;
}

.comparison-reznet {
  background: var(--near-black);
}

.comparison-column ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  display: grid;
  min-height: 80px;
  align-items: center;
  border-top: 1px solid #303030;
  grid-template-columns: 42px 1fr;
  font-size: clamp(.96rem, 1.3vw, 1.12rem);
}

.comparison-column li:last-child {
  border-bottom: 1px solid #303030;
}

.comparison-column li span {
  color: var(--red);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.comparison-divider {
  display: grid;
  place-items: center;
  border-right: 1px solid #343434;
  border-left: 1px solid #343434;
  background: var(--red);
}

.comparison-divider span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  transform: rotate(-90deg);
}

.inspection-section {
  overflow: hidden;
  background: var(--near-black);
}

.inspection-grid {
  display: grid;
  border-top: 1px solid #383838;
  border-left: 1px solid #383838;
  grid-template-columns: repeat(3, 1fr);
}

.inspection-card {
  position: relative;
  min-height: 360px;
  padding: clamp(30px, 4vw, 50px);
  border-right: 1px solid #383838;
  border-bottom: 1px solid #383838;
  overflow: hidden;
  background: rgba(0,0,0,.3);
  transition: background .25s ease, transform .25s var(--ease);
}

.inspection-card:hover {
  z-index: 2;
  background: var(--black);
  transform: translateY(-6px);
}

.inspection-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #646464;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.inspection-card svg {
  width: 58px;
  height: 58px;
  margin-bottom: 50px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
}

.inspection-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.inspection-card p {
  margin-bottom: 0;
  color: #a9a9a9;
  line-height: 1.7;
}

.deliverables-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  gap: clamp(60px, 9vw, 130px);
}

.deliverable-list {
  display: grid;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--black);
  list-style: none;
}

.deliverable-list li {
  display: grid;
  gap: 8px;
  padding: 24px 0 24px 36px;
  border-bottom: 1px solid var(--line-light);
  position: relative;
}

.deliverable-list li::before {
  position: absolute;
  top: 31px;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--red);
}

.deliverable-list strong {
  font-size: 1.04rem;
}

.deliverable-list span {
  color: #5f5f5f;
}

.report-mockup {
  position: relative;
  min-height: 650px;
  padding: 32px 24px 24px;
  border: 1px solid var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-cover {
  position: relative;
  z-index: 4;
  display: flex;
  width: 78%;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  background: var(--black);
  box-shadow: 20px 20px 0 var(--red);
}

.report-cover img {
  position: absolute;
  top: 26px;
  left: 25px;
  width: 90px;
}

.report-cover > span {
  margin-bottom: 8px;
  color: #bdbdbd;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.report-cover strong {
  max-width: 300px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: .95;
}

.report-cover small {
  margin-top: 22px;
  color: var(--gray);
  font-size: .52rem;
  letter-spacing: .1em;
}

.report-pages {
  position: absolute;
  top: 74px;
  right: 18px;
  width: 66%;
  height: 500px;
}

.report-page {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 28px;
  border: 1px solid #c8c8c8;
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.report-page-one { transform: rotate(2deg) translate(18px, -5px); }
.report-page-two { transform: rotate(5deg) translate(34px, 8px); }
.report-page-three { transform: rotate(8deg) translate(47px, 18px); }

.report-page span {
  color: var(--red);
  font-size: .56rem;
  font-weight: 900;
}

.report-page strong {
  display: block;
  margin: 12px 0 28px;
  font-size: .8rem;
}

.report-page i {
  display: block;
  width: 85%;
  height: 8px;
  margin-bottom: 12px;
  background: #d5d5d5;
}

.report-page i:nth-of-type(2) { width: 68%; }
.report-page i:nth-of-type(3) { width: 77%; }

.report-page svg {
  width: 100%;
  fill: none;
  stroke: #868686;
  stroke-width: 1.5;
}

.report-page svg circle,
.report-page svg path:last-child {
  stroke: var(--red);
}

.report-page ol {
  display: grid;
  gap: 14px;
  padding-left: 24px;
  color: #555;
  font-size: .7rem;
}

.report-mockup > p {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  margin: 0;
  color: #6e6e6e;
  font-size: .65rem;
  text-align: center;
}

.process-section {
  overflow: hidden;
  background: var(--red);
}

.process-section .section-index,
.process-section .section-heading > p:last-child {
  color: var(--white);
}

.process-section .section-heading h2 span {
  color: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.45);
  border-left: 1px solid rgba(255,255,255,.45);
}

.process-card {
  min-height: 360px;
  padding: clamp(34px, 4vw, 54px);
  border-right: 1px solid rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.process-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
}

.process-top span {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.process-top i {
  height: 1px;
  background: rgba(255,255,255,.5);
  flex: 1;
}

.process-card h3 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}

.process-card p {
  max-width: 360px;
  min-height: 78px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.8);
}

.process-card strong {
  display: block;
  color: var(--black);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.assessment-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--black);
}

.assessment-card {
  padding: clamp(38px, 5vw, 68px);
  background: var(--white);
}

.assessment-card + .assessment-card {
  border-left: 1px solid var(--black);
}

.assessment-card-dark {
  color: var(--white);
  background: var(--black);
}

.assessment-card h3 {
  max-width: 510px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4.45rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .94;
  text-transform: uppercase;
}

.assessment-intro {
  min-height: 112px;
  color: inherit;
  font-size: 1.02rem;
  opacity: .73;
}

.assessment-details {
  display: grid;
  margin: 38px 0 34px;
  border-top: 1px solid currentColor;
}

.assessment-details > div {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid rgba(128,128,128,.4);
  grid-template-columns: 105px 1fr;
  gap: 20px;
}

.assessment-details span {
  color: var(--red);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.assessment-details p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  opacity: .78;
}

.text-link,
.audience-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.text-link {
  padding-bottom: 5px;
}

.downstream-note {
  display: grid;
  align-items: start;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid var(--black);
  grid-template-columns: 190px 1fr;
  gap: 30px;
}

.downstream-note span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.downstream-note p {
  max-width: 780px;
  margin: 0;
}

.audience-section {
  background: var(--black);
}

.audience-grid {
  display: grid;
  border-top: 1px solid #383838;
  border-left: 1px solid #383838;
  grid-template-columns: 1fr 1fr;
}

.audience-card {
  position: relative;
  min-height: 365px;
  padding: clamp(36px, 5vw, 66px);
  border-right: 1px solid #383838;
  border-bottom: 1px solid #383838;
  overflow: hidden;
}

.audience-card::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(176,0,0,.36);
  border-radius: 50%;
  content: "";
  transition: transform .35s var(--ease), border-color .35s ease;
}

.audience-card:hover::after {
  border-color: var(--red);
  transform: scale(1.18);
}

.audience-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.audience-card h3 {
  max-width: 480px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .96;
  text-transform: uppercase;
}

.audience-card p {
  max-width: 540px;
  margin-bottom: 32px;
  color: #a9a9a9;
}

.audience-card a {
  position: relative;
  z-index: 2;
  padding-bottom: 4px;
}

.principles-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
}

.principles-title {
  position: sticky;
  top: 160px;
}

.principles-list {
  border-top: 1px solid var(--black);
}

.principle {
  display: grid;
  min-height: 180px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 70px 1fr;
  gap: 26px;
}

.principle > span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.principle h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.principle p {
  max-width: 600px;
  margin: 0;
  color: #555;
  font-size: 1rem;
}

.founder-section {
  overflow: hidden;
  background: var(--black);
}

.founder-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.founder-mark {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  border: 1px solid #363636;
  overflow: hidden;
  background: var(--near-black);
}

.founder-mark::before,
.founder-mark::after {
  position: absolute;
  content: "";
}

.founder-mark::before {
  width: 74%;
  height: 74%;
  border: 1px solid rgba(176,0,0,.5);
  border-radius: 50%;
}

.founder-mark::after {
  width: 1px;
  height: 100%;
  background: #343434;
}

.founder-mark > span {
  position: relative;
  z-index: 2;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15rem, 28vw, 25rem);
  line-height: .8;
}

.founder-mark i {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 28px;
  left: 24px;
  color: #9f9f9f;
  font-size: .58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: center;
}

.founder-copy h2 {
  max-width: 730px;
}

.founder-intro {
  max-width: 710px;
  margin-bottom: 25px;
  color: #efefef;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.65;
}

.founder-copy > p:not(.section-index):not(.founder-intro):not(.credential-note) {
  max-width: 710px;
  color: #adadad;
  font-size: 1.02rem;
}

.founder-copy blockquote {
  max-width: 720px;
  margin: 42px 0;
  padding: 28px 0 28px 28px;
  border-left: 4px solid var(--red);
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.credential-note {
  max-width: 710px;
  padding-top: 22px;
  border-top: 1px solid #333;
  color: #737373;
  font-size: .72rem;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 160px;
}

.faq-intro p:last-child {
  color: #606060;
}

.faq-list {
  border-top: 1px solid var(--black);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  display: grid;
  min-height: 94px;
  align-items: center;
  padding: 24px 70px 24px 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: translateY(-50%);
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 30px;
  padding-right: 60px;
  color: #555;
  line-height: 1.75;
}

.start-section {
  overflow: hidden;
  background: var(--near-black);
}

.start-section::after {
  position: absolute;
  z-index: -1;
  top: -30%;
  right: -13%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(176,0,0,.5);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(176,0,0,.05), 0 0 0 180px rgba(176,0,0,.025);
}

.start-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .84fr) minmax(500px, 1.16fr);
  gap: clamp(56px, 8vw, 112px);
}

.start-copy {
  position: sticky;
  top: 155px;
}

.start-copy > p:not(.section-index) {
  max-width: 560px;
  color: #b1b1b1;
  font-size: 1.06rem;
}

.start-steps {
  display: grid;
  gap: 0;
  max-width: 560px;
  margin: 42px 0;
  border-top: 1px solid #3b3b3b;
}

.start-steps > div {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid #3b3b3b;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}

.start-steps span {
  color: var(--red);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.start-steps p {
  margin: 0;
  color: #d4d4d4;
}

.contact-direct {
  display: grid;
  gap: 8px;
  max-width: 560px;
  padding-top: 20px;
  border-top: 1px solid #3b3b3b;
}

.contact-direct p {
  margin: 0 0 6px;
  color: #767676;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 800;
  border-bottom: 1px solid var(--red);
}

.form-card {
  border: 1px solid #3b3b3b;
  color: var(--black);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-card-head {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(24px, 4vw, 44px);
  color: var(--white);
  background: var(--red);
}

.form-card-head span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.form-card-head small {
  color: rgba(255,255,255,.75);
  font-size: .66rem;
  text-transform: uppercase;
}

#assessment-request {
  padding: clamp(28px, 5vw, 48px);
}

.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}

.field label {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field label span,
.consent-row span span {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #bfbfbb;
  border-radius: 0;
  color: var(--black);
  background: var(--white);
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #777;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(176,0,0,.13);
}

.field [aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(176,0,0,.13);
}

.consent-row {
  display: grid;
  align-items: start;
  margin: 4px 0 26px;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: #444;
  font-size: .8rem;
  cursor: pointer;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.form-submit {
  width: 100%;
  min-height: 60px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  color: var(--black);
  background: #ededeb;
  font-size: .86rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: #1c7b3c;
}

.form-status a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
}

.form-fineprint {
  margin: 18px 0 0;
  color: #686868;
  font-size: .68rem;
  line-height: 1.6;
}

.form-fineprint a {
  border-bottom: 1px solid #555;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.site-footer {
  border-top: 1px solid #252525;
  color: var(--white);
  background: var(--black);
}

.footer-main {
  display: grid;
  padding-block: 70px;
  grid-template-columns: minmax(320px, 1.4fr) .6fr .8fr;
  gap: clamp(40px, 7vw, 90px);
}

.footer-brand img {
  width: 240px;
  margin: -20px 0 15px -14px;
}

.footer-brand p {
  max-width: 430px;
  color: #898989;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--red);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: #d7d7d7;
  border-bottom: 1px solid transparent;
}

.footer-column a:hover {
  border-color: var(--red);
}

.footer-column span {
  max-width: 260px;
  color: #777;
  font-size: .86rem;
}

.footer-bottom {
  display: grid;
  min-height: 70px;
  align-items: center;
  border-top: 1px solid #252525;
  color: #777;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom span:nth-child(2) {
  color: #b0b0b0;
}

.footer-bottom a {
  color: #b0b0b0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy, thank-you and not-found pages */
.utility-page {
  min-height: 100vh;
  color: var(--black);
  background: var(--paper);
}

.utility-page .site-header {
  position: relative;
}

.utility-hero {
  padding: clamp(70px, 11vw, 140px) 0 50px;
  color: var(--white);
  background: var(--black);
}

.utility-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .9;
  text-transform: uppercase;
}

.utility-hero p {
  max-width: 720px;
  color: #a9a9a9;
  font-size: 1.08rem;
}

.utility-content {
  max-width: 860px;
  padding-block: 70px 100px;
}

.utility-content h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.utility-content p,
.utility-content li {
  color: #444;
}

.utility-content a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
}

.utility-content .button {
  margin-top: 24px;
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 1040px);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .diagnostic-card {
    margin-left: 0;
  }

  .deliverables-grid,
  .founder-grid,
  .start-grid {
    grid-template-columns: 1fr;
  }

  .report-mockup {
    max-width: 650px;
  }

  .founder-mark {
    max-width: 620px;
    min-height: 520px;
  }

  .start-copy {
    position: static;
  }

  .start-copy > p:not(.section-index),
  .start-steps,
  .contact-direct {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 112px;
  }

  .launch-rail {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .header-shell {
    min-height: 82px;
  }

  .brand {
    width: 94px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border-bottom: 0 solid #333;
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s var(--ease), opacity .2s ease, visibility .2s ease, border-width .2s ease;
  }

  .primary-nav.is-open {
    max-height: 480px;
    border-bottom-width: 1px;
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a,
  .primary-nav .nav-cta {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border: 0;
    border-top: 1px solid #292929;
    color: var(--white);
    background: var(--black);
  }

  .primary-nav a::before {
    color: var(--red);
    content: "→";
    order: 2;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    color: var(--white);
    background: var(--red);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid span,
  .trust-grid span:first-child {
    border: 0;
    border-right: 1px solid #252525;
    border-bottom: 1px solid #252525;
  }

  .split-heading,
  .principles-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading .section-index {
    padding-top: 0;
  }

  .blindspot-grid,
  .assessment-cards {
    grid-template-columns: 1fr;
  }

  .blindspot-card + .blindspot-card,
  .assessment-card + .assessment-card {
    border-top: 1px solid var(--black);
    border-left: 0;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-divider {
    min-height: 54px;
    border: 0;
    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
  }

  .comparison-divider span {
    transform: none;
  }

  .inspection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 320px;
  }

  .process-card p {
    min-height: 0;
  }

  .assessment-intro {
    min-height: 0;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .principles-title,
  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 22px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --section-space: 4.8rem;
  }

  html {
    scroll-padding-top: 96px;
  }

  .launch-rail {
    min-height: 38px;
    padding-inline: 14px;
    font-size: .62rem;
  }

  .launch-dot,
  .launch-rail a {
    display: none;
  }

  .header-shell {
    min-height: 72px;
  }

  .brand {
    width: 82px;
  }

  .menu-toggle {
    min-width: 70px;
    min-height: 44px;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    gap: 52px;
    padding-block: 62px 72px;
  }

  .eyebrow {
    display: grid;
    gap: 7px;
    font-size: .61rem;
  }

  .hero-logo {
    width: 220px;
    margin-left: -10px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .diagnostic-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .diagnostic-list {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    min-height: 58px;
  }

  .section-heading h2,
  .split-heading h2,
  .deliverables-copy h2,
  .principles-title h2,
  .founder-copy h2,
  .faq-intro h2,
  .start-copy h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .roof-question {
    min-height: 320px;
    padding: 34px 18px;
  }

  .roof-question h3 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  .roof-question::after {
    right: -5%;
    width: 50%;
  }

  .blindspot-card {
    min-height: auto;
    padding: 34px 24px;
  }

  .blindspot-card h3 {
    font-size: 2.45rem;
  }

  .comparison-column {
    padding: 34px 22px;
  }

  .comparison-column li {
    grid-template-columns: 34px 1fr;
  }

  .inspection-grid {
    grid-template-columns: 1fr;
  }

  .inspection-card {
    min-height: 300px;
  }

  .report-mockup {
    min-height: 510px;
    padding: 18px;
  }

  .report-cover {
    width: 83%;
    min-height: 390px;
    padding: 24px;
    box-shadow: 12px 12px 0 var(--red);
  }

  .report-cover img {
    width: 70px;
  }

  .report-pages {
    top: 48px;
    right: 9px;
    width: 65%;
    height: 390px;
  }

  .report-page {
    padding: 18px;
  }

  .process-card {
    min-height: 290px;
    padding: 34px 24px;
  }

  .process-top {
    margin-bottom: 48px;
  }

  .assessment-card {
    padding: 36px 24px;
  }

  .assessment-card h3 {
    font-size: 2.55rem;
  }

  .assessment-details > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .downstream-note {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 330px;
    padding: 36px 24px;
  }

  .audience-card h3 {
    font-size: 2.5rem;
  }

  .principle {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .founder-mark {
    min-height: 420px;
  }

  .founder-mark > span {
    font-size: 15rem;
  }

  .founder-copy blockquote {
    padding-left: 20px;
    font-size: 1.7rem;
  }

  .faq-list summary {
    padding-right: 54px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .start-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  #assessment-request {
    padding: 26px 20px;
  }

  .form-grid-two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 54px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Intrinsic-size guards: every responsive grid track must be allowed to shrink. */
.roof-question {
  grid-template-columns: minmax(0, 1fr);
}

.split-heading > *,
.deliverables-grid > *,
.principles-grid > *,
.founder-grid > *,
.faq-grid > *,
.start-grid > *,
.assessment-cards > *,
.audience-grid > *,
.inspection-grid > *,
.process-grid > * {
  min-width: 0;
}

.report-mockup {
  overflow: hidden;
}

.honeypot,
.honeypot * {
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  max-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 1100px) {
  .deliverables-grid,
  .founder-grid,
  .start-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .launch-rail {
    overflow: hidden;
  }

  .launch-rail > span:not(.launch-dot) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .report-page strong,
  .report-page li {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 640px) {
  .report-pages {
    right: 42px;
    width: 55%;
  }

  .report-page-one { transform: rotate(1deg) translate(2px, 0); }
  .report-page-two { transform: rotate(2.5deg) translate(8px, 5px); }
  .report-page-three { transform: rotate(4deg) translate(14px, 10px); }
}
