﻿:root {
  color-scheme: light;
  --ink: #0d1738;
  --muted: #647098;
  --line: rgba(96, 139, 255, 0.22);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --soft: #eef4ff;
  --blue: #2b5dff;
  --sky: #20c8ff;
  --violet: #8b55ff;
  --pink: #f37aff;
  --mint: #57e0df;
  --lavender: #b9a3ff;
  --lime: #9efff5;
  --shadow: 0 24px 70px rgba(31, 75, 190, 0.18);
  --glow: 0 18px 42px rgba(32, 200, 255, 0.28);
  --radius-card: 8px;
  --radius-panel: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  font-family: "Manrope", Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 18%, rgba(243, 122, 255, 0.25), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(87, 224, 223, 0.26), transparent 30%),
    radial-gradient(circle at 52% 100%, rgba(139, 85, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #f4f7ff 0%, #eaf2ff 48%, #f8edff 100%);
  color: var(--ink);
}

body,
button,
a,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(32, 200, 255, 0.62);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 14px;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
}

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

.site-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(31, 75, 190, 0.12);
  backdrop-filter: blur(22px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: 214px;
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.language-switcher a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.main-nav a {
  padding: 0 13px;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 14px 28px rgba(21, 92, 255, 0.2);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-switcher a {
  min-width: 42px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  color: #07206b;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--lime), #3df7ff);
  box-shadow: 0 16px 34px rgba(61, 247, 255, 0.3);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.18);
  color: white;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 28px;
  min-height: 620px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(87, 224, 223, 0.42), transparent 24%),
    radial-gradient(circle at 22% 100%, rgba(243, 122, 255, 0.3), transparent 34%),
    linear-gradient(135deg, #2b5dff 0%, #6a7cff 34%, #8b55ff 68%, #f37aff 100%);
  color: white;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(21, 92, 255, 0.32);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 32px;
  width: 520px;
  height: 118px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  transform: rotate(-18deg);
}

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

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.section .eyebrow,
.panel .eyebrow {
  background: linear-gradient(135deg, rgba(43, 93, 255, 0.12), rgba(139, 85, 255, 0.15));
  color: var(--blue);
}

.hero h1 {
  max-width: 850px;
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.hero-points span,
.metric-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero-visual {
  min-height: 480px;
}

.phone-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  width: min(100%, 390px);
  min-height: 520px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(13, 23, 56, 0.2);
  backdrop-filter: blur(18px);
}

.phone-panel::before {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

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

.trainer-mini {
  display: grid;
  overflow: hidden;
  min-height: 210px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.24);
}

.trainer-mini img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 30px rgba(13, 23, 56, 0.16));
}

.choice-card {
  display: grid;
  gap: 7px;
  border-radius: 8px;
  padding: 14px;
  background: white;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(21, 92, 255, 0.08);
}

.choice-card strong {
  font-size: 20px;
  line-height: 1.1;
}

.choice-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.section {
  margin-top: 26px;
  padding: clamp(22px, 4vw, 34px);
}

.panel,
.section {
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading h2,
.language-page h1 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.lead,
.section > p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(21, 92, 255, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 92, 255, 0.38);
}

.card-featured,
.card.active {
  border-color: transparent;
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 224, 223, 0.45), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 18px 34px rgba(21, 92, 255, 0.24);
}

.card span,
.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 9px;
  background: var(--soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-featured span,
.card.active span {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.card strong {
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.08;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
}

.card-featured p,
.card.active p {
  color: rgba(255, 255, 255, 0.84);
}

.media-card {
  padding: 0;
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
}

.media-card .card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.trainer-card img {
  height: 280px;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(135deg, rgba(238, 245, 255, 0.92), rgba(246, 238, 255, 0.92));
}

.steps {
  counter-reset: step;
}

.step-card {
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lime), #3df7ff);
  color: #07206b;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(61, 247, 255, 0.22);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: center;
}

.story-box {
  display: grid;
  gap: 14px;
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.94));
}

.story-box p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(21, 92, 255, 0.08);
}

