:root {
  --color-cream: #fcfaf4;
  --color-merino: #f8f5ec;
  --color-emerald: #029e72;
  --color-emerald-dark: #003e31;
  --color-emerald-soft: #d7f3e5;
  --color-cyan-900: #001112;
  --color-cyan-800: #233738;
  --color-border: #d6e1de;
  --color-white: #ffffff;
  --shadow-soft: 0 1px 2px rgba(3, 21, 22, 0.04), 0 8px 24px -8px rgba(3, 21, 22, 0.08);
  --shadow-strong: 0 2px 4px rgba(3, 21, 22, 0.04), 0 24px 60px -20px rgba(0, 62, 49, 0.18);
  --radius-lg: 26px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--color-cream);
  color: var(--color-cyan-900);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  scroll-margin-top: 96px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  color: var(--color-emerald);
  display: inline-block;
}

.eyebrow--dark {
  color: var(--color-emerald-dark);
}

.eyebrow--light {
  color: rgba(248, 245, 236, 0.8);
}

.section-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 63px;
  letter-spacing: -1.2px;
  margin-top: 16px;
}

.section-title--left {
  text-align: left;
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: var(--color-merino);
}

.section-subtitle {
  font-size: 14px;
  line-height: 26px;
  color: var(--color-cyan-800);
  margin-top: 10px;
}

.section-subtitle--center {
  text-align: center;
}

.section-body {
  font-size: 14px;
  line-height: 26px;
  color: var(--color-cyan-800);
  margin-top: 24px;
}

.section-body--light {
  color: rgba(248, 245, 236, 0.75);
}

.section-heading {
  text-align: center;
}

.text-accent {
  color: var(--color-emerald);
}

.text-accent-italic {
  color: var(--color-emerald);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
  min-width: 44px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--light {
  background: var(--color-merino);
  color: var(--color-emerald-dark);
}

.btn--arrow span {
  transition: transform 0.2s ease;
}

.btn--arrow:hover span {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  padding: 0 80px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  background: rgba(0, 17, 18, 0.78);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.nav__bar {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 36px;
  color: rgba(248, 245, 236, 0.8);
  font-size: 14px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(248, 245, 236, 0.18);
  background: rgba(248, 245, 236, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--color-merino);
  font-size: 14px;
}

.nav__phone img {
  width: 15px;
  height: 14px;
}

.nav__phone:hover {
  background: rgba(248, 245, 236, 0.14);
  border-color: rgba(248, 245, 236, 0.26);
}

.nav__call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(248, 245, 236, 0.18);
  background: rgba(248, 245, 236, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--color-merino);
}

.nav__call img {
  width: 16px;
  height: 16px;
}

.nav__call:hover {
  background: rgba(248, 245, 236, 0.14);
  border-color: rgba(248, 245, 236, 0.26);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-merino);
  border-radius: 999px;
}

.nav__drawer {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 32px calc(28px + env(safe-area-inset-bottom));
  max-height: calc(100vh - 75px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(180deg, rgba(0, 17, 18, 0.98) 0%, rgba(0, 17, 18, 0.92) 100%);
  color: var(--color-merino);
  border: 1px solid rgba(248, 245, 236, 0.08);
  border-top: none;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.nav__drawer a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid rgba(248, 245, 236, 0.05);
  background: rgba(248, 245, 236, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav__drawer a:not(.btn):hover,
.nav__drawer a:not(.btn):focus-visible {
  background: rgba(248, 245, 236, 0.1);
  border-color: rgba(248, 245, 236, 0.16);
  transform: translateX(2px);
}

.nav__drawer .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.nav__drawer[hidden] {
  display: none;
}

.hero {
  position: relative;
  background: linear-gradient(161.62deg, #001517 0%, #012525 100%);
  padding: 192px 80px 128px;
  color: var(--color-merino);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__overlay--left {
  background: linear-gradient(90deg, #001112 0%, rgba(0, 17, 18, 0) 60%);
}

.hero__overlay--bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #001112 100%);
}

.hero__wave {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1008px;
  max-width: 72vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.waveform {
  position: relative;
  width: 750px;
  max-width: 100%;
  height: 500px;
  max-height: min(500px, 78vh);
  animation: waveformPulse 5s ease-in-out infinite;
}

.waveform::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 28%;
  width: 58%;
  height: 48%;
  background: radial-gradient(ellipse at center, rgba(0, 187, 135, 0.22) 0%, rgba(0, 187, 135, 0.06) 45%, transparent 72%);
  animation: waveformAmbient 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.waveform__layer {
  position: absolute;
  opacity: 1;
  z-index: 1;
}

.waveform__layer img,
.waveform__ekg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
}

.waveform__layer:not(.waveform__layer--13) img {
  transform-origin: 50% 50%;
  animation: waveformBarPulse 5s ease-in-out infinite;
  will-change: transform, opacity;
}

.waveform__layer--1 img {
  animation-delay: 0s;
}

.waveform__layer--2 img {
  animation-delay: 0.12s;
}

.waveform__layer--3 img {
  animation-delay: 0.24s;
}

.waveform__layer--4 img {
  animation-delay: 0.36s;
}

.waveform__layer--5 img {
  animation-delay: 0.48s;
}

.waveform__layer--6 img {
  animation-delay: 0.6s;
}

.waveform__layer--7 img {
  animation-delay: 0.72s;
}

.waveform__layer--8 img {
  animation-delay: 0.84s;
}

.waveform__layer--9 img {
  animation-delay: 0.96s;
}

.waveform__layer--10 img {
  animation-delay: 1.08s;
}

.waveform__layer--11 img {
  animation-delay: 1.2s;
}

.waveform__layer--12 img {
  animation-delay: 1.32s;
}

.waveform__layer--1 {
  inset: 48.04% 92.15% 48.04% 5.81%;
}

.waveform__layer--2 {
  inset: 46.32% 88.08% 46.32% 9.88%;
}

.waveform__layer--3 {
  inset: 44.73% 84.01% 44.73% 13.95%;
}

.waveform__layer--4 {
  inset: 41.78% 79.94% 41.78% 18.02%;
}

.waveform__layer--5 {
  inset: 38.3% 75.87% 38.3% 22.09%;
}

.waveform__layer--6 {
  inset: 40.65% 71.8% 40.65% 26.16%;
}

.waveform__layer--7 {
  inset: 43.42% 67.73% 43.42% 30.23%;
}

.waveform__layer--8 {
  inset: 45.33% 63.66% 45.33% 34.3%;
}

.waveform__layer--9 {
  inset: 40.48% 59.59% 40.48% 38.37%;
}

.waveform__layer--10 {
  inset: 43.64% 55.52% 43.64% 42.44%;
}

.waveform__layer--11 {
  inset: 46.16% 51.45% 46.16% 46.51%;
}

.waveform__layer--12 {
  inset: 49.15% 45.35% 49.15% 49.42%;
}

.waveform__layer--13 {
  inset: 28.72% 2.91% 28.72% 50.58%;
  opacity: 0.9;
  animation: waveformGlow 5s ease-in-out infinite;
}

.waveform__glow {
  position: absolute;
  inset: -6% -3.75%;
}

.waveform__ekg-path {
  fill: none;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: waveformEkgTrace 5s linear infinite;
}

.waveform__ekg-path--blur {
  animation: waveformEkgTraceBlur 5s linear infinite;
}

@keyframes waveformPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.58;
  }

  50% {
    transform: translateY(-8px) scale(1.015);
    opacity: 0.78;
  }
}

@keyframes waveformAmbient {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes waveformBarPulse {
  0%,
  100% {
    transform: scaleY(0.7);
    opacity: 0.72;
  }

  35% {
    transform: scaleY(1.08);
    opacity: 1;
  }

  65% {
    transform: scaleY(0.82);
    opacity: 0.88;
  }
}

@keyframes waveformGlow {
  0%,
  100% {
    opacity: 0.72;
    filter: drop-shadow(0 0 6px rgba(0, 187, 135, 0.15));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 22px rgba(0, 187, 135, 0.5));
  }
}

@keyframes waveformEkgTrace {
  0% {
    stroke-dashoffset: 1400;
    opacity: 0.35;
  }

  18% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -280;
    opacity: 0.35;
  }
}

@keyframes waveformEkgTraceBlur {
  0% {
    stroke-dashoffset: 1400;
    opacity: 0.2;
  }

  18% {
    stroke-dashoffset: 0;
    opacity: 0.55;
  }

  72% {
    stroke-dashoffset: 0;
    opacity: 0.55;
  }

  100% {
    stroke-dashoffset: -280;
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .waveform,
  .waveform::before,
  .waveform__layer:not(.waveform__layer--13) img,
  .waveform__layer--13,
  .waveform__ekg-path,
  .waveform__ekg-path--blur {
    animation: none;
  }

  .waveform__ekg-path,
  .waveform__ekg-path--blur {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  position: relative;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding-top: 2px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border: 1px solid rgba(248, 245, 236, 0.15);
  border-radius: 999px;
  background: rgba(248, 245, 236, 0.05);
  font-size: 12px;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  align-self: flex-start;
  width: fit-content;
}

.hero__badge-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  animation: badgePulse 2.4s ease-in-out infinite;
}

.hero__badge-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(2, 158, 114, 0.4);
  opacity: 0;
  animation: badgeRing 2.4s ease-in-out infinite;
}

.hero__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 75px;
  line-height: 78px;
  letter-spacing: -1px;
  max-width: 760px;
}

.hero__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(248, 245, 236, 0.75);
  max-width: 560px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 13px;
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 14px;
  color: rgba(248, 245, 236, 0.7);
  margin-top: 28px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, rgba(248, 245, 236, 0) 0%, rgba(248, 245, 236, 0.15) 50%, rgba(248, 245, 236, 0) 100%);
}

