:root {
  --forest: #1b4332;
  --forest-deep: #102e24;
  --leaf: #126040;
  --slate: #4a6f72;
  --teal: #5c8d91;
  --mist: #dce6e7;
  --sage: #89acb0;
  --paper: #f7faf8;
  --white: #ffffff;
  --ink: #17362b;
  --muted: #5b716a;
  --line: rgba(27, 67, 50, 0.15);
  --warm: #d4b46f;
  --danger: #9d2f33;
  --shadow: 0 28px 80px rgba(16, 46, 36, 0.12);
  --shadow-soft: 0 16px 44px rgba(16, 46, 36, 0.08);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
}

.marketing-body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 24%, rgba(137, 172, 176, 0.2), transparent 30rem),
    linear-gradient(180deg, #f9fbfa 0%, #f1f6f4 54%, #eaf2ef 100%);
  font-family: "Open Sans", "Avenir Next", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.marketing-body.nav-open {
  overflow: hidden;
}

.marketing-body a {
  color: inherit;
  text-decoration: none;
}

.marketing-body button,
.marketing-body input,
.marketing-body textarea {
  font: inherit;
}

.marketing-body h1,
.marketing-body h2,
.marketing-body h3,
.marketing-body p,
.marketing-body blockquote {
  margin: 0;
}

.marketing-body h1,
.marketing-body h2,
.marketing-body h3,
.marketing-body strong {
  font-family: "Montserrat", "Avenir Next", sans-serif;
}

.marketing-body h1,
.marketing-body h2,
.marketing-body h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.marketing-body p {
  line-height: 1.72;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  background: var(--white);
  color: var(--forest);
  font-weight: 700;
  transition: top 160ms ease;
}

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

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(17rem, auto) 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  min-height: 5.6rem;
  padding: 0.8rem max(1rem, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(27, 67, 50, 0.11);
  background: rgba(249, 251, 250, 0.9);
  backdrop-filter: blur(18px);
}

.marketing-brand,
.marketing-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.marketing-brand-mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(16, 46, 36, 0.08);
}

.marketing-brand-mark img {
  display: block;
  width: 87%;
  height: 87%;
  object-fit: contain;
}

.marketing-brand > span:last-child {
  display: grid;
  gap: 0.08rem;
}

.marketing-brand strong {
  color: var(--forest);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.marketing-brand small {
  color: var(--slate);
  font-size: 0.64rem;
  white-space: nowrap;
}

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 1vw, 1rem);
}

.marketing-nav a,
.text-action {
  position: relative;
  padding: 0.45rem 0.2rem;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.marketing-nav a::after,
.text-action::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--leaf);
  transition: right 180ms ease;
}

.marketing-nav a:hover::after,
.marketing-nav a:focus-visible::after,
.text-action:hover::after,
.text-action:focus-visible::after {
  right: 0;
}

.marketing-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marketing-menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--white);
  cursor: pointer;
}

.marketing-menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 0.25rem 0;
  border-radius: 2px;
  background: var(--forest);
  transition: transform 180ms ease, opacity 180ms ease;
}

