:root {
  color-scheme: light;
  --navy: #0B1220;
  --navy-2: #111A2B;
  --teal: #00A6A6;
  --coral: #E24D42;
  --amber: #C8922E;
  --cloud: #F5F7FA;
  --steel: #5C6675;
  --line: #DCE3EC;
  --white: #FFFFFF;
  --shadow: 0 20px 60px rgba(11, 18, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--cloud);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

p {
  margin: 0;
  color: var(--steel);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.9rem, 7vw, 3.55rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 250, 0.94);
  border-bottom: 1px solid rgba(220, 227, 236, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 2rem));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.nav-links,
.mobile-menu {
  display: none;
}

.nav-links a,
.nav-cta,
.mobile-menu a,
.mobile-menu summary {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 760;
}

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

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

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  padding: 0.6rem 0.8rem;
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  padding: 0.6rem 0.75rem;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu div {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  width: min(260px, calc(100vw - 2rem));
  display: grid;
  gap: 0.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 0.55rem;
}

.mobile-menu a {
  border-radius: 7px;
  color: var(--steel);
  padding: 0.7rem 0.75rem;
}

.mobile-menu a:hover {
  background: var(--cloud);
  color: var(--navy);
}

.hero {
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 166, 166, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, #101A2A 60%, #172235 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  width: min(1160px, calc(100% - 2rem));
  min-height: calc(100svh - 66px);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 3.25rem 0 2rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(2.25rem, 11vw, 5.55rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 700px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.founder-line {
  max-width: 700px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.05rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(226, 77, 66, 0.24);
}

.button.primary:hover {
  background: #cc4037;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 750;
}

.trust-strip span {
  border-left: 3px solid var(--teal);
  padding-left: 0.65rem;
}

.hero-visual {
  width: 100%;
  max-width: 520px;
  justify-self: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  padding: 0.85rem;
  backdrop-filter: blur(20px);
}

.visual-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.76);
}

.visual-toolbar span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.visual-toolbar span:nth-child(1) {
  background: var(--coral);
}

.visual-toolbar span:nth-child(2) {
  background: var(--amber);
}

.visual-toolbar span:nth-child(3) {
  background: var(--teal);
}

.visual-toolbar strong {
  margin-left: auto;
  font-size: 0.82rem;
}

.audit-grid {
  display: grid;
  gap: 0.75rem;
}

.audit-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-radius: 12px;
  padding: 1rem;
}

.audit-card span {
  display: block;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.audit-card.score strong {
  display: block;
  color: var(--teal);
  font-size: 4rem;
  line-height: 1;
}

.audit-card small {
  color: var(--steel);
  font-weight: 700;
}

.mini-flow {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.mini-flow b {
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 0.55rem;
  font-size: 0.82rem;
}

.shot-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.65rem;
  margin-top: 0.75rem;
}

.shot-list i {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: var(--coral);
}

.section {
  padding: 4.25rem 0;
}

.section-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid,
.proof-layout,
.contact-grid,
.local-grid {
  display: grid;
  gap: 1.5rem;
}

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

.diagnostic-list p {
  color: var(--navy);
  font-weight: 850;
}

.diagnostic-list ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--steel);
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.compact-heading h2 {
  font-size: clamp(1.8rem, 6vw, 2.85rem);
}

.system {
  background: var(--cloud);
}

.system-map,
.service-grid,
.audit-includes-grid,
.package-list,
.industry-grid,
.process-list,
.faq-list {
  display: grid;
  gap: 1rem;
}

.system-map article,
.audit-includes-grid article,
.service-card,
.package,
.process-list li,
details,
.dashboard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.system-map article {
  position: relative;
  padding: 1.25rem;
  overflow: hidden;
}

.audit-includes {
  background: var(--white);
}

.audit-includes-grid article {
  padding: 1rem;
}

.audit-includes-grid p {
  margin-top: 0.55rem;
}

.buyer-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.buyer-paths a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--cloud);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
}

.buyer-paths a:hover {
  border-color: var(--teal);
}

.system-map article::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 52px;
  height: 3px;
  background: var(--teal);
}

.system-map span,
.service-number {
  display: inline-block;
  color: var(--teal);
  font-weight: 950;
  margin-bottom: 0.8rem;
}

.system-map p,
.system-map small,
.service-card p,
.package p,
.process-list p {
  margin-top: 0.65rem;
}

.system-map small {
  display: block;
  color: var(--steel);
  font-weight: 760;
}

.timeline-strip {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  background: var(--navy);
  border-radius: 8px;
  padding: 1rem;
}

.timeline-strip span {
  color: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--teal);
  padding-left: 0.75rem;
}

.timeline-strip strong {
  display: block;
  color: var(--white);
}

.service-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  background: rgba(0, 166, 166, 0.1);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 950;
}

.service-card:hover,
.process-list li:hover,
.package:hover {
  border-color: rgba(0, 166, 166, 0.45);
  box-shadow: 0 12px 34px rgba(11, 18, 32, 0.08);
  transform: translateY(-2px);
}

