@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./app/fonts/geist/Geist.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./app/fonts/geist/GeistMono.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("./app/fonts/open-sans/OpenSans-Variable.ttf") format("truetype");
}

:root {
  --session-ink: #102936;
  --session-ink-soft: #294751;
  --coach-teal: #58c7cf;
  --coach-teal-deep: #247680;
  --ice-panel: #eef9fb;
  --signal-rose: #e5005a;
  --signal-rose-deep: #b60047;
  --schedule-grey: #5f7479;
  --schedule-line: #d5e5e6;
  --clean-white: #ffffff;
  --page: #f7fbfa;
  --body-copy: #496169;
  --shadow-soft: 0 18px 50px rgba(16, 41, 54, 0.1);
  --shadow-device: 0 30px 70px rgba(7, 27, 37, 0.32);
  --radius-large: 36px;
  --radius-medium: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--session-ink);
  font-family: "Open Sans", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 44%, #eff7f6 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--signal-rose);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: var(--clean-white);
  background: var(--session-ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.shell {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem 0.7rem 1rem;
  border: 1px solid rgba(16, 41, 54, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(16, 41, 54, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  color: var(--session-ink);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(16, 41, 54, 0.15);
}

.brand strong {
  display: block;
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  margin-top: 0.08rem;
  color: var(--schedule-grey);
  font-family: "Geist Mono", monospace;
  font-size: 0.69rem;
  letter-spacing: 0.02em;
}

.top-nav,
.nav-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.top-nav {
  gap: 1.15rem;
}

.top-nav > a,
.nav-auth-link {
  color: var(--session-ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.top-nav > a:not(.btn),
.nav-auth-link {
  position: relative;
}

.top-nav > a:not(.btn)::after,
.nav-auth-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--coach-teal-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.top-nav > a:hover::after,
.top-nav > a.is-active::after,
.nav-auth-link:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  gap: 0.16rem;
  padding: 0.2rem;
  border: 1px solid var(--schedule-line);
  border-radius: 999px;
  background: var(--ice-panel);
}

.top-nav .language-switcher a {
  display: inline-grid;
  min-width: 34px;
  min-height: 30px;
  padding: 0.25rem 0.5rem;
  place-items: center;
  border-radius: 999px;
  color: var(--session-ink-soft);
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.language-switcher a.is-active,
.language-switcher a[aria-current="true"] {
  color: var(--clean-white);
  background: var(--session-ink);
}

.nav-actions {
  gap: 0.6rem;
}

.btn,
.link-pill,
.app-store-button,
.android-soon-button,
.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
}

.btn {
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--signal-rose);
  color: var(--clean-white);
  background: var(--signal-rose);
  box-shadow: 0 10px 24px rgba(229, 0, 90, 0.2);
  font-size: 0.92rem;
  font-weight: 760;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  background: var(--signal-rose-deep);
  box-shadow: 0 14px 30px rgba(182, 0, 71, 0.24);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 0.55rem 0.92rem;
  font-size: 0.82rem;
}

.top-nav .btn {
  color: var(--clean-white);
}

.link-pill {
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(16, 41, 54, 0.22);
  color: var(--session-ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.link-pill:hover {
  border-color: var(--coach-teal-deep);
  background: var(--clean-white);
  transform: translateY(-2px);
}

.mobile-nav {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--clean-white);
  background: var(--session-ink);
  box-shadow: 0 14px 34px rgba(16, 41, 54, 0.25);
  font-size: 0.86rem;
  font-weight: 760;
  transition: transform 180ms ease, background-color 180ms ease;
}

.sticky-cta:hover {
  background: var(--signal-rose);
  transform: translateY(-2px);
}

main {
  position: relative;
}

#features,
#how-it-works,
#comparison,
#coaches,
#pricing,
#cta {
  scroll-margin-top: 8.5rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: center;
  min-height: 720px;
  margin-top: 1.25rem;
  padding: clamp(2.4rem, 5vw, 4.75rem);
  overflow: hidden;
  border-radius: 42px;
  color: var(--clean-white);
  background: var(--session-ink);
  box-shadow: 0 28px 90px rgba(16, 41, 54, 0.2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(88, 199, 207, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 199, 207, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 85% 14%, rgba(88, 199, 207, 0.22), transparent 28rem),
    radial-gradient(circle at 7% 94%, rgba(229, 0, 90, 0.12), transparent 23rem);
  background-size: 48px 48px, 48px 48px, auto, auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 42%, #000 100%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: var(--coach-teal-deep);
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-cta .eyebrow,
.cta .eyebrow {
  color: var(--coach-teal);
}

.hero h1,
.section-head h2,
.section-cta h2,
.cta h2 {
  font-family: "Geist", "Segoe UI", sans-serif;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 13.5ch;
  margin: 0.8rem 0 1.15rem;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.hero-note {
  max-width: 58ch;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Geist Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.6;
}

.hero-cta {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-action-row,
.store-badge-row,
.section-cta-actions,
.cta-web-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.hero .link-pill {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--clean-white);
  background: rgba(255, 255, 255, 0.06);
}

.hero .link-pill:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.app-store-button,
.android-soon-button {
  position: relative;
  justify-content: flex-start;
  min-width: 178px;
  min-height: 56px;
  gap: 0.7rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-store-button {
  color: var(--clean-white);
  background: #050606;
  transition: transform 180ms ease, border-color 180ms ease;
}

.app-store-button:hover {
  border-color: var(--coach-teal);
  transform: translateY(-2px);
}

.android-soon-button {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
}

.app-store-button > span:last-child,
.android-soon-button > span:last-child {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.app-store-button small,
.android-soon-button small {
  font-size: 0.64rem;
  letter-spacing: 0.01em;
}

.app-store-button strong,
.android-soon-button strong {
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 650;
}

.app-store-icon,
.android-soon-icon {
  position: relative;
  flex: 0 0 25px;
  width: 25px;
  height: 28px;
}

.app-store-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 1px;
  width: 19px;
  height: 21px;
  border-radius: 48% 48% 52% 52% / 46% 46% 56% 56%;
  background: var(--clean-white);
}

.app-store-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  width: 8px;
  height: 5px;
  border-radius: 100% 0 100% 0;
  background: var(--clean-white);
  transform: rotate(-24deg);
}

.android-soon-icon::before {
  content: "";
  position: absolute;
  inset: 4px 1px 3px 4px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(145deg, var(--coach-teal) 0 35%, #f6d44b 35% 56%, var(--signal-rose) 56% 77%, #5c8fea 77%);
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(88, 199, 207, 0.35);
  list-style: none;
}

.hero-stats li {
  position: relative;
  min-width: 0;
  padding-right: 1rem;
}

.hero-stats li:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 0.04rem;
  right: 0.3rem;
  color: var(--coach-teal);
  font-family: "Geist Mono", monospace;
  font-size: 0.75rem;
}

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

.hero-stats strong {
  color: var(--clean-white);
  font-family: "Geist Mono", monospace;
  font-size: clamp(0.68rem, 0.78vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.hero-stats span {
  margin-top: 0.32rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.69rem, 0.85vw, 0.76rem);
  line-height: 1.45;
}

.hero-visual {
  align-self: stretch;
  min-height: 0;
}

.product-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 0;
  padding: 4.8rem 1.4rem 1.4rem 2.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 32px;
  background:
    linear-gradient(rgba(16, 41, 54, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 41, 54, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #f7ffff 0%, #dff3f3 55%, #c8e8e9 100%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.28);
}

.product-stage::after {
  content: "";
  position: absolute;
  top: 68px;
  bottom: 32px;
  left: 35px;
  width: 2px;
  background: linear-gradient(var(--coach-teal), var(--signal-rose));
  opacity: 0.82;
}

.stage-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 4;
  padding: 0.52rem 0.7rem;
  border: 1px solid rgba(16, 41, 54, 0.13);
  border-radius: 10px;
  color: var(--session-ink-soft);
  background: rgba(255, 255, 255, 0.76);
  font-family: "Geist Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-device {
  position: relative;
  z-index: 3;
  margin: 0;
  overflow: hidden;
  border: 7px solid #071820;
  border-radius: 42px;
  background: #071820;
  box-shadow: var(--shadow-device);
}

.hero-device-main {
  grid-row: 1 / 3;
  width: min(100%, 280px);
  justify-self: center;
}

.hero-device img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 1391;
  border-radius: 34px;
  object-fit: contain;
}

.hero-preview-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
  width: 100%;
}

.hero-preview-card:nth-child(2) {
  display: none;
}

.hero-preview-card {
  margin: 0;
  padding: 0.45rem;
  overflow: hidden;
  border: 1px solid rgba(16, 41, 54, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(16, 41, 54, 0.14);
}

.hero-preview-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 1391;
  border-radius: 12px;
  object-fit: contain;
}

.hero-preview-card figcaption {
  padding: 0.52rem 0.16rem 0.12rem;
  color: var(--session-ink-soft);
  font-family: "Geist Mono", monospace;
  font-size: 0.59rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-status-panel {
  position: relative;
  z-index: 4;
  align-self: end;
  width: 100%;
  padding: 1rem;
  border-radius: 17px;
  color: var(--clean-white);
  background: var(--session-ink);
  box-shadow: 0 18px 38px rgba(16, 41, 54, 0.25);
}

.hero-status-panel span,
.hero-status-panel strong,
.hero-status-panel small {
  display: block;
}

.hero-status-panel span {
  color: var(--coach-teal);
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-status-panel strong {
  margin-top: 0.4rem;
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 1.03rem;
  line-height: 1.25;
}

.hero-status-panel small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.69rem;
  line-height: 1.45;
}

.section {
  margin-top: clamp(5.5rem, 9vw, 8.5rem);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.3rem;
}

.section-head h2,
.section-cta h2,
.cta h2 {
  margin: 0.62rem 0 0;
  color: var(--session-ink);
  font-size: clamp(2.15rem, 4.2vw, 4.1rem);
  line-height: 1.02;
  text-wrap: balance;
}

.section-head > p:not(.eyebrow),
.section-cta p:not(.eyebrow),
.cta p {
  max-width: 65ch;
  margin: 1rem 0 0;
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--schedule-line);
  border-bottom: 1px solid var(--schedule-line);
}

.feature-card {
  position: relative;
  min-width: 0;
  padding: 2rem 1.6rem 2.2rem;
  border-right: 1px solid var(--schedule-line);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card h3,
.focus-copy h3,
.flow-step h3,
.coach-profile-card h3,
.price-card h3 {
  margin: 0;
  color: var(--session-ink);
  font-family: "Geist", "Segoe UI", sans-serif;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.feature-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.feature-card p {
  margin: 0.75rem 0 0;
  color: var(--body-copy);
  font-size: 0.91rem;
  line-height: 1.65;
}

.focus-grid {
  display: grid;
  gap: 1.1rem;
}

.focus-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--schedule-line);
  border-radius: var(--radius-large);
  background: var(--clean-white);
  box-shadow: var(--shadow-soft);
}

.focus-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
}

.focus-card:nth-child(even) .focus-media {
  order: 2;
}

.focus-media {
  position: relative;
  display: grid;
  min-height: 460px;
  margin: 0;
  padding: 1.5rem;
  overflow: visible;
  place-items: center;
  background: var(--ice-panel);
}

.device-frame {
  position: relative;
  display: block;
  width: min(70%, 190px);
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border-radius: 38px;
  background: #081a23;
  box-shadow: 0 25px 50px rgba(16, 41, 54, 0.25);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 2;
  width: 36%;
  height: 16px;
  border-radius: 999px;
  background: #081a23;
  transform: translateX(-50%);
}

.device-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 1391;
  border-radius: 32px;
  object-fit: contain;
}

.focus-card:hover .device-frame {
  transform: translateY(-0.65rem);
}

.focus-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.focus-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1;
}

.focus-copy ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.focus-copy li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--body-copy);
  line-height: 1.55;
}

