:root {
  --ink: #102027;
  --muted: #53666d;
  --soft: #eef5f5;
  --paper: #ffffff;
  --line: #d9e5e6;
  --aqua: #0f8b8d;
  --deep: #073b4c;
  --gold: #e2a63b;
  --coral: #d95d39;
  --shadow: 0 22px 60px rgba(7, 59, 76, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfd;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  color: #fff;
  background: var(--deep);
  font-size: 0.93rem;
  font-weight: 750;
}

.top-strip a {
  color: #a8f0ef;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(251, 253, 253, 0.92);
  border-bottom: 1px solid rgba(16, 32, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: var(--deep);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 59, 76, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  white-space: nowrap;
}

.nav-cta {
  padding: 10px 14px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(780px, calc(100vh - 74px));
  padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 54px);
  overflow: hidden;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

button.button {
  font-family: inherit;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  color: #fff;
  background: var(--aqua);
  box-shadow: 0 16px 36px rgba(15, 139, 141, 0.22);
}

.secondary {
  color: var(--deep);
  background: #fff;
  border-color: var(--line);
}

.light {
  color: var(--deep);
  background: #fff;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 36px 0 0;
}

.hero-search-line {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.quick-facts div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-facts dt {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 850;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
}

.hero-visual img {
  width: 100%;
  height: min(58vh, 610px);
  min-height: 470px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-card {
  position: absolute;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  display: grid;
  gap: 8px;
  width: min(260px, calc(100% - 28px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7, 59, 76, 0.18);
  backdrop-filter: blur(14px);
}

.report-card strong {
  font-size: 1.02rem;
}

.report-card span {
  padding-top: 8px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

section {
  padding: clamp(54px, 7vw, 100px) clamp(18px, 4vw, 54px);
}

.band {
  background: var(--soft);
}

.intro,
.realtor-section,
.price-band,
.request,
.equipment-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.price-band h2,
.request h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.price-band p,
.request p {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.statement {
  padding: 28px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.statement p {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.statement span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  margin-bottom: 34px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.answer-grid,
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.answer-grid article,
.city-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.answer-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.answer-grid h3,
.city-grid h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.16;
}

.answer-grid p,
.city-grid p {
  margin: 0;
  color: var(--muted);
}

.city-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--aqua);
  font-weight: 850;
}

.service-area-cta {
  margin-top: 22px;
}

.service-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
}

.service-panel {
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.service-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.town-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.town-grid article {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.town-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.1;
}

.town-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.equipment-band {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 0.95fr);
}

.equipment-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.scope-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scope-grid h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 8px;
}

.scope-grid li,
.check-list li {
  color: var(--muted);
}

.price-band {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), #09636b);
}

.price-band p {
  color: rgba(255, 255, 255, 0.78);
}

.price-band .button {
  justify-self: end;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.report-sheet {
  padding: clamp(18px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-top span {
  color: var(--muted);
}

.finding {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.finding:last-child {
  border-bottom: 0;
}

.finding p {
  margin: 10px 0 0;
  color: var(--muted);
}

.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.attention {
  color: #7a4b00;
  background: #fff1d0;
}

.safety {
  color: #8a2f16;
  background: #ffe1d8;
}

.note {
  color: #07565b;
  background: #dff4f4;
}

.report-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.report-copy p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  background: linear-gradient(var(--aqua), var(--aqua)) left 0.72em / 16px 2px no-repeat;
}

.realtor-points {
  display: grid;
  gap: 12px;
}

.realtor-points div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.realtor-points span {
  color: var(--muted);
}

.limit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.limit-list p {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.request {
  align-items: start;
  color: #fff;
  background: var(--deep);
}

.request p {
  color: rgba(255, 255, 255, 0.76);
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #fff;
  background: #071f27;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer a {
  font-weight: 800;
}

.copy-card,
.legal-card {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(7, 59, 76, 0.08);
}

.copy-card p,
.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.copy-button {
  margin-top: 1.15rem;
  border: 1px solid rgba(20, 36, 38, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 0.68rem 0.95rem;
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.answer-list {
  display: grid;
  gap: 1rem;
}

.answer-list article {
  border-bottom: 1px solid var(--line);
  padding: 0 0 1rem;
}

.answer-list h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.answer-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--blue);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 59, 76, 0.08);
}

.resource-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.resource-table th,
.resource-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.resource-table th {
  color: var(--deep);
  background: var(--soft);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.resource-table td {
  color: var(--muted);
}

.inspection-report {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 59, 76, 0.08);
}

.report-header,
.report-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.report-header h2 {
  margin: 0 0 0.35rem;
}

.report-header p,
.inspection-report p,
.inspection-report li,
.report-meta span {
  color: var(--muted);
  line-height: 1.65;
}

.inspection-report h3 {
  margin-top: 1.35rem;
}

.legal-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.legal-card + .legal-card {
  margin-top: 14px;
}

.one-sheet {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
}

.one-sheet-page {
  padding: 28px;
}

.sheet-hero {
  padding: 26px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
}

.sheet-hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
}

.sheet-hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.sheet-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.sheet-stat-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sheet-stat-row strong,
.sheet-stat-row span {
  display: block;
}

.sheet-stat-row strong {
  font-size: 24px;
}

.sheet-stat-row span {
  margin-top: 3px;
  color: var(--muted);
}

.sheet-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sheet-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.sheet-list li {
  margin: 0;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
}

.referral {
  margin-top: 14px;
}

.referral p {
  color: var(--muted);
}

@media print {
  .top-strip,
  .site-header,
  .site-footer,
  .no-print {
    display: none;
  }

  body {
    background: #fff;
  }

  section {
    padding: 0;
  }

  .one-sheet h1 {
    font-size: 36px;
  }

  .one-sheet-page {
    padding: 0;
  }
}

@media (max-width: 980px) {
  .top-strip {
    flex-wrap: wrap;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero,
  .intro,
  .realtor-section,
  .price-band,
  .request,
  .report-layout,
  .equipment-band,
  .service-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 380px;
  }

  .quick-facts,
  .scope-grid,
  .limit-list,
  .answer-grid,
  .city-grid,
  .town-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-band .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-facts,
  .scope-grid,
  .limit-list,
  .answer-grid,
  .city-grid,
  .town-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 310px;
  }

  .report-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Premium homepage pass */
:root {
  --aqua-bright: #25c7c9;
  --night: #061d27;
  --shadow: 0 26px 80px rgba(7, 59, 76, 0.2);
}

body {
  background: linear-gradient(180deg, #f6fbfb 0, #ffffff 42%, #eef7f6 100%);
}

.top-strip {
  padding: 10px 16px;
  color: #ecffff;
  background: linear-gradient(90deg, var(--night), var(--deep) 48%, #0b5b61);
  box-shadow: 0 12px 28px rgba(6, 29, 39, 0.22);
}

.top-strip a {
  color: #f6d894;
}

.brand-mark {
  background: linear-gradient(145deg, var(--deep), var(--aqua));
  box-shadow: 0 14px 32px rgba(7, 59, 76, 0.28);
}

.nav-cta {
  background: linear-gradient(135deg, var(--deep), #0b6770);
  box-shadow: 0 10px 22px rgba(7, 59, 76, 0.2);
}

.hero {
  position: relative;
  color: #f4ffff;
  background:
    linear-gradient(115deg, rgba(6, 29, 39, 0.98) 0%, rgba(7, 59, 76, 0.96) 48%, rgba(11, 100, 103, 0.88) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 0 52%, rgba(226, 166, 59, 0.12) 52% 54%, transparent 54%),
    linear-gradient(20deg, transparent 0 62%, rgba(37, 199, 201, 0.13) 62% 64%, transparent 64%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  text-wrap: balance;
}

.hero-lede,
.hero-search-line {
  color: rgba(230, 253, 252, 0.78);
}

.primary {
  background: linear-gradient(135deg, var(--aqua), #17a7a7);
  box-shadow: 0 18px 42px rgba(15, 139, 141, 0.34);
}

.hero .secondary {
  color: #eaffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-proof a {
  padding: 0.55rem 0.72rem;
  color: rgba(244, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  font-weight: 800;
}

.quick-facts div {
  color: #efffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.quick-facts dd {
  color: rgba(230, 253, 252, 0.72);
}

.hero-visual {
  transform: rotate(1deg);
}

.hero-photo-frame {
  position: relative;
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(37, 199, 201, 0.55), rgba(226, 166, 59, 0.36));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: rotate(-1deg);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(6, 29, 39, 0.38) 100%),
    linear-gradient(90deg, rgba(6, 29, 39, 0.34), transparent 42%);
  pointer-events: none;
}

.hero-photo-frame img {
  box-shadow: none;
}

.inspection-console {
  position: absolute;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  display: grid;
  gap: 14px;
  width: min(330px, calc(100% - 28px));
  padding: 18px;
  color: #efffff;
  background: rgba(6, 29, 39, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transform: rotate(-1deg);
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.inspection-console span {
  color: rgba(230, 253, 252, 0.72);
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.console-grid span {
  padding: 0.55rem;
  border: 1px solid rgba(37, 199, 201, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 750;
}

.equipment-map {
  position: absolute;
  left: -18px;
  top: 42px;
  width: min(360px, 82%);
  padding: 16px;
  color: #12252b;
  background: #f8fbf6;
  border: 1px solid rgba(226, 166, 59, 0.55);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: rotate(-3deg);
}

.equipment-map strong {
  display: block;
  margin-bottom: 12px;
}

.map-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.map-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: var(--gold);
}

.map-line span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(7, 59, 76, 0.14);
  border-radius: 8px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.black-sheep {
  color: #f4ffff;
  background:
    linear-gradient(135deg, rgba(6, 29, 39, 0.98), rgba(13, 44, 48, 0.95) 54%, rgba(106, 48, 34, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 84px);
}

.black-sheep .section-heading p {
  color: rgba(230, 253, 252, 0.76);
}

.black-sheep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.black-sheep-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
}

.black-sheep-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--aqua-bright));
}

.black-sheep-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #102027;
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.black-sheep-grid h3 {
  margin: 18px 0 0;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
}

.black-sheep-grid p {
  color: rgba(230, 253, 252, 0.76);
}

.deal-pressure {
  color: #f4ffff;
  background:
    linear-gradient(135deg, rgba(6, 29, 39, 0.97), rgba(7, 59, 76, 0.94)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 92px);
}

.deal-pressure .section-heading p {
  color: rgba(230, 253, 252, 0.74);
}

.pressure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pressure-grid article {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.pressure-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #102027;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.pressure-grid h3 {
  margin: 18px 0 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.pressure-grid p {
  color: rgba(230, 253, 252, 0.74);
}

@media (max-width: 980px) {
  .hero-visual {
    transform: none;
  }

  .pressure-grid {
    grid-template-columns: 1fr;
  }

  .black-sheep-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .nav a {
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
    white-space: normal;
    font-size: 0.88rem;
  }

  .nav a:nth-child(4),
  .nav a:nth-child(5),
  .nav a:nth-child(7),
  .nav a:nth-child(8) {
    display: none;
  }

  .nav-cta {
    grid-column: 1 / -1;
  }

  .hero-proof a {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-photo-frame {
    transform: none;
  }

  .inspection-console,
  .equipment-map {
    position: static;
    width: 100%;
    margin-top: 12px;
    transform: none;
  }

  .console-grid {
    grid-template-columns: 1fr;
  }
}