.store-button__name--mobile {
  display: none;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(2, 158, 114, 0.2);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(2, 158, 114, 0);
  }
}

@keyframes badgeRing {
  0% {
    transform: scale(0.7);
    opacity: 0.5;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 48px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-button__icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.store-button__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-button__download {
  display: none;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(0, 17, 18, 0.18);
  background: rgba(0, 17, 18, 0.06);
  color: currentColor;
  flex-shrink: 0;
}

.store-button__download-svg {
  width: 14px;
  height: 14px;
  display: block;
}

.store-button--ghost .store-button__download {
  border-color: rgba(248, 245, 236, 0.3);
  background: rgba(248, 245, 236, 0.12);
}

.store-button--light {
  background: var(--color-merino);
  color: var(--color-cyan-900);
}

.store-button--ghost {
  background: rgba(248, 245, 236, 0.05);
  border-color: rgba(248, 245, 236, 0.2);
  color: var(--color-merino);
  backdrop-filter: blur(4px);
}

.store-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.store-button--disabled,
.store-button--disabled:hover {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.store-button__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-button__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(0, 17, 18, 0.6);
}

.store-button--ghost .store-button__label {
  color: rgba(248, 245, 236, 0.6);
}

.store-button__name {
  font-size: 14px;
  font-weight: 600;
}

.store-cta-label {
  display: none;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(248, 245, 236, 0.7);
}

.why {
  padding: 40px 80px 160px;
  background: var(--color-cream);
}

.feature-grid {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease, background-color 0.45s ease;
  will-change: transform, box-shadow;
}

/* ── Header: icon + title side by side ── */
.feature-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-card__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8faf2 0%, #d2f4e5 100%);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 1px rgba(2, 158, 114, 0.12),
    0 2px 8px -2px rgba(2, 158, 114, 0.15);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, box-shadow 0.45s ease;
  flex-shrink: 0;
}

.feature-card__icon-svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-emerald-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), stroke 0.45s ease;
}

.feature-card__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: var(--color-cyan-900);
}

/* ── Body: faded luxury description box ── */
.feature-card__body {
  background: linear-gradient(160deg, rgba(215, 243, 229, 0.25) 0%, rgba(248, 245, 236, 0.45) 100%);
  border: 1px solid rgba(2, 158, 114, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.7);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.feature-card__text {
  font-size: 13.5px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

/* ── Bullet points with green dots ── */
.feature-card__bullets {
  list-style: none;
  padding: 0 4px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-cyan-800);
}

.feature-card__bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  margin-top: 7px;
  box-shadow: 0 0 0 2px rgba(2, 158, 114, 0.1);
  transition: box-shadow 0.3s ease;
}