.focus-copy li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coach-teal);
  box-shadow: 0 0 0 5px rgba(88, 199, 207, 0.13);
}

.section-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-large);
  color: var(--clean-white);
  background: var(--session-ink-soft);
  box-shadow: 0 24px 62px rgba(16, 41, 54, 0.14);
}

.section-cta h2 {
  max-width: 15ch;
  color: var(--clean-white);
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.section-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.section-cta .btn {
  border-color: var(--clean-white);
  color: var(--session-ink);
  background: var(--clean-white);
  box-shadow: none;
}

.section-cta .link-pill {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--clean-white);
  background: transparent;
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--coach-teal), var(--signal-rose));
}

.flow-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 1rem;
  text-align: center;
}

.flow-step > span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border: 7px solid var(--page);
  border-radius: 50%;
  color: var(--session-ink);
  background: var(--coach-teal);
  box-shadow: 0 0 0 1px var(--schedule-line);
  place-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 760;
}

.flow-step:nth-child(n + 4) > span {
  color: var(--clean-white);
  background: var(--signal-rose);
}

.flow-step h3 {
  font-size: 1.06rem;
  line-height: 1.25;
}

.flow-step p {
  margin: 0.55rem 0 0;
  color: var(--body-copy);
  font-size: 0.84rem;
  line-height: 1.55;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--schedule-line);
  border-radius: var(--radius-medium);
  background: var(--clean-white);
  box-shadow: var(--shadow-soft);
  scrollbar-color: var(--coach-teal-deep) var(--schedule-line);
  scrollbar-width: thin;
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--session-ink);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--schedule-line);
  text-align: center;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: var(--schedule-grey);
  background: var(--ice-panel);
  font-family: "Geist Mono", monospace;
  font-size: 0.71rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.comparison-table thead th:nth-child(2) {
  color: var(--session-ink);
  background: rgba(88, 199, 207, 0.22);
}

