:root {
  --ink: #f4fff7;
  --muted: #b8d2c4;
  --dark-muted: #86a392;
  --line: rgba(182, 255, 207, 0.16);
  --paper: #06170f;
  --white: #ffffff;
  --green: #12a86d;
  --green-2: #2fcf84;
  --green-dark: #082c1d;
  --green-deep: #03100b;
  --lime: #a7ee45;
  --mint: #dff8e8;
  --mint-2: #effff3;
  --glass: rgba(11, 55, 36, 0.7);
  --glass-2: rgba(16, 84, 55, 0.52);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.smooth-scroll-ready {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 207, 132, 0.17), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(167, 238, 69, 0.13), transparent 24%),
    linear-gradient(180deg, #03100b 0%, #062116 48%, #03100b 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(223, 248, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 248, 232, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 76%);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0.75;
}

.cursor-glow::before {
  content: "";
  position: absolute;
  left: var(--x, 50vw);
  top: var(--y, 30vh);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 207, 132, 0.14), transparent 64%);
  transform: translate(-50%, -50%);
  transition: left 120ms ease-out, top 120ms ease-out;
}

img {
  display: block;
  max-width: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(223, 248, 232, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(3, 16, 11, 0.76), rgba(7, 45, 30, 0.58));
  backdrop-filter: blur(22px) saturate(1.12);
  transition: background 320ms ease, box-shadow 320ms ease, border-color 320ms ease, transform 320ms ease;
}

.site-header.compact,
.site-header.is-scrolled {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(4, 28, 18, 0.9), rgba(6, 52, 34, 0.78));
  border-color: rgba(223, 248, 232, 0.16);
  box-shadow: var(--shadow-soft);
}

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

.brand {
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(4, 21, 15, 0.2);
}

.nav-links {
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--lime);
}

.store-button,
.primary-action,
.secondary-action,
.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 850;
}

.store-button {
  padding: 0 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(167, 238, 69, 0.22), transparent 40%),
    linear-gradient(135deg, var(--green), #06734c);
  box-shadow: 0 14px 30px rgba(18, 168, 109, 0.28);
  transition: transform 360ms var(--ease-out), box-shadow 360ms ease, filter 360ms ease;
}

.store-button:hover,
.primary-action:hover,
.secondary-action:hover,
.page-links a:hover {
  transform: translateY(-4px);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(223, 248, 232, 0.12);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 21, 15, 0.9), rgba(4, 21, 15, 0.54) 46%, rgba(4, 21, 15, 0.62)),
    linear-gradient(0deg, rgba(4, 21, 15, 0.84), rgba(4, 21, 15, 0.08) 52%),
    radial-gradient(circle at 18% 70%, rgba(47, 207, 132, 0.2), transparent 34%);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 82px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section .eyebrow,
.privacy-card .eyebrow,
.document-shell .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(64px, 12vw, 138px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.6vw, 24px);
}

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

.primary-action {
  padding: 0 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(167, 238, 69, 0.2), transparent 42%),
    linear-gradient(135deg, var(--green), #05704a);
  box-shadow: 0 16px 40px rgba(22, 163, 111, 0.32);
  transition: transform 360ms var(--ease-out), box-shadow 360ms ease, filter 360ms ease;
}

.secondary-action {
  padding: 0 22px;
  color: var(--white);
  border: 1px solid rgba(229, 248, 234, 0.38);
  background: rgba(229, 248, 234, 0.12);
  transition: transform 360ms var(--ease-out), border-color 320ms ease, background 320ms ease, box-shadow 360ms ease;
}

.secondary-action:hover {
  border-color: rgba(167, 238, 69, 0.5);
  background: rgba(229, 248, 234, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-item,
.feature-card,
.privacy-card,
.support-card,
.metrics-panel,
.message-card,
.metrics-panel div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 248, 232, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 74, 50, 0.72), rgba(5, 28, 19, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-item::after,
.feature-card::after,
.privacy-card::after,
.support-card::after,
.metrics-panel div::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0.55;
}

.trust-item::before,
.feature-card::before,
.privacy-card::before,
.support-card::before,
.metrics-panel div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(167, 238, 69, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(223, 248, 232, 0.11), transparent 38%);
  transition: opacity 360ms ease;
}

.trust-item > *,
.feature-card > *,
.privacy-card > *,
.support-card > *,
.metrics-panel div > * {
  position: relative;
  z-index: 2;
}

.is-interactive {
  transform: perspective(1100px) translate3d(0, var(--lift, 0), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 560ms var(--ease-out),
    box-shadow 560ms ease,
    border-color 320ms ease,
    background 560ms ease;
}

.is-interactive:hover::before {
  opacity: 1;
}

.is-interactive:hover {
  --lift: -10px;
  border-color: rgba(167, 238, 69, 0.42);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(167, 238, 69, 0.08);
}

.trust-item {
  padding: 24px;
  border-top: 4px solid rgba(167, 238, 69, 0.46);
  transition: transform 560ms var(--ease-out), border-color 320ms ease, background 560ms ease, box-shadow 560ms ease;
}

.trust-item:hover {
  --lift: -10px;
  background: linear-gradient(145deg, rgba(14, 72, 48, 0.9), rgba(9, 48, 32, 0.78));
}

.trust-item strong,
.support-card span,
.feature-card span,
.message-card span {
  display: block;
  color: var(--lime);
  font-weight: 900;
}

.trust-item span,
.feature-card p,
.section-intro p,
.coach-copy p,
.privacy-card p,
.document-shell p,
.document-shell li,
.support-card p {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 104px auto;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-intro h2,
.privacy-card h2,
.document-shell h1,
.document-shell h2 {
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(160px, 44%) 1fr;
  min-height: 340px;
  background:
    linear-gradient(145deg, rgba(9, 48, 32, 0.9), rgba(5, 28, 19, 0.9));
  transition: transform 560ms var(--ease-out), box-shadow 560ms ease, border-color 320ms ease, background 560ms ease;
}

.feature-card:hover {
  border-color: rgba(167, 238, 69, 0.34);
  box-shadow: 0 42px 92px rgba(0, 0, 0, 0.4);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 1px solid var(--line);
  opacity: 0.92;
  transition: opacity 560ms ease, transform 900ms var(--ease-out), filter 560ms ease;
}

.feature-card:hover img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.feature-card div {
  align-self: center;
  padding: 32px;
}

.coach-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 40px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 84% 28%, rgba(167, 238, 69, 0.16), transparent 34%),
    radial-gradient(circle at 10% 82%, rgba(18, 168, 109, 0.2), transparent 30%),
    linear-gradient(135deg, #03100b, #062116 46%, #08482f);
  border-top: 1px solid rgba(223, 248, 232, 0.12);
  border-bottom: 1px solid rgba(223, 248, 232, 0.12);
}

.coach-copy {
  max-width: 650px;
}

.coach-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--lime);
  border-radius: 8px;
  background: rgba(229, 248, 234, 0.1);
  font-weight: 800;
}

.coach-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.coach-visual img {
  max-height: 560px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.24));
  transition: transform 260ms ease, filter 260ms ease;
}

.coach-visual:hover img {
  transform: translateY(-6px) scale(1.015);
  filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.3));
}

.message-card {
  position: absolute;
  left: 0;
  bottom: 8%;
  max-width: 270px;
  padding: 18px;
  background: rgba(223, 248, 232, 0.94);
  color: #082c1d;
  transition: transform 220ms ease;
}

.coach-visual:hover .message-card {
  transform: translateY(-4px);
}

.message-card p {
  margin: 6px 0 0;
  color: #0f1f18;
  font-weight: 850;
}

.progress-wrap {
  display: grid;
  grid-template-columns: minmax(240px, 520px) 1fr;
  gap: 28px;
  align-items: center;
}

.progress-wrap img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  opacity: 0.95;
}

.metrics-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(9, 48, 32, 0.86), rgba(5, 28, 19, 0.86));
}

.metrics-panel div {
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(223, 248, 232, 0.13), rgba(18, 168, 109, 0.08));
  border: 1px solid rgba(223, 248, 232, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.metrics-panel div:hover {
  border-color: rgba(167, 238, 69, 0.32);
  background: linear-gradient(135deg, rgba(223, 248, 232, 0.17), rgba(18, 168, 109, 0.12));
}

.metrics-panel strong {
  display: block;
  font-size: 28px;
}

.metrics-panel span {
  color: var(--muted);
}

.privacy-band {
  padding: 92px 16px;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 207, 132, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(3, 16, 11, 0.98), rgba(7, 52, 34, 0.92));
  border-top: 1px solid rgba(223, 248, 232, 0.12);
}

.privacy-card {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px);
  text-align: center;
}

.page-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-links a {
  padding: 0 20px;
  color: #082c1d;
  background: var(--mint);
  border: 1px solid rgba(167, 238, 69, 0.24);
  transition: transform 360ms var(--ease-out), box-shadow 360ms ease, filter 360ms ease;
}

.primary-action,
.store-button,
.page-links a {
  position: relative;
  overflow: hidden;
}

.primary-action::after,
.store-button::after,
.page-links a::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -35%;
  width: 28%;
  height: 220%;
  opacity: 0;
  transform: rotate(22deg);
  background: rgba(255, 255, 255, 0.34);
  transition: left 520ms ease, opacity 220ms ease;
}