.marketing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.82rem 1.35rem;
  border: 1px solid var(--forest);
  border-radius: 0.7rem 0.7rem 1.2rem 0.7rem;
  background: var(--forest);
  color: var(--white) !important;
  font-family: "Montserrat", "Avenir Next", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 12px 28px rgba(16, 46, 36, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.marketing-button:hover,
.marketing-button:focus-visible {
  transform: translateY(-2px);
  background: var(--leaf);
  box-shadow: 0 16px 34px rgba(16, 46, 36, 0.2);
}

.marketing-button-small {
  min-height: 2.65rem;
  padding: 0.66rem 1rem;
  font-size: 0.78rem;
}

.marketing-button-ghost {
  border-color: rgba(27, 67, 50, 0.3);
  background: transparent;
  color: var(--forest) !important;
  box-shadow: none;
}

.marketing-button-ghost:hover,
.marketing-button-ghost:focus-visible {
  border-color: var(--forest);
  background: rgba(27, 67, 50, 0.06);
}

.marketing-button-light {
  border-color: var(--mist);
  background: var(--mist);
  color: var(--forest) !important;
}

.marketing-button-light:hover,
.marketing-button-light:focus-visible {
  background: var(--white);
}

.marketing-flashes {
  position: fixed;
  z-index: 60;
  top: 6.5rem;
  left: 50%;
  width: min(42rem, calc(100% - 2rem));
  transform: translateX(-50%);
}

.marketing-flash {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(27, 67, 50, 0.18);
  border-radius: 0.8rem;
  background: var(--white);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.marketing-flash-error {
  border-color: rgba(157, 47, 51, 0.3);
  color: var(--danger);
}

.marketing-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(48rem, calc(100vh - 5.6rem));
  padding: clamp(5rem, 10vw, 8.5rem) max(1.2rem, calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--forest-deep);
}

.marketing-hero-media,
.marketing-hero-video,
.marketing-hero-overlay {
  position: absolute;
  inset: 0;
}

.marketing-hero-media {
  z-index: -3;
}

.marketing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.marketing-hero-video {
  z-index: -2;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: 55% center;
  opacity: 0;
  transition: opacity 420ms ease;
}

.marketing-hero-video.is-playing {
  opacity: 1;
}

.marketing-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 31, 23, 0.94) 0%, rgba(11, 39, 29, 0.82) 42%, rgba(16, 46, 36, 0.36) 70%, rgba(16, 46, 36, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 31, 23, 0.55) 0%, transparent 55%);
}

.marketing-hero-copy {
  position: relative;
  z-index: 2;
  width: min(48rem, 62vw);
}

.marketing-eyebrow {
  margin-bottom: 1rem !important;
  color: var(--leaf);
  font-family: "Montserrat", "Avenir Next", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.marketing-eyebrow-light {
  color: #b9d1d3;
}

.marketing-hero .marketing-eyebrow {
  color: #b9d1d3;
}

.marketing-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.8vw, 6.25rem);
  line-height: 0.94;
}

.marketing-lead {
  max-width: 43rem;
  margin-top: 1.6rem !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.marketing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-sound-button {
  gap: 0.5rem;
}

.marketing-hero .marketing-button {
  border-color: var(--mist);
  background: var(--mist);
  color: var(--forest) !important;
}

.marketing-hero .marketing-button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white) !important;
}

.marketing-hero .marketing-button:hover {
  background: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 43rem;
  margin-top: 2.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span {
  display: grid;
  gap: 0.15rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-video-toggle {
  position: absolute;
  right: max(1.2rem, calc((100vw - var(--max-width)) / 2));
  bottom: 1.4rem;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 31, 23, 0.72);
  color: var(--white);
  font: 700 0.72rem/1 "Open Sans", sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(0.55rem);
}

.has-js .hero-video-toggle {
  display: inline-flex;
}

.hero-video-toggle:hover,
.hero-video-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 31, 23, 0.9);
}

.hero-video-toggle:focus-visible {
  outline: 3px solid var(--mist);
  outline-offset: 3px;
}

.hero-video-toggle-icon {
  position: relative;
  width: 0.72rem;
  height: 0.82rem;
}

.hero-video-toggle[aria-pressed="false"] .hero-video-toggle-icon::before,
.hero-video-toggle[aria-pressed="false"] .hero-video-toggle-icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.2rem;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hero-video-toggle[aria-pressed="false"] .hero-video-toggle-icon::before {
  left: 0.08rem;
}

.hero-video-toggle[aria-pressed="false"] .hero-video-toggle-icon::after {
  right: 0.08rem;
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-icon::before {
  display: block;
  width: 0;
  height: 0;
  margin: 0.02rem 0 0 0.08rem;
  border-top: 0.39rem solid transparent;
  border-bottom: 0.39rem solid transparent;
  border-left: 0.62rem solid currentColor;
  content: "";
}

.hero-video-dialog[hidden] {
  display: none;
}

.hero-video-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.hero-video-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 13, 0.88);
  backdrop-filter: blur(0.6rem);
}

