:root {
  --ink: #141416;
  --paper: #f4f1ea;
  --panel: #fcfbf7;
  --line: rgba(20, 20, 22, 0.14);
  --muted: #5f6669;
  --teal: #1d8f97;
  --red: #f72572;
  --yellow: #ff983d;
  --coral: #ff6f59;
  --steel: #2f3e45;
  --shadow: 0 24px 60px rgba(9, 10, 12, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 30;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 241, 234, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wordmark-pin {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 152, 61, 0.18), rgba(247, 37, 114, 0.18)),
    url("./assets/brand-mark-128.png") center / 23px 23px no-repeat,
    linear-gradient(180deg, var(--yellow), var(--red));
  box-shadow: 0 8px 20px rgba(247, 37, 114, 0.18);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: rgba(20, 20, 22, 0.72);
}

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

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.78) 0%, rgba(16, 17, 20, 0.45) 46%, rgba(16, 17, 20, 0.2) 100%),
    linear-gradient(180deg, rgba(16, 17, 20, 0.08) 0%, rgba(16, 17, 20, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: min(760px, 100%);
  padding: 110px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow-dark {
  color: rgba(20, 20, 22, 0.62);
}

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

h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 38ch;
  margin-top: 18px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.84);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.summary-band {
  position: relative;
  margin-top: -1px;
  padding: 0 0 28px;
  background: var(--paper);
}

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

.summary-item,
.step,
.handoff-item,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.summary-item {
  min-height: 156px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.summary-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.summary-text {
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--paper);
}

.workflow-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #15181b;
}

.workflow-section::before,
.workflow-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.workflow-section::before {
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.78) 0%, rgba(16, 17, 20, 0.5) 50%, rgba(16, 17, 20, 0.28) 100%),
    linear-gradient(180deg, rgba(244, 241, 234, 0.9) 0%, rgba(16, 17, 20, 0.26) 18%, rgba(16, 17, 20, 0.82) 100%),
    url("./assets/devices-pinreport.jpg") center 42% / cover no-repeat;
  filter: saturate(0.9);
}

.workflow-section::after {
  background: linear-gradient(180deg, rgba(20, 20, 22, 0), rgba(20, 20, 22, 0.38));
}

.workflow-section > .inner {
  position: relative;
  z-index: 1;
}

.workflow-section .eyebrow-dark,
.workflow-section .section-copy p:last-child,
.workflow-section .step p {
  color: rgba(255, 255, 255, 0.78);
}

.workflow-section .step {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(16, 17, 20, 0.58);
  backdrop-filter: blur(12px);
}

.workflow-section .step-number {
  color: #ffb06f;
}

.section-dark {
  background: var(--steel);
  color: #fff;
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(29, 143, 151, 0.08), rgba(215, 154, 25, 0.08)),
    var(--panel);
}

.section-copy {
  max-width: 760px;
}

.section-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-copy p:last-child {
  max-width: 46ch;
  margin-top: 16px;
  font-size: 1.03rem;
  color: var(--muted);
}

.section-dark .section-copy p:last-child,
.section-dark .detail-list {
  color: rgba(255, 255, 255, 0.8);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.step {
  padding: 22px;
}

.step-number {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal);
}

.step h3,
.handoff-item h3 {
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.step p,
.handoff-item p,
.media-copy p,
.price-list {
  color: var(--muted);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 30px;
  align-items: center;
}

.media-layout-reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.media-layout-reverse .media-copy {
  order: 1;
}

.media-layout-reverse .media-frame {
  order: 2;
}

.media-copy h2 {
  font-size: clamp(2.1rem, 4.1vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.media-copy p {
  margin-top: 16px;
  max-width: 48ch;
  font-size: 1.03rem;
}

.detail-list,
.price-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li,
.price-list li {
  position: relative;
  padding-left: 18px;
}

.detail-list li + li,
.price-list li + li {
  margin-top: 10px;
}

.detail-list li::before,
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
}

.media-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.section-light .media-frame,
.section-accent .media-frame {
  border-color: var(--line);
}

.product-surface {
  min-height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-light .product-surface,
.section-accent .product-surface {
  border-color: var(--line);
}

.surface-heading,
.surface-footer,
.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
}

.surface-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.surface-title {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.crew-surface {
  background: #10171d;
  color: #fff;
}

.crew-map,
.report-map {
  position: relative;
  overflow: hidden;
}

.crew-map {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(8, 14, 18, 0.2), rgba(8, 14, 18, 0.36)),
    url("./assets/hero-pinreport.jpg") center center / cover no-repeat;
}

.crew-map::before,
.crew-map::after,
.report-map::before,
.report-map::after {
  content: "";
  position: absolute;
  border-radius: 4px;
  background: rgba(255, 214, 107, 0.18);
  border: 1px solid rgba(255, 214, 107, 0.28);
}

.crew-map::before {
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(16, 23, 29, 0.12), rgba(16, 23, 29, 0.54)),
    radial-gradient(circle at 64% 33%, rgba(255, 152, 61, 0.24), transparent 24%);
  transform: none;
}

.crew-map::after {
  display: none;
}

.map-marker {
  position: absolute;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px 999px 999px 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  border: 2px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  color: transparent;
  font-size: 0;
}

.map-marker::before {
  content: attr(title);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  text-indent: 0;
  transform: rotate(45deg);
}

.map-marker-red {
  background: #d84c2f;
}

.map-marker-orange {
  background: #d77a19;
}

.map-marker-yellow {
  background: #d0a319;
}

.crew-detail {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 290px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(10, 15, 19, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}

.crew-detail h3,
.report-row h3 {
  margin-top: 8px;
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.crew-detail p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.surface-footer {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.report-surface {
  background: #fbfaf6;
  color: var(--ink);
}

.report-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(216, 76, 47, 0.1);
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 700;
}

.report-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  padding: 0 18px;
}

.report-map {
  min-height: 210px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(252, 251, 247, 0.08), rgba(20, 20, 22, 0.14)),
    url("./assets/roof-residential-hero-pinreport-v2.jpg") center center / cover no-repeat;
}

.report-map::before {
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(252, 251, 247, 0.08), rgba(20, 20, 22, 0.16)),
    radial-gradient(circle at 32% 38%, rgba(247, 37, 114, 0.18), transparent 24%);
  transform: none;
}