.primary-action:hover::after,
.store-button:hover::after,
.page-links a:hover::after {
  left: 115%;
  opacity: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px max(16px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #04150f, #08291b);
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  gap: 18px;
  flex-wrap: wrap;
}

.document-page {
  background:
    radial-gradient(circle at 90% 0%, rgba(167, 238, 69, 0.16), transparent 30%),
    radial-gradient(circle at 8% 28%, rgba(18, 168, 109, 0.14), transparent 26%),
    linear-gradient(180deg, #03100b, #062116 52%, #03100b);
}

.document-shell,
.contact-shell {
  width: min(930px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.document-shell {
  position: relative;
  font-size: 17px;
  color: var(--ink);
  padding: 150px clamp(20px, 5vw, 54px) 72px;
  border-left: 1px solid rgba(223, 248, 232, 0.16);
  border-right: 1px solid rgba(223, 248, 232, 0.08);
  background:
    linear-gradient(180deg, rgba(9, 48, 32, 0.58), rgba(4, 21, 15, 0.32)),
    rgba(3, 16, 11, 0.34);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  overflow-wrap: anywhere;
}

.document-shell h1 {
  max-width: 780px;
  font-size: clamp(46px, 8vw, 82px);
  line-height: 0.96;
}

.document-shell h2 {
  margin-top: 38px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.document-shell p {
  margin-bottom: 18px;
}

.document-shell ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 1.2rem;
}

.document-shell li::marker {
  color: var(--lime);
}

.document-shell a {
  color: var(--lime);
  font-weight: 850;
  text-underline-offset: 4px;
}

.document-shell a:hover {
  text-decoration: underline;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  min-height: 620px;
  padding: 54px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 21, 15, 0.96), rgba(8, 72, 47, 0.92)),
    url("assets/home-screen.png") center/cover;
  box-shadow: var(--shadow);
}

.card-motion.reveal {
  clip-path: inset(12% 0 0 0 round 8px);
}

.card-motion.reveal.is-visible {
  clip-path: inset(0 0 0 0 round 8px);
  transition-delay: var(--stagger, 0ms);
}

.contact-hero h1 {
  font-size: clamp(44px, 7vw, 84px);
}

.contact-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero img {
  width: min(100%, 390px);
  max-height: 540px;
  object-fit: contain;
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.28));
}

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

.contact-form-section {
  margin-top: 30px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(9, 48, 32, 0.88), rgba(5, 28, 19, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-form-section .section-intro {
  margin-bottom: 26px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label.full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(223, 248, 232, 0.18);
  border-radius: 8px;
  background: rgba(3, 16, 11, 0.56);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(184, 210, 196, 0.62);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(167, 238, 69, 0.62);
  background: rgba(3, 16, 11, 0.72);
  box-shadow: 0 0 0 4px rgba(167, 238, 69, 0.09);
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(255, 180, 168, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 180, 168, 0.1);
}

.field-error {
  min-height: 18px;
  color: #ffb4a8;
  font-size: 12px;
  font-weight: 750;
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.form-status.is-success {
  color: var(--lime);
}

.form-status.is-error {
  color: #ffb4a8;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.support-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.support-card:hover {
  --lift: -10px;
  border-color: rgba(167, 238, 69, 0.32);
}

.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(44px) scale(0.965);
  transition:
    opacity 1000ms var(--ease-out),
    filter 1000ms var(--ease-out),
    transform 1000ms var(--ease-out),
    clip-path 1000ms var(--ease-out);
  will-change: opacity, filter, transform, clip-path;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.reveal.is-visible.is-interactive {
  transform: perspective(1100px) translate3d(0, var(--lift, 0), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .is-interactive,
  .coach-visual:hover img,
  .coach-visual:hover .message-card {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

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

  .trust-strip,
  .feature-grid,
  .coach-section,
  .progress-wrap,
  .support-grid,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 360px;
  }

  .coach-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .message-card {
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
  }

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

  .contact-hero {
    padding: 30px;
    min-height: auto;
  }

  .contact-hero img {
    width: min(76vw, 340px);
    max-height: 430px;
  }

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

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .store-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .brand span {
    font-size: 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 58px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(1, 10, 7, 0.88), rgba(1, 10, 7, 0.62)),
      linear-gradient(0deg, rgba(1, 10, 7, 0.84), transparent 58%);
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 38px;
  }

  .trust-strip,
  .section {
    width: calc(100% - 24px);
  }

  .section {
    margin: 74px auto;
  }

  .feature-card img {
    height: 300px;
  }

  .feature-card div,
  .trust-item,
  .support-card {
    padding: 20px;
  }

  .document-shell,
  .contact-shell {
    width: calc(100% - 28px);
    padding-top: 130px;
  }

  .document-shell {
    width: 100%;
    padding: 118px 18px 56px;
    border: 0;
    background: rgba(3, 16, 11, 0.18);
    box-shadow: none;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .document-shell .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .document-shell h1 {
    margin-bottom: 16px;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1;
  }

  .document-shell h2 {
    margin-top: 30px;
    font-size: 22px;
    line-height: 1.18;
  }

  .document-shell ul {
    gap: 8px;
    padding-left: 1rem;
  }


  .site-footer {
    padding: 30px 18px;
  }

  .site-footer nav {
    gap: 12px 16px;
  }
}