/* ── Hover states ── */
.feature-card:hover {
  transform: translateY(-6px) scale(1.008);
  border-color: rgba(2, 158, 114, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 255, 163, 0.25),
    0 0 20px rgba(0, 255, 163, 0.12),
    0 20px 40px -16px rgba(0, 62, 49, 0.22),
    var(--shadow-soft);
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(145deg, #c8fce4 0%, #b8f5d6 100%);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(2, 158, 114, 0.3),
    0 0 14px rgba(0, 255, 163, 0.2),
    0 4px 12px -4px rgba(2, 158, 114, 0.25);
}

.feature-card:hover .feature-card__icon-svg {
  transform: scale(1.08);
  stroke: #006f52;
}

.feature-card:hover .feature-card__body {
  background: linear-gradient(160deg, rgba(215, 243, 229, 0.4) 0%, rgba(248, 245, 236, 0.55) 100%);
  border-color: rgba(2, 158, 114, 0.14);
}

.feature-card:hover .feature-card__bullets li::before {
  box-shadow: 0 0 0 3px rgba(2, 158, 114, 0.15), 0 0 6px rgba(2, 158, 114, 0.2);
}

.solutions {
  padding: 31px 80px 128px;
  background: var(--color-cream);
}

.solutions__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.solutions__media {
  background: linear-gradient(180deg, var(--color-merino) 0%, var(--color-emerald-soft) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 12px;
  overflow: hidden;
  width: 580px;
  height: 540px;
  justify-self: center;
  align-self: center;
}

.solutions__media img {
  border-radius: calc(var(--radius-lg) - 1px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solutions__content {
  max-width: 100%;
}

.stats {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stats dt {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
  color: var(--color-emerald);
}

.stats dd {
  font-size: 12px;
  line-height: 19.5px;
  color: var(--color-cyan-800);
  margin-top: 8px;
}

.patients {
  padding: 128px 80px;
  background: var(--color-cream);
}

.patients__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.patients__media {
  background: linear-gradient(180deg, var(--color-merino) 0%, var(--color-emerald-soft) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 12px;
  width: 666px;
  height: 538px;
  justify-self: center;
  align-self: center;
}

.patients__media img {
  border-radius: calc(var(--radius-lg) - 1px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workflow {
  background: var(--color-emerald-soft);
  padding: 144px 80px;
}

.workflow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.video-card {
  position: relative;
  width: 100%;
  max-width: 1080px;
  height: 621px;
  background: #0b0f10;
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(2, 195, 154, 0.6), 0 0 24px rgba(2, 195, 154, 0.38), 0 0 48px rgba(2, 195, 154, 0.24), var(--shadow-strong);
}

.video-card__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0b0f10;
}

.video-card__toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(0, 17, 18, 0.45);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%) scale(1);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
}

.video-card__toggle:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0, 17, 18, 0.62);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.video-card__toggle:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.video-card__toggle:focus-visible {
  outline: 2px solid rgba(2, 195, 154, 0.9);
  outline-offset: 4px;
}

.video-card.controls-visible .video-card__toggle {
  opacity: 1;
  pointer-events: auto;
}

.video-card__icon {
  position: absolute;
  width: 34px;
  height: 34px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-card__icon--play {
  clip-path: polygon(12% 6%, 92% 50%, 12% 94%);
  background: #f8f5ec;
  transform: translateX(2px) scale(1);
}

.video-card__icon--pause::before,
.video-card__icon--pause::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 9px;
  height: 26px;
  border-radius: 999px;
  background: #f8f5ec;
}

.video-card__icon--pause::before {
  left: 6px;
}

.video-card__icon--pause::after {
  right: 6px;
}

.video-card:not(.is-playing) .video-card__icon--play {
  opacity: 1;
  transform: translateX(2px) scale(1);
}

.video-card:not(.is-playing) .video-card__icon--pause {
  opacity: 0;
  transform: scale(0.82);
}

.video-card.is-playing .video-card__icon--play {
  opacity: 0;
  transform: translateX(2px) scale(0.82);
}

.video-card.is-playing .video-card__icon--pause {
  opacity: 1;
  transform: scale(1);
}

.download {
  padding: 112px 120px;
  background: var(--color-cream);
}

.download__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #001517 0%, #012525 100%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.download__content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.download__media {
  position: relative;
  min-height: 320px;
}

.download__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #001517 0%, rgba(0, 21, 23, 0) 60%);
}

.download__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  padding: 128px 120px;
  background: var(--color-cream);
}

.contact__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact__info {
  background: linear-gradient(135deg, #003e31 0%, #00684c 50%, #0a9068 100%);
  padding: 61px 56px;
  color: var(--color-merino);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 43.2px;
  line-height: 47.52px;
  letter-spacing: -0.864px;
}

.contact__title-italic {
  font-style: italic;
}

.contact__copy {
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(248, 245, 236, 0.8);
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-merino);
  font-size: 14px;
}

.contact__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(248, 245, 236, 0.1);
  box-shadow: 0 0 0 1px rgba(248, 245, 236, 0.15);
}

.contact__link-text {
  text-decoration: underline;
}

.contact__form {
  padding: 36px 64px;
  background: var(--color-white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field__label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  border-radius: 12px;
  padding: 15px 17px;
  font-size: 16px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field__error {
  color: #b42318;
  font-size: 12px;
  min-height: 14px;
}

.form-field--error input,
.form-field--error textarea {
  border-color: #f04438;
}

.form-button {
  margin-top: 8px;
  height: 56px;
  border-radius: 12px;
  background: #02c39a;
  border: none;
  color: var(--color-white);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 15px -3px #a7f3d0, 0 4px 6px -4px #a7f3d0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.form-button:hover {
  transform: translateY(-1px);
}

.form-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.form-status--success {
  color: var(--color-emerald-dark);
}

.form-status--error {
  color: #c0392b;
}

.section-body--center {
  text-align: center;
  max-width: 720px;
  margin: 16px auto 0;
}

.text-link {
  color: var(--color-emerald-dark);
  font-weight: 600;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--color-emerald);
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-row--center {
  justify-content: center;
}

.arrow-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 62, 49, 0.18);
  background: linear-gradient(135deg, #ffffff 0%, #f3fbf7 100%);
  color: var(--color-emerald-dark);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 62, 49, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.arrow-button__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--color-emerald);
  color: var(--color-white);
  font-size: 12px;
  transition: transform 0.2s ease;
}

.arrow-button:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 158, 114, 0.35);
  box-shadow: 0 12px 26px rgba(0, 62, 49, 0.14);
}

.arrow-button:hover .arrow-button__icon {
  transform: translateX(2px);
}

.arrow-button:focus-visible {
  outline: 2px solid rgba(2, 158, 114, 0.5);
  outline-offset: 2px;
}

.solutions__content .arrow-button,
.patients__content .arrow-button {
  margin-top: 28px;
  gap: 18px;
  padding: 12px 16px 12px 24px;
  max-width: 100%;
}

.comparison {
  padding: 120px 80px;
  background: var(--color-merino);
}

.comparison__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison__panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison__panel--highlight {
  background: linear-gradient(160deg, #e8faf2 0%, #f8f5ec 100%);
  border-color: rgba(2, 158, 114, 0.2);
}

.comparison__panel h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 22px;
  color: var(--color-emerald-dark);
}

.comparison__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

.comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comparison__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  display: inline-block;
  margin-top: 7px;
}

.comparison__table-wrapper {
  margin-top: 32px;
  overflow-x: auto;
}

.comparison__table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.comparison__table th,
.comparison__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 13.5px;
  text-align: left;
  color: var(--color-cyan-800);
}

.comparison__table th {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-emerald-dark);
  background: rgba(2, 158, 114, 0.08);
}



.benefits {
  padding: 120px 80px;
  background: var(--color-cream);
}

.benefits-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.benefit-card--link:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 158, 114, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 255, 163, 0.18), 0 20px 40px -16px rgba(0, 62, 49, 0.18), var(--shadow-soft);
}

.benefit-card--link:focus-visible {
  outline: 2px solid rgba(2, 158, 114, 0.5);
  outline-offset: 4px;
}

.benefit-card h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-emerald-dark);
}

.benefit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

.benefit-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  display: inline-block;
  margin-top: 7px;
}

.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 62, 49, 0.18);
  background: rgba(248, 245, 236, 0.9);
  color: var(--color-emerald-dark);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card-cta__icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--color-emerald);
  color: var(--color-white);
  font-size: 11px;
  transition: transform 0.2s ease;
}

.benefit-card--link:hover .card-cta {
  border-color: rgba(2, 158, 114, 0.35);
}

.benefit-card--link:hover .card-cta__icon {
  transform: translateX(2px);
}

.how-it-works {
  padding: 120px 80px;
  background: var(--color-emerald-soft);
}

.steps {
  list-style: none;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
}

.steps__item {
  background: var(--color-white);
  border: 1px solid rgba(0, 62, 49, 0.12);
  border-radius: 18px;
  padding: 18px;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.steps__number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-emerald);
  color: var(--color-white);
  font-weight: 600;
  font-size: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.how-it-works__video {
  margin-top: 40px;
}

.how-it-works .video-card {
  width: 100%;
  max-width: 100%;
}

.faq-section {
  padding: 120px 80px 140px;
  background: var(--color-cream);
}

.faq-section h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 46px;
  line-height: 52px;
  text-align: center;
  color: var(--color-cyan-900);
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-section details {
  margin-top: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}

.faq-section details[open] {
  border-color: rgba(2, 158, 114, 0.3);
}

.faq-section summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary h3 {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-emerald-dark);
  padding-right: 8px;
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(2, 158, 114, 0.1);
  color: var(--color-emerald-dark);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.faq-section details[open] .faq__icon {
  transform: rotate(180deg);
  background: rgba(2, 158, 114, 0.18);
}

.faq-section p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

.page-hero {
  position: relative;
  background: linear-gradient(160deg, #001517 0%, #012525 100%);
  padding: 168px 80px 110px;
  color: var(--color-merino);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(2, 195, 154, 0.2), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(2, 195, 154, 0.16), transparent 50%);
  pointer-events: none;
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.page-hero__content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 62px;
  letter-spacing: -0.8px;
}

.page-hero__lead {
  font-size: 16px;
  line-height: 26px;
  color: rgba(248, 245, 236, 0.78);
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero__media {
  background: linear-gradient(180deg, rgba(248, 245, 236, 0.2) 0%, rgba(215, 243, 229, 0.35) 100%);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-strong);
}

.page-hero__media img {
  border-radius: calc(var(--radius-lg) - 1px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-section {
  padding: 96px 80px;
  background: var(--color-cream);
}

.page-section--alt {
  background: var(--color-merino);
}

.audience-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.audience-card h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-emerald-dark);
  margin-bottom: 12px;
}

.audience-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

.audience-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.audience-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  display: inline-block;
  margin-top: 7px;
}

