:root {
  --ink: #14212b;
  --muted: #65717c;
  --line: #d9e2e7;
  --paper: #f7faf9;
  --white: #ffffff;
  --navy: #102a43;
  --teal: #0e7c86;
  --green: #4f8f63;
  --gold: #c89335;
  --shadow: 0 24px 70px rgba(14, 33, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(21, 39, 54, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 800;
}

.brand-logo {
  width: clamp(160px, 18vw, 250px);
  height: auto;
  max-width: none;
}

.brand span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: block;
  padding: 0;
  color: var(--white);
  background: #03080f;
  overflow: hidden;
}

#ocean,
.fog-layer,
.grid-overlay,
.sweep,
.data-points {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fog-layer {
  background: radial-gradient(ellipse 120% 60% at 50% 75%, transparent 30%, #0a141e88 60%, #03080fcc 100%);
  pointer-events: none;
}

.grid-overlay {
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s ease;
}

.grid-overlay.visible {
  opacity: 1;
}

.sweep {
  pointer-events: none;
  overflow: hidden;
}

.beam {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform-origin: bottom center;
  background: linear-gradient(to bottom, transparent 0%, #a8d4f022 40%, #a8d4f044 70%, transparent 100%);
  filter: blur(2px);
  opacity: 0;
  animation: sweepBeam 6s ease-in-out infinite;
}

.beam-wide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 100%;
  transform-origin: bottom center;
  background: linear-gradient(160deg, transparent 0%, #c8e8ff08 50%, transparent 100%);
  opacity: 0;
  animation: sweepBeamWide 6s ease-in-out infinite;
}

@keyframes sweepBeam {
  0% {
    opacity: 0;
    transform: rotate(-35deg) translateX(-50%);
  }

  10% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.7;
    transform: rotate(35deg) translateX(-50%);
  }

  90% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: rotate(-35deg) translateX(-50%);
  }
}

@keyframes sweepBeamWide {
  0% {
    opacity: 0;
    transform: rotate(-38deg) translateX(-50%);
  }

  10% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
    transform: rotate(38deg) translateX(-50%);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(-38deg) translateX(-50%);
  }
}

.dp {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5ab8e8;
  opacity: 0;
  animation: blink var(--d) ease var(--delay) infinite;
}

.dp::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 0.5px solid #5ab8e855;
  border-radius: 50%;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }
}

.hero-content {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: none;
  padding: 120px 24px 180px;
  text-align: center;
}

