:root {
  --navy: #3e2349;
  --navy-deep: #28142f;
  --blue: #68751f;
  --gold: #b7c84a;
  --gold-pale: #e8edc2;
  --sand: #d9a96e;
  --chalk: #f6f2ee;
  --paper: #fffdf9;
  --slate: #2d2731;
  --muted: #675f69;
  --line: #ddd4dc;
  --display: "Archivo", "Aptos Display", "Segoe UI", sans-serif;
  --body: "DM Sans", "Aptos", "Segoe UI", sans-serif;
  --utility: "IBM Plex Mono", Consolas, "SFMono-Regular", monospace;
  --max: 1240px;
  --section-space: clamp(88px, 9vw, 124px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate);
  background: var(--chalk);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--navy);
  background: color-mix(in srgb, var(--chalk) 92%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 5px 22px rgb(62 35 73 / 7%);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-family: var(--display);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 205px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 185px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 17px;
  color: var(--paper);
  background: var(--navy);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  color: var(--navy-deep);
  background: var(--gold);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  min-height: calc(100vh - 78px);
  max-width: var(--max);
  padding: clamp(65px, 9vh, 108px) 24px 90px;
  margin: 0 auto;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -16vw;
  bottom: 0;
  width: 72%;
  height: 1px;
  content: "";
  background: var(--line);
  transform: rotate(-17deg);
  transform-origin: right;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-right: clamp(25px, 5vw, 76px);
}

.eyebrow,
.section-index,
.report-label,
.standard-label {
  margin: 0 0 23px;
  color: var(--blue);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(4rem, 7.2vw, 7.1rem);
  font-weight: 700;
  letter-spacing: -0.068em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
  font-weight: 500;
}

.hero-lede {
  max-width: 630px;
  margin: 35px 0 0;
  color: #514853;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 0;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--navy);
}

.button-primary:hover {
  background: var(--blue);
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold);
}

.button-gold:hover {
  background: color-mix(in srgb, var(--gold) 82%, var(--paper));
}

.text-link {
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--blue);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 55px 0 0;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.trust-row li {
  display: flex;
  align-items: center;
}

.trust-row li:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 15px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.record-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 560px;
  padding-top: 90px;
}

.roof-contour {
  position: absolute;
  top: 0;
  left: 2%;
  width: 96%;
  height: 275px;
}

.roof-left,
.roof-right {
  position: absolute;
  top: 120px;
  height: 3px;
  background: var(--gold);
}

.roof-left {
  left: 0;
  width: 56%;
  transform: rotate(-24deg);
  transform-origin: right;
}

.roof-right {
  right: 0;
  width: 56%;
  transform: rotate(24deg);
  transform-origin: left;
}

.chimney {
  position: absolute;
  top: 50px;
  right: 17%;
  width: 48px;
  height: 94px;
  border: 3px solid var(--gold);
  border-bottom: 0;
}

.report-card {
  position: relative;
  z-index: 2;
  width: min(91%, 535px);
  padding: clamp(25px, 4vw, 40px);
  margin-left: auto;
  color: var(--slate);
  background: var(--paper);
  border-top: 5px solid var(--blue);
  box-shadow: 0 32px 80px rgb(62 35 73 / 18%);
  transform: rotate(1.2deg);
}

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

.report-head > div {
  display: flex;
  flex-direction: column;
}

.report-label {
  margin-bottom: 4px;
}

.report-head strong {
  color: var(--navy);
  font-size: 1.43rem;
}

.status {
  padding: 5px 8px;
  color: #46500f;
  background: var(--gold-pale);
  font-family: var(--utility);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  padding: 20px 0;
  font-family: var(--utility);
  font-size: 0.57rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
}

.report-meta span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
}

.report-meta b {
  margin-top: 4px;
  color: var(--navy);
  font-size: 0.7rem;
}

.report-lines {
  padding: 0;
  margin: 12px 0 24px;
  list-style: none;
}

.report-lines li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 2px;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line);
}

.report-lines b {
  color: var(--blue);
  font-family: var(--utility);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.report-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.photo-stack {
  display: flex;
}

.photo-stack i {
  display: block;
  width: 26px;
  height: 22px;
  background: var(--gold-pale);
  border: 2px solid var(--paper);
}

.photo-stack i + i {
  margin-left: -7px;
}

.visual-caption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 23px 7% 0 0;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.67rem;
}

