:root {
  color-scheme: dark;
  --bg: #081412;
  --bg-soft: #0d1c19;
  --panel: rgba(14, 33, 29, 0.78);
  --panel-strong: #102823;
  --line: rgba(151, 208, 193, 0.18);
  --text: #f4fffc;
  --muted: #b5d7d0;
  --primary: #61c8ae;
  --primary-strong: #3ea78c;
  --primary-soft: rgba(97, 200, 174, 0.16);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(97, 200, 174, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(66, 132, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #081412 0%, #0b1815 45%, #07100f 100%);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 220px 220px;
  opacity: 0.22;
  mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 55%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 20, 18, 0.96);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}

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

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(97, 200, 174, 0.75);
  outline-offset: 3px;
  border-radius: 12px;
}

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

.shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(8, 20, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  transition: min-height 0.18s ease, padding 0.18s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  height: 42px;
  width: auto;
  transition: height 0.18s ease;
}

.brand span {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(181, 215, 208, 0.72);
}

.topbar-download {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  white-space: nowrap;
  margin-right: -6px;
  transition: min-height 0.18s ease, padding 0.18s ease;
}

body.scrolled .topbar-inner {
  min-height: 68px;
}

body.scrolled .brand img {
  height: 38px;
}

body.scrolled .topbar-download {
  min-height: 40px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-pop {
  display: none;
  position: relative;
}

.lang-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 52px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 20, 18, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  gap: 8px;
  grid-auto-flow: row;
}

.lang-pop.open .lang-menu {
  display: grid;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 20, 18, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  z-index: 9;
}

.mobile-sticky-button {
  width: 100%;
  min-height: 56px;
  justify-content: center;
}