.report-map::after {
  display: none;
}

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

.report-stat {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.report-stat strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.report-stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.report-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.report-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.report-row p {
  margin-top: 6px;
  color: var(--muted);
}

.report-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.report-badge-red {
  background: var(--red);
}

.report-badge-orange {
  background: #d77a19;
}

.report-badge-yellow {
  background: #d0a319;
}

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

.handoff-item {
  padding: 18px;
}

.handoff-item p {
  margin-top: 8px;
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.use-case-list-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-hero {
  position: relative;
  min-height: 74svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #17181b;
}

.scenario-hero-image,
.scenario-hero-overlay {
  position: absolute;
  inset: 0;
}

.scenario-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.scenario-hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.82) 0%, rgba(16, 17, 20, 0.5) 42%, rgba(16, 17, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 17, 20, 0.06) 0%, rgba(16, 17, 20, 0.62) 100%);
}

.scenario-hero-right .scenario-hero-overlay {
  background:
    linear-gradient(270deg, rgba(16, 17, 20, 0.84) 0%, rgba(16, 17, 20, 0.52) 42%, rgba(16, 17, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 17, 20, 0.06) 0%, rgba(16, 17, 20, 0.62) 100%);
}

.scenario-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 110px 0 76px;
  color: #fff;
}

.scenario-content h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.scenario-content p:last-child {
  max-width: 34ch;
  margin-top: 18px;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  color: rgba(255, 255, 255, 0.84);
}

.scenario-content-right {
  margin-left: auto;
  text-align: right;
}

.scenario-content-right h2,
.scenario-content-right p:last-child {
  margin-left: auto;
}

.use-case {
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(252, 251, 247, 0.9);
  font-size: 1.02rem;
  line-height: 1.35;
}

.pricing-section .section-copy h2 {
  max-width: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.price-card {
  min-height: 100%;
  padding: 24px;
}

.price-card-featured {
  background: linear-gradient(180deg, rgba(215, 154, 25, 0.12), rgba(216, 76, 47, 0.08)), var(--panel);
}

.price-tier {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.price-amount {
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.price-note {
  margin-top: 6px;
  color: var(--muted);
}

.closing-cta {
  padding: 92px 0 104px;
  background:
    linear-gradient(180deg, rgba(47, 62, 69, 0.95), rgba(20, 20, 22, 0.98)),
    var(--ink);
  color: #fff;
}

.closing-content {
  text-align: center;
}

.closing-content h2 {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.closing-content .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 20px 0 34px;
  background: var(--paper);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  min-height: calc(100svh - 180px);
}

.legal-shell {
  max-width: 860px;
}

.legal-header {
  max-width: 720px;
}

.legal-title {
  max-width: none;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.legal-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
}

.legal-prose {
  margin-top: 32px;
  max-width: 760px;
}

.legal-prose h2,
.support-lead h2,
.support-item h2 {
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.legal-prose h2 {
  margin-top: 28px;
}

.legal-prose p,
.support-lead p,
.support-item p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted);
}

.legal-prose a,
.support-lead a,
.support-item a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.support-lead {
  max-width: 760px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.support-item {
  min-height: 100%;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

@media (max-width: 960px) {
  .summary-grid,
  .workflow-grid,
  .media-layout,
  .media-layout-reverse,
  .pricing-grid,
  .use-case-list,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .report-overview {
    grid-template-columns: 1fr;
  }

  .summary-item {
    box-shadow: none;
  }

  .media-layout-reverse .media-copy,
  .media-layout-reverse .media-frame {
    order: initial;
  }

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

@media (max-width: 720px) {
  .inner {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.88rem;
  }

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

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding: 108px 0 54px;
  }

  .scenario-hero {
    min-height: 62svh;
  }

  .scenario-content,
  .scenario-content-right {
    width: min(100%, 560px);
    padding: 88px 0 56px;
    text-align: left;
    margin-left: 0;
  }

  .scenario-content h2,
  .scenario-content-right h2,
  .scenario-content-right p:last-child {
    margin-left: 0;
  }

  .scenario-hero-overlay,
  .scenario-hero-right .scenario-hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 17, 20, 0.18) 0%, rgba(16, 17, 20, 0.82) 100%),
      linear-gradient(90deg, rgba(16, 17, 20, 0.28) 0%, rgba(16, 17, 20, 0.18) 100%);
  }

  .hero-points {
    gap: 10px;
  }

  .section {
    padding: 72px 0;
  }

  .summary-band {
    padding-bottom: 18px;
  }

  .handoff-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 0 12px;
  }

  .nav {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
    font-size: 0.82rem;
  }
}