.faq-list summary {
  min-height: 58px;
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.future-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.future-links a,
.future-links span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px dashed rgba(96, 139, 255, 0.42);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.cta-panel {
  margin-top: 26px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(87, 224, 223, 0.42), transparent 24%),
    radial-gradient(circle at 22% 100%, rgba(243, 122, 255, 0.3), transparent 34%),
    linear-gradient(135deg, #2b5dff 0%, #6a7cff 34%, #8b55ff 68%, #f37aff 100%);
  color: white;
  box-shadow: 0 32px 90px rgba(21, 92, 255, 0.32);
}

.cta-panel h2 {
  max-width: 700px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
}

.cta-panel p {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  margin-top: 26px;
  padding: 24px 4px;
  color: var(--muted);
  font-weight: 800;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a,
.footer-links span,
.social-links a,
.social-links span {
  color: var(--muted);
  text-decoration: none;
}

.footer-links span,
.social-links span {
  cursor: default;
}

.footer-links a:hover,
.footer-links span:hover,
.social-links a:hover,
.social-links span:hover {
  color: var(--blue);
}

.language-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
}

.language-card {
  width: min(860px, calc(100% - 28px));
  padding: clamp(24px, 6vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.language-card img {
  width: 260px;
  margin-bottom: 26px;
}

.language-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.language-options a {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(21, 92, 255, 0.08);
}

.language-options a:first-child {
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 224, 223, 0.45), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
}

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

  .nav-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    color: var(--ink);
    padding: 0 14px;
    font-weight: 900;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-actions {
    grid-column: 2;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .phone-panel {
    margin: 0;
  }

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

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 20px, 760px);
    padding-top: 10px;
  }

  .site-header {
    top: 0;
    gap: 10px;
    border-radius: 18px;
  }

  .brand-link img {
    width: 168px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .language-switcher {
    order: 2;
  }

  .hero {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .hero-points,
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .section-heading,
  .language-options {
    grid-template-columns: 1fr;
  }

  .phone-panel {
    width: 100%;
    min-height: auto;
  }

  .trainer-mini {
    min-height: 170px;
  }

  .trainer-mini img,
  .trainer-card img,
  .media-card img {
    height: 190px;
  }

  .section,
  .cta-panel {
    border-radius: 20px;
  }

  .button,
  .button-row .button,
  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

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

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

/* Stage 2 polish: compact, app-like rhythm and safer imagery. */
.site-shell {
  width: min(1320px, calc(100% - 24px));
  padding: 16px 0 34px;
}

.site-header {
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: 18px;
}

.brand-link img {
  width: 198px;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 400px);
  min-height: 500px;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
}

.hero p {
  max-width: 590px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
}

.hero-actions,
.hero-points,
.button-row {
  margin-top: 20px;
}

.hero-visual {
  min-height: 400px;
}

.phone-panel {
  min-height: 430px;
  gap: 11px;
  padding: 15px;
}

.trainer-mini {
  min-height: 180px;
  align-content: end;
}

.trainer-mini img {
  height: 175px;
}

.section {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 26px);
}

.section-heading {
  gap: 14px;
  margin-bottom: 16px;
}

.section-heading h2,
.language-page h1,
.cta-panel h2 {
  max-width: 720px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.section-heading p,
.lead,
.section > p,
.story-box p,
.cta-panel p {
  font-size: 16px;
  line-height: 1.58;
}

.grid {
  gap: 12px;
}

.card {
  min-height: 128px;
  padding: 16px;
}

.card strong {
  font-size: clamp(19px, 2vw, 24px);
}

.card p {
  line-height: 1.48;
}

.eyebrow {
  min-height: 26px;
  font-size: 11px;
}

.brand-band {
  background:
    radial-gradient(circle at 92% 18%, rgba(87, 224, 223, 0.34), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(243, 122, 255, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.72);
}

.compact-section {
  box-shadow: 0 18px 44px rgba(31, 75, 190, 0.14);
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 16px;
  align-items: stretch;
}

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

.mascot-guide {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(circle at 72% 22%, rgba(87, 224, 223, 0.35), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 22px 48px rgba(21, 92, 255, 0.24);
  text-align: center;
}

.mascot-guide img {
  width: min(210px, 80%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(13, 23, 56, 0.22));
}

.mascot-guide strong {
  font-size: 24px;
  line-height: 1.1;
}

.mascot-guide p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  line-height: 1.5;
}

.media-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background:
    radial-gradient(circle at 80% 18%, rgba(87, 224, 223, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(238, 245, 255, 0.96), rgba(246, 238, 255, 0.96));
}

.media-card .card-body {
  padding: 14px 16px 16px;
}

.story-box {
  min-height: 100%;
  background:
    radial-gradient(circle at 88% 18%, rgba(87, 224, 223, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.94));
}

.founder-visual {
  display: grid;
  gap: 14px;
}

.founder-photo-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(96, 139, 255, 0.42);
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at 72% 28%, rgba(87, 224, 223, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 245, 255, 0.92));
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}


.founder-photo-frame {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(96, 139, 255, 0.34);
  border-radius: 22px;
  padding: 12px;
  background:
    radial-gradient(circle at 72% 28%, rgba(87, 224, 223, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.94));
  overflow: hidden;
}

.founder-photo-frame img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: transparent;
}
.founder-note-card {
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(43, 93, 255, 0.1), rgba(139, 85, 255, 0.11));
  color: var(--ink);
  font-weight: 900;
  line-height: 1.45;
}

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