.comparison-table tbody th {
  color: var(--session-ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-align: left;
}

.comparison-yes,
.comparison-no {
  font-family: "Geist Mono", monospace;
  font-size: 1.1rem;
  font-weight: 800;
}

.comparison-yes {
  color: var(--coach-teal-deep);
  background: rgba(88, 199, 207, 0.07);
}

.comparison-no {
  color: #9c5d68;
}

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

.price-card {
  position: relative;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--schedule-line);
  border-radius: var(--radius-medium);
  background: var(--clean-white);
  box-shadow: 0 14px 38px rgba(16, 41, 54, 0.07);
}

.coach-spotlight-section {
  position: relative;
}

.coach-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.coach-profile-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--schedule-line);
  border-radius: var(--radius-medium);
  color: var(--session-ink);
  background: var(--clean-white);
  box-shadow: 0 14px 38px rgba(16, 41, 54, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.coach-profile-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 118, 128, 0.3);
  box-shadow: 0 17px 42px rgba(16, 41, 54, 0.1);
}

.coach-portrait {
  --portrait-start: #eef9fb;
  --portrait-end: #b9dfe3;
  --portrait-mark: rgba(16, 41, 54, 0.7);
  position: relative;
  display: grid;
  height: 142px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--schedule-line);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(145deg, var(--portrait-start), var(--portrait-end));
  isolation: isolate;
  place-items: center;
}