.audience-callout {
  margin-top: 32px;
  background: linear-gradient(135deg, #003e31 0%, #00684c 50%, #0a9068 100%);
  border-radius: var(--radius-xl);
  color: var(--color-merino);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-callout p {
  color: rgba(248, 245, 236, 0.82);
}

.audience-callout .text-link {
  color: var(--color-merino);
}

.audience-callout .text-link:hover {
  color: #ffffff;
}

.footer {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  padding-top: 80px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  align-items: start;
  gap: 56px;
  padding-bottom: 48px;
}

.footer__logo {
  margin-bottom: 18px;
  width: 214px;
  height: 72px;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer__brand p {
  font-size: 14px;
  line-height: 22.75px;
  color: var(--color-cyan-800);
  max-width: 280px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  padding-top: 6px;
}

.footer__columns h4 {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: 12px;
}

.footer__columns a,
.footer__columns span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-cyan-800);
  margin-bottom: 12px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  font-size: 12px;
  color: var(--color-cyan-800);
}

.footer__crafted {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.icon {
  position: relative;
  display: inline-block;
}

.icon--16 {
  width: 16px;
  height: 16px;
}

.icon--20 {
  width: 20px;
  height: 20px;
}

.icon__layer {
  position: absolute;
}

.icon__layer img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
}

.icon--play-light .icon__layer--play-light-1 {
  inset: 33.33% 33.32% 33.33% 37.5%;
}

.icon--play-light .icon__layer--play-light-1 img {
  inset: -10% -11.43%;
}

.icon--play-light .icon__layer--play-light-2 {
  inset: 8.33%;
}

.icon--play-light .icon__layer--play-light-2 img {
  inset: -4%;
}

.icon--apple-light .icon__layer--apple-light-1 {
  top: 8.33%;
  bottom: 72.8%;
  left: 50%;
  right: 45.83%;
}

.icon--apple-light .icon__layer--apple-light-1 img {
  inset: -17.67% -80%;
}

.icon--apple-light .icon__layer--apple-light-2 {
  inset: 20.83% 8.33% 8.33% 8.33%;
}

.icon--apple-light .icon__layer--apple-light-2 img {
  inset: -4.71% -4%;
}

.icon--zero .icon__layer--zero-1 {
  inset: 57.92% 8.33% 8.33% 30.3%;
}

.icon--zero .icon__layer--zero-1 img {
  inset: -11.11% -6.11%;
}

.icon--zero .icon__layer--zero-2 {
  inset: 8.33%;
}

.icon--zero .icon__layer--zero-2 img {
  inset: -4.5%;
}

.icon--zero .icon__layer--zero-3 {
  inset: 8.33% 62.5% 43.41% 8.33%;
}

.icon--zero .icon__layer--zero-3 img {
  inset: -7.77% -12.86%;
}

.icon--auto .icon__layer--auto-1 {
  top: 8.33%;
  bottom: 75%;
  left: 33.33%;
  right: 66.67%;
}

.icon--auto .icon__layer--auto-1 img {
  inset: -22.5% -0.6px;
}

.icon--auto .icon__layer--auto-2 {
  top: 8.33%;
  bottom: 75%;
  left: 66.67%;
  right: 33.33%;
}

.icon--auto .icon__layer--auto-2 img {
  inset: -22.5% -0.6px;
}

.icon--auto .icon__layer--auto-3 {
  inset: 16.67% 12.5% 8.33% 12.5%;
}

.icon--auto .icon__layer--auto-3 img {
  inset: -5%;
}

.icon--auto .icon__layer--auto-4 {
  inset: 41.67% 12.5% 58.33% 12.5%;
}

.icon--auto .icon__layer--auto-4 img {
  inset: -0.6px -5%;
}

.icon--auto .icon__layer--auto-5 {
  top: 58.33%;
  bottom: 25%;
  left: 37.5%;
  right: 37.5%;
}

.icon--auto .icon__layer--auto-5 img {
  inset: -22.5% -15%;
}

.icon--triage .icon__layer--triage-1 {
  inset: 8.33% 16.67%;
}

.icon--triage .icon__layer--triage-1 img {
  inset: -4.5% -5.62%;
}

.icon--triage .icon__layer--triage-2 {
  inset: 8.33% 16.67% 66.67% 58.33%;
}

.icon--triage .icon__layer--triage-2 img {
  inset: -15%;
}

.icon--triage .icon__layer--triage-3 {
  inset: 37.5% 58.33% 62.5% 33.33%;
}

.icon--triage .icon__layer--triage-3 img {
  inset: -0.6px -45%;
}

.icon--triage .icon__layer--triage-4 {
  inset: 54.17% 33.33% 45.83% 33.33%;
}

.icon--triage .icon__layer--triage-4 img {
  inset: -0.6px -11.25%;
}

.icon--triage .icon__layer--triage-5 {
  inset: 70.83% 33.33% 29.17% 33.33%;
}

.icon--triage .icon__layer--triage-5 img {
  inset: -0.6px -11.25%;
}

.icon--apple-dark .icon__layer--apple-dark-1 {
  top: 8.33%;
  bottom: 72.8%;
  left: 50%;
  right: 45.83%;
}

.icon--apple-dark .icon__layer--apple-dark-1 img {
  inset: -17.67% -80%;
}

.icon--apple-dark .icon__layer--apple-dark-2 {
  inset: 20.83% 8.33% 8.33% 8.33%;
}

.icon--apple-dark .icon__layer--apple-dark-2 img {
  inset: -4.71% -4%;
}

.icon--play-dark .icon__layer--play-dark-1 {
  inset: 33.33% 33.32% 33.33% 37.5%;
}

.icon--play-dark .icon__layer--play-dark-1 img {
  inset: -10% -11.43%;
}

.icon--play-dark .icon__layer--play-dark-2 {
  inset: 8.33%;
}

.icon--play-dark .icon__layer--play-dark-2 img {
  inset: -4%;
}

.icon--phone .icon__layer--phone-1 {
  inset: 8.33%;
}

.icon--phone .icon__layer--phone-1 img {
  inset: -4.5%;
}

.icon--mail .icon__layer--mail-1 {
  inset: 29.17% 8.33% 45.84% 8.33%;
}

.icon--mail .icon__layer--mail-1 img {
  inset: -15.01% -4.5%;
}

.icon--mail .icon__layer--mail-2 {
  inset: 16.67% 8.33%;
}

.icon--mail .icon__layer--mail-2 img {
  inset: -5.63% -4.5%;
}

.icon-card {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.icon-card__layer {
  position: absolute;
}

.icon-card__layer img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
}

.icon-card--smart .icon-card__layer--smart-1 {
  inset: 8.33% 8.33% 54.17% 54.17%;
}

.icon-card--smart .icon-card__layer--smart-1 img {
  inset: -10%;
}

.icon-card--smart .icon-card__layer--smart-2 {
  top: 25%;
  bottom: 54.17%;
  left: 54.17%;
  right: 25%;
}

.icon-card--smart .icon-card__layer--smart-2 img {
  inset: -18%;
}

.icon-card--smart .icon-card__layer--smart-3 {
  inset: 8.33%;
}

.icon-card--smart .icon-card__layer--smart-3 img {
  inset: -4.5%;
}

.icon-card--records .icon-card__layer--records-1 {
  top: 8.33%;
  bottom: 75%;
  left: 33.33%;
  right: 33.33%;
}

.icon-card--records .icon-card__layer--records-1 img {
  inset: -22.5% -11.25%;
}

.icon-card--records .icon-card__layer--records-2 {
  inset: 16.67% 16.67% 8.33% 16.67%;
}

.icon-card--records .icon-card__layer--records-2 img {
  inset: -5% -5.63% -5% -5.62%;
}

.icon-card--records .icon-card__layer--records-3 {
  top: 45.83%;
  bottom: 54.17%;
  left: 50%;
  right: 33.33%;
}

.icon-card--records .icon-card__layer--records-3 img {
  inset: -0.75px -22.5%;
}

.icon-card--records .icon-card__layer--records-4 {
  top: 66.67%;
  bottom: 33.33%;
  left: 50%;
  right: 33.33%;
}

.icon-card--records .icon-card__layer--records-4 img {
  inset: -0.75px -22.5%;
}

.icon-card--records .icon-card__layer--records-5 {
  inset: 45.83% 66.62% 54.17% 33.33%;
}

.icon-card--records .icon-card__layer--records-5 img {
  inset: -0.75px;
}

.icon-card--records .icon-card__layer--records-6 {
  inset: 66.67% 66.62% 33.33% 33.33%;
}

.icon-card--records .icon-card__layer--records-6 img {
  inset: -0.75px;
}

.icon-card--availability .icon-card__layer--availability-1 {
  top: 29.17%;
  bottom: 25%;
  left: 29.17%;
  right: 29.17%;
}

.icon-card--availability .icon-card__layer--availability-1 img {
  inset: -8.18% -9%;
}

.icon-card--availability .icon-card__layer--availability-2 {
  top: 75%;
  bottom: 8.33%;
  left: 20.83%;
  right: 20.83%;
}

.icon-card--availability .icon-card__layer--availability-2 img {
  inset: -22.5% -6.43%;
}

.icon-card--availability .icon-card__layer--availability-3 {
  top: 50%;
  bottom: 50%;
  left: 87.5%;
  right: 8.33%;
}

.icon-card--availability .icon-card__layer--availability-3 img {
  inset: -0.75px -90%;
}

.icon-card--availability .icon-card__layer--availability-4 {
  top: 18.75%;
  bottom: 79.17%;
  left: 75%;
  right: 22.92%;
}

.icon-card--availability .icon-card__layer--availability-4 img {
  inset: -180%;
}

.icon-card--availability .icon-card__layer--availability-5 {
  top: 50%;
  bottom: 50%;
  left: 8.33%;
  right: 87.5%;
}

.icon-card--availability .icon-card__layer--availability-5 img {
  inset: -0.75px -90%;
}

.icon-card--availability .icon-card__layer--availability-6 {
  top: 8.33%;
  bottom: 87.5%;
  left: 50%;
  right: 50%;
}

.icon-card--availability .icon-card__layer--availability-6 img {
  inset: -90% -0.75px;
}

.icon-card--availability .icon-card__layer--availability-7 {
  inset: 20.54% 76.52% 76.52% 20.54%;
}

.icon-card--availability .icon-card__layer--availability-7 img {
  inset: -127.3%;
}

.icon-card--availability .icon-card__layer--availability-8 {
  top: 50%;
  bottom: 25%;
  left: 50%;
  right: 50%;
}

.icon-card--availability .icon-card__layer--availability-8 img {
  inset: -15% -0.75px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .comparison__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .benefit-card {
    padding: 20px;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .steps__item {
    padding: 14px;
    font-size: 13px;
    line-height: 18px;
  }

  .how-it-works .video-card {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero__bullets {
    margin-top: 16px;
    margin-bottom: 0;
  }
}

@media (max-width: 1200px) {
  .site-header {
    padding: 0 60px;
  }

  .hero {
    padding: 168px 60px 110px;
  }

  .hero__title {
    font-size: 54px;
    line-height: 60px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download,
  .contact {
    padding: 96px 80px;
  }

  .comparison,
  .benefits,
  .how-it-works,
  .faq-section,
  .page-hero,
  .page-section {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__wave {
    opacity: 0.35;
    width: 820px;
    max-width: 75vw;
  }

  .waveform {
    width: 600px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 600 / 411.304;
    max-height: min(560px, 72vh);
  }

  .solutions__grid,
  .patients__grid,
  .download__card,
  .contact__card {
    grid-template-columns: 1fr;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .solutions__media {
    width: 100%;
    max-width: 666px;
    height: auto;
    aspect-ratio: 666 / 538;
    min-height: 0;
  }

  .patients__media {
    width: 100%;
    max-width: 666px;
    height: auto;
    aspect-ratio: 666 / 538;
  }

  .download__media {
    min-height: 260px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* Scroll to Bottom Button */
.scroll-to-bottom {
  position: fixed;
  left: 2rem;
  bottom: 3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(39, 124, 153, 0.15), rgba(0, 187, 135, 0.15));
  border: 1px solid rgba(0, 187, 135, 0.25);
  color: rgba(0, 187, 135, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.scroll-to-bottom:hover {
  background: linear-gradient(135deg, rgba(39, 124, 153, 0.25), rgba(0, 187, 135, 0.25));
  color: rgba(0, 187, 135, 0.9);
  border-color: rgba(0, 187, 135, 0.4);
  box-shadow: 0 8px 32px rgba(0, 187, 135, 0.15);
}

.scroll-to-bottom svg {
  width: 1.5rem;
  height: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-to-bottom[data-position="bottom"] svg {
  animation: bounce-up 2s ease-in-out infinite;
}

.scroll-to-bottom.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes bounce-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 84px;
  }

  .container {
    padding: 0 24px;
  }

  .site-header {
    padding: 0 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 160px 32px 96px;
  }

  .hero__inner {
    order: 1;
    width: 100%;
  }

  .hero__title {
    font-size: 40px;
    line-height: 46px;
  }

  .hero__wave {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    order: 2;
    display: flex;
    width: 100%;
    max-width: min(100%, 440px);
    margin: 24px 0 0;
    opacity: 0.7;
    align-self: flex-start;
    justify-content: flex-start;
  }

  .waveform {
    width: 100%;
    max-width: 440px;
    height: auto;
    aspect-ratio: 1008 / 688.406;
    max-height: none;
  }

  .hero__bullets {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__cta .store-button {
    padding: 10px 16px;
    min-width: auto;
    min-height: 44px;
  }

  .hero__cta .store-button__icon,
  .hero__cta .store-button__download {
    display: none;
  }

  .hero__cta .store-button__text {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1.2;
  }

  .hero__cta .store-button__label,
  .hero__cta .store-button__name--desktop {
    display: none;
  }

  .hero__cta .store-button__name--mobile {
    display: block;
    font-size: 13px;
    font-weight: 600;
  }

  .nav__phone,
  .nav__login {
    display: none;
  }

  .nav__call {
    display: inline-flex;
  }

  .hero__lead {
    font-size: 16px;
  }

  .section-title {
    font-size: 44px;
    line-height: 48px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .comparison__grid,
  .benefits-grid,
  .steps,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid .benefit-card:nth-child(3) {
    max-width: none;
    justify-self: stretch;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 64px;
    gap: 24px;
  }

  .solutions__grid,
  .patients__grid {
    gap: 48px;
  }

  .video-card {
    height: 360px;
  }

  .download,
  .contact {
    padding: 80px 32px;
  }

  .comparison,
  .benefits,
  .how-it-works,
  .faq-section,
  .page-hero,
  .page-section {
    padding: 80px 32px;
  }

  .page-hero__title {
    font-size: 40px;
    line-height: 46px;
  }

  .faq-section h2 {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 32px;
  }

  .download__content {
    padding: 40px;
  }

  .contact__info,
  .contact__form {
    padding: 40px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .site-header {
    padding: 0 24px;
  }

  .nav__bar {
    gap: 16px;
  }

  .nav__actions {
    gap: 10px;
  }

  .nav__logo img {
    height: 40px;
  }

  .nav__drawer {
    padding: 20px 24px calc(28px + env(safe-area-inset-bottom));
  }

  .btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 140px 24px 80px;
  }

  .hero__content {
    gap: 20px;
  }

  .hero__badge {
    max-width: 100%;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 1.6px;
    line-height: 1.4;
    white-space: normal;
  }

  .hero__title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.8px;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 24px;
  }

  .hero__bullets {
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
  }

  .hero__wave {
    max-width: min(100%, 340px);
    margin-top: 20px;
  }

  .waveform {
    max-width: 340px;
  }

  .hero__cta,
  .download__cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .store-cta-label {
    display: block;
    width: 100%;
  }

  .download__cta .store-button {
    padding: 10px 12px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 999px;
  }

  .download__cta .store-button__text {
    display: none;
  }

  .download__cta .store-button__icon {
    width: 22px;
    height: 22px;
  }

  .download__cta .store-button__download {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border: none;
    background: transparent;
  }

  .download__cta .store-button__download-svg {
    width: 16px;
    height: 16px;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.15;
  }

  .section-subtitle,
  .section-body {
    font-size: 14px;
    line-height: 22px;
  }

  .why {
    padding: 32px 24px 96px;
  }

  .feature-grid {
    margin-top: 48px;
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
    min-height: auto;
  }

  .feature-card__title {
    font-size: 20px;
    line-height: 28px;
  }

  .solutions {
    padding: 24px 24px 96px;
  }

  .patients {
    padding: 96px 24px;
  }

  .solutions__grid,
  .patients__grid {
    gap: 32px;
  }

  .stats {
    margin-top: 24px;
    padding-top: 24px;
    gap: 16px;
  }

  .stats dt {
    font-size: 26px;
    line-height: 30px;
  }

  .video-card {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }

  .video-card__toggle {
    width: 64px;
    height: 64px;
    opacity: 1;
    pointer-events: auto;
  }

  .download {
    padding: 80px 24px;
  }

  .comparison,
  .benefits,
  .how-it-works,
  .faq-section,
  .page-hero,
  .page-section {
    padding: 72px 24px;
  }

  .page-hero__title {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.15;
  }

  .faq-section h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 28px;
  }

  .download__card {
    border-radius: 24px;
  }

  .download__content {
    padding: 32px;
  }

  .download__media {
    min-height: 220px;
  }

  .contact {
    padding: 80px 24px;
  }

  .contact__card {
    border-radius: 24px;
  }

  .contact__info,
  .contact__form {
    padding: 32px;
  }

  .contact__title {
    font-size: clamp(26px, 6.5vw, 32px);
    line-height: 1.2;
  }

  .contact__links {
    gap: 16px;
  }

  .contact__link-text {
    overflow-wrap: anywhere;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__top {
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer__columns {
    gap: 24px;
  }

  .footer__bottom-inner {
    padding: 18px 24px;
  }

  .nav__phone {
    display: none;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    padding: 0 12px;
  }

  .hero {
    padding: 120px 20px 72px;
  }

  .why {
    padding: 28px 20px 80px;
  }

  .solutions {
    padding: 20px 20px 80px;
  }

  .patients {
    padding: 80px 20px;
  }

  .download {
    padding: 64px 20px;
  }

  .contact {
    padding: 64px 20px;
  }

  .download__content,
  .contact__info,
  .contact__form {
    padding: 24px;
  }

  .feature-card {
    padding: 20px;
  }

  .video-card__toggle {
    width: 56px;
    height: 56px;
  }
}

/* ── Nav Dropdown ──────────────────────────────────────────── */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: rgba(248, 245, 236, 0.8);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav__dropdown-trigger:hover {
  color: var(--color-merino);
}

.nav__dropdown-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav__dropdown.is-open .nav__dropdown-chevron {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(0, 17, 18, 0.96);
  border: 1px solid rgba(248, 245, 236, 0.1);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(248, 245, 236, 0.82);
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav__dropdown-item:hover {
  background: rgba(2, 158, 114, 0.15);
  color: var(--color-merino);
}

/* ── Mobile drawer accordion group ──────────────────────────── */
.nav__drawer-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__drawer-group-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(248, 245, 236, 0.04);
  border: 1px solid rgba(248, 245, 236, 0.05);
  border-radius: 14px;
  color: var(--color-merino);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav__drawer-group-trigger:hover {
  background: rgba(248, 245, 236, 0.1);
  border-color: rgba(248, 245, 236, 0.16);
}

.nav__drawer-group-trigger .nav__dropdown-chevron {
  transition: transform 0.25s ease;
}

.nav__drawer-group-trigger[aria-expanded="true"] .nav__dropdown-chevron {
  transform: rotate(180deg);
}

.nav__drawer-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0 6px 14px;
}

.nav__drawer-submenu[hidden] {
  display: none;
}

.nav__drawer-submenu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid rgba(248, 245, 236, 0.05);
  background: rgba(248, 245, 236, 0.03);
  color: rgba(248, 245, 236, 0.75);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__drawer-submenu a:hover {
  background: rgba(2, 158, 114, 0.15);
  color: var(--color-merino);
  border-color: rgba(2, 158, 114, 0.2);
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM LEGAL & ABOUT PAGES
═══════════════════════════════════════════════════════════════ */

/* ── Shared Hero ─────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  background: linear-gradient(161.62deg, #001112 0%, #001e1f 55%, #012a22 100%);
  padding: 148px 0 72px;
  overflow: hidden;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(2, 158, 114, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,158,114,0.25) 50%, transparent);
}

.lp-hero .container {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.lp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(2, 158, 114, 0.30);
  background: rgba(2, 158, 114, 0.08);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: 20px;
}

.lp-hero__tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-emerald);
  animation: badgePulse 2.4s ease-in-out infinite;
}

.lp-hero__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 62px;
  letter-spacing: -1.2px;
  color: var(--color-merino);
  margin-bottom: 18px;
  max-width: 720px;
}

.lp-hero__title em {
  font-style: italic;
  color: var(--color-emerald);
}

.lp-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(248, 245, 236, 0.45);
}

.lp-hero__meta-item svg {
  width: 13px; height: 13px;
  stroke: rgba(248,245,236,0.35);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.lp-hero__meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(248,245,236,0.2);
}

/* ── Shared Page Body ────────────────────────────────────────── */
.lp-body {
  background: var(--color-cream);
  padding: 64px 0 100px;
}

.lp-body .container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.lp-sidebar {
  position: sticky;
  top: 100px;
}

.lp-sidebar__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-emerald);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.lp-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--color-cyan-800);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

.lp-sidebar__link::before {
  content: "";
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: var(--color-emerald);
  transition: height 0.2s ease;
  flex-shrink: 0;
}

.lp-sidebar__link:hover {
  background: rgba(2, 158, 114, 0.06);
  color: var(--color-cyan-900);
  border-color: rgba(2, 158, 114, 0.12);
}

.lp-sidebar__link.active {
  background: rgba(2, 158, 114, 0.08);
  color: var(--color-emerald-dark);
  border-color: rgba(2, 158, 114, 0.2);
  font-weight: 600;
}

.lp-sidebar__link.active::before {
  height: 16px;
}

.lp-sidebar__divider {
  height: 1px;
  background: var(--color-border);
  margin: 16px 0;
}

.lp-sidebar__info {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(0,17,18,0.4);
  padding: 12px 14px;
  background: var(--color-merino);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

/* ── Legal Content Area ──────────────────────────────────────── */
.lp-content {
  min-width: 0;
}

.lp-content__section {
  padding: 36px 0;
  border-bottom: 1px solid var(--color-border);
}

.lp-content__section:first-child {
  padding-top: 0;
}

.lp-content__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp-section-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-emerald);
  display: block;
  margin-bottom: 8px;
}

.lp-content__section h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-cyan-900);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.lp-content__section h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-cyan-900);
  margin-top: 20px;
  margin-bottom: 8px;
}

.lp-content__section p {
  font-size: 14.5px;
  line-height: 27px;
  color: var(--color-cyan-800);
  margin-bottom: 12px;
}

.lp-content__section p:last-child {
  margin-bottom: 0;
}

.lp-content__section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-content__section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 24px;
  color: var(--color-cyan-800);
}

.lp-content__section ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  flex-shrink: 0;
  margin-top: 9px;
}

.lp-meta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.lp-meta-card__cell {
  background: var(--color-white);
  padding: 16px 20px;
}

.lp-meta-card__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,17,18,0.4);
  display: block;
  margin-bottom: 4px;
}

.lp-meta-card__value {
  font-size: 14px;
  color: var(--color-cyan-900);
  font-weight: 500;
}

.lp-contact-card {
  background: linear-gradient(135deg, #001517 0%, #012a22 100%);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-contact-card__left h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--color-merino);
  margin-bottom: 8px;
}

.lp-contact-card__left p {
  font-size: 13.5px;
  color: rgba(248,245,236,0.55);
  line-height: 1.7;
}

.lp-contact-card__left a {
  color: var(--color-emerald);
}

.lp-contact-card__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-contact-btn--primary {
  background: var(--color-emerald);
  color: #fff;
}

.lp-contact-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2,158,114,0.35);
}