body.has-sticky-cta {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

body.nav-open .mobile-sticky-cta {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.lang-btn {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(181, 215, 208, 0.92);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
  background: rgba(97, 200, 174, 0.16);
  border-color: rgba(151, 208, 193, 0.22);
  color: #d7fff5;
}

.lang-btn:hover {
  color: var(--text);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--text);
}

.nav-divider,
.nav-aux {
  display: none;
}

.nav-download {
  width: 100%;
  justify-content: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.trust {
  margin: 14px 0 0;
  color: rgba(181, 215, 208, 0.92);
  font-size: 14px;
  line-height: 1.6;
}

.hero {
  padding: 72px 0 48px;
}

.hero-center {
  padding: 86px 0 54px;
}

.hero-center-inner {
  text-align: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-secondary {
  margin-top: 14px;
}

.hero-link {
  text-decoration: none;
  color: rgba(181, 215, 208, 0.92);
  border-bottom: 1px solid rgba(181, 215, 208, 0.24);
  padding-bottom: 2px;
}

.hero-link:hover {
  color: var(--text);
  border-bottom-color: rgba(255, 255, 255, 0.32);
}

.hero-tag {
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(151, 208, 193, 0.22);
  background: rgba(97, 200, 174, 0.12);
  color: rgba(217, 255, 247, 0.94);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 auto 18px;
  max-width: 980px;
  font-size: clamp(42px, 6.4vw, 78px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero-accent {
  color: #a3f4e1;
}

.hero-subtitle {
  margin: 0 auto;
  max-width: 820px;
  color: rgba(181, 215, 208, 0.92);
  font-size: 18px;
  line-height: 1.7;
}

.store-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero .store-row {
  justify-content: flex-start;
}

.store-button {
  min-width: 190px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(151, 208, 193, 0.22);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.store-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 20, 18, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.store-google .store-icon {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

.store-apple {
  color: #03110e;
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.store-apple:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: transparent;
}

.store-apple .store-icon {
  background: rgba(3, 17, 14, 0.04);
  border-color: rgba(3, 17, 14, 0.12);
}

.store-apple .store-kicker {
  color: rgba(3, 17, 14, 0.7);
}

.store-apple .store-title {
  color: #03110e;
}

.store-text {
  display: grid;
  gap: 2px;
}

.store-button-primary {
  color: #03110e;
  background: linear-gradient(135deg, #8af2d6 0%, #61c8ae 100%);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(97, 200, 174, 0.2);
}

.store-button-primary:hover {
  background: linear-gradient(135deg, #a1f6df 0%, #72d6bf 100%);
  border-color: transparent;
}

.store-button-primary .store-icon {
  border-color: rgba(3, 17, 14, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

.store-button-primary.store-google .store-icon {
  background: #ffffff;
  border-color: rgba(3, 17, 14, 0.16);
}

.store-button-primary .store-kicker {
  color: rgba(3, 17, 14, 0.72);
}

.store-button-primary .store-title {
  color: #03110e;
}

.store-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(151, 208, 193, 0.34);
}

.store-kicker {
  font-size: 12px;
  color: rgba(181, 215, 208, 0.92);
}

.store-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.hero-proof {
  margin: 14px 0 0;
  color: rgba(215, 255, 245, 0.82);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.scroll-hint {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(181, 215, 208, 0.92);
  font-size: 14px;
}

.scroll-hint:hover {
  color: var(--text);
}

.phone-stack {
  position: relative;
  width: min(540px, 100%);
  margin-left: auto;
  margin-right: -20px;
  height: 660px;
}

.phone-slot {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(151, 208, 193, 0.14);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.phone-slot:hover {
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  border-color: rgba(151, 208, 193, 0.28);
}

.phone-slot-left {
  left: 0;
  top: 70px;
  width: 250px;
  height: 520px;
  transform: rotate(-7deg);
  opacity: 0.94;
  z-index: 1;
}

.phone-slot-center {
  left: 150px;
  top: 16px;
  width: 255px;
  height: 590px;
  z-index: 3;
}

.phone-slot-right {
  right: -18px;
  top: 72px;
  width: 250px;
  height: 520px;
  transform: rotate(7deg);
  opacity: 0.94;
  z-index: 2;
}

.store-link {
  color: rgba(181, 215, 208, 0.92);
  font-size: 14px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px auto 0;
  width: min(980px, 100%);
}

.hero-metrics div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metrics strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: rgba(181, 215, 208, 0.92);
  font-size: 13px;
}

.hero-showcase {
  margin-top: 34px;
}

.media-slot {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 208, 193, 0.22);
  background:
    radial-gradient(circle at top left, rgba(97, 200, 174, 0.18), transparent 42%),
    radial-gradient(circle at bottom right, rgba(66, 132, 255, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-slot-compact {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.slot-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 20, 18, 0.68);
  color: rgba(181, 215, 208, 0.92);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--primary-soft);
  color: #d7fff5;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hero h1,
.section h2,
.simple-hero h1 {
  margin: 0 0 16px;
  line-height: 1.04;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(40px, 6.4vw, 70px);
  letter-spacing: -0.04em;
}

.hero-line {
  display: block;
}

.hero p,
.simple-hero p,
.section-copy,
.faq-answer,
.support-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  font-size: 18px;
  max-width: 640px;
}

.hero-links {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(151, 208, 193, 0.22);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: rgba(215, 255, 245, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.hero-link:hover {
  border-color: rgba(151, 208, 193, 0.34);
  color: var(--text);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #03110e;
  background: linear-gradient(135deg, #8af2d6 0%, #61c8ae 100%);
  box-shadow: 0 14px 30px rgba(97, 200, 174, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.hero-card,
.feature-card,
.info-card,
.support-card,
.faq-item,
.preview-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 22px;
  border-radius: var(--radius-xl);
}

.hero-card img {
  border-radius: calc(var(--radius-xl) - 8px);
}

.hero-card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-card-meta div,
.stat-strip div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-card-meta strong,
.stat-strip strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.hero-card-meta span,
.stat-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 16px auto 0;
}

.section {
  padding: 36px 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-kicker {
  display: none;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #90dec8;
}

.section h2,
.simple-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.04em;
}

.cards-3,
.cards-2,
.faq-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.info-card,
.support-card,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: #9ff4df;
  font-size: 22px;
  margin-bottom: 14px;
}

.feature-card h3,
.support-card h3,
.faq-item h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  color: var(--muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.preview-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.tile {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(151, 208, 193, 0.18);
  background: rgba(14, 33, 29, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.tile-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 30% 20%, rgba(97, 200, 174, 0.16), transparent 48%),
    radial-gradient(circle at 70% 80%, rgba(66, 132, 255, 0.12), transparent 52%),
    rgba(255, 255, 255, 0.02);
  position: relative;
}

.tile-image,
.media-image,
.phone-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.phone-image {
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.tile-body {
  padding: 22px 24px 24px;
}

.tile-kicker {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #90dec8;
}

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

.step-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(151, 208, 193, 0.18);
  background: rgba(14, 33, 29, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: rgba(163, 244, 225, 0.95);
  border: 1px solid rgba(151, 208, 193, 0.28);
  background: rgba(97, 200, 174, 0.12);
  transform: rotate(-6deg);
  margin-bottom: 16px;
}

.download-banner {
  margin-top: 22px;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid rgba(151, 208, 193, 0.18);
  background:
    radial-gradient(circle at top left, rgba(97, 200, 174, 0.16), transparent 55%),
    rgba(14, 33, 29, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.download-banner h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.compare-scroll {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 208, 193, 0.18);
  background: rgba(14, 33, 29, 0.66);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.compare-table th,
.compare-table td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
  text-align: left;
}

.compare-table thead th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(181, 215, 208, 0.92);
  background: rgba(255, 255, 255, 0.02);
}

.compare-table thead th.compare-gymie {
  color: rgba(244, 255, 252, 0.96);
  background: rgba(138, 242, 214, 0.14);
}

.compare-feature {
  width: 26%;
  color: var(--text);
  font-weight: 700;
}

.compare-common {
  width: 37%;
  color: rgba(181, 215, 208, 0.92);
}

.compare-gymie {
  width: 37%;
  color: var(--text);
  background: rgba(138, 242, 214, 0.16);
  border-left: 1px solid rgba(138, 242, 214, 0.22);
  font-weight: 600;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tbody tr:hover td.compare-gymie {
  background: rgba(138, 242, 214, 0.2);
}

.compare-cards {
  display: none;
  gap: 14px;
}

.compare-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 208, 193, 0.18);
  background: rgba(14, 33, 29, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 18px;
}

.compare-card-title {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.compare-card-grid {
  display: grid;
  gap: 12px;
}

.compare-card-side {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.02);
}

.compare-card-side-gymie {
  border-color: rgba(97, 200, 174, 0.22);
  background: rgba(138, 242, 214, 0.16);
}

.compare-card-label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(181, 215, 208, 0.92);
}

.compare-card-side-gymie .compare-card-label {
  color: rgba(215, 255, 245, 0.92);
}

.compare-card-copy {
  margin: 0;
  color: rgba(181, 215, 208, 0.92);
  line-height: 1.6;
}

.compare-card-side-gymie .compare-card-copy {
  color: rgba(244, 255, 252, 0.94);
}

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

.faq-section {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 208, 193, 0.18);
  background: rgba(14, 33, 29, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 22px;
}

.faq-label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(144, 222, 200, 0.9);
  font-weight: 700;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

details.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

details.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

details.faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(181, 215, 208, 0.92);
  flex: 0 0 auto;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: rgba(97, 200, 174, 0.12);
  color: #d7fff5;
}

.faq-answer {
  padding: 0 18px 16px;
  color: rgba(181, 215, 208, 0.92);
  line-height: 1.7;
}

.cta-slab {
  padding: 64px 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(97, 200, 174, 0.22), transparent 52%),
    radial-gradient(circle at 75% 80%, rgba(66, 132, 255, 0.14), transparent 56%),
    rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-slab-inner {
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 208, 193, 0.18);
  background: rgba(14, 33, 29, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 34px 24px;
}

.cta-slab-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.cta-slab-inner p {
  margin: 0 auto 18px;
  max-width: 860px;
  color: rgba(181, 215, 208, 0.92);
  line-height: 1.7;
}

.preview-copy {
  padding: 22px 24px 24px;
}

.support-card a,
.faq-item a,
.footer a,
.legal-links a {
  color: #9ce6d3;
}

.simple-hero {
  padding: 72px 0 24px;
}

.simple-hero p {
  max-width: 760px;
  font-size: 17px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 14px;
}

.notice {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.footer {
  padding: 36px 0 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-col {
  color: #97b8b1;
  font-size: 14px;
  line-height: 1.6;
  display: grid;
  gap: 8px;
}

.footer-col strong {
  color: var(--text);
  font-size: 16px;
}

.footer-col h3 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(181, 215, 208, 0.92);
}

.footer-col p {
  margin: 0;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-copy {
  color: #97b8b1;
  font-size: 14px;
  line-height: 1.6;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .topbar {
    backdrop-filter: none;
    background: rgba(8, 20, 18, 0.96);
  }

  .hero-card,
  .feature-card,
  .info-card,
  .support-card,
  .faq-item,
  .preview-card,
  .tile,
  .step-card,
  .download-banner,
  .compare-scroll {
    backdrop-filter: none;
    background: rgba(16, 40, 35, 0.94);
  }

  .slot-label {
    backdrop-filter: none;
    background: rgba(8, 20, 18, 0.92);
  }

  .faq-section,
  .cta-slab-inner {
    backdrop-filter: none;
    background: rgba(16, 40, 35, 0.94);
  }
}

@media (max-width: 960px) {
  section[id] {
    scroll-margin-top: 76px;
  }

  .hero-links {
    display: none;
  }

  body.scrolled .topbar-inner {
    min-height: 56px;
  }

  body.scrolled .brand img {
    height: 30px;
  }

  body.scrolled .topbar-download {
    min-height: 36px;
    padding: 0 14px;
  }

  .cta-slab {
    padding: 52px 0;
  }

  .cta-slab-inner {
    padding: 28px 20px;
  }

  .hero-grid,
  .cards-3,
  .cards-2,
  .faq-grid,
  .support-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .tiles-3,
  .steps,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .faq-sections,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-sections {
    grid-template-columns: 1fr;
  }

  body::before {
    background-size: 260px 260px;
    opacity: 0.18;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-center {
    padding-top: 70px;
  }

  .topbar-inner {
    min-height: 64px;
    padding: 10px 0;
    align-items: center;
    gap: 12px;
  }

  .brand img {
    height: 34px;
  }

  .topbar-download {
    min-height: 40px;
    padding: 0 16px;
    margin-right: 0;
  }

  .topbar-actions .lang-switch {
    display: none;
  }

  .lang-pop {
    display: inline-flex;
  }

  .lang-globe,
  .nav-toggle {
    border: none;
    background: transparent;
  }

  body.nav-open .lang-pop {
    display: none;
  }

  .lang-switch {
    padding: 4px;
  }

  .lang-btn {
    min-height: 30px;
    padding: 0 10px;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: min(92vw, 280px);
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 20, 18, 0.96);
    position: absolute;
    right: 0;
    top: 56px;
    box-shadow: var(--shadow);
  }

  .nav-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
  }

  .nav-aux {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .nav-aux .lang-switch {
    width: 100%;
    justify-content: space-between;
  }

  .nav-aux .lang-btn {
    flex: 1 1 auto;
    padding: 0 10px;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .phone-stack {
    margin: 26px auto 0;
    width: min(420px, 100%);
    height: 520px;
  }

  .phone-slot-left {
    left: 0;
    top: 72px;
    width: 190px;
    height: 400px;
  }

  .phone-slot-center {
    left: 108px;
    top: 20px;
    width: 205px;
    height: 470px;
  }

  .phone-slot-right {
    right: 0;
    top: 82px;
    width: 190px;
    height: 400px;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .compare-scroll {
    display: none;
  }

  .compare-cards {
    display: grid;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .section {
    padding: 28px 0;
  }

  .section-head {
    margin-bottom: 16px;
  }

  .section-kicker {
    font-size: 12px;
    margin: 0 0 8px;
  }

  .section h2,
  .simple-hero h1 {
    font-size: clamp(30px, 8.6vw, 42px);
    line-height: 1.14;
  }

  .hero {
    padding: 44px 0 28px;
  }

  .eyebrow {
    font-size: 12px;
    padding: 8px 12px;
    display: flex;
    width: fit-content;
    margin: 0 auto 18px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > h1,
  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-links {
    display: none;
  }

  .hero .store-row {
    margin-top: 18px;
    width: 100%;
    justify-content: center;
  }

  .scroll-hint {
    display: none;
  }

  .hero-card,
  .feature-card,
  .info-card,
  .support-card,
  .faq-item,
  .step-card,
  .download-banner {
    padding: 20px;
  }

  .feature-card h3,
  .support-card h3,
  .faq-item h3,
  .info-card h3 {
    font-size: 20px;
  }

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

  .cta-slab .store-button {
    width: 100%;
  }

  .store-button {
    min-width: 0;
    padding: 12px 16px;
  }

  .hero .store-button {
    width: min(340px, 100%);
    min-height: 62px;
    padding: 18px 22px;
    border-radius: 18px;
    justify-content: center;
  }

  .hero .store-text {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
  }

  .store-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }

  .hero .store-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .hero .store-kicker {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero .store-title {
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .store-title {
    font-size: 15px;
  }

  .cta-slab {
    padding: 44px 0;
  }

  .cta-slab-inner {
    padding: 22px 18px;
  }

  .cta-slab-inner p {
    margin-bottom: 14px;
  }

  .steps {
    gap: 14px;
  }

  .step-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .media-slot {
    aspect-ratio: 16 / 11;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 54px);
  }

  .hero-proof {
    font-size: 13px;
  }

  .phone-stack {
    width: 100%;
    margin-right: 0;
    height: 430px;
  }

  .phone-slot-left,
  .phone-slot-right {
    width: 148px;
    height: 312px;
    top: 76px;
  }

  .phone-slot-center {
    left: 50%;
    width: 170px;
    height: 390px;
    transform: translateX(-50%);
  }

  .phone-slot-left {
    left: 0;
  }

  .phone-slot-right {
    right: 0;
  }

  .tile-media {
    aspect-ratio: 16 / 10;
  }

  .tile-body {
    padding: 16px 18px 18px;
  }

  .tile-kicker {
    margin: 0 0 10px;
    font-size: 12px;
  }

  .tile-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }

  .tile-body .section-copy {
    margin: 0;
  }

  .tile .list {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tile .list li {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    line-height: 1.3;
    font-size: 13px;
    position: static;
    color: rgba(181, 215, 208, 0.92);
  }

  .tile .list li::before {
    display: none;
  }
}