.coach-portrait-daniel {
  --portrait-start: #edf5f7;
  --portrait-end: #c3d9de;
  --portrait-mark: rgba(16, 53, 67, 0.7);
}

.coach-portrait-sofia {
  --portrait-start: #f8f1f5;
  --portrait-end: #e5cbd7;
  --portrait-mark: rgba(84, 42, 62, 0.66);
}

.coach-portrait::before {
  content: "C";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.36);
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 10rem;
  font-weight: 860;
  line-height: 0.7;
  transform: translate(-50%, -48%);
}

.coach-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% var(--portrait-focus-y, 28%);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coach-portrait-monogram {
  position: relative;
  z-index: 1;
  color: var(--portrait-mark);
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 3.1rem;
  font-weight: 820;
  letter-spacing: -0.08em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.coach-portrait figcaption {
  display: none;
}

.coach-profile-card:is(:hover, :focus-within) .coach-portrait img {
  transform: scale(1.015);
}

.coach-profile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.coach-profile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.coach-profile-card h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.coach-specialty {
  margin: 0 0 0.3rem;
  color: var(--coach-teal-deep);
  font-family: "Geist Mono", monospace;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coach-country {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.4rem 0.54rem;
  border: 1px solid var(--schedule-line);
  border-radius: 999px;
  color: var(--session-ink-soft);
  background: var(--ice-panel);
  font-family: "Geist Mono", monospace;
  font-size: 0.64rem;
  font-weight: 700;
  white-space: nowrap;
}

.coach-country span {
  margin-right: 0.2rem;
}

.coach-workplace {
  margin: 1rem 0 0;
  border-top: 1px solid var(--schedule-line);
  border-bottom: 1px solid var(--schedule-line);
}

.coach-workplace div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.52rem 0.05rem;
}

.coach-workplace div + div {
  border-top: 1px solid var(--schedule-line);
}

.coach-workplace dt {
  color: var(--coach-teal-deep);
  font-family: "Geist Mono", monospace;
  font-size: 0.59rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coach-workplace dd {
  margin: 0;
  color: var(--session-ink-soft);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.4;
}

.coach-feedback {
  position: relative;
  margin-top: 1rem;
  padding: 1rem 1rem 1rem 1.08rem;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ice-panel);
}

.coach-feedback::before {
  content: "\201C";
  position: absolute;
  top: -0.4rem;
  right: 0.55rem;
  color: rgba(36, 118, 128, 0.13);
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.coach-feedback > span {
  position: relative;
  z-index: 1;
  color: var(--coach-teal-deep);
  font-family: "Geist Mono", monospace;
  font-size: 0.61rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coach-feedback p {
  position: relative;
  z-index: 1;
  margin: 0.42rem 0 0;
  color: var(--session-ink-soft);
  font-size: 0.88rem;
  line-height: 1.62;
}

.coach-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.7rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 0.95rem;
}

.coach-contact a {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  min-height: 40px;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(36, 118, 128, 0.28);
  border-radius: 10px;
  color: var(--coach-teal-deep);
  background: var(--clean-white);
  font-size: 0.78rem;
  font-weight: 760;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.coach-contact a:hover {
  border-color: var(--coach-teal-deep);
  background: var(--ice-panel);
}

.coach-contact a span {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
}

.coach-contact > span {
  color: var(--schedule-grey);
  font-family: "Geist Mono", monospace;
  font-size: 0.59rem;
  line-height: 1.4;
  text-align: left;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card h3 {
  font-size: 1.45rem;
}

.price-card-featured {
  border: 2px solid var(--coach-teal-deep);
}

.price-card-featured:last-child {
  border-color: var(--signal-rose);
}

.price-copy {
  margin: 0.65rem 0 0;
  color: var(--schedule-grey);
}

.price-amount {
  margin: 0.85rem 0 0;
  color: var(--session-ink);
  font-family: "Geist Mono", monospace;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-amount span {
  color: var(--schedule-grey);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
}

.price-badge {
  align-self: flex-start;
  margin: 0.7rem 0 0;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  color: var(--session-ink);
  background: rgba(88, 199, 207, 0.22);
  font-family: "Geist Mono", monospace;
  font-size: 0.67rem;
  font-weight: 760;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--schedule-line);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--body-copy);
  font-size: 0.88rem;
  line-height: 1.5;
}

.price-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--coach-teal-deep);
  font-family: "Geist Mono", monospace;
  font-weight: 800;
}

.cta-interactive {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 580px;
  padding: clamp(2.2rem, 6vw, 5rem);
  overflow: hidden;
  border-radius: 42px;
  color: var(--clean-white);
  background: var(--session-ink);
  box-shadow: 0 28px 90px rgba(16, 41, 54, 0.18);
}

.cta-copy,
.cta-visual {
  position: relative;
  z-index: 1;
}

.cta-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.cta-brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.cta-brand strong {
  color: var(--clean-white);
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.cta-brand strong span,
.cta h2 span {
  color: var(--coach-teal);
}

.cta h2 {
  max-width: 12ch;
  color: var(--clean-white);
}

.cta p {
  color: rgba(255, 255, 255, 0.68);
}

.cta-store-row {
  margin-top: 1.5rem;
}

.app-store-button-large,
.android-soon-button-large {
  min-width: 198px;
  min-height: 62px;
}

.cta-web-actions {
  margin-top: 0.8rem;
}

.cta .link-pill {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--clean-white);
  background: rgba(255, 255, 255, 0.06);
}

.cta-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 0;
  padding: 1.4rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
}

.cta-showcase-card {
  align-self: center;
  width: min(100%, 220px);
  height: auto;
  margin: 0 auto;
  padding: 6px;
  overflow: hidden;
  border-radius: 40px;
  background: #071820;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
}

.cta-showcase-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 1391;
  border-radius: 34px;
  object-fit: contain;
}

.cta-preview-rail {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 0.4rem;
}

.cta-preview-rail span {
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-family: "Geist Mono", monospace;
  font-size: 0.63rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem 0 5.5rem;
  border-top: 1px solid var(--schedule-line);
}

.site-footer p {
  margin: 0;
  color: var(--schedule-grey);
  font-size: 0.82rem;
  line-height: 1.75;
}

.site-footer p:last-child {
  max-width: 760px;
  text-align: right;
}

.site-footer a {
  color: var(--session-ink-soft);
  font-weight: 650;
  text-decoration-color: rgba(16, 41, 54, 0.36);
  text-underline-offset: 0.2em;
}

.site-footer a:hover {
  color: var(--signal-rose-deep);
  text-decoration-color: currentColor;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .reveal-child {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 660ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-child-delay, 0ms) + 80ms),
    transform 660ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-child-delay, 0ms) + 80ms);
}

.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {
  .top-nav {
    gap: 0.8rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 2.2rem;
    padding: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5.3vw, 4.55rem);
  }

  .hero-preview-stack {
    width: 100%;
  }

  .feature-card {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 960px) {
  .site-header {
    top: 0.5rem;
  }

  .top-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    top: auto;
    z-index: 45;
    display: flex;
    width: min(1200px, calc(100% - 3rem));
    margin: 0.7rem auto 0;
    padding: 0.55rem;
    gap: 0.45rem;
    overflow-x: auto;
    border: 1px solid rgba(16, 41, 54, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(16, 41, 54, 0.08);
    backdrop-filter: blur(16px);
    scrollbar-width: thin;
    scrollbar-color: var(--schedule-line) transparent;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0.52rem 0.72rem;
    border-radius: 999px;
    color: var(--session-ink-soft);
    font-size: 0.78rem;
    font-weight: 680;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-nav a:hover,
  .mobile-nav a.is-active {
    background: var(--ice-panel);
  }

  .mobile-nav-primary {
    color: var(--clean-white) !important;
    background: var(--session-ink);
  }

  .mobile-nav-language {
    border: 1px solid var(--schedule-line);
    font-family: "Geist Mono", monospace;
  }

  .mobile-nav-language.is-active {
    color: var(--clean-white);
    background: var(--coach-teal-deep) !important;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 3.5rem;
  }

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

  .hero-device-main {
    width: min(100%, 278px);
  }

  .hero-preview-stack {
    width: 100%;
  }

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

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--schedule-line);
  }

  .focus-card,
  .focus-card:nth-child(even) {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  }

  .focus-card:nth-child(even) .focus-media {
    order: 0;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-steps::before {
    top: 1.6rem;
    right: auto;
    bottom: 1.6rem;
    left: 25px;
    width: 2px;
    height: auto;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1.1rem;
    align-items: start;
    padding: 0 0 1.6rem;
    text-align: left;
  }

  .flow-step > span {
    margin: 0;
  }

  .flow-step > div {
    padding-top: 0.7rem;
  }

  .coach-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-interactive {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    max-width: 13ch;
  }

  .cta-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 1.5rem, 1200px);
  }

  .site-header {
    min-height: 62px;
    margin-top: 0.45rem;
    padding: 0.55rem 0.7rem;
    border-radius: 16px;
  }

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

  .brand span {
    display: none;
  }

  .mobile-nav {
    width: calc(100% - 1.5rem);
    margin-top: 0.5rem;
  }

  .sticky-cta {
    display: none;
  }

  .hero {
    gap: 2.2rem;
    margin-top: 0.75rem;
    padding: 2.3rem 1.25rem 1.25rem;
    border-radius: 28px;
  }

  .hero::before {
    background-size: 36px 36px, 36px 36px, auto, auto;
  }

  .hero h1 {
    max-width: none;
    margin-top: 0.7rem;
    font-size: clamp(2.45rem, 12.5vw, 4rem);
    line-height: 1;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-action-row,
  .store-badge-row {
    align-items: stretch;
  }

  .hero-action-row .btn,
  .hero-action-row .link-pill {
    flex: 1 1 150px;
  }

  .app-store-button,
  .android-soon-button {
    flex: 1 1 170px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0;
  }

  .hero-stats li:nth-child(even)::after {
    content: "";
  }

  .hero-stats li:nth-child(n + 3) {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(88, 199, 207, 0.2);
  }

  .product-stage {
    grid-template-columns: minmax(0, 1fr) 108px;
    padding: 4.4rem 0.9rem 0.9rem 1.5rem;
    border-radius: 24px;
  }

  .product-stage::after {
    left: 24px;
  }

  .stage-label {
    top: 0.9rem;
    left: 0.9rem;
  }

  .hero-device-main {
    width: min(100%, 235px);
  }

  .hero-preview-stack {
    width: 100%;
  }

  .hero-preview-card:nth-child(2) {
    display: none;
  }

  .hero-preview-card img {
    height: auto;
  }

  .hero-status-panel {
    width: 100%;
  }

  .section {
    margin-top: 5.5rem;
  }

  .section-head {
    margin-bottom: 1.6rem;
  }

  .section-head h2,
  .section-cta h2,
  .cta h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

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

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid var(--schedule-line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .focus-card,
  .focus-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 26px;
  }

  .focus-media,
  .focus-card:nth-child(even) .focus-media {
    order: 0;
    min-height: 0;
    padding: 1.25rem;
  }

  .device-frame {
    width: min(100%, 190px);
    margin: 0;
  }

  .focus-copy {
    padding: 2rem 1.5rem 2.3rem;
  }

  .focus-copy h3 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .section-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 2rem 1.5rem;
    border-radius: 26px;
  }

  .coach-profile-grid {
    grid-template-columns: 1fr;
  }

  .coach-portrait {
    height: 132px;
  }

  .coach-profile-body {
    padding: 1.25rem;
  }

  .coach-contact a {
    width: 100%;
    justify-content: space-between;
  }

  .price-card {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 1rem;
  }

  .comparison-table-wrap {
    box-shadow: inset -22px 0 20px -22px rgba(16, 41, 54, 0.55);
  }

  .cta-interactive {
    min-height: 0;
    padding: 2.25rem 1.25rem 1.25rem;
    border-radius: 28px;
  }

  .cta-brand {
    margin-bottom: 1.35rem;
  }

  .cta-visual {
    min-height: 0;
    padding: 1rem;
    border-radius: 23px;
  }

  .cta-showcase-card {
    width: min(100%, 205px);
    height: auto;
    margin: 0 auto;
  }

  .cta-preview-rail {
    display: none;
  }

  .site-footer {
    display: grid;
    gap: 0.8rem;
    padding-bottom: 5.5rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .coach-profile-head {
    flex-direction: column;
  }

  .coach-workplace div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .hero-action-row .btn,
  .hero-action-row .link-pill,
  .app-store-button,
  .android-soon-button {
    width: 100%;
    flex-basis: 100%;
  }

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

  .hero-stats li,
  .hero-stats li:nth-child(n + 3) {
    padding: 0.7rem 0 0;
    border-top: 1px solid rgba(88, 199, 207, 0.2);
  }

  .hero-stats li:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .hero-stats li::after {
    display: none;
  }

  .product-stage {
    grid-template-columns: 1fr;
    padding: 4.25rem 0.9rem 0.9rem;
  }

  .hero-device-main {
    grid-row: auto;
    width: min(100%, 210px);
    justify-self: center;
    left: auto;
    transform: none;
  }

  .hero-preview-stack {
    display: none;
  }

  .hero-status-panel {
    grid-column: 1;
    width: 100%;
  }

  .section-cta-actions,
  .cta-web-actions {
    align-items: stretch;
  }

  .section-cta-actions .btn,
  .section-cta-actions .link-pill,
  .cta-web-actions .btn,
  .cta-web-actions .link-pill {
    width: 100%;
  }
}

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

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

  .js .reveal,
  .js .reveal-child {
    opacity: 1 !important;
    transform: none !important;
  }
}