.lp-contact-btn--ghost {
  border: 1px solid rgba(248,245,236,0.2);
  color: rgba(248,245,236,0.75);
}

.lp-contact-btn--ghost:hover {
  border-color: rgba(248,245,236,0.4);
  color: var(--color-merino);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
═══════════════════════════════════════════════════════════════ */
.about-body {
  background: var(--color-cream);
  padding: 72px 0 100px;
}

.about-body .container {
  max-width: 1200px;
}

/* Stats bar */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 64px;
}

.about-stat {
  background: var(--color-white);
  padding: 28px 24px;
  text-align: center;
}

.about-stat__value {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--color-emerald);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.about-stat__label {
  font-size: 12.5px;
  color: var(--color-cyan-800);
  line-height: 1.4;
}

/* Story section */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.about-story__eyebrow {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-emerald);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.about-story__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.8px;
  color: var(--color-cyan-900);
  margin-bottom: 20px;
}

.about-story__title em {
  color: var(--color-emerald);
  font-style: italic;
}

.about-story__lead {
  font-size: 15px;
  line-height: 27px;
  color: var(--color-cyan-800);
  margin-bottom: 16px;
}

.about-story__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-mini-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-mini-card:hover {
  border-color: rgba(2, 158, 114, 0.25);
  box-shadow: 0 4px 20px rgba(2, 158, 114, 0.06);
}