.hero-video-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(68rem, 100%);
  max-height: calc(100vh - 2.5rem);
  padding: clamp(1rem, 2.5vw, 1.75rem);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  background: #f7faf8;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

.hero-video-dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-video-dialog-heading .marketing-eyebrow {
  margin-bottom: 0.35rem !important;
}

.hero-video-dialog-heading h2 {
  max-width: 22ch;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.hero-video-dialog-close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 1px solid rgba(27, 67, 50, 0.22);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.hero-video-dialog-close:hover,
.hero-video-dialog-close:focus-visible {
  border-color: var(--forest);
  background: var(--mist);
}

.hero-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.85rem;
  background: var(--forest-deep);
  object-fit: contain;
}

.hero-video-dialog-help {
  margin-top: 0.75rem !important;
  color: var(--slate);
  font-size: 0.82rem;
}

.video-dialog-open {
  overflow: hidden;
}

.interface-note {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem 0.55rem 1rem 0.55rem;
  background: rgba(16, 46, 36, 0.78);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.marketing-section {
  width: min(var(--max-width), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 1rem 1rem 2.4rem 1rem;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.section-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-intro-wide {
  max-width: 64rem;
}

.ecosystem-intro,
.pricing-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ecosystem-intro .section-intro,
.pricing-intro-grid .section-intro {
  margin-bottom: 0;
}

.ecosystem-photo img {
  object-position: 50% 54%;
}

.section-intro h2,
.armor-copy h2,
.coach-copy h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.5rem);
}

.section-intro > p:last-child,
.armor-copy > p,
.coach-copy > p,
.contact-copy > p {
  max-width: 44rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ecosystem-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 24rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.9rem 0.9rem 2rem 0.9rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ecosystem-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(27, 67, 50, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 2rem rgba(27, 67, 50, 0.025), 0 0 0 4rem rgba(27, 67, 50, 0.018);
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  transition: transform 180ms ease;
}

.ecosystem-number {
  margin-left: auto;
  color: var(--sage);
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.55;
}

.card-kicker {
  margin-top: 2.4rem !important;
  color: var(--teal);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-card h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
}

.ecosystem-card > p:not(.card-kicker) {
  margin-top: 1rem;
  color: var(--muted);
}

.ecosystem-card > a {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-top: 2.2rem;
  color: var(--leaf);
  font-weight: 700;
}

.ecosystem-app {
  background: linear-gradient(145deg, var(--forest), #245e4a);
  color: var(--white);
}

.ecosystem-app .card-kicker,
.ecosystem-app > a {
  color: #c8dcdd;
}

.ecosystem-app > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.ecosystem-app::after {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0.025), 0 0 0 4rem rgba(255, 255, 255, 0.018);
}

.method-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: 100%;
  padding: 0;
  background: var(--forest-deep);
  color: var(--white);
}

.method-statement,
.method-path {
  padding: clamp(4rem, 8vw, 7rem) max(1.2rem, calc((100vw - var(--max-width)) / 2));
}

.method-statement {
  position: relative;
  min-height: 44rem;
  padding-right: clamp(2rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-deep);
}

.method-photo,
.method-photo-overlay {
  position: absolute;
  inset: 0;
}

.method-photo {
  z-index: -2;
}

.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.method-photo-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 35, 26, 0.94) 0%, rgba(16, 46, 36, 0.82) 62%, rgba(16, 46, 36, 0.58) 100%),
    linear-gradient(0deg, rgba(9, 35, 26, 0.72), transparent 62%);
}

.method-statement-content {
  position: relative;
  z-index: 1;
}

.method-statement-content h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.3vw, 4.8rem);
}

.method-statement-content > p:not(.marketing-eyebrow) {
  max-width: 38rem;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.72);
}

.method-path {
  display: grid;
  align-content: center;
  gap: 0;
  padding-left: clamp(2rem, 6vw, 6rem);
  background: #173d31;
}

