:root {
  color-scheme: dark;
  --ink: #020617;
  --surface: #0f172a;
  --surface-raised: #1e293b;
  --sky: #38bdf8;
  --blue: #60a5fa;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --line: #263449;
  --content: 1180px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  top: -28rem;
  left: 50%;
  width: 78rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(56 189 248 / 14%) 0, rgb(2 6 23 / 0%) 68%);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

a {
  color: var(--sky);
  text-underline-offset: 0.22em;
}

a:hover {
  color: #7dd3fc;
}

a:focus-visible,
summary:focus-visible {
  border-radius: 6px;
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  color: #f8fafc;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 760;
}

h2 {
  max-width: 17ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--text);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-180%);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), var(--content));
  min-height: 86px;
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand:hover {
  color: #fff;
}

.site-footer .brand img {
  width: 34px;
  height: 34px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.site-header nav > a:not(.button) {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav > a:not(.button):hover {
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 1px solid var(--sky);
  border-radius: 14px;
  background: var(--sky);
  box-shadow: 0 14px 34px rgb(56 189 248 / 17%);
  color: #03111d;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #7dd3fc;
  background: #7dd3fc;
  color: #03111d;
  transform: translateY(-2px);
}

.button--compact {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-color: #334155;
  background: var(--surface-raised);
  box-shadow: none;
  color: var(--text);
  font-size: 0.86rem;
}

.button--compact:hover {
  border-color: var(--sky);
  background: #243349;
  color: #fff;
}

.button--secondary {
  border-color: #334155;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.breadcrumbs,
main > section {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.breadcrumbs {
  padding-top: 1.5rem;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.breadcrumbs li {
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.7rem;
  color: #475569;
  content: "/";
}

.breadcrumbs a {
  color: #cbd5e1;
}

.hero {
  display: grid;
  min-height: min(760px, calc(100vh - 86px));
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) 0;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 2rem;
  color: #b8c5d7;
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero__visual {
  min-width: 0;
}

.hero__visual > .journey {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgb(15 23 42 / 72%);
}

.hero__visual .journey__path {
  transform: rotate(90deg) scale(1.18);
}

.hero__visual .journey__steps {
  display: grid;
  margin-top: 2rem;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.hero__visual .journey__steps li {
  display: grid;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  gap: 0.1rem;
  grid-template-columns: 7rem 1fr;
}

.hero__visual .journey__steps li:last-child {
  border-bottom: 0;
}

.hero__visual .journey__steps span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  width: 100%;
  filter: drop-shadow(0 28px 48px rgb(0 0 0 / 24%));
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link {
  font-weight: 750;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-heading > p:last-child,
.split-section > div:first-child > p:last-child,
.app-section > div:first-child > p,
.pricing-section > div:first-child > p,
.prose-section > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section--journey {
  width: 100%;
  max-width: none;
  padding-right: max(1.5rem, calc((100% - var(--content)) / 2));
  padding-left: max(1.5rem, calc((100% - var(--content)) / 2));
  background: var(--surface);
}

.journey {
  overflow: hidden;
}

.journey__path {
  width: 100%;
  min-width: 720px;
}

.journey__steps {
  display: grid;
  margin: 1rem 0 0;
  padding: 0;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.journey__steps li {
  min-width: 0;
}

.journey__steps strong,
.journey__steps span {
  display: block;
}

.journey__steps strong {
  margin-bottom: 0.35rem;
  color: #f8fafc;
}

.journey__steps span {
  color: var(--muted);
  font-size: 0.86rem;
}

.split-section,
.pricing-section {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.split-section > div:first-child,
.pricing-section > div:first-child {
  position: sticky;
  top: 2rem;
}

.feature-rows {
  border-top: 1px solid var(--line);
}

.feature-rows article {
  display: grid;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  column-gap: 1.5rem;
  grid-template-columns: minmax(95px, 0.28fr) 0.72fr;
}

.feature-rows__label {
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-row: span 2;
}

.feature-rows article > p:last-child {
  margin: 0;
  color: var(--muted);
}

.team-section {
  text-align: center;
}

.team-section .section-heading {
  margin-inline: auto;
}

.team-section h2 {
  margin-inline: auto;
}

.role-strip {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.role-strip span {
  padding: 1.2rem clamp(1rem, 3vw, 2.2rem);
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 750;
}

.app-section {
  display: grid;
  max-width: 980px;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 1fr minmax(280px, 390px);
}

.phone-preview {
  padding: 1rem;
  border: 1px solid #334155;
  border-radius: 36px;
  background: var(--surface);
  box-shadow: 0 34px 70px rgb(0 0 0 / 30%);
}

.phone-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.phone-preview__focus {
  display: flex;
  padding: 1.5rem;
  border-radius: 22px;
  background: #0c4a6e;
  flex-direction: column;
  gap: 0.35rem;
}

.phone-preview__focus small {
  color: #7dd3fc;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.phone-preview__focus strong {
  color: #fff;
  font-size: 1.3rem;
}

.phone-preview__focus span {
  color: #bae6fd;
}

.phone-preview__rows {
  display: grid;
  padding: 0.8rem 0.4rem 0;
}

.phone-preview__rows span {
  padding: 1rem 0.7rem;
  border-bottom: 1px solid var(--line);
  color: #cbd5e1;
}

.phone-preview__rows span:last-child {
  border-bottom: 0;
}

.pricing-section {
  align-items: center;
}

.price-block {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-block__name {
  color: var(--sky);
  font-weight: 800;
}

.price-block__free {
  display: grid;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  gap: 0.2rem;
}

.price-block__free strong {
  color: #f8fafc;
  font-size: 1.25rem;
}

.price-block__free span {
  color: var(--muted);
}

.price-block__price {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.price-block__price strong {
  color: #fff;
  font-size: clamp(3.3rem, 7vw, 5.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-block__price span,
.price-block > p {
  color: var(--muted);
}

.price-block .button {
  width: 100%;
  margin-top: 1rem;
}

.faq-section {
  max-width: 900px;
}

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

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

.faq-list summary {
  padding: 1.5rem 2.5rem 1.5rem 0;
  color: #f8fafc;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 730;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: var(--sky);
  content: "+";
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

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

.prose-section {
  max-width: 840px;
}

.prose-section h2 {
  max-width: 19ch;
}

.prose-section p {
  max-width: 760px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid #164e63;
  border-radius: var(--radius);
  background: #07192a;
  gap: 2rem;
}

.cta-band h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.cta-band p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band .button {
  flex: 0 0 auto;
}

.site-footer {
  display: grid;
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  gap: 1.2rem;
  grid-template-columns: 1fr auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

.site-footer nav {
  display: flex;
  gap: 1.3rem;
}

.site-footer nav a {
  color: #cbd5e1;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .site-header {
    width: min(calc(100% - 2rem), var(--content));
  }

  .site-header nav > a:not(.button) {
    display: none;
  }

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

  .hero__visual {
    max-width: 620px;
  }

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

  .split-section > div:first-child,
  .pricing-section > div:first-child {
    position: static;
  }

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

  .phone-preview {
    width: min(100%, 390px);
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .site-header {
    min-height: 74px;
  }

  .site-header .brand span {
    display: none;
  }

  .site-header .button {
    min-height: 38px;
    padding: 0.45rem 0.65rem;
    font-size: 0.76rem;
  }

  .breadcrumbs,
  main > section {
    width: min(calc(100% - 2rem), var(--content));
  }

  .breadcrumbs {
    padding-top: 1rem;
  }

  .hero {
    padding: 3.75rem 0 4.5rem;
    gap: 3.5rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    text-align: center;
  }

  .hero__visual > .journey {
    padding: 1.2rem;
  }

  .hero__visual .journey__path {
    display: none;
  }

  .hero__visual .journey__steps {
    margin-top: 0;
  }

  .hero__visual .journey__steps li {
    grid-template-columns: 6.2rem 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section--journey {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .journey__path {
    min-width: 600px;
  }

  .journey__steps {
    overflow-x: auto;
    width: calc(100vw - 2rem);
    padding-bottom: 1rem;
    grid-template-columns: repeat(5, minmax(128px, 1fr));
    scroll-snap-type: x mandatory;
  }

  .journey__steps li {
    scroll-snap-align: start;
  }

  .feature-rows article {
    display: block;
  }

  .feature-rows__label {
    margin-bottom: 0.7rem;
  }

  .role-strip {
    justify-content: flex-start;
  }

  .role-strip span {
    width: 50%;
    padding: 0.9rem 0.5rem;
  }

  .cta-band {
    width: calc(100% - 2rem);
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band .button {
    width: 100%;
  }

  .site-footer {
    width: calc(100% - 2rem);
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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

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

/* SEO product pages
   Scoped to keep the unused static landing stable. */

.seo-page {
  --seo-abyss: #030712;
  --seo-panel: #0a1222;
  --seo-panel-raised: #111c31;
  --seo-line: rgb(148 163 184 / 16%);
  --seo-line-strong: rgb(94 168 255 / 28%);
  --seo-cyan: #42d5f5;
  --seo-blue: #5ea8ff;
  --seo-violet: #9370ff;
  --seo-green: #42e8ad;
  --seo-white: #f7f9ff;
  --seo-copy: #b4bfd1;
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(circle at 72% 8%, rgb(62 117 255 / 12%), transparent 31rem),
    radial-gradient(circle at 22% 38%, rgb(25 193 230 / 7%), transparent 28rem),
    linear-gradient(180deg, #040817 0%, var(--seo-abyss) 34%, #050916 100%);
}

.seo-page::before {
  top: -20rem;
  width: 92rem;
  height: 55rem;
  background:
    radial-gradient(circle at 58% 46%, rgb(59 130 246 / 15%), transparent 34%),
    radial-gradient(circle at 70% 52%, rgb(139 92 246 / 9%), transparent 31%),
    radial-gradient(circle, rgb(2 6 23 / 0%) 0, rgb(2 6 23 / 0%) 70%);
}

.seo-page .site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 2rem), calc(var(--content) + 2rem));
  min-height: 72px;
  margin-top: 0.75rem;
  padding: 0 1rem;
  border: 1px solid rgb(148 163 184 / 10%);
  border-radius: 18px;
  background: rgb(5 10 25 / 58%);
  box-shadow: 0 14px 44px rgb(0 0 0 / 16%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.seo-page .brand img {
  width: 31px;
  height: 31px;
}

.seo-page .site-header nav {
  gap: clamp(0.9rem, 2vw, 1.65rem);
}

.seo-page .site-header nav > a:not(.button) {
  color: #aeb9ca;
  font-size: 0.82rem;
}

.seo-page .site-header .button--compact {
  min-height: 37px;
  border-color: rgb(148 163 184 / 16%);
  border-radius: 11px;
  background: rgb(30 41 59 / 78%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%);
  color: var(--text);
}

.seo-page .site-header .button--compact:hover {
  border-color: rgb(94 168 255 / 42%);
  background: #243349;
  color: #fff;
}

.seo-page .breadcrumbs {
  padding-top: 1.1rem;
}

.seo-page .breadcrumbs li {
  color: #65728a;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.seo-page .breadcrumbs a {
  color: #8794aa;
}

.seo-page .hero {
  position: relative;
  min-height: 660px;
  padding: clamp(2.6rem, 5vw, 4.8rem) 0 clamp(5rem, 8vw, 7rem);
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.79fr) minmax(500px, 1.21fr);
}

.seo-page .hero::after {
  position: absolute;
  z-index: -1;
  right: -18%;
  bottom: 4%;
  width: 66%;
  height: 54%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(65 141 255 / 10%), transparent 70%);
  content: "";
  pointer-events: none;
}

.seo-page .hero__copy {
  position: relative;
  z-index: 2;
}

.seo-page .hero .eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 0.55rem;
}

.seo-page .hero .eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seo-green);
  box-shadow: 0 0 0 5px rgb(66 232 173 / 9%), 0 0 20px rgb(66 232 173 / 34%);
  content: "";
}

.seo-page h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  color: var(--seo-white);
  font-size: clamp(3.1rem, 4.25vw, 4.35rem);
  font-weight: 760;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.seo-page .hero__lead {
  max-width: 590px;
  margin-bottom: 1.7rem;
  color: var(--seo-copy);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.seo-page .button {
  min-height: 48px;
  padding-inline: 1.3rem;
  border-color: #6bb7ff;
  border-radius: 13px;
  background: linear-gradient(135deg, #74c7ff 0%, #599bff 58%, #7778ff 100%);
  box-shadow:
    0 16px 38px rgb(65 141 255 / 20%),
    inset 0 1px 0 rgb(255 255 255 / 34%);
  color: #06101e;
}

.seo-page .button:hover {
  border-color: #8bd4ff;
  background: linear-gradient(135deg, #8bd4ff 0%, #70acff 58%, #8b89ff 100%);
  color: #06101e;
}

.seo-page .hero__actions {
  gap: 1.2rem;
}

.seo-page .hero__actions .text-link {
  color: #aab6c9;
  font-size: 0.9rem;
  text-decoration: none;
}

.seo-page .hero__actions .text-link span {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--seo-cyan);
  transition: transform 160ms ease;
}

.seo-page .hero__actions .text-link:hover {
  color: #fff;
}

.seo-page .hero__actions .text-link:hover span {
  transform: translateY(3px);
}

.seo-page .hero__meta {
  display: flex;
  margin: 1.35rem 0 0;
  padding: 0;
  gap: 0.65rem;
  flex-wrap: wrap;
  list-style: none;
}

.seo-page .hero__meta li {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgb(148 163 184 / 12%);
  border-radius: 999px;
  background: rgb(15 23 42 / 46%);
  color: #8491a7;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 0.42rem;
  letter-spacing: 0.025em;
}

.seo-page .hero__meta li > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--seo-cyan);
  box-shadow: 0 0 9px rgb(66 213 245 / 60%);
}

.seo-page .hero__visual {
  position: relative;
  z-index: 1;
  width: calc(100% + 3.5rem);
  margin-right: -3.5rem;
}

.seo-page .hero__visual::before {
  position: absolute;
  z-index: -1;
  inset: 10% 7% 6%;
  border-radius: 40%;
  background:
    radial-gradient(circle at 45% 44%, rgb(48 187 235 / 14%), transparent 44%),
    radial-gradient(circle at 68% 55%, rgb(125 92 246 / 12%), transparent 42%);
  content: "";
  filter: blur(32px);
  pointer-events: none;
}

.seo-page .hero-visual {
  overflow: visible;
  width: 100%;
  filter: drop-shadow(0 34px 62px rgb(0 0 0 / 42%));
}

/* Product mockup language */

.seo-page .svg-shell {
  stroke: rgb(105 151 211 / 25%);
  stroke-width: 1.5;
}

.seo-page .svg-shell-line {
  fill: none;
  stroke: rgb(255 255 255 / 4%);
  stroke-width: 1.5;
}

.seo-page .svg-panel {
  fill: rgb(17 28 49 / 88%);
  stroke: rgb(113 148 194 / 18%);
  stroke-width: 1;
}

.seo-page .svg-panel--profile,
.seo-page .svg-panel--sidebar {
  fill: rgb(7 14 28 / 72%);
}

.seo-page .svg-float-tag {
  fill: rgb(8 16 31 / 92%);
  stroke: rgb(83 151 232 / 25%);
}

.seo-page .svg-window-dot {
  fill: #3b465a;
}

.seo-page .svg-mark {
  fill: var(--seo-blue);
}

.seo-page .svg-divider {
  fill: none;
  stroke: rgb(148 163 184 / 13%);
  stroke-width: 1;
}

.seo-page .svg-ui-title,
.seo-page .svg-section-title,
.seo-page .svg-copy-strong,
.seo-page .svg-copy,
.seo-page .svg-kicker,
.seo-page .svg-chip-text,
.seo-page .svg-avatar-text {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.seo-page .svg-ui-title {
  fill: #e9eff9;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.seo-page .svg-section-title {
  fill: #f4f7fc;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.seo-page .svg-section-title--phone {
  font-size: 14px;
}

.seo-page .svg-kicker {
  fill: #7990ae;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.105em;
}

.seo-page .svg-kicker--phone {
  font-size: 7px;
}

.seo-page .svg-copy-strong {
  fill: #edf2fb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.seo-page .svg-copy {
  fill: #8290a7;
  font-size: 9px;
  font-weight: 550;
}

.seo-page .svg-chip-text {
  fill: #8695ac;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.seo-page .svg-chip-text--cyan {
  fill: #71def3;
}

.seo-page .svg-chip-text--bright {
  fill: #dcecff;
}

.seo-page .svg-live-chip {
  fill: rgb(35 110 116 / 20%);
  stroke: rgb(66 232 173 / 22%);
}

.seo-page .svg-soft-chip {
  fill: rgb(37 69 109 / 27%);
  stroke: rgb(85 141 215 / 13%);
}

.seo-page .svg-review-chip {
  fill: rgb(113 72 184 / 20%);
  stroke: rgb(158 119 255 / 20%);
}

.seo-page .svg-status-dot {
  fill: var(--seo-green);
  filter: drop-shadow(0 0 4px rgb(66 232 173 / 64%));
  transform-box: fill-box;
  transform-origin: center;
  animation: seo-status-pulse 2.6s ease-in-out infinite;
}

.seo-page .svg-status-dot--violet {
  fill: #a78bfa;
  filter: drop-shadow(0 0 4px rgb(167 139 250 / 65%));
}

.seo-page .svg-avatar-ring {
  fill: rgb(46 152 221 / 12%);
  stroke: rgb(81 188 240 / 45%);
  stroke-width: 1;
}

.seo-page .svg-avatar {
  fill: #1a2941;
}

.seo-page .svg-avatar--coach {
  fill: #263956;
}

.seo-page .svg-avatar-text {
  fill: #d8eeff;
  font-size: 9px;
  font-weight: 800;
}

.seo-page .svg-avatar-text--small {
  font-size: 7px;
}

.seo-page .svg-avatar-text--tiny {
  font-size: 5px;
}

.seo-page .svg-track {
  fill: #202b3e;
}

.seo-page .svg-progress-fill {
  transform-box: fill-box;
  transform-origin: left center;
  animation: seo-progress 4.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.seo-page .svg-progress-fill--workout {
  animation-delay: -1.2s;
}

.seo-page .svg-progress-fill--remote,
.seo-page .svg-progress-fill--phone {
  animation-delay: -2.2s;
}

.seo-page .svg-mini-bars rect {
  fill: #26354d;
}

.seo-page .svg-mini-bars .svg-mini-bar--active {
  fill: var(--seo-cyan);
  filter: drop-shadow(0 0 5px rgb(66 213 245 / 35%));
}

.seo-page .svg-action-panel {
  fill: rgb(18 54 86 / 78%);
  stroke: rgb(80 168 236 / 31%);
}

.seo-page .svg-action-icon,
.seo-page .svg-state-ok {
  fill: rgb(47 208 166 / 17%);
  stroke: rgb(66 232 173 / 53%);
  stroke-width: 1;
}

.seo-page .svg-action-arrow,
.seo-page .svg-check-path {
  fill: none;
  stroke: #6ce7bd;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-page .svg-check-path {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: seo-check-draw 4.8s ease-in-out infinite;
}

.seo-page .svg-check-path--remote {
  animation-delay: -1.2s;
}

.seo-page .svg-check-path--phone {
  animation-delay: -2.4s;
}

.seo-page .svg-action-chip {
  fill: rgb(84 145 226 / 30%);
  stroke: rgb(121 185 255 / 31%);
}

.seo-page .svg-icon-box {
  stroke-width: 1;
}

.seo-page .svg-icon-box--cyan {
  fill: rgb(35 181 207 / 13%);
  stroke: rgb(66 213 245 / 26%);
}

.seo-page .svg-icon-box--blue {
  fill: rgb(68 120 224 / 15%);
  stroke: rgb(94 168 255 / 28%);
}

.seo-page .svg-icon-box--violet {
  fill: rgb(130 84 220 / 14%);
  stroke: rgb(147 112 255 / 28%);
}

.seo-page .svg-icon-line,
.seo-page .svg-nav-icon {
  fill: none;
  stroke: #8ecdf9;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-page .svg-chart-line {
  fill: none;
  stroke: url("#control-progress");
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-page .svg-chart-area {
  fill: rgb(66 213 245 / 7%);
}

.seo-page .svg-chart-point {
  fill: var(--seo-cyan);
  filter: drop-shadow(0 0 5px rgb(66 213 245 / 80%));
}

.seo-page .svg-live-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: seo-live-pulse 2.8s ease-in-out infinite;
}

.seo-page .svg-content-pulse {
  animation: seo-content-pulse 4.4s ease-in-out infinite;
}

.seo-page .flow-beam__halo,
.seo-page .flow-beam__base,
.seo-page .flow-beam__pulse,
.seo-page .flow-branch {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-page .flow-beam__halo {
  stroke: url("#control-beam");
  stroke-width: 13;
  opacity: 0.08;
}

.seo-page .flow-beam__base {
  stroke: rgb(88 137 207 / 24%);
  stroke-width: 2;
}

.seo-page .flow-beam__pulse {
  stroke: url("#control-beam");
  stroke-width: 3;
  stroke-dasharray: 18 485;
  filter: drop-shadow(0 0 5px rgb(80 184 255 / 80%));
  animation: seo-beam-travel 4.8s linear infinite;
}

.seo-page .flow-branch {
  stroke: rgb(83 142 216 / 28%);
  stroke-width: 1.5;
}

.seo-page .flow-nodes circle {
  fill: #0c1527;
  stroke: #5a9fec;
  stroke-width: 2;
}

.seo-page .flow-nodes .flow-node--action {
  fill: #233d6e;
  stroke: #9b7dff;
  filter: drop-shadow(0 0 5px rgb(147 112 255 / 66%));
  transform-box: fill-box;
  transform-origin: center;
  animation: seo-live-pulse 2.5s ease-in-out infinite;
}

/* Coach dashboard and synchronized client phone */

.seo-page .svg-nav-row {
  fill: rgb(22 34 54 / 42%);
}

.seo-page .svg-nav-row--active {
  fill: rgb(39 91 137 / 42%);
  stroke: rgb(66 213 245 / 18%);
}

.seo-page .svg-nav-dot {
  fill: var(--seo-cyan);
  filter: drop-shadow(0 0 4px rgb(66 213 245 / 60%));
}

.seo-page .svg-message {
  fill: rgb(22 49 78 / 72%);
  stroke: rgb(91 158 224 / 22%);
}

.seo-page .sync-link,
.seo-page .sync-link__pulse {
  fill: none;
  stroke-linecap: round;
}

.seo-page .sync-link {
  stroke: rgb(75 111 165 / 31%);
  stroke-width: 1.5;
  stroke-dasharray: 3 6;
}

.seo-page .sync-link__pulse {
  stroke: url("#sync-accent");
  stroke-width: 2.5;
  stroke-dasharray: 8 86;
  filter: drop-shadow(0 0 4px rgb(83 165 255 / 75%));
  animation: seo-sync-travel 3.2s linear infinite;
}

.seo-page .sync-link__pulse--check {
  animation-delay: -1.05s;
  animation-direction: reverse;
}

.seo-page .sync-link__pulse--feedback {
  animation-delay: -2.1s;
}

.seo-page .sync-node {
  fill: #0c1729;
  stroke: var(--seo-cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgb(66 213 245 / 54%));
}

.seo-page .sync-node--violet {
  stroke: var(--seo-violet);
  filter: drop-shadow(0 0 4px rgb(147 112 255 / 56%));
}

.seo-page .phone-shadow {
  fill: rgb(0 0 0 / 32%);
}

.seo-page .phone-shell {
  fill: #101a2a;
  stroke: rgb(118 151 196 / 31%);
  stroke-width: 1.5;
}

.seo-page .phone-screen {
  fill: #070d19;
  stroke: rgb(255 255 255 / 4%);
}

.seo-page .phone-speaker,
.seo-page .phone-home {
  fill: #3c4658;
}

.seo-page .phone-card {
  fill: rgb(17 29 50 / 96%);
  stroke: rgb(105 148 205 / 16%);
}

.seo-page .phone-card--primary {
  fill: rgb(19 46 75 / 96%);
  stroke: rgb(69 158 225 / 29%);
}

.seo-page .phone-card--feedback {
  fill: rgb(25 38 66 / 96%);
  stroke: rgb(137 105 236 / 24%);
}

.seo-page .phone-action {
  fill: rgb(60 132 207 / 41%);
}

.seo-page .svg-text-line {
  fill: #4d5d74;
}

.seo-page .svg-text-line--short {
  fill: #35445a;
}

/* Flow section */

.seo-page .section {
  padding: clamp(5rem, 8vw, 7.4rem) 0;
}

.seo-page .section-heading {
  margin-bottom: clamp(2.3rem, 4.5vw, 4rem);
}

.seo-page .section-heading h2,
.seo-page .split-section h2,
.seo-page .prose-section h2,
.seo-page .cta-band h2 {
  color: var(--seo-white);
  letter-spacing: -0.047em;
  text-wrap: balance;
}

.seo-page .section-heading > p:last-child,
.seo-page .split-section > div:first-child > p:last-child,
.seo-page .prose-section > p {
  color: #96a3b7;
}

.seo-page .seo-flow-section {
  position: relative;
  border-top: 1px solid rgb(97 143 203 / 13%);
  border-bottom: 1px solid rgb(97 143 203 / 13%);
  background:
    radial-gradient(circle at 75% 50%, rgb(83 95 220 / 9%), transparent 31rem),
    radial-gradient(circle at 18% 50%, rgb(35 163 205 / 7%), transparent 25rem),
    linear-gradient(180deg, rgb(10 17 32 / 88%), rgb(7 13 26 / 93%));
}

.seo-page .seo-flow-section .section-heading {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 1rem clamp(3rem, 10vw, 9rem);
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
}

.seo-page .seo-flow-section .section-heading .eyebrow {
  grid-column: 1;
}

.seo-page .seo-flow-section .section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  grid-column: 1;
}

.seo-page .seo-flow-section .section-heading > p:last-child {
  max-width: 520px;
  margin-bottom: 0.35rem;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.seo-page .seo-flow-section .journey {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgb(101 151 214 / 17%);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgb(19 31 54 / 77%), rgb(8 15 29 / 86%));
  box-shadow:
    0 26px 70px rgb(0 0 0 / 23%),
    inset 0 1px 0 rgb(255 255 255 / 4%);
}

.seo-page .seo-flow-section .journey::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(66 213 245 / 48%), rgb(147 112 255 / 44%), transparent);
  content: "";
}

.seo-page .seo-flow-section .journey__path {
  min-width: 0;
}

.seo-page .seo-flow-section .journey__path > path {
  stroke: rgb(69 141 211 / 42%);
  stroke-width: 3;
  stroke-dasharray: 8 10;
  animation: seo-journey-flow 10s linear infinite;
}

.seo-page .seo-flow-section .journey__path > circle {
  fill: #0a1222;
  stroke: #63b3ed;
  stroke-width: 3;
}

.seo-page .seo-flow-section .journey__steps {
  margin-top: 0.5rem;
  gap: 0;
}

.seo-page .seo-flow-section .journey__steps li {
  position: relative;
  padding: 1rem clamp(0.75rem, 2vw, 1.4rem) 0.25rem;
  border-left: 1px solid rgb(148 163 184 / 12%);
}

.seo-page .seo-flow-section .journey__steps li:first-child {
  border-left: 0;
}

.seo-page .seo-flow-section .journey__steps strong {
  color: #edf4ff;
  font-size: 0.86rem;
}

.seo-page .seo-flow-section .journey__steps span {
  color: #7f8ca1;
  line-height: 1.5;
}

/* Feature rows: one operational surface, varied rows. */

.seo-page .seo-feature-section {
  align-items: start;
}

.seo-page .seo-feature-section > div:first-child {
  top: 7rem;
}

.seo-page .feature-rows {
  overflow: hidden;
  border: 1px solid var(--seo-line);
  border-radius: 24px;
  background: linear-gradient(150deg, rgb(16 26 46 / 77%), rgb(8 14 27 / 74%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.seo-page .feature-rows article {
  position: relative;
  min-height: 142px;
  padding: 1.65rem 1.75rem;
  border-bottom-color: rgb(148 163 184 / 12%);
  column-gap: 1.7rem;
  grid-template-columns: minmax(102px, 0.28fr) minmax(0, 0.72fr);
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.seo-page .feature-rows article:last-child {
  border-bottom: 0;
}

.seo-page .feature-rows article::before {
  position: absolute;
  top: 1.55rem;
  bottom: 1.55rem;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--seo-cyan), var(--seo-blue));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.seo-page .feature-rows article:nth-child(2)::before,
.seo-page .feature-rows article:nth-child(4)::before {
  background: linear-gradient(180deg, var(--seo-blue), var(--seo-violet));
}

.seo-page .feature-rows article:hover {
  padding-left: 2rem;
  background: rgb(28 47 76 / 31%);
}

.seo-page .feature-rows article:hover::before {
  opacity: 1;
}

.seo-page .feature-rows__label {
  position: relative;
  padding-left: 0.85rem;
  color: #68d4ee;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
}

.seo-page .feature-rows__label::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  content: "";
}

.seo-page .feature-rows h3 {
  margin-bottom: 0.55rem;
  color: #f1f5fb;
  font-size: clamp(1.14rem, 1.6vw, 1.35rem);
  letter-spacing: -0.03em;
}

.seo-page .feature-rows article > p:last-child {
  color: #8d9aaf;
  font-size: 0.94rem;
}

/* Context band */

.seo-page .seo-context-section {
  display: grid;
  max-width: var(--content);
  padding: clamp(2.4rem, 5vw, 4rem);
  border: 1px solid rgb(104 148 209 / 16%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgb(50 173 217 / 8%), transparent 18rem),
    linear-gradient(120deg, rgb(13 24 43 / 89%), rgb(8 14 27 / 82%));
  box-shadow:
    0 24px 65px rgb(0 0 0 / 18%),
    inset 0 1px 0 rgb(255 255 255 / 4%);
  column-gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
}

.seo-page .seo-context-section .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.seo-page .seo-context-section h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  grid-column: 1;
  grid-row: 2 / span 2;
}

.seo-page .seo-context-section > p:not(.eyebrow) {
  margin-bottom: 1rem;
  grid-column: 2;
}

.seo-page .seo-context-section > p:nth-last-of-type(1) {
  margin-bottom: 0;
}

.seo-page .seo-context-section a {
  color: #77c9f4;
}

/* FAQ and final action */

.seo-page .seo-faq-section {
  max-width: 940px;
  padding-top: clamp(6rem, 9vw, 8rem);
}

.seo-page .faq-list {
  overflow: hidden;
  border: 1px solid rgb(148 163 184 / 13%);
  border-radius: 22px;
  background: rgb(10 17 32 / 54%);
}

.seo-page .faq-list details {
  padding-inline: clamp(1.2rem, 3vw, 1.8rem);
  border-bottom-color: rgb(148 163 184 / 11%);
}

.seo-page .faq-list details:last-child {
  border-bottom: 0;
}

.seo-page .faq-list summary {
  padding-block: 1.35rem;
  color: #e7edf7;
}

.seo-page .faq-list summary::after {
  color: var(--seo-cyan);
}

.seo-page .faq-list details p {
  color: #8f9caf;
}

.seo-page .cta-band {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin-bottom: clamp(4rem, 7vw, 6rem);
  padding: clamp(2.4rem, 5vw, 4.2rem);
  border-color: rgb(95 150 222 / 27%);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgb(141 102 255 / 22%), transparent 19rem),
    radial-gradient(circle at 62% 120%, rgb(38 190 231 / 18%), transparent 21rem),
    linear-gradient(120deg, #0f1c34 0%, #101a33 52%, #111632 100%);
  box-shadow:
    0 32px 80px rgb(0 0 0 / 26%),
    inset 0 1px 0 rgb(255 255 255 / 7%);
}

.seo-page .cta-band::before {
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(69 215 244 / 65%), rgb(141 110 255 / 66%), transparent);
  content: "";
}

.seo-page .cta-band > * {
  position: relative;
  z-index: 1;
}

.seo-page .cta-band h2 {
  max-width: 15ch;
}

.seo-page .cta-band p:last-child {
  color: #a9b5c8;
}

.seo-page .cta-band .button {
  min-width: 196px;
}

.seo-page .site-footer {
  border-top-color: rgb(148 163 184 / 11%);
  color: #6f7d93;
}

.seo-page .site-footer nav a {
  color: #95a2b6;
}

@keyframes seo-beam-travel {
  to {
    stroke-dashoffset: -503;
  }
}

@keyframes seo-sync-travel {
  to {
    stroke-dashoffset: -94;
  }
}

@keyframes seo-journey-flow {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes seo-status-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes seo-live-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

@keyframes seo-content-pulse {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes seo-progress {
  0%,
  12% {
    transform: scaleX(0.32);
  }

  52%,
  82% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.72);
  }
}

@keyframes seo-check-draw {
  0%,
  12% {
    stroke-dashoffset: 18;
  }

  28%,
  86% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -18;
  }
}

@media (max-width: 1100px) {
  .seo-page .hero {
    gap: 2.5rem;
    grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  }

  .seo-page .hero__visual {
    width: calc(100% + 1rem);
    margin-right: -1rem;
  }
}

@media (max-width: 900px) {
  .seo-page .site-header {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .seo-page .hero {
    min-height: auto;
    padding-top: 3.5rem;
    grid-template-columns: 1fr;
  }

  .seo-page .hero__copy {
    max-width: 720px;
  }

  .seo-page h1 {
    max-width: 13ch;
  }

  .seo-page .hero__visual {
    width: min(100%, 760px);
    max-width: 760px;
    margin-right: 0;
  }

  .seo-page .seo-flow-section .section-heading {
    display: block;
  }

  .seo-page .seo-flow-section .section-heading h2 {
    margin-bottom: 1.2rem;
  }

  .seo-page .seo-feature-section > div:first-child {
    position: static;
  }

  .seo-page .seo-context-section {
    grid-template-columns: 1fr;
  }

  .seo-page .seo-context-section .eyebrow,
  .seo-page .seo-context-section h2,
  .seo-page .seo-context-section > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .seo-page .seo-context-section h2 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 620px) {
  .seo-page .site-header {
    min-height: 62px;
    margin-top: 0.5rem;
    padding-inline: 0.65rem;
    border-radius: 15px;
  }

  .seo-page .site-header .brand img {
    width: 28px;
    height: 28px;
  }

  .seo-page .site-header nav {
    gap: 0.55rem;
  }

  .seo-page .breadcrumbs {
    padding-top: 0.8rem;
  }

  .seo-page .hero {
    padding: 2.6rem 0 4.7rem;
    gap: 2.6rem;
  }

  .seo-page h1 {
    max-width: 11ch;
    margin-bottom: 1.15rem;
    font-size: clamp(2.55rem, 12vw, 3.4rem);
    letter-spacing: -0.052em;
  }

  .seo-page .hero__lead {
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
  }

  .seo-page .hero__actions {
    gap: 0.85rem;
  }

  .seo-page .hero__meta {
    margin-top: 1.15rem;
    gap: 0.45rem;
  }

  .seo-page .hero__meta li {
    padding: 0.38rem 0.55rem;
    font-size: 0.63rem;
  }

  .seo-page .hero__visual {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
  }

  .seo-page .hero__visual::before {
    inset: 15% 4% 8%;
    filter: blur(20px);
  }

  .seo-page .section {
    padding: 4.5rem 0;
  }

  .seo-page .seo-flow-section {
    padding-inline: 1rem;
  }

  .seo-page .seo-flow-section .section-heading {
    margin-bottom: 2rem;
  }

  .seo-page .seo-flow-section .journey {
    padding: 0.55rem 1rem;
    border-radius: 20px;
  }

  .seo-page .seo-flow-section .journey__path {
    display: none;
  }

  .seo-page .seo-flow-section .journey__steps {
    overflow: visible;
    width: auto;
    margin: 0;
    padding: 0;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .seo-page .seo-flow-section .journey__steps li {
    padding: 1rem 0 1rem 1.35rem;
    border-bottom: 1px solid rgb(148 163 184 / 10%);
    border-left: 0;
  }

  .seo-page .seo-flow-section .journey__steps li:last-child {
    border-bottom: 0;
  }

  .seo-page .seo-flow-section .journey__steps li::before {
    position: absolute;
    top: 1.37rem;
    left: 0;
    width: 6px;
    height: 6px;
    border: 2px solid #59a7e8;
    border-radius: 50%;
    background: #091222;
    box-shadow: 0 0 9px rgb(66 213 245 / 28%);
    content: "";
  }

  .seo-page .feature-rows {
    border-radius: 20px;
  }

  .seo-page .feature-rows article {
    min-height: 0;
    padding: 1.45rem 1.25rem;
  }

  .seo-page .feature-rows article:hover {
    padding-left: 1.25rem;
  }

  .seo-page .feature-rows article::before {
    top: 1.2rem;
    bottom: 1.2rem;
  }

  .seo-page .seo-context-section {
    width: calc(100% - 2rem);
    padding: 1.75rem 1.35rem;
    border-radius: 22px;
  }

  .seo-page .seo-context-section h2 {
    font-size: 2.15rem;
  }

  .seo-page .seo-faq-section {
    padding-top: 5rem;
  }

  .seo-page .faq-list {
    border-radius: 18px;
  }

  .seo-page .faq-list summary {
    padding-right: 1rem;
    font-size: 0.98rem;
  }

  .seo-page .cta-band {
    min-height: 0;
    padding: 2rem 1.35rem;
    border-radius: 22px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .seo-page *,
  .seo-page *::before,
  .seo-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .seo-page .svg-progress-fill {
    transform: scaleX(1);
  }

  .seo-page .svg-check-path {
    stroke-dashoffset: 0;
  }

  .seo-page .flow-beam__pulse,
  .seo-page .sync-link__pulse {
    stroke-dashoffset: 0;
  }
}

/* Simplified SEO pages */

.seo-page {
  --simple-bg: #050914;
  --simple-panel: #0c1424;
  --simple-panel-soft: #111c30;
  --simple-line: rgb(148 163 184 / 16%);
  --simple-text: #f4f7fb;
  --simple-copy: #aab5c6;
  --simple-blue: #69b7ff;
  --simple-cyan: #56d6ee;
  background:
    radial-gradient(circle at 72% 10%, rgb(59 130 246 / 9%), transparent 30rem),
    var(--simple-bg);
}

.seo-page::before,
.seo-page .hero::after,
.seo-page .hero__visual::before {
  display: none;
}

.seo-page .site-header {
  width: min(calc(100% - 3rem), var(--content));
  min-height: 72px;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--simple-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.seo-page .site-header .button--compact {
  border-color: var(--simple-line);
  background: var(--simple-panel);
  box-shadow: none;
}

.seo-page .breadcrumbs {
  padding-top: 1rem;
}

.seo-page .hero {
  min-height: auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.seo-page .hero .eyebrow {
  margin-bottom: 1rem;
}

.seo-page .hero .eyebrow::before {
  width: 5px;
  height: 5px;
  box-shadow: none;
}

.seo-page h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  letter-spacing: -0.052em;
}

.seo-page .hero__lead {
  max-width: 560px;
  margin-bottom: 1.6rem;
  color: var(--simple-copy);
  font-size: 1.03rem;
}

.seo-page .button {
  border-color: #7cc3ff;
  background: var(--simple-blue);
  box-shadow: none;
}

.seo-page .button:hover {
  border-color: #9bd2ff;
  background: #82c7ff;
}

.seo-page .hero__visual {
  width: 100%;
  max-width: 640px;
  margin: 0;
}

.simple-preview {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgb(113 148 194 / 24%);
  border-radius: 22px;
  background: var(--simple-panel);
  box-shadow: 0 24px 60px rgb(0 0 0 / 25%);
  color: var(--simple-text);
}

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

.simple-preview__bar {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid var(--simple-line);
  color: #dce5f1;
  font-size: 0.78rem;
  font-weight: 750;
}

.simple-state {
  display: inline-flex;
  align-items: center;
  color: #8fa0b5;
  font-size: 0.68rem;
  font-weight: 650;
  gap: 0.4rem;
}

.simple-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48d7a5;
}

.simple-management-grid {
  display: grid;
  min-height: 310px;
  padding: 1rem;
  gap: 1rem;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.66fr);
}

.simple-client,
.simple-workspace {
  min-width: 0;
  padding: 1.1rem;
  border: 1px solid var(--simple-line);
  border-radius: 16px;
  background: rgb(7 13 25 / 52%);
}

.simple-client__identity,
.simple-coach__client {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0.7rem;
}

.simple-avatar {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(86 214 238 / 35%);
  border-radius: 50%;
  background: rgb(45 125 170 / 13%);
  color: #bdeeff;
  font-size: 0.7rem;
  font-weight: 800;
}

.simple-client__identity span:last-child,
.simple-coach__client span:last-child,
.simple-client {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.simple-preview small,
.simple-muted {
  color: #7f8da2;
  font-size: 0.72rem;
  font-weight: 500;
}

.simple-label {
  margin-bottom: 0.35rem;
  color: #74849b;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.simple-client > strong {
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.simple-progress {
  overflow: hidden;
  height: 5px;
  margin-top: 1rem;
  border-radius: 99px;
  background: #202b3d;
}

.simple-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--simple-blue);
}

.simple-workspace {
  display: grid;
  gap: 0.9rem;
}

.simple-next {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(105 183 255 / 22%);
  border-radius: 13px;
  background: rgb(42 96 151 / 17%);
}

.simple-next strong {
  font-size: 0.88rem;
}

.simple-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.simple-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--simple-line);
  border-radius: 11px;
  color: #8997aa;
  font-size: 0.74rem;
  gap: 1rem;
}

.simple-list li strong {
  color: #dce6f2;
  font-size: 0.73rem;
  text-align: right;
}

.simple-list li.is-current {
  border-color: rgb(86 214 238 / 29%);
  background: rgb(38 132 163 / 10%);
}

.simple-preview--coaching {
  display: grid;
  overflow: visible;
  align-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  grid-template-columns: minmax(0, 1fr) 38px 138px;
}

.simple-coach {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgb(113 148 194 / 24%);
  border-radius: 20px;
  background: var(--simple-panel);
  box-shadow: 0 24px 60px rgb(0 0 0 / 25%);
}

.simple-coach__body {
  display: grid;
  padding: 1rem;
  gap: 0.8rem;
  grid-template-columns: minmax(105px, 0.36fr) minmax(0, 0.64fr);
}

.simple-coach__client {
  grid-row: span 2;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--simple-line);
  border-radius: 14px;
  background: rgb(7 13 25 / 52%);
}

.simple-delivery,
.simple-feedback {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.9rem 1rem;
  border: 1px solid var(--simple-line);
  border-radius: 14px;
  background: rgb(14 24 42 / 75%);
}

.simple-delivery > strong,
.simple-feedback > strong {
  margin-bottom: 0.15rem;
  font-size: 0.84rem;
}

.simple-feedback > span {
  color: #7f8da2;
  font-size: 0.68rem;
}

.simple-sync {
  position: relative;
  height: 2px;
  background: rgb(105 183 255 / 26%);
}

.simple-sync span {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--simple-cyan);
  box-shadow: 0 0 10px rgb(86 214 238 / 65%);
  animation: simple-sync 3s ease-in-out infinite;
}

.simple-phone {
  display: flex;
  min-height: 280px;
  padding: 0.75rem;
  border: 6px solid #172235;
  border-radius: 25px;
  background: #08101d;
  box-shadow: 0 20px 45px rgb(0 0 0 / 30%);
  flex-direction: column;
}

.simple-phone__speaker {
  width: 34px;
  height: 4px;
  margin: 0 auto 1.3rem;
  border-radius: 99px;
  background: #344156;
}

.simple-phone > strong {
  margin-bottom: 1rem;
  font-size: 0.84rem;
}

.simple-phone__card {
  display: flex;
  margin-bottom: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgb(105 183 255 / 22%);
  border-radius: 12px;
  background: rgb(35 79 126 / 25%);
  flex-direction: column;
}

.simple-phone__card small {
  margin-bottom: 0.35rem;
  color: var(--simple-blue);
  text-transform: uppercase;
}

.simple-phone__card strong {
  margin-bottom: 0.15rem;
  font-size: 0.78rem;
}

.simple-phone__card span {
  color: #8c9aaf;
  font-size: 0.62rem;
}

.simple-phone__status {
  display: flex;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--simple-line);
  border-radius: 11px;
  gap: 0.5rem;
}

.simple-phone__status > span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(72 215 165 / 14%);
  color: #67ddb7;
  font-size: 0.65rem;
}

.seo-page .section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.seo-page .section-heading {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.seo-page .section-heading h2,
.seo-page .seo-context-section h2,
.seo-page .cta-band h2 {
  max-width: 18ch;
  color: var(--simple-text);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.043em;
}

.seo-page .section-heading > p:last-child,
.seo-page .seo-context-section > p:not(.eyebrow) {
  color: var(--simple-copy);
}

.seo-page .seo-steps-section {
  border-top: 1px solid var(--simple-line);
  border-bottom: 1px solid var(--simple-line);
  background: transparent;
}

.seo-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--simple-line);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.seo-steps li {
  display: grid;
  min-width: 0;
  padding: 1.6rem 1.5rem 0 0;
  border-right: 1px solid var(--simple-line);
  gap: 1rem;
  grid-template-columns: auto 1fr;
}

.seo-steps li + li {
  padding-left: 1.5rem;
}

.seo-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.seo-steps li > span {
  color: var(--simple-cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.seo-steps h3 {
  margin-bottom: 0.55rem;
  color: var(--simple-text);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.seo-steps p {
  margin-bottom: 0;
  color: #8f9caf;
  font-size: 0.9rem;
}

.seo-page .seo-context-section {
  display: grid;
  width: min(calc(100% - 3rem), var(--content));
  max-width: var(--content);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border: 0;
  border-bottom: 1px solid var(--simple-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  column-gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(250px, 0.85fr) minmax(300px, 1.15fr);
}

.seo-page .seo-context-section .eyebrow,
.seo-page .seo-context-section h2,
.seo-page .seo-context-section > p:not(.eyebrow) {
  grid-column: auto;
  grid-row: auto;
}

.seo-page .seo-context-section .eyebrow {
  grid-column: 1;
}

.seo-page .seo-context-section h2 {
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 2 / span 2;
}

.seo-page .seo-context-section > p:not(.eyebrow) {
  grid-column: 2;
}

.seo-page .seo-faq-section {
  max-width: 820px;
  padding-top: clamp(4rem, 7vw, 6rem);
}

.seo-page .faq-list {
  border-radius: 16px;
  background: transparent;
}

.seo-page .faq-list details {
  background: transparent;
}

.seo-page .cta-band {
  min-height: 0;
  margin-bottom: 4rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  border: 1px solid var(--simple-line);
  border-radius: 20px;
  background: var(--simple-panel);
  box-shadow: none;
}

.seo-page .cta-band::before {
  display: none;
}

@keyframes simple-sync {
  0%,
  100% {
    left: 0;
  }

  50% {
    left: calc(100% - 8px);
  }
}

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

  .seo-page .hero__copy {
    max-width: 660px;
  }

  .seo-page .hero__visual {
    width: min(100%, 640px);
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .seo-page .site-header {
    width: calc(100% - 2rem);
    min-height: 60px;
    padding: 0;
    border-radius: 0;
  }

  .seo-page .site-header .brand span {
    display: inline;
  }

  .seo-page .breadcrumbs {
    display: none;
  }

  .seo-page .hero {
    width: calc(100% - 2rem);
    padding: 2.5rem 0 3.5rem;
    gap: 2.25rem;
  }

  .seo-page h1 {
    max-width: none;
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 10.5vw, 2.9rem);
    letter-spacing: -0.045em;
  }

  .seo-page .hero__lead {
    margin-bottom: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .seo-page .hero__actions {
    align-items: stretch;
  }

  .seo-page .hero__actions .button {
    width: 100%;
  }

  .seo-page .hero__actions .text-link {
    text-align: center;
  }

  .simple-preview {
    border-radius: 17px;
  }

  .simple-management-grid {
    min-height: 0;
    padding: 0.75rem;
    gap: 0.75rem;
    grid-template-columns: 1fr;
  }

  .simple-client {
    display: grid;
    padding: 0.85rem;
    align-items: center;
    gap: 0.25rem 0.75rem;
    grid-template-columns: auto 1fr;
  }

  .simple-client__identity {
    margin: 0;
    grid-column: 1 / -1;
  }

  .simple-client > .simple-label,
  .simple-client > strong,
  .simple-client > .simple-muted,
  .simple-client > .simple-progress {
    display: none;
  }

  .simple-workspace {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .simple-preview--coaching {
    grid-template-columns: minmax(0, 1fr) 18px 100px;
  }

  .simple-coach {
    border-radius: 16px;
  }

  .simple-coach__body {
    padding: 0.7rem;
    gap: 0.55rem;
    grid-template-columns: 1fr;
  }

  .simple-coach__client {
    display: none;
  }

  .simple-delivery,
  .simple-feedback {
    padding: 0.7rem;
    border-radius: 10px;
  }

  .simple-phone {
    min-height: 230px;
    padding: 0.55rem;
    border-width: 4px;
    border-radius: 20px;
  }

  .simple-phone__speaker {
    margin-bottom: 0.9rem;
  }

  .simple-phone > strong {
    font-size: 0.72rem;
  }

  .simple-phone__card,
  .simple-phone__status {
    padding: 0.55rem;
  }

  .simple-phone__card span,
  .simple-phone__status small {
    display: none;
  }

  .seo-page .section {
    width: calc(100% - 2rem);
    padding: 3.5rem 0;
  }

  .seo-page .section-heading {
    margin-bottom: 2rem;
  }

  .seo-page .section-heading h2,
  .seo-page .seo-context-section h2,
  .seo-page .cta-band h2 {
    font-size: 2rem;
  }

  .seo-steps {
    grid-template-columns: 1fr;
  }

  .seo-steps li,
  .seo-steps li + li {
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--simple-line);
  }

  .seo-steps li:last-child {
    border-bottom: 0;
  }

  .seo-page .seo-context-section {
    width: calc(100% - 2rem);
    padding: 3.5rem 0;
    grid-template-columns: 1fr;
  }

  .seo-page .seo-context-section .eyebrow,
  .seo-page .seo-context-section h2,
  .seo-page .seo-context-section > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .seo-page .seo-context-section h2 {
    margin-bottom: 1.25rem;
  }

  .seo-page .seo-faq-section {
    padding-top: 3.5rem;
  }

  .seo-page .cta-band {
    width: calc(100% - 2rem);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 16px;
  }
}

/* Real FitFlows component previews */

.seo-page .site-header {
  margin-top: 0.75rem;
  padding: 0 1rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 5%),
    rgb(255 255 255 / 2%)
  );
  box-shadow:
    0 -8px 32px -8px rgb(34 211 238 / 13%),
    0 16px 48px -16px rgb(0 0 0 / 42%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.app-client-detail {
  display: grid;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 0.75rem;
}

.app-client-header,
.app-vitals > div,
.app-client-modules,
.app-next-action {
  border: 1px solid rgb(255 255 255 / 10%);
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 5%),
    rgb(255 255 255 / 2%)
  );
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.app-client-header {
  padding: 1rem;
  border-radius: 20px;
  box-shadow:
    0 -8px 28px -12px rgb(34 211 238 / 14%),
    0 16px 40px -22px rgb(0 0 0 / 48%);
}

.app-back {
  display: block;
  margin-bottom: 0.7rem;
  color: rgb(255 255 255 / 48%);
  font-size: 0.68rem;
  font-weight: 600;
}

.app-client-header__row,
.app-client-title,
.app-client-badges,
.app-client-actions {
  display: flex;
  align-items: center;
}

.app-client-header__row {
  justify-content: space-between;
  gap: 1rem;
}

.app-client-title {
  margin-bottom: 0.55rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.app-client-title strong {
  color: #f5fbff;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.app-client-title > span {
  padding: 0.24rem 0.45rem;
  border: 1px solid rgb(34 211 238 / 20%);
  border-radius: 6px;
  background: rgb(6 182 212 / 12%);
  color: #bae6fd;
  font-size: 0.58rem;
  font-weight: 700;
}

.app-client-badges {
  gap: 0.45rem;
}

.app-client-badges > span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.48rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 7px;
  background: rgb(255 255 255 / 4%);
  color: rgb(255 255 255 / 58%);
  font-size: 0.6rem;
  font-weight: 650;
  gap: 0.35rem;
}

.app-client-badges .is-active {
  color: #a7f3d0;
}

.app-client-badges i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}

.app-client-actions {
  gap: 0.4rem;
}

.app-client-actions span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 10px;
  background: rgb(255 255 255 / 4%);
  color: rgb(255 255 255 / 70%);
  font-size: 0.66rem;
  font-weight: 650;
}

.app-vitals {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-vitals > div {
  display: flex;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  padding: 0.75rem;
  border-radius: 15px;
  gap: 0.65rem;
}

.app-vitals > div > span:last-child,
.app-client-modules > div > span:last-child,
.app-next-action > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.app-vital-icon,
.app-module-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(34 211 238 / 20%);
  border-radius: 10px;
  background: rgb(6 182 212 / 9%);
  color: #67e8f9;
  font-size: 0.74rem;
  font-style: normal;
}

.app-vitals small,
.app-client-modules small,
.app-next-action small {
  margin-bottom: 0.18rem;
  color: rgb(255 255 255 / 42%);
  font-size: 0.54rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.app-vitals strong {
  overflow: hidden;
  color: #f8fafc;
  font-size: 0.71rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-vitals em {
  margin-top: 0.2rem;
  color: rgb(255 255 255 / 45%);
  font-size: 0.57rem;
  font-style: normal;
}

.app-vitals .is-warning .app-vital-icon,
.app-vitals .is-warning em {
  border-color: rgb(251 191 36 / 24%);
  background: rgb(245 158 11 / 9%);
  color: #fcd34d;
}

.app-client-modules {
  display: grid;
  padding: 0.65rem;
  border-radius: 17px;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-client-modules > div {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 12px;
  background: rgb(255 255 255 / 2%);
  gap: 0.55rem;
}

.app-client-modules strong {
  overflow: hidden;
  color: #e8eef7;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-module-icon.is-blue {
  border-color: rgb(96 165 250 / 22%);
  background: rgb(59 130 246 / 10%);
  color: #93c5fd;
}

.app-module-icon.is-violet {
  border-color: rgb(167 139 250 / 24%);
  background: rgb(139 92 246 / 10%);
  color: #c4b5fd;
}

.app-client-modules .is-current {
  border-color: rgb(167 139 250 / 22%);
}

.app-next-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-color: rgb(34 211 238 / 17%);
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgb(6 182 212 / 9%), rgb(59 130 246 / 5%)),
    rgb(255 255 255 / 2%);
  color: #7dd3fc;
}

.app-next-action strong {
  color: #f0f9ff;
  font-size: 0.75rem;
}

.app-client-area {
  display: flex;
  overflow: visible;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.app-device {
  position: relative;
  width: min(100%, 360px);
  padding: 1.3rem 1rem 1.1rem;
  border: 8px solid #172033;
  border-radius: 38px;
  background: #070d18;
  box-shadow:
    0 30px 70px rgb(0 0 0 / 38%),
    0 0 0 1px rgb(148 163 184 / 18%);
}

.app-device__speaker {
  width: 46px;
  height: 5px;
  margin: 0 auto 1.35rem;
  border-radius: 99px;
  background: #3a465b;
}

.app-client-greeting {
  display: flex;
  margin-bottom: 1.1rem;
  padding-inline: 0.15rem;
  flex-direction: column;
}

.app-client-greeting small {
  margin-bottom: 0.2rem;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 650;
}

.app-client-greeting strong {
  color: #f8fafc;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.app-next-workout {
  position: relative;
  display: grid;
  min-height: 86px;
  overflow: hidden;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
  background: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  gap: 0.65rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.app-play {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  background: rgb(0 0 0 / 10%);
  color: white;
  font-size: 0.7rem;
}

.app-next-workout > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.app-next-workout small {
  color: rgb(255 255 255 / 80%);
  font-size: 0.52rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.app-next-workout strong {
  overflow: hidden;
  margin: 0.18rem 0 0.1rem;
  color: white;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-next-workout em {
  color: rgb(255 255 255 / 76%);
  font-size: 0.58rem;
  font-style: normal;
}

.app-start {
  padding: 0.62rem 0.7rem;
  border-radius: 10px;
  background: white;
  color: #0369a1;
  font-size: 0.58rem;
  font-weight: 850;
  text-transform: uppercase;
}

.app-week-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgb(59 130 246 / 28%);
  border-radius: 18px;
  background: #080b12;
}

.app-week-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(59 130 246 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(59 130 246 / 5%) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.app-week-card > * {
  position: relative;
}

.app-week-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.app-week-card__header > span {
  display: flex;
  flex-direction: column;
}

.app-week-card__header > span:last-child {
  min-width: 46px;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgb(51 65 85 / 70%);
  border-radius: 10px;
  background: rgb(2 6 23 / 55%);
  text-align: right;
}

.app-week-card__header strong {
  color: #f8fafc;
  font-size: 0.72rem;
}

.app-week-card__header small {
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.52rem;
}

.app-week-card p {
  margin: 0.7rem 0 0.35rem;
  color: #cbd5e1;
  font-size: 0.58rem;
}

.app-week-progress {
  overflow: hidden;
  height: 4px;
  border-radius: 99px;
  background: #1e293b;
}

.app-week-progress span {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: #60a5fa;
}

.app-week-days {
  display: grid;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgb(30 41 59 / 90%);
  gap: 0.3rem;
  grid-template-columns: repeat(7, 1fr);
}

.app-week-days > span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-direction: column;
}

.app-week-days small {
  color: #475569;
  font-size: 0.48rem;
  font-weight: 700;
}

.app-week-days i {
  display: inline-flex;
  width: 100%;
  max-width: 24px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid #1e293b;
  border-radius: 6px;
  background: rgb(15 23 42 / 70%);
  color: #020617;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 900;
}

.app-week-days i.is-done {
  border-color: #6ee7b7;
  background: #34d399;
}

.app-week-days i.is-planned {
  border-color: rgb(96 165 250 / 72%);
  background: rgb(59 130 246 / 14%);
}

.app-week-days .is-today i {
  outline: 1px solid rgb(255 255 255 / 70%);
  outline-offset: 2px;
}

.app-check-card {
  padding: 0.65rem;
  border: 1px solid #1e293b;
  border-radius: 18px;
  background: rgb(2 6 23 / 35%);
}

.app-check-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  padding-inline: 0.2rem;
}

.app-check-card__title strong {
  color: #cbd5e1;
  font-size: 0.68rem;
}

.app-check-card__title span {
  color: #475569;
  font-size: 0.52rem;
}

.app-check-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}

.app-check-due,
.app-weight {
  display: flex;
  min-height: 92px;
  justify-content: space-between;
  padding: 0.7rem;
  border: 1px solid rgb(51 65 85 / 70%);
  border-radius: 14px;
  background: rgb(15 23 42 / 55%);
  flex-direction: column;
}

.app-check-due {
  border-color: rgb(251 113 133 / 25%);
  background: rgb(251 113 133 / 6%);
}

.app-check-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgb(251 113 133 / 13%);
  color: #fda4af;
  font-size: 0.7rem;
}

.app-check-due small,
.app-weight small {
  color: #64748b;
  font-size: 0.55rem;
}

.app-check-due strong,
.app-weight strong {
  color: #f1f5f9;
  font-size: 0.72rem;
}

.app-weight svg {
  width: 68px;
  height: 24px;
  align-self: flex-end;
}

.app-weight path {
  fill: none;
  stroke: #a5b4fc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.app-weight em {
  color: #64748b;
  font-size: 0.56rem;
  font-style: normal;
}

.app-today-card {
  overflow: hidden;
  margin-top: 0.75rem;
  padding: 0.55rem;
  border: 1px solid #1e293b;
  border-radius: 18px;
  background: rgb(2 6 23 / 35%);
}

.app-today-card > strong {
  display: block;
  padding: 0.2rem 0.35rem 0.45rem;
  color: #94a3b8;
  font-size: 0.65rem;
}

.app-today-card > div {
  display: grid;
  min-height: 48px;
  align-items: center;
  padding: 0.5rem;
  border-top: 1px solid rgb(30 41 59 / 85%);
  gap: 0.55rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.app-today-card > div > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.app-today-card > div > span:nth-child(2) strong {
  color: #f1f5f9;
  font-size: 0.64rem;
}

.app-today-card > div > span:nth-child(2) small {
  color: #64748b;
  font-size: 0.52rem;
}

.app-today-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.62rem;
}

.app-today-icon.is-emerald {
  background: rgb(52 211 153 / 12%);
  color: #6ee7b7;
}

.app-today-icon.is-indigo {
  background: rgb(129 140 248 / 12%);
  color: #a5b4fc;
}

.app-habit-dots {
  display: flex;
  gap: 0.18rem;
}

.app-habit-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6ee7b7;
}

.app-habit-dots i:last-child {
  background: #334155;
}

.app-team-feed {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.7rem;
  border: 1px solid #1e293b;
  border-radius: 16px;
  background: rgb(15 23 42 / 45%);
  gap: 0.65rem;
}

.app-feed-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(34 211 238 / 12%);
  color: #67e8f9;
  font-size: 0.62rem;
  font-weight: 800;
}

.app-team-feed > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.app-team-feed small {
  color: #64748b;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.app-team-feed strong {
  overflow: hidden;
  color: #e2e8f0;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-team-feed em {
  margin-top: 0.1rem;
  color: #475569;
  font-size: 0.5rem;
  font-style: normal;
}

.app-device__home {
  width: 70px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 99px;
  background: rgb(255 255 255 / 22%);
}

@media (max-width: 1100px) {
  .seo-page .site-header nav > a:not(.button) {
    display: none;
  }

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

@media (max-width: 620px) {
  .seo-page .site-header {
    margin-top: 0.5rem;
    padding-inline: 0.65rem;
    border-radius: 15px;
  }

  .app-client-detail {
    gap: 0.6rem;
  }

  .app-client-header {
    padding: 0.85rem;
    border-radius: 16px;
  }

  .app-back,
  .app-client-actions {
    display: none;
  }

  .app-client-title {
    margin-bottom: 0.45rem;
  }

  .app-client-title strong {
    font-size: 0.95rem;
  }

  .app-vitals {
    grid-template-columns: 1fr 1fr;
  }

  .app-vitals > div:first-child {
    display: flex;
  }

  .app-vitals > div {
    min-height: 66px;
    padding: 0.65rem;
  }

  .app-client-modules {
    grid-template-columns: 1fr;
  }

  .app-client-modules > div {
    padding: 0.6rem 0.7rem;
  }

  .app-next-action {
    padding: 0.7rem 0.8rem;
  }

  .app-device {
    width: 100%;
    padding: 1rem 0.8rem 0.8rem;
    border-width: 6px;
    border-radius: 28px;
  }

  .app-device__speaker {
    margin-bottom: 1rem;
  }

  .app-client-greeting {
    margin-bottom: 0.8rem;
  }

  .app-next-workout {
    min-height: 80px;
    padding: 0.7rem;
    gap: 0.5rem;
  }

  .app-play {
    width: 34px;
    height: 34px;
  }

  .app-start {
    padding: 0.55rem;
  }
}