.visual-caption span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.statement {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(40px, 8vw, 130px);
  max-width: var(--max);
  padding: var(--section-space) 24px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.statement h2,
.section-heading h2,
.network-copy h2,
.price-copy h2,
.availability-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.statement > div > p {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.plan-section {
  padding: var(--section-space) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 18px clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .section-index {
  grid-row: 1 / span 2;
  align-self: start;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.scope-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  min-height: 150px;
  padding: 27px 30px 25px 0;
  border-bottom: 1px solid var(--line);
}

.scope-list li:nth-child(odd) {
  padding-right: 50px;
  border-right: 1px solid var(--line);
}

.scope-list li:nth-child(even) {
  padding-left: 50px;
}

.scope-number {
  color: var(--gold);
  font-family: var(--utility);
  font-size: 0.73rem;
  font-weight: 500;
}

.scope-list h3 {
  margin: -4px 0 8px;
  color: var(--navy);
  font-size: 1.17rem;
  line-height: 1.25;
}

.scope-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.scope-list .scope-highlight {
  color: var(--paper);
  background: var(--navy);
  border: 0;
}

.scope-list .scope-highlight h3,
.scope-list .scope-highlight p {
  color: var(--paper);
}

.network-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 730px;
  color: var(--paper);
  background: var(--navy);
}

.network-copy,
.network-standard {
  padding: clamp(80px, 9vw, 135px) max(24px, calc((100vw - var(--max)) / 2));
}

.network-copy {
  padding-right: clamp(45px, 8vw, 120px);
}

.network-copy .section-index,
.network-standard .standard-label {
  color: #d0dc7a;
}

.network-copy h2 {
  color: var(--paper);
}

.network-copy > p:not(.section-index) {
  max-width: 690px;
  margin: 33px 0 35px;
  color: #ddd4df;
}

.light-link {
  color: var(--paper);
  border-color: color-mix(in srgb, var(--paper) 45%, var(--navy));
}

.light-link span {
  color: var(--gold);
}

.network-standard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(45px, 7vw, 100px);
  background: var(--navy-deep);
  border-left: 1px solid #573860;
}

.network-standard ul {
  padding: 0;
  margin: 0 0 60px;
  list-style: none;
}

.network-standard li {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  color: #e8dfea;
  border-bottom: 1px solid #573860;
}

.network-standard li span {
  color: var(--gold);
  font-family: var(--utility);
  font-size: 0.68rem;
}

.network-standard > strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  letter-spacing: -0.035em;
}

.pricing-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 10vw, 150px);
  max-width: var(--max);
  padding: var(--section-space) 24px;
  margin: 0 auto;
}

.coverage-section {
  display: grid;
  grid-template-columns: 0.6fr 1.25fr 0.9fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 43px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--navy);
  background: var(--gold);
}

.coverage-section p,
.coverage-section span {
  margin: 0;
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.coverage-section strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.price-lockup {
  display: flex;
  flex-direction: column;
}

.price {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.price sup {
  position: relative;
  top: -0.25em;
  margin-right: 5px;
  color: var(--gold);
  font-size: 0.38em;
}

.price-unit {
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-copy {
  align-self: center;
  max-width: 640px;
}

.price-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.price-copy > p {
  margin: 28px 0 0;
  color: var(--muted);
}

.price-copy .fine-print {
  padding-top: 20px;
  color: var(--slate);
  font-size: 0.83rem;
  border-top: 1px solid var(--line);
}

.availability-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 9vw, 130px);
  padding: var(--section-space) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: var(--navy);
}

.availability-copy .section-index {
  color: #d0dc7a;
}

.availability-copy h2 {
  color: var(--paper);
}

.availability-copy > p:last-child {
  max-width: 500px;
  margin-top: 28px;
  color: #e8dfea;
}

.availability-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 18px;
  align-self: center;
}

.availability-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.availability-form label:last-of-type {
  grid-column: 1 / -1;
}

.availability-form label span {
  font-family: var(--utility);
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.availability-form input {
  width: 100%;
  min-height: 53px;
  padding: 11px 13px;
  color: var(--navy);
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: 0;
}

.availability-form input:focus {
  border-color: var(--gold);
  outline: 0;
}

.availability-form .button {
  justify-self: start;
}

.form-note {
  align-self: center;
  margin: 0;
  color: #ddd4df;
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  color: #c7baca;
  background: var(--navy-deep);
  font-size: 0.78rem;
}

.footer-brand {
  color: var(--paper);
}

.site-footer > p {
  margin: 0;
}

.footer-meta {
  justify-self: end;
  font-family: var(--utility);
  font-size: 0.65rem;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    width: 45px;
    height: 45px;
    place-content: center;
    background: transparent;
    border: 0;
  }

  .site-header .brand-logo {
    width: 180px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--navy);
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
    background: var(--gold);
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:last-child {
    background: var(--gold);
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    width: 100vw;
    height: 100vh;
    padding: 90px 30px;
    color: var(--paper);
    background: var(--navy);
    font-size: 1.7rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-top: 15px;
    color: var(--navy);
    background: var(--gold);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .record-visual {
    width: min(100%, 650px);
    margin: 65px auto 0;
  }

  .statement,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading .section-index {
    grid-row: auto;
  }

  .network-section,
  .pricing-section,
  .availability-section,
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    gap: 12px;
  }

  .network-copy,
  .network-standard {
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-meta {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 4.9rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .trust-row li:not(:last-child)::after {
    display: none;
  }

  .record-visual {
    min-height: 500px;
    padding-top: 65px;
  }

  .roof-contour {
    height: 190px;
  }

  .roof-left,
  .roof-right {
    top: 85px;
  }

  .chimney {
    top: 35px;
    width: 38px;
    height: 67px;
  }

  .report-card {
    width: 96%;
  }

  .report-meta {
    gap: 7px;
  }

  .statement,
  .plan-section,
  .pricing-section,
  .availability-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

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

  .scope-list li,
  .scope-list li:nth-child(odd),
  .scope-list li:nth-child(even) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
  }

  .scope-list .scope-highlight {
    padding: 25px 22px;
  }

  .network-section {
    min-height: 0;
  }

  .availability-form {
    grid-template-columns: 1fr;
  }

  .availability-form label:last-of-type {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