.method-path article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.method-path article:last-child {
  border-bottom: 0;
}

.method-path article > span {
  color: var(--sage);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.method-path h3 {
  font-size: 1.25rem;
}

.method-path p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.armor-section,
.coach-section,
.contact-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.armor-media {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 1.2rem 2.2rem 2.2rem 0;
}

.armor-photo {
  width: 88%;
  aspect-ratio: 4 / 5;
}

.armor-photo img {
  object-position: 48% center;
}

.armor-progress-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: min(23rem, 68%);
  padding: 1.35rem;
  border: 7px solid var(--white);
  border-radius: 1rem 1rem 2rem 1rem;
  background: #f5f8f7;
  box-shadow: var(--shadow);
}

.armor-progress-card h3 {
  margin: 1rem 0;
  color: var(--forest);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.armor-mini-habits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.armor-mini-habits > div {
  display: grid;
  gap: 0.3rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--white);
}

.armor-mini-habits span {
  color: var(--muted);
  font-size: 0.68rem;
}

.armor-mini-habits strong {
  color: var(--forest);
  font-size: 0.86rem;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.76rem;
}

.app-topline b {
  padding: 0.4rem 0.65rem;
  border-radius: 99px;
  background: var(--mist);
  color: var(--forest);
}


.coach-message {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.8rem 0.8rem 1.4rem 0.8rem;
  background: var(--forest);
  color: var(--white);
}

.coach-message > span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--mist);
  color: var(--forest);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
}

.coach-message p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  line-height: 1.45;
}

.coach-message strong {
  display: block;
  color: var(--white);
}

.interface-note {
  border-color: var(--line);
  background: var(--white);
  color: var(--forest);
}

.interface-note-one { left: -0.5rem; top: 18%; }
.interface-note-two { right: -1rem; bottom: 14%; }

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15rem;
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  content: "✓";
  background: var(--mist);
  color: var(--leaf);
  font-size: 0.7rem;
  font-weight: 800;
}

.support-note {
  margin-bottom: 1.6rem !important;
  padding-left: 1rem;
  border-left: 3px solid var(--sage);
  color: var(--muted) !important;
  font-size: 0.78rem !important;
}

.coach-section {
  align-items: stretch;
  width: 100%;
  padding: 0;
  background: var(--mist);
}

.coach-quote-panel,
.coach-copy {
  padding: clamp(4rem, 8vw, 7rem) max(1.2rem, calc((100vw - var(--max-width)) / 2));
}

.coach-quote-panel {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 48rem;
  padding-right: clamp(2rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--slate);
  color: var(--white);
}

.coach-photo,
.coach-photo-overlay {
  position: absolute;
  inset: 0;
}

.coach-photo {
  z-index: -2;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.coach-photo-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 54, 56, 0.93) 0%, rgba(31, 70, 70, 0.72) 58%, rgba(31, 70, 70, 0.34) 100%),
    linear-gradient(0deg, rgba(16, 46, 36, 0.72), transparent 58%);
}

.quote-mark {
  position: absolute;
  left: 6%;
  top: -3rem;
  color: rgba(255, 255, 255, 0.12);
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
}

.coach-quote-panel blockquote {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.coach-signal {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 0.4rem;
  height: 3rem;
  margin-top: 2rem;
}

.coach-signal span {
  width: 0.38rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.75);
}

.coach-signal span:nth-child(1) { height: 30%; }
.coach-signal span:nth-child(2) { height: 70%; }
.coach-signal span:nth-child(3) { height: 100%; }
.coach-signal span:nth-child(4) { height: 58%; }
.coach-signal span:nth-child(5) { height: 38%; }

.coach-copy {
  padding-left: clamp(2rem, 6vw, 6rem);
}

.coach-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.text-arrow {
  color: var(--forest);
  font-weight: 700;
}

.pricing-section {
  padding-bottom: clamp(6rem, 10vw, 9rem);
}

