:root {
  --blue: #0b5f91;
  --blue-dark: #0a2f47;
  --green: #55b73f;
  --green-dark: #2f7f2c;
  --text: #173042;
  --muted: #617483;
  --bg: #ffffff;
  --soft: #f4f9fb;
  --line: #dbe7ec;
  --shadow: 0 18px 50px rgba(19, 63, 88, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,72,98,.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 280px;
  max-height: 68px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  color: #23485f;
}

.main-nav a:hover {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary,
.btn-header {
  background: linear-gradient(135deg, var(--blue), #168bc0);
  color: white;
  box-shadow: 0 12px 24px rgba(11,95,145,.18);
}

.btn-primary:hover,
.btn-header:hover {
  box-shadow: 0 16px 30px rgba(11,95,145,.26);
}

.btn-secondary {
  background: white;
  color: var(--blue);
  border: 1px solid #bfd5df;
}

.btn-white {
  background: white;
  color: var(--blue-dark);
}

.btn-large {
  min-height: 56px;
  padding-inline: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(85,183,63,.16), transparent 30%),
    linear-gradient(135deg, #f9fdff 0%, #eef8fb 55%, #f6fff3 100%);
  padding: 74px 0 82px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(11,95,145,.07);
  right: -120px;
  bottom: -180px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: .82rem;
  line-height: 1.2;
  letter-spacing: .16em;
  font-weight: 900;
}

.eyebrow-light {
  color: #b8f0aa;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.shop-copy h2,
.about-grid h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  color: var(--blue-dark);
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-note {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: .92rem;
  color: #6a7d89;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.hero-image-wrap img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: -34px;
  bottom: 28px;
  min-width: 240px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  color: var(--blue);
  font-size: 1.08rem;
}

.hero-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .94rem;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: white;
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  background:
    radial-gradient(circle at 10% 15%, rgba(85,183,63,.14), transparent 25%),
    linear-gradient(135deg, #0b3552 0%, #0d668f 100%);
  color: white;
}

.section-dark {
  background: #102b3a;
  color: white;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.shop-copy h2,
.about-grid h2,
.final-cta h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.section-heading p,
.split-copy p,
.shop-copy p,
.about-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-blue .split-copy p,
.section-dark p {
  color: rgba(255,255,255,.82);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(16,67,94,.06);
}

.pathway-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5f5fb, #edf9e9);
  color: var(--blue);
  font-weight: 900;
}

.pathway-card h3,
.resource-card h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
  color: var(--blue-dark);
}

.pathway-card p,
.resource-card p {
  color: var(--muted);
}

.pathway-card a,
.resource-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-reverse .split-copy {
  order: 1;
}

.split-reverse .split-image {
  order: 2;
}

.split-image {
  display: flex;
  justify-content: center;
}

.split-image img {
  width: 100%;
  max-width: 560px;
}

.product-stage {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.split-copy p {
  margin: 18px 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.resource-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16,67,94,.07);
}

.resource-image {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(145deg, #f5fbfd, #eef7f0);
}

.resource-image img {
  max-height: 280px;
  width: auto;
}

.resource-content {
  padding: 26px 28px 30px;
}

.shop-section {
  padding-top: 54px;
}

.shop-panel {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f2fafc, #f2faef);
  border: 1px solid #d8e8df;
}

.guarantee-image img {
  max-height: 120px;
  margin: auto;
}

.shop-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.shop-copy p {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-grid p:first-child {
  margin-top: 0;
}

.final-cta {
  padding: 86px 0;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(85,183,63,.17), transparent 32%),
    white;
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta h2 {
  color: var(--blue-dark);
}

.final-cta .btn {
  margin-top: 24px;
}

.site-footer {
  background: #0b2230;
  color: white;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr;
  gap: 44px;
}

.footer-logo {
  width: 270px;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p,
.footer-contact p,
.footer-links p {
  color: rgba(255,255,255,.75);
}

.footer-contact h3,
.footer-links h3 {
  margin-top: 0;
}

.footer-contact a,
.footer-links a {
  color: white;
  text-decoration: none;
}

.legal {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.legal p {
  margin: 8px 0;
  color: rgba(255,255,255,.62);
  font-size: .84rem;
  line-height: 1.55;
}

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

  .header-inner {
    justify-content: space-between;
  }

  .brand-logo {
    width: 230px;
  }

  .hero-grid,
  .split-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-image-wrap img {
    min-height: 420px;
  }

  .hero-badge {
    left: 18px;
  }

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

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

  .shop-panel {
    grid-template-columns: 100px 1fr;
  }

  .shop-action {
    grid-column: 1 / -1;
  }

  .split-reverse .split-copy,
  .split-reverse .split-image {
    order: initial;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 190px;
  }

  .btn-header {
    display: none;
  }

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

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-wrap img {
    min-height: 320px;
  }

  .hero-badge {
    position: static;
    margin-top: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .pathway-card,
  .resource-content {
    padding: 22px;
  }

  .resource-image {
    min-height: 250px;
  }

  .shop-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }

  .guarantee-image img {
    max-height: 95px;
  }

  .shop-action .btn {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: 220px;
  }
}

/* Hero refinement pass */
.brand-logo {
  width: 320px;
}

.hero-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
}

.hero h1 {
  line-height: 1.01;
}

.eyebrow {
  letter-spacing: .12em;
}

.hero-badge {
  left: -18px;
  bottom: 24px;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 250px;
  }

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

@media (max-width: 680px) {
  .brand-logo {
    width: 205px;
  }
}

/* Mobile navigation */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--blue-dark);
}

.mobile-menu {
  display: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    display: none;
    padding: 12px 20px 20px;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(11, 47, 71, 0.08);
  }

  .mobile-menu.open {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    color: var(--blue-dark);
  }

  .mobile-menu a:hover {
    background: var(--soft);
  }

  .mobile-menu .mobile-shop {
    margin-top: 6px;
    text-align: center;
    background: linear-gradient(135deg, var(--blue), #168bc0);
    color: white;
  }
}

/* Responsive embedded video */
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-stage {
  padding: 18px;
}

/* NuCalm journey links */
.journeys {
  margin-top: 46px;
}

.journeys-heading {
  text-align: center;
  margin-bottom: 24px;
}

.journeys-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: white;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.journey-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  color: white;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .2s ease, background .2s ease;
}

.journey-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.18);
}

@media (max-width: 980px) {
  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-card {
    min-height: 62px;
  }
}
