:root {
  color-scheme: light;
  --paper: #f8f6f2;
  --porcelain: #fafaf8;
  --petrol: #0f172a;
  --ink: #102538;
  --teal: #0f766e;
  --teal-soft: #14b8a6;
  --line: #d6d3d1;
  --muted: #66756f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.92), transparent 26rem),
    linear-gradient(135deg, #f8f6f2 0%, #fafaf8 46%, #eef5f1 100%);
  color: var(--ink);
  font-family: Geist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  background:
    radial-gradient(circle at 88% 8%, rgba(20, 184, 166, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(248, 246, 242, 0.94));
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.08);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 36px 56px 24px;
}

.helm-logo {
  display: inline-flex;
  align-items: center;
  color: var(--petrol);
}

.helm-logo img {
  display: block;
  width: 72px;
  height: auto;
}

.helm-logo-hero {
  justify-content: center;
}

.helm-logo-hero img {
  width: min(360px, 88vw);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  color: #21313a;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.86;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--teal);
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 22px;
  background: #062739;
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 16px 36px rgba(6, 39, 57, 0.18);
}

.hero-section {
  position: relative;
  min-height: 760px;
  padding: 58px 56px 90px;
}

.hero-brand {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 24px 0 86px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: 56px;
}

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

.hero-copy h1 {
  margin: 0;
  color: var(--petrol);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-copy h1 span {
  display: block;
  color: var(--teal);
}

.hero-copy p {
  max-width: 510px;
  margin: 34px 0 0;
  color: #465650;
  font-size: 18px;
  font-weight: 520;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 46px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 760;
}

.primary-btn {
  background: #062739;
  color: white;
  box-shadow: 0 18px 40px rgba(6, 39, 57, 0.18);
}

.secondary-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: var(--petrol);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.compass-wrap {
  position: relative;
  justify-self: center;
  width: min(320px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: compassIn 900ms ease both;
}

.compass-wrap img {
  width: min(320px, 78vw);
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(15, 118, 110, 0.1));
}

.wave-field {
  position: absolute;
  right: -70px;
  bottom: -18px;
  z-index: 1;
  width: 82%;
  height: 46%;
  opacity: 0.92;
  pointer-events: none;
}

.trust-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(15, 23, 42, 0.06);
}

.trust-band article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  min-height: 134px;
  align-items: center;
  padding: 28px 56px;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(16px);
}

.trust-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.trust-band h2 {
  margin: 0 0 6px;
  color: var(--petrol);
  font-size: 14px;
  font-weight: 800;
}

.trust-band p {
  margin: 0;
  color: #5f6d68;
  font-size: 13px;
  line-height: 1.55;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(135deg, #062739, #042232 62%, #063f47);
  color: white;
}

.stats-band article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.stats-band article:last-child {
  border-right: 0;
}

.stats-band strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hidden-anchor {
  height: 1px;
}

.content-section {
  padding: 96px 56px 0;
}

.compact-section {
  padding-top: 70px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 56px;
  min-height: 560px;
  padding: 100px 56px 64px;
  overflow: hidden;
}

.page-hero > div:first-of-type {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  color: var(--petrol);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.8vw, 78px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.035em;
}

.page-hero p {
  max-width: 680px;
  margin: 26px 0 0;
  color: #465650;
  font-size: 18px;
  line-height: 1.85;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading span,
.human-section span,
.final-cta span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.human-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--petrol);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.section-heading p,
.human-section p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #5f6d68;
  font-size: 17px;
  line-height: 1.75;
}

.method-grid,
.expertise-grid {
  display: grid;
  gap: 18px;
}

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

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

.method-grid article,
.expertise-grid article {
  min-height: 230px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 28px;
  background: rgba(250, 250, 248, 0.72);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(18px);
}

.method-grid article > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.09);
  color: var(--teal);
  font-size: 13px;
  font-weight: 840;
}

.method-grid h3,
.expertise-grid h3 {
  margin: 0;
  color: var(--petrol);
  font-size: 21px;
}

.method-grid p,
.expertise-grid p {
  margin: 14px 0 0;
  color: #5f6d68;
  font-size: 14px;
  line-height: 1.65;
}

.journey-section {
  padding-top: 80px;
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: 20px;
}

.journey-intro,
.journey-list article {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(250, 250, 248, 0.78);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(18px);
}

.journey-intro {
  min-height: 100%;
  border-radius: 34px;
  padding: 38px;
  background:
    radial-gradient(circle at 85% 12%, rgba(20, 184, 166, 0.13), transparent 16rem),
    rgba(250, 250, 248, 0.82);
}

.journey-intro span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-intro h2 {
  margin: 0;
  color: var(--petrol);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.journey-intro p {
  margin: 22px 0 0;
  color: #5f6d68;
  font-size: 16px;
  line-height: 1.8;
}

.journey-list {
  display: grid;
  gap: 16px;
}

.journey-list article {
  border-radius: 26px;
  padding: 28px;
}

.journey-list h3 {
  margin: 0;
  color: var(--petrol);
  font-size: 20px;
}

.journey-list p {
  margin: 12px 0 0;
  color: #5f6d68;
  font-size: 15px;
  line-height: 1.7;
}

.human-section {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 54px;
  padding: 104px 56px 0;
}

.human-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.human-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.human-section article {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 34px;
  padding: 46px;
  background: rgba(250, 250, 248, 0.78);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(18px);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin: 104px 56px 56px;
  border-radius: 38px;
  padding: 72px 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.16), transparent 20rem),
    linear-gradient(135deg, #fffdf8, #f3f0ea);
  text-align: center;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.09);
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  max-width: 620px;
  margin: 0;
  color: #5f6d68;
  font-size: 17px;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 34px 24px 46px;
  color: #5f6d68;
  text-align: center;
}

.site-footer img {
  width: min(260px, 72vw);
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.service-list,
.resources-grid,
.proof-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

.service-list,
.resources-grid,
.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.service-list article,
.resources-grid article,
.proof-grid article,
.why-grid article,
.about-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  padding: 34px;
  background: rgba(250, 250, 248, 0.78);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(18px);
}

.service-list h2,
.resources-grid h2,
.proof-grid h3,
.why-grid h3,
.about-card h2 {
  margin: 0;
  color: var(--petrol);
  font-size: 24px;
}

.service-list p,
.resources-grid p,
.proof-grid p,
.why-grid p,
.about-card p {
  margin: 16px 0 0;
  color: #5f6d68;
  font-size: 15px;
  line-height: 1.75;
}

.service-list small,
.resources-grid small {
  display: block;
  margin-top: 20px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.55;
}

.resources-grid span,
.proof-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-grid h3 {
  margin-top: 14px;
  line-height: 1.28;
}

@keyframes compassIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 24px 22px 16px;
  }

  .site-nav {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 34px 22px 56px;
  }

  .hero-brand {
    padding: 20px 0 52px;
  }

  .helm-logo-hero {
    display: flex;
  }

  .hero-inner,
  .page-hero,
  .trust-band,
  .stats-band,
  .method-grid,
  .expertise-grid,
  .journey-panel,
  .human-section,
  .service-list,
  .resources-grid,
  .proof-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .compass-wrap {
    max-width: 360px;
  }

  .wave-field {
    width: 120%;
    height: 34%;
  }

  .trust-band article {
    padding: 24px 22px;
  }

  .content-section,
  .human-section,
  .page-hero {
    padding-right: 22px;
    padding-left: 22px;
  }

  .human-section article {
    padding: 30px;
  }

  .final-cta {
    margin-right: 22px;
    margin-left: 22px;
  }

  .stats-band article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 560px) {
  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}
