:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --ink: #16202a;
  --muted: #52606d;
  --line: #dde3ea;
  --brand: #0d6b57;
  --brand-strong: #074539;
  --accent: #d94f30;
  --navy: #172a45;
  --gold: #b9872f;
  --shadow: 0 18px 50px rgba(22, 32, 42, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.pmr-brand-mark {
  display: block;
  width: auto;
  height: 3.35rem;
  object-fit: contain;
}

.pmr-site-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 0;
}

.pmr-site-logo-box {
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.pmr-site-logo {
  height: 3.1rem;
  filter: drop-shadow(0 14px 26px rgba(36, 68, 181, 0.18));
}

.pmr-footer-logo {
  height: 3.35rem;
}

@media (max-width: 640px) {
  .pmr-site-logo-box {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 8.8rem !important;
    padding: 0 !important;
  }

  .pmr-site-logo {
    width: 8.6rem !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .pmr-footer-logo {
    height: 3rem;
  }
}

@media (max-width: 374px) {
  .pmr-site-logo {
    width: 7.35rem !important;
  }
}

a {
  color: inherit;
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 1rem;
  padding: 0.6rem 0.8rem;
  position: absolute;
  top: -4rem;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
}

.topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0.45rem 1.25rem;
  font-size: 0.9rem;
}

.topbar a,
.nav a,
.footer a,
.tag-cloud a {
  text-decoration: none;
}

.topbar a:hover,
.nav a:hover,
.footer a:hover {
  color: var(--brand);
}

.nav {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0.9rem 1.25rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand > img {
  display: block;
  height: 3rem;
  max-width: 14rem;
  object-fit: contain;
  width: auto;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  width: auto;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}

.nav-links a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  padding: 0.55rem 0.75rem;
}

.nav-links .nav-cta {
  background: var(--ink);
  color: white;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 5rem 1.25rem 3.5rem;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 1.2rem;
  max-width: 900px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 780px;
}

.kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.hero-actions,
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: white;
}

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

.signal-panel,
.check-panel,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.signal-panel {
  align-self: end;
}

.panel-label {
  color: var(--muted);
  margin: 0;
}

.signal-panel strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0.25rem 0 1rem;
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

.band,
.section,
.split,
.cta-band,
.contact-layout {
  margin: 0 auto;
  max-width: 1180px;
  padding: 3.5rem 1.25rem;
}

.comparison-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-table > div {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
}

.comparison-table > div + div {
  border-top: 1px solid var(--line);
}

.comparison-table span,
.comparison-table strong {
  display: block;
  padding: 1rem;
}

.comparison-table strong {
  background: #eef7f4;
}

.proof-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 1rem;
}

.proof-strip div {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.proof-strip span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
}

.proof-strip strong {
  display: block;
  line-height: 1.25;
  margin-top: 0.35rem;
}

.section-head {
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.section-head h2,
.split h2,
.cta-band h2,
.contact-card h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 0.75rem;
}

.section-head p,
.split p,
.cta-band p,
.card p,
.contact-card p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  min-height: 100%;
  padding: 1.2rem;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  border-color: rgba(13, 107, 87, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.card h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.split {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag-cloud a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  padding: 0.65rem 0.85rem;
}

.tag-cloud a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

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

.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}

.steps span {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-weight: 900;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.steps h3 {
  margin-bottom: 0.4rem;
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-band {
  align-items: center;
  background: var(--navy);
  color: white;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.cta-band .button.primary {
  background: white;
  color: var(--navy);
  flex: 0 0 auto;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

label {
  color: var(--ink);
  display: grid;
  font-weight: 900;
  gap: 0.35rem;
}

.hidden-field {
  left: -9999px;
  position: absolute;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 2.75rem;
  padding: 0.7rem 0.8rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

.note {
  background: #fff6eb;
  border: 1px solid #f2d5b4;
  border-radius: 8px;
  padding: 0.9rem;
}

.rpo-exec-panel {
  background:
    radial-gradient(circle at 78% 22%, rgba(217, 79, 48, 0.18), transparent 28rem),
    linear-gradient(135deg, #071524 0%, #122948 48%, #0b3f4b 100%);
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  margin: 0 auto 1rem;
  max-width: none;
  padding: 4.5rem max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.rpo-exec-copy h2,
.rpo-dark-section h2,
.rpo-cta h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 1rem;
}

.rpo-exec-copy p,
.rpo-dark-section p,
.rpo-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 780px;
}

.rpo-boardroom-card {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  padding: 1.5rem;
}

.rpo-boardroom-card span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rpo-boardroom-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  margin: 0.7rem 0 0.9rem;
}

.rpo-boardroom-card p,
.rpo-boardroom-card li {
  color: rgba(255, 255, 255, 0.78);
}

.rpo-proof-matrix {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.25rem;
}

.rpo-proof-matrix article {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 1.3rem;
}

.rpo-proof-matrix strong {
  color: var(--navy);
  display: block;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.rpo-proof-matrix span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.rpo-proof-matrix p {
  color: var(--muted);
  margin-bottom: 0;
}

.rpo-dark-section {
  background: #0f1c2d;
  color: white;
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.rpo-dark-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.rpo-dark-panel li,
.rpo-dark-panel h3 {
  color: white;
}

.rpo-premium-cards .card {
  border-top: 4px solid var(--navy);
  box-shadow: 0 18px 50px rgba(22, 32, 42, 0.06);
}

.rpo-fit-table > div,
.rpo-wide-table > div {
  grid-template-columns: 1fr 1fr;
}

.rpo-wide-table > div {
  grid-template-columns: 0.72fr 0.9fr 1.2fr;
}

.rpo-wide-table span,
.rpo-wide-table strong {
  min-width: 0;
}

.rpo-cta {
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.18), transparent 24rem),
    linear-gradient(135deg, #172a45, #0d6b57);
}

.footer {
  background: #101820;
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  margin-top: 0;
  padding: 3rem max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  justify-content: flex-end;
  margin-top: 0;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 920px) {
  .topbar {
    justify-content: flex-start;
  }

  .nav,
  .hero,
  .rpo-exec-panel,
  .split,
  .contact-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    display: grid;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .proof-strip,
  .rpo-proof-matrix,
  .cards,
  .city-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .proof-strip,
  .rpo-proof-matrix,
  .cards,
  .city-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .rpo-wide-table {
    overflow-x: auto;
  }

  .rpo-wide-table > div {
    min-width: 720px;
  }

  .nav-links a {
    padding: 0.45rem 0.55rem;
  }
}