.hero-logo {
  width: clamp(170px, 22vw, 280px);
  height: auto;
  max-width: none;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-lighthouse {
  position: absolute;
  z-index: 1;
  top: 44%;
  left: 50%;
  width: min(38vw, 360px);
  max-width: 360px;
  transform: translate(-50%, -50%);
  opacity: 0.38;
  pointer-events: none;
  filter: drop-shadow(0 0 26px rgba(168, 216, 240, 0.14));
}

.hero-lighthouse svg {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7eb9d4;
  letter-spacing: 0.22em;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #e8f4fb;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.12;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero h1 em {
  color: #a8d8f0;
  font-style: normal;
  font-weight: 600;
}

.hero-divider {
  width: 40px;
  height: 1px;
  margin: 22px auto;
  background: #2a5570;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.hero-copy {
  max-width: 590px;
  margin: 0;
  color: #7fa8be;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
  opacity: 0;
  animation: fadeUp 1s ease 1.7s forwards;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.hero .button {
  min-height: 46px;
  border-radius: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .button.primary {
  color: #a8d8f0;
  border-color: #5ba3c4;
  background: #0e2535;
}

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

.hero .button.secondary {
  color: #7eb9d4;
  border-color: #2a4a5e88;
  background: transparent;
}

.stat-row {
  position: absolute;
  z-index: 10;
  bottom: 62px;
  left: 50%;
  display: flex;
  gap: 36px;
  align-items: stretch;
  color: #c8e4f4;
  white-space: nowrap;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUpCentered 2s ease 3s forwards;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.stat span {
  display: block;
  margin-top: 3px;
  color: #2e6070;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  background: #1a3f55;
}

.bottom-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1e4a62, transparent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpCentered {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1060px, 100%);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 168px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-panel span {
  color: var(--teal);
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
}

.hero-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: clamp(68px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.section[id] {
  scroll-margin-top: 260px;
}

.intro,
.clients {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

/* .section-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
} */
.intro-grid,
.client-list {
  display: grid;
  gap: 18px;
}

.intro-grid article,
.client-list article,
.service-card,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intro-grid article,
.client-list article {
  padding: 26px;
}

.overview-card {
  display: flex;
  flex-direction: column;
}

.overview-card .details-button {
  margin-top: auto;
}

.dropdown-panel {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #7ec8e3;
}

.dropdown-panel a,
.dropdown-panel .overview-pdf-button {
  color: #7ec8e3;
}

.overview-pdf-button {
  width: 100%;
}



.intro-grid strong,
.client-list h3 {
  margin: 0;
  font-size: 1.18rem;
}

.intro-grid p,
.client-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.mission {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(14, 124, 134, 0.22), transparent 34%),
    linear-gradient(145deg, #071722, #102a43 52%, #0b1e2b);
}

.mission .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.document-button {
  margin-top: 18px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.value-grid span {
  color: #7eb9d4;
  font-size: 0.78rem;
  font-weight: 900;
}

.value-grid h3 {
  margin: 42px 0 0;
  font-size: 1.18rem;
}

.value-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 270px;
  padding: 28px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.details-button {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.details-button:hover,
.details-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(14, 124, 134, 0.4);
  background: #fff;
  outline: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(21, 39, 54, 0.1);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--teal);
}

.service-card:nth-child(3) .service-icon {
  background: var(--green);
}

.service-card:nth-child(4) .service-icon {
  background: var(--gold);
}

.service-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--white);
  background: var(--navy);
}

.metric {
  min-height: 180px;
  padding: clamp(28px, 5vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.metric strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.metric span {
  display: block;
  max-width: 360px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.approach {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    var(--paper);
}

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

.timeline article {
  position: relative;
  min-height: 260px;
  padding: 30px;
}

.timeline-card-button {
  display: block;
  min-height: 260px;
  padding: 30px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.timeline-card-button:hover,
.timeline-card-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(21, 39, 54, 0.1);
  border-color: rgba(14, 124, 134, 0.36);
  outline: none;
}

.timeline-kicker,
.timeline-title,
.timeline-copy,
.timeline-action {
  display: block;
}

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

.timeline-title {
  margin-top: 54px;
  font-size: 1.35rem;
  font-weight: 700;
}

.timeline-copy {
  margin-top: 10px;
  color: var(--muted);
}

.timeline-action {
  margin-top: 24px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.timeline h3 {
  margin: 54px 0 0;
  font-size: 1.35rem;
}

.timeline p {
  margin: 10px 0 0;
  color: var(--muted);
}

.deliverable-modal,
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.deliverable-modal[hidden],
.modal[hidden] {
  display: none;
}

.deliverable-modal-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 36, 0.72);
  backdrop-filter: blur(8px);
}

.deliverable-modal-panel,
.modal-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(88vh, 980px);
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 249, 0.96));
  box-shadow: 0 32px 90px rgba(8, 24, 36, 0.28);
}

.deliverable-modal-close,
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.modal-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.modal-content li + li {
  margin-top: 10px;
}

.deliverable-modal-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.deliverable-modal-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.deliverable-modal-header p:not(.eyebrow) {
  color: var(--muted);
}

.deliverable-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.deliverable-example {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.deliverable-example-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.deliverable-example-meta span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deliverable-example-meta strong {
  font-size: 1rem;
}

.deliverable-chart {
  display: block;
  width: 100%;
  height: auto;
}
.roadmap {
  background: var(--white);
}

.roadmap-intro {
  max-width: 850px;
  color: var(--muted);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.roadmap-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(21, 39, 54, 0.08);
}

.roadmap-period {
  display: inline-block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.roadmap-card h3 {
  margin: 18px 0 20px;
  font-size: 1.6rem;
}

.roadmap-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.roadmap-card li {
  margin-bottom: 12px;
}

.roadmap-message {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 32px;
  border-left: 4px solid var(--gold);
  background: rgba(16, 42, 67, 0.04);
}

.roadmap-message p {
  margin: 0 0 16px;
  color: var(--muted);
}

.roadmap-message p:last-child {
  margin-bottom: 0;
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(14, 124, 134, 0.9)),
    var(--navy);
}

.contact .eyebrow {
  color: #f2c879;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(5, 20, 31, 0.38);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #081824;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}
.footer-meta {
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deliverable-examples {
    grid-template-columns: 1fr;
  }

  .intro,
  .mission,
  .clients,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }
}
  .hero-panel,
  .metrics,
  .service-grid,
  .value-grid,
  .timeline,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: clamp(132px, 44vw, 180px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(21, 39, 54, 0.14);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }
.hero-content {
  padding-bottom: 7rem;
}

.hero-actions {
  margin-bottom: 3rem;
}

.hero-actions {
  position: relative;
  z-index: 6;
}
  .hero-logo {
    width: clamp(150px, 44vw, 220px);
    margin-bottom: 14px;
  }

  .hero-lighthouse {
    top: 46%;
    width: min(56vw, 250px);
    opacity: 0.28;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .hero .eyebrow {
    max-width: 320px;
    font-size: 0.67rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .stat-row {
    bottom: 54px;
    gap: 16px;
  }

  .stat strong {
    font-size: 1rem;
  }

  .stat span {
    font-size: 0.56rem;
  }

  .hero-panel,
  .metrics,
  .service-grid,
  .value-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-title {
    margin-top: 36px;
  }

  .hero-panel div {
    min-height: auto;
  }

  .section,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .timeline h3 {
    margin-top: 36px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer .brand-logo {
    width: clamp(140px, 58vw, 210px);
  }

  .site-footer p {
    text-align: left;
  }
}
.star {
  animation: twinkle 6s ease-in-out infinite;
}

@keyframes twinkle {
  0%,100% { opacity: .25; }
  50% { opacity: .55; }
}
.lead-magnet {
    padding: 80px 20px;
    text-align: center;
    background: #0b1d2b;
}

.lead-magnet h2 {
    margin-bottom: 20px;
}

.lead-magnet-copy {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.lead-magnet-copy p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.lead-magnet-copy {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-magnet p {
    color: rgba(255, 255, 255, 0.82);
}

.lead-magnet .button {
    margin-top: 16px;
}

.lead-magnet .lead-magnet-copy p,
.lead-magnet .section-copy p {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}