.feature-group {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 185px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.92));
  box-shadow: 0 12px 28px rgba(21, 92, 255, 0.08);
}

.feature-group:nth-child(2) {
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 224, 223, 0.32), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
}

.feature-group:nth-child(2) p,
.feature-group:nth-child(2) li {
  color: rgba(255, 255, 255, 0.86);
}

.feature-group h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.feature-group p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.feature-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.feature-group li {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.nutrition-shot,
.founder-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(238, 245, 255, 0.92), rgba(246, 238, 255, 0.92));
}

@media (max-width: 1120px) {
  .feature-groups,
  .how-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 18px, 760px);
  }

  .brand-link img {
    width: 158px;
  }

  .hero h1 {
    font-size: clamp(31px, 9.5vw, 44px);
  }

  .hero-visual {
    min-height: auto;
  }

  .trainer-mini img {
    height: 165px;
  }

  .section-heading h2,
  .language-page h1,
  .cta-panel h2 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .how-layout,
  .steps,
  .feature-groups {
    grid-template-columns: 1fr;
  }

  .media-card img {
    height: 260px;
    padding: 10px;
  }

  .founder-photo-placeholder {
    min-height: 210px;
  }
}

/* Point fix: force app typography on all heading/title surfaces. */
html,
body,
button,
a,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section-heading h2,
.language-page h1,
.cta-panel h2,
.card strong,
.choice-card strong,
.feature-group h3,
.mascot-guide strong,
.story-box h2,
.hero-title,
.section-title,
.display-title,
.card-title {
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif !important;
  font-style: normal;
}

.store-status {
  cursor: default;
  pointer-events: none;
}

.founder-photo-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-style: solid;
}

.founder-photo-placeholder::before,
.founder-photo-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.founder-photo-placeholder::before {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(87, 224, 223, 0.34), rgba(43, 93, 255, 0.08) 62%, transparent 64%);
}

.founder-photo-placeholder::after {
  width: 76%;
  height: 44px;
  transform: rotate(-14deg);
  background: rgba(255, 255, 255, 0.48);
}

.founder-orbit {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(43, 93, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(43, 93, 255, 0.12), rgba(139, 85, 255, 0.14));
}

.founder-spark {
  position: absolute;
  right: 24%;
  top: 28%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(61, 247, 255, 0.65);
}

.media-card img {
  height: 300px;
  padding: 8px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .media-card img {
    height: 270px;
    padding: 8px;
    object-fit: contain;
  }


  .founder-photo-placeholder {
    min-height: 150px;
  }

  .founder-photo-frame {
    min-height: 220px;
    padding: 10px;
  }

  .founder-photo-frame img {
    height: 320px;
  }
}
/* Unified hover glow for landing interactive surfaces. */
.card,
.feature-group,
.future-links a,
.future-links span,
.faq-list details,
.choice-card,
.mascot-guide,
.founder-photo-frame,
.founder-note-card,
.hero-points span,
.footer-links a,
.footer-links span,
.social-links a,
.social-links span {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 38px rgba(21, 92, 255, 0.24), 0 0 0 4px rgba(32, 200, 255, 0.14);
}