.pricing-photo img {
  object-position: 50% center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem 0.9rem 2rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.price-card .card-kicker {
  margin-top: 0 !important;
}

.price-card h3 {
  margin-top: 0.6rem;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 1.35rem 0;
}

.price strong {
  color: var(--forest);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  letter-spacing: -0.06em;
}

.price span {
  color: var(--muted);
  font-size: 0.76rem;
}

.price-card > p:not(.card-kicker) {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.5;
}

.price-card .marketing-button {
  width: 100%;
  margin-top: auto;
}

.price-card-featured {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  transform: translateY(-1rem);
}

.price-card-featured .card-kicker,
.price-card-featured .price strong {
  color: #c8dcdd;
}

.price-card-featured .price span,
.price-card-featured > p:not(.card-kicker),
.price-card-featured ul {
  color: rgba(255, 255, 255, 0.74);
}

.price-card-featured .marketing-button {
  border-color: var(--mist);
  background: var(--mist);
  color: var(--forest) !important;
}

.popular-tag {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  padding: 0.38rem 0.6rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  color: #c8dcdd;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stories-section {
  width: 100%;
  padding-right: max(1.2rem, calc((100vw - var(--max-width)) / 2));
  padding-left: max(1.2rem, calc((100vw - var(--max-width)) / 2));
  background: var(--forest-deep);
  color: var(--white);
}

.stories-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.stories-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.carousel-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  padding: 0.3rem 0 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.testimonial-card {
  flex: 0 0 min(34rem, 82vw);
  min-height: 24rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.9rem 0.9rem 2rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  scroll-snap-align: start;
}

.stars {
  color: var(--warm);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.testimonial-card blockquote {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.testimonial-card > p {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
}

.testimonial-card > p span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro-column {
  min-width: 0;
}

.faq-intro-column .section-intro {
  margin-bottom: 2.5rem;
}

.faq-photo {
  width: min(100%, 30rem);
}

.faq-photo img {
  object-position: 52% center;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  color: var(--forest);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 46rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.contact-section {
  width: 100%;
  padding-right: max(1.2rem, calc((100vw - var(--max-width)) / 2));
  padding-left: max(1.2rem, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 0 100%, rgba(137, 172, 176, 0.2), transparent 24rem),
    var(--forest);
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.3rem;
}

.contact-details a {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details span {
  color: #b9d1d3;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--white);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1rem 1rem 2.2rem 1rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.contact-form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form-heading span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-form-heading small,
.contact-privacy {
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label > span {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #f8faf9;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(92, 141, 145, 0.14);
}

.contact-privacy {
  line-height: 1.55 !important;
}

.contact-privacy a {
  color: var(--leaf);
  font-weight: 700;
  text-decoration: underline;
}

.contact-form .marketing-button {
  justify-self: start;
}

.spam-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.cap-widget-wrap {
  min-height: 3rem;
}

.marketing-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem max(1.2rem, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  background: #eaf2ef;
}

.marketing-footer-brand strong {
  color: var(--forest);
  font-size: 0.9rem;
}

.marketing-footer-brand p,
.marketing-footer-note {
  color: var(--muted);
  font-size: 0.68rem;
}

.marketing-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
}

.marketing-footer-note {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cookie-consent {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(44rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  color: var(--forest);
}

.cookie-consent p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions .marketing-button {
  min-height: 2.5rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
}

@media (max-width: 1120px) {
  .marketing-header {
    grid-template-columns: 1fr auto;
  }

  .marketing-menu-button {
    display: block;
  }

  .marketing-header-actions {
    display: none;
  }

  .marketing-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    justify-content: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .marketing-nav a {
    padding: 0.8rem;
    border-radius: 0.55rem;
    background: #f5f8f7;
  }

  .marketing-header.is-open .marketing-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .marketing-header.is-open .marketing-menu-button > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .marketing-header.is-open .marketing-menu-button > span:nth-child(2) {
    opacity: 0;
  }

  .marketing-header.is-open .marketing-menu-button > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

@media (max-width: 900px) {
  .marketing-hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .marketing-hero-copy {
    width: min(44rem, 82vw);
  }

  .marketing-hero h1 {
    max-width: 16ch;
  }

  .ecosystem-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-intro,
  .pricing-intro-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-photo,
  .pricing-photo {
    width: min(100%, 40rem);
  }

  .ecosystem-card {
    min-height: auto;
  }

  .price-card-featured {
    transform: none;
  }

  .method-section,
  .coach-section {
    grid-template-columns: 1fr;
  }

  .method-statement {
    min-height: 42rem;
  }

  .method-statement,
  .method-path,
  .coach-quote-panel,
  .coach-copy {
    padding-right: max(1.2rem, calc((100vw - var(--max-width)) / 2));
    padding-left: max(1.2rem, calc((100vw - var(--max-width)) / 2));
  }

  .armor-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .armor-copy {
    order: -1;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-photo {
    width: min(100%, 40rem);
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 5.6rem;
  }

  .marketing-header {
    min-height: 4.9rem;
    padding: 0.65rem 0.8rem;
  }

  .marketing-brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .marketing-brand strong {
    font-size: 0.96rem;
  }

  .marketing-brand small {
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .marketing-nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 6.5rem);
    overflow-y: auto;
  }

  .marketing-hero {
    min-height: 42rem;
    padding: 4.4rem 1.2rem 3.5rem;
  }

  .marketing-hero-media img {
    object-position: 65% center;
  }

  .marketing-hero-video {
    object-position: 58% center;
  }

  .marketing-hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 31, 23, 0.93) 0%, rgba(11, 39, 29, 0.78) 65%, rgba(16, 46, 36, 0.43) 100%),
      linear-gradient(0deg, rgba(8, 31, 23, 0.78) 0%, rgba(8, 31, 23, 0.24) 72%);
  }

  .marketing-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

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

  .marketing-actions {
    display: grid;
  }

  .marketing-actions .marketing-button {
    width: 100%;
  }

  .hero-video-toggle {
    right: 1.2rem;
    bottom: 1rem;
  }

  .hero-video-dialog {
    padding: 0.65rem;
  }

  .hero-video-dialog-panel {
    max-height: calc(100vh - 1.3rem);
    border-radius: 1rem;
  }

  .marketing-section {
    width: min(100% - 2rem, var(--max-width));
    padding: 4.5rem 0;
  }

  .method-section,
  .coach-section,
  .stories-section,
  .contact-section {
    width: 100%;
  }

  .ecosystem-card,
  .price-card,
  .testimonial-card {
    padding: 1.35rem;
  }

  .section-photo {
    border-radius: 0.8rem 0.8rem 1.8rem 0.8rem;
  }

  .method-statement {
    min-height: 44rem;
  }

  .method-photo img {
    object-position: 58% center;
  }

  .armor-media {
    padding: 0 0 1.5rem;
  }

  .armor-photo {
    width: 100%;
  }

  .armor-progress-card {
    right: 0.8rem;
    bottom: 0;
    width: calc(100% - 1.6rem);
    padding: 1rem;
    border-width: 5px;
  }

  .coach-quote-panel {
    min-height: 42rem;
  }

  .coach-photo img {
    object-position: 56% center;
  }

  .interface-note {
    display: none;
  }

  .stories-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-card {
    flex-basis: 88vw;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .marketing-footer-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .marketing-hero-video {
    display: none;
  }

  .marketing-hero-video.is-playing {
    display: block;
  }
}

/* Keep narrow viewports constrained even when decorative content is wider. */
.marketing-body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.marketing-header,
.marketing-hero,
.marketing-hero-copy,
.marketing-section {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  .marketing-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .marketing-brand,
  .marketing-brand > span:last-child {
    min-width: 0;
  }

  .marketing-brand small {
    max-width: min(11rem, 42vw);
  }

  .marketing-hero {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-hero-copy,
  .marketing-lead {
    width: 100%;
    max-width: 100%;
  }

  .marketing-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.6rem, 11.7vw, 3.45rem);
  }
}