.about-mini-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-cyan-900);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-mini-card h3::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-emerald);
  flex-shrink: 0;
}

.about-mini-card p {
  font-size: 13.5px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

/* Values */
.about-values-section {
  margin-bottom: 72px;
}

.about-values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.about-values-header h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.8px;
  color: var(--color-cyan-900);
}

.about-values-header p {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-cyan-800);
  max-width: 300px;
  text-align: right;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
  border-color: rgba(2, 158, 114, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 158, 114, 0.08);
}

.about-value-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-emerald-soft), rgba(215,243,229,0.4));
  border: 1px solid rgba(2,158,114,0.15);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.about-value-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--color-emerald);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-cyan-900);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 13.5px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-body .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-sidebar {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .lp-sidebar__label { display: none; }
  .lp-sidebar__divider { display: none; }
  .lp-sidebar__info { display: none; }

  .lp-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lp-sidebar__link {
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
  }

  .lp-sidebar__link::before { display: none; }
  .lp-sidebar__link.active {
    background: var(--color-emerald);
    color: #fff;
    border-color: var(--color-emerald);
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-values-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-values-header p {
    text-align: left;
    max-width: none;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lp-hero { padding: 120px 0 56px; }
  .lp-hero__title { font-size: 38px; line-height: 42px; }
  .lp-body { padding: 40px 0 72px; }

  .about-body { padding: 40px 0 72px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }

  .lp-meta-card { grid-template-columns: 1fr; }
  .lp-contact-card { flex-direction: column; }
  .lp-contact-card__right { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
}

.legal-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  color: var(--color-emerald);
  display: block;
  margin-bottom: 12px;
}

.legal-hero__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -1px;
  color: var(--color-merino);
  margin-bottom: 16px;
}

.legal-hero__meta {
  font-size: 13px;
  color: rgba(248, 245, 236, 0.5);
}

.legal-body {
  padding: 72px 80px 100px;
  background: var(--color-cream);
}

.legal-body .container {
  max-width: 820px;
}

.legal-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.legal-nav-pills a {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  color: var(--color-cyan-800);
  background: var(--color-white);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.legal-nav-pills a:hover,
.legal-nav-pills a.active {
  background: var(--color-emerald);
  border-color: var(--color-emerald);
  color: var(--color-white);
}

.legal-content {
  color: var(--color-cyan-800);
}

.legal-content h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-cyan-900);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-cyan-900);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 4px;
}

.legal-content .legal-meta-block {
  display: inline-block;
  background: var(--color-merino);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-cyan-800);
}

.legal-content .legal-meta-block strong {
  color: var(--color-cyan-900);
}

.legal-contact-box {
  background: var(--color-merino);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.7;
}

.legal-contact-box strong {
  display: block;
  font-size: 15px;
  color: var(--color-cyan-900);
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 20px 60px;
  }

  .legal-hero__title {
    font-size: 36px;
    line-height: 40px;
  }

  .legal-body {
    padding: 48px 20px 72px;
  }
}

/* ── About page ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.about-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
}

.about-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-cyan-900);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  line-height: 26px;
  color: var(--color-cyan-800);
}

.about-values {
  margin-top: 56px;
}

.about-values h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: 36px;
  color: var(--color-cyan-900);
  margin-bottom: 32px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.about-value__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-emerald-soft);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.about-value__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-emerald);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-cyan-900);
  margin-bottom: 6px;
}

.about-value p {
  font-size: 13px;
  line-height: 22px;
  color: var(--color-cyan-800);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}