.card:hover,
.card:focus-visible,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(43, 93, 255, 0.48);
  background:
    radial-gradient(circle at 88% 14%, rgba(87, 224, 223, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(43, 93, 255, 0.08), rgba(139, 85, 255, 0.06)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(21, 92, 255, 0.18), 0 0 0 4px rgba(32, 200, 255, 0.08);
}

.card-featured:hover,
.card-featured:focus-visible,
.card-featured:focus-within,
.card.active:hover,
.card.active:focus-visible,
.card.active:focus-within {
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 224, 223, 0.52), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 24px 52px rgba(21, 92, 255, 0.3), 0 0 0 4px rgba(32, 200, 255, 0.14);
}

.future-links a:hover,
.future-links a:focus-visible,
.future-links span:hover,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links span:hover,
.social-links a:hover,
.social-links a:focus-visible,
.social-links span:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 93, 255, 0.46);
  background: linear-gradient(135deg, rgba(43, 93, 255, 0.12), rgba(87, 224, 223, 0.16));
  color: var(--blue);
  box-shadow: 0 14px 28px rgba(21, 92, 255, 0.14);
}

.feature-group:hover,
.feature-group:focus-within,
.faq-list details:hover,
.faq-list details:focus-within,
.choice-card:hover,
.mascot-guide:hover,
.founder-photo-frame:hover,
.founder-note-card:hover,
.hero-points span:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 93, 255, 0.42);
  background:
    radial-gradient(circle at 88% 18%, rgba(87, 224, 223, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(43, 93, 255, 0.08), rgba(255, 255, 255, 0.86));
  box-shadow: 0 18px 38px rgba(21, 92, 255, 0.14), 0 0 0 4px rgba(32, 200, 255, 0.07);
}

.feature-group:nth-child(2):hover,
.feature-group:nth-child(2):focus-within {
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 224, 223, 0.46), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 22px 48px rgba(21, 92, 255, 0.3), 0 0 0 4px rgba(32, 200, 255, 0.12);
}

.faq-list details:hover summary,
.faq-list details:focus-within summary {
  color: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
  .card:hover,
  .card:focus-visible,
  .card:focus-within,
  .button:hover,
  .button:focus-visible,
  .feature-group:hover,
  .feature-group:focus-within,
  .future-links a:hover,
  .future-links a:focus-visible,
  .future-links span:hover,
  .faq-list details:hover,
  .faq-list details:focus-within,
  .choice-card:hover,
  .mascot-guide:hover,
  .founder-photo-frame:hover,
  .founder-note-card:hover,
  .hero-points span:hover,
  .footer-links a:hover,
  .footer-links a:focus-visible,
  .footer-links span:hover,
  .social-links a:hover,
  .social-links a:focus-visible,
  .social-links span:hover {
    transform: none;
  }
}
/* Strong fill hover: turn white interactive blocks blue like active cards. */
.card:hover,
.card:focus-visible,
.card:focus-within,
.feature-group:hover,
.feature-group:focus-within,
.faq-list details:hover,
.faq-list details:focus-within {
  border-color: transparent;
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 224, 223, 0.45), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 24px 52px rgba(21, 92, 255, 0.3), 0 0 0 4px rgba(32, 200, 255, 0.14);
}

.card:hover span,
.card:focus-visible span,
.card:focus-within span,
.feature-group:hover .tag,
.feature-group:focus-within .tag,
.faq-list details:hover summary,
.faq-list details:focus-within summary {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.card:hover p,
.card:focus-visible p,
.card:focus-within p,
.feature-group:hover p,
.feature-group:focus-within p,
.feature-group:hover li,
.feature-group:focus-within li,
.faq-list details:hover p,
.faq-list details:focus-within p {
  color: rgba(255, 255, 255, 0.86);
}

.card:hover strong,
.card:focus-visible strong,
.card:focus-within strong,
.feature-group:hover h3,
.feature-group:focus-within h3 {
  color: white;
}

.future-links a:hover,
.future-links a:focus-visible,
.future-links span:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 14px 28px rgba(21, 92, 255, 0.22);
}
/* Static cards stay neutral; blue fill appears only on hover/focus. */
.card-featured,
.card.active,
.feature-group:nth-child(2) {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(21, 92, 255, 0.08);
}

.card-featured span,
.card.active span,
.feature-group:nth-child(2) .tag {
  background: var(--soft);
  color: var(--blue);
}

.card-featured p,
.card.active p,
.feature-group:nth-child(2) p,
.feature-group:nth-child(2) li {
  color: var(--muted);
}

