:root {
  color-scheme: light;
  --ink: #082735;
  --muted: #607989;
  --sky: #dff1f8;
  --ice: #f4fbff;
  --panel: #ffffff;
  --line: rgba(8, 39, 53, 0.14);
  --deep: #062b43;
  --teal: #1b857c;
  --green: #6c9d45;
  --orange: #e77f42;
  --violet: #5d5aa8;
  --shadow: 0 24px 70px rgba(6, 48, 68, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 7%, rgba(255, 255, 255, 0.95), transparent 13rem),
    radial-gradient(circle at 12% 14%, rgba(27, 133, 124, 0.12), transparent 24rem),
    linear-gradient(180deg, #dceff8 0, #f6fbff 34rem, #ffffff 72rem, #f5fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(8, 39, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 39, 53, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0, transparent 44rem);
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--deep);
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.75vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #ffffff;
  background: #111827;
  border-radius: 10px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header,
main,
.site-footer {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px 0;
  background: rgba(244, 251, 255, 0.9);
  border-bottom: 1px solid rgba(8, 39, 53, 0.12);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.site-header::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: inherit;
  border-bottom: 1px solid rgba(8, 39, 53, 0.12);
  content: "";
  pointer-events: none;
}

.brand,
.site-nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--deep);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 34px;
  color: var(--deep);
}

.brand-mark svg {
  width: 48px;
  height: 24px;
  fill: currentColor;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a,
.footer-links a,
.footer-brand,
.text-link {
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta {
  color: #ffffff;
  background: var(--deep);
  box-shadow: 0 12px 28px rgba(6, 48, 68, 0.22);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--deep), var(--teal));
  box-shadow: 0 16px 36px rgba(6, 48, 68, 0.25);
}

.button.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 39, 53, 0.16);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--deep);
  font-weight: 900;
}

.text-link::after {
  margin-left: 8px;
  content: "->";
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  gap: clamp(34px, 4.5vw, 60px);
  align-items: center;
  min-height: clamp(600px, calc(100vh - 76px), 720px);
  padding: clamp(52px, 6vw, 78px) 0 clamp(52px, 6vw, 70px);
}

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

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.service-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 0;
}

.service-summary div {
  padding: 15px 16px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(6, 48, 68, 0.08);
}

.service-summary dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-summary dd {
  margin: 0;
  font-weight: 850;
}

.hero-visual {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(8, 39, 53, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: min(56vh, 520px);
  object-fit: contain;
}

.offer-band,
.proof-section,
.boundaries-band,
.final-cta,
.resource-band {
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(6, 48, 68, 0.14);
}

.offer-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 20px;
  padding: clamp(28px, 4vw, 44px);
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 22%, rgba(231, 127, 66, 0.28), transparent 260px),
    linear-gradient(135deg, #062b43, #0d5c75);
}

.offer-band .eyebrow,
.offer-band h2,
.offer-band p {
  color: #ffffff;
}

.offer-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.section {
  padding: clamp(60px, 8vw, 96px) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading p,
.card-grid p,
.sticky-copy p,
.stacked-cards p,
.process-grid p,
.proof-section p,
.proof-card li,
.boundaries-band p,
.final-cta p,
.resource-card p,
.resource-card li,
.resource-band p,
.site-footer p {
  color: var(--muted);
}

.card-grid,
.process-grid,
.resource-section {
  display: grid;
  gap: 18px;
}

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

.resource-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 0 clamp(64px, 8vw, 92px);
}

.card-grid article,
.stacked-cards article,
.process-grid article,
.proof-card,
.resource-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(6, 48, 68, 0.08);
}

.card-grid article {
  min-height: 240px;
  padding: 24px;
}

.card-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 12px;
  color: var(--deep);
  background: #e8f4f8;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(380px, 1fr);
  gap: 36px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 112px;
}

.stacked-cards {
  display: grid;
  gap: 18px;
}

.stacked-cards article,
.resource-card {
  padding: 28px;
}

.process-strip {
  padding-top: 48px;
}

.process-grid article {
  min-height: 260px;
  padding: 24px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: #ffffff;
  background: var(--deep);
  border-radius: 50%;
  font-weight: 900;
}

.proof-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.46fr);
  gap: 26px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 92% 12%, rgba(231, 127, 66, 0.18), transparent 240px),
    #eaf5f8;
  border: 1px solid rgba(8, 39, 53, 0.12);
}

.proof-section > div {
  max-width: 780px;
}

.proof-card {
  padding: 24px;
}

.proof-card ul,
.resource-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.boundaries-band,
.resource-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
}

.boundaries-band > div,
.resource-band > div {
  max-width: 840px;
}

.final-cta {
  margin: 24px 0 84px;
  padding: clamp(38px, 7vw, 74px) clamp(22px, 5vw, 54px);
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(231, 127, 66, 0.25), transparent 18rem),
    linear-gradient(135deg, #062b43, #0d5c75);
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta h2,
.final-cta p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

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

.page-hero {
  max-width: 980px;
  padding: clamp(66px, 8vw, 104px) 0 clamp(42px, 6vw, 66px);
}

.page-hero > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.16rem;
}

.resource-band {
  margin: 0 0 84px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.15rem;
  font-weight: 900;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  color: var(--muted);
  font-weight: 780;
  text-align: right;
}

.footer-links a:hover,
.footer-brand:hover,
.text-link:hover {
  color: var(--deep);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero,
  .offer-band,
  .split-section,
  .proof-section,
  .boundaries-band,
  .resource-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .sticky-copy {
    position: static;
  }

  .card-grid.four,
  .process-grid,
  .resource-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1200px);
  }

  .brand {
    font-size: 1rem;
  }

  .nav-cta,
  .button,
  .boundaries-band .button,
  .resource-band .button {
    width: 100%;
  }

  .hero {
    padding: 42px 0 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .service-summary,
  .card-grid.four,
  .process-grid,
  .resource-section {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    max-height: 360px;
  }

  .offer-band,
  .proof-section,
  .boundaries-band,
  .final-cta,
  .resource-band,
  .stacked-cards article,
  .resource-card {
    padding: 24px;
    border-radius: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  .site-footer {
    width: calc(100vw - 24px);
    max-width: 366px;
    margin-right: 0;
    margin-left: 12px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-header::before {
    inset: 0;
  }

  .site-nav {
    width: 100%;
    max-width: 100%;
    gap: 8px;
    overflow-x: visible;
    white-space: normal;
  }

  .site-nav a {
    min-height: 36px;
    padding: 6px 9px;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    line-height: 1.06;
  }

  .hero-text,
  .page-hero > p:not(.eyebrow) {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