dl {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

dt {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0 0 0.7rem;
  color: var(--steel);
}

.operators {
  background: var(--white);
}

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

.operator-card {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.operator-photo {
  min-height: 190px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.06), rgba(0, 166, 166, 0.16)),
    repeating-linear-gradient(45deg, rgba(11, 18, 32, 0.08) 0 1px, transparent 1px 13px);
  position: relative;
  overflow: hidden;
}

.operator-photo::after {
  content: "";
  position: absolute;
  inset: 20% 28% 0;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.88), rgba(11, 18, 32, 0.62));
}

.operator-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-card p {
  margin-top: 0.65rem;
}

.operator-note {
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 850;
}

.proof {
  background: var(--navy);
  color: var(--white);
}

.proof h2,
.proof .dashboard strong {
  color: var(--white);
}

.proof p {
  color: rgba(255, 255, 255, 0.74);
}

.dashboard {
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 1rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.dashboard-head,
.stat-row {
  display: grid;
  gap: 0.75rem;
}

.dashboard-head span {
  color: var(--amber);
  font-weight: 850;
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.stat-row div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem;
}

.stat-row span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
}

.stat-row strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.55rem;
}

.bar-chart {
  min-height: 150px;
  display: flex;
  align-items: end;
  gap: 0.65rem;
  margin: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bar-chart span {
  flex: 1;
  min-height: 34px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(0, 166, 166, 0.34));
}

.audit-checklist {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  list-style: none;
}

.audit-checklist li {
  border-left: 3px solid var(--coral);
  padding-left: 0.7rem;
}

.deliverable-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.deliverable-gallery article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1rem;
}

.deliverable-gallery span {
  color: var(--amber);
  font-weight: 900;
}

.deliverable-gallery p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
}

.packages,
.faq {
  background: #EEF3F6;
}

.package {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.package-meta {
  display: grid;
  gap: 0.4rem;
}

.package-meta span {
  border-left: 3px solid var(--teal);
  color: var(--steel);
  font-size: 0.85rem;
  font-weight: 760;
  padding-left: 0.55rem;
}

.package.featured {
  border-color: rgba(0, 166, 166, 0.5);
  box-shadow: var(--shadow);
}

.package ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--steel);
}

.investment-note {
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 850;
}

.industry-grid article {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.industry-grid p {
  margin-top: 0.55rem;
}

.local {
  background: var(--navy);
  color: var(--white);
}

.local h2 {
  color: var(--white);
}

.local p {
  color: rgba(255, 255, 255, 0.76);
}

.difference {
  background: var(--cloud);
}

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

.difference-grid p {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.difference-grid strong {
  color: var(--navy);
}

.process {
  background: var(--white);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--coral);
  font-weight: 950;
}

details {
  padding: 1rem;
}

.mobile-menu {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-top: 0.75rem;
}

.contact {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 166, 166, 0.2), transparent 32%),
    linear-gradient(145deg, var(--navy) 0%, #142033 100%);
}

.contact h2,
.contact label {
  color: var(--white);
}

.contact p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.hidden-field {
  position: absolute;
  left: -100vw;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 760;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font: inherit;
  padding: 0.85rem;
}

textarea {
  resize: vertical;
}

.form-note,
.form-status {
  margin-top: -0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--white);
  font-weight: 800;
}

.form-status.is-error {
  color: #ffd4d1;
}

.form-status.is-success {
  color: #b9ffef;
}

.contact-form.is-sending {
  opacity: 0.82;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0;
}

.footer-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.site-footer .brand-mark {
  background: var(--white);
  color: var(--navy);
}

.site-footer p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
address a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
address a:hover {
  color: var(--white);
}

address {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
}

.sticky-audit {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.22);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0.8rem 1rem;
  text-decoration: none;
}

@media (min-width: 620px) {
  .hero-actions {
    flex-direction: row;
  }

  .button {
    width: max-content;
  }

  .trust-strip,
  .service-grid,
  .audit-includes-grid,
  .industry-grid,
  .system-map,
  .operator-grid,
  .deliverable-gallery,
  .difference-grid,
  .timeline-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-grid {
    grid-template-columns: 0.8fr 1fr;
  }

  .audit-card.wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-cta {
    padding-inline: 1rem;
  }

  .hero-grid {
    min-height: calc(88vh - 66px);
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.76fr);
    padding: 4.5rem 0;
  }

  .intro-grid,
  .proof-layout,
  .contact-grid,
  .local-grid {
    grid-template-columns: 1fr 0.85fr;
    align-items: start;
  }

  .section-heading {
    grid-template-columns: 0.74fr 1fr;
    align-items: end;
  }

  .section-heading p:not(.section-kicker) {
    align-self: end;
  }

  .compact-heading {
    grid-template-columns: 0.54fr 1fr;
  }

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

  .package-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

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

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-list li {
    padding: 3.3rem 1rem 1rem;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 0.65fr 0.65fr;
    align-items: start;
  }
}

@media (max-width: 859px) {
  .mobile-menu {
    display: block;
  }

  .nav {
    gap: 0.5rem;
  }

  .brand span:last-child {
    display: none;
  }
}

@media (max-width: 619px) {
  .nav-cta {
    display: none;
  }

  .hero-grid {
    padding-bottom: 5rem;
  }
}