.card-featured:hover,
.card-featured:focus-visible,
.card-featured:focus-within,
.card.active:hover,
.card.active:focus-visible,
.card.active:focus-within,
.feature-group:nth-child(2):hover,
.feature-group:nth-child(2):focus-within {
  border-color: transparent;
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 224, 223, 0.45), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 24px 52px rgba(21, 92, 255, 0.3), 0 0 0 4px rgba(32, 200, 255, 0.14);
}

.card-featured:hover span,
.card-featured:focus-visible span,
.card-featured:focus-within span,
.card.active:hover span,
.card.active:focus-visible span,
.card.active:focus-within span,
.feature-group:nth-child(2):hover .tag,
.feature-group:nth-child(2):focus-within .tag {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.card-featured:hover p,
.card-featured:focus-visible p,
.card-featured:focus-within p,
.card.active:hover p,
.card.active:focus-visible p,
.card.active:focus-within p,
.feature-group:nth-child(2):hover p,
.feature-group:nth-child(2):focus-within p,
.feature-group:nth-child(2):hover li,
.feature-group:nth-child(2):focus-within li {
  color: rgba(255, 255, 255, 0.86);
}
/* Keep Fora mascot card text readable on hover. */
.mascot-guide:hover,
.mascot-guide:focus-within {
  background:
    radial-gradient(circle at 88% 18%, rgba(87, 224, 223, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 255, 0.9));
}

.mascot-guide:hover strong,
.mascot-guide:focus-within strong {
  color: var(--ink);
}

.mascot-guide:hover p,
.mascot-guide:focus-within p {
  color: var(--muted);
}




/* Multilingual hero balance: keeps EN/ES/RU first screens visually aligned. */
:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero {
  grid-template-columns: minmax(0, 1.34fr) minmax(280px, 360px);
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 3.2vw, 30px);
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-copy {
  max-width: none;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-copy .eyebrow {
  margin-bottom: 0;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero h1 {
  max-width: 920px;
  margin-top: 10px;
  font-size: clamp(46px, 3.8vw, 58px);
  line-height: 0.98;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-copy p {
  max-width: 850px;
  margin-top: 10px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.42;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-copy p + p {
  margin-top: 8px;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-actions {
  margin-top: 16px;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-points {
  gap: 8px;
  margin-top: 14px;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-points span {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 13px;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-visual {
  min-height: 390px;
  align-self: center;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .phone-panel {
  width: min(100%, 360px);
  min-height: 410px;
  gap: 10px;
  padding: 14px;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .phone-panel .trainer-mini {
  min-height: 166px;
}

:is(html[lang="en"], html[lang="es"], html[lang="ru"]) .phone-panel .trainer-mini img {
  height: 162px;
}

@media (max-width: 1120px) {
  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-copy p {
    max-width: 760px;
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-visual {
    min-height: auto;
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .phone-panel {
    width: min(100%, 560px);
    min-height: auto;
    margin: 0;
  }
}

@media (max-width: 820px) {
  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero {
    gap: 18px;
    padding: clamp(20px, 6vw, 28px);
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero h1 {
    max-width: 100%;
    margin-top: 10px;
    font-size: clamp(31px, 9vw, 43px);
    line-height: 1.04;
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-copy p {
    max-width: 100%;
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.5;
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-actions,
  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-points {
    margin-top: 16px;
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .hero-points span {
    min-height: 40px;
    font-size: 13px;
  }

  :is(html[lang="en"], html[lang="es"], html[lang="ru"]) .phone-panel {
    width: 100%;
  }
}



.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 18px));
  z-index: 90;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 18px 34px rgba(21, 92, 255, 0.26), 0 0 0 6px rgba(255, 255, 255, 0.34);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.back-to-top[hidden] {
  display: inline-flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(21, 92, 255, 0.3), 0 0 0 7px rgba(87, 224, 223, 0.16);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(87, 224, 223, 0.55);
  outline-offset: 4px;
}

.back-to-top:active {
  transform: translateY(0);
  box-shadow: 0 14px 28px rgba(21, 92, 255, 0.24), 0 0 0 5px rgba(255, 255, 255, 0.3);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 104px;
  }

  [id] {
    scroll-margin-top: 104px;
  }

  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 14px));
    width: 44px;
    height: 44px;
  }
}

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

  .back-to-top {
    transition: none;
  }
}





