:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #171719;
  --muted: #686b73;
  --line: rgba(23, 23, 25, 0.1);
  --gym: #6b73db;
  --gym-2: #e06e67;
  --nutrition: #2b7ec2;
  --nutrition-2: #39a96b;
  --protein: #ff3b7f;
  --calories: #ef4444;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow: 0 24px 70px rgba(30, 34, 45, 0.12);
  --shadow-soft: 0 16px 44px rgba(30, 34, 45, 0.08);
  font-family: Inter, ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101114;
    --surface: rgba(29, 30, 35, 0.76);
    --surface-strong: #1d1e23;
    --ink: #f5f5f7;
    --muted: #a9adb8;
    --line: rgba(255, 255, 255, 0.12);
    --gym: #858bff;
    --gym-2: #f07d76;
    --nutrition: #58a8ec;
    --nutrition-2: #57c989;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.26);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(107, 115, 219, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(57, 169, 107, 0.12), transparent 30rem),
    linear-gradient(180deg, #fbfbfd 0%, var(--bg) 42%, #ffffff 100%);
  color: var(--ink);
}

@media (prefers-color-scheme: dark) {
  body {
    background:
      radial-gradient(circle at 12% 0%, rgba(133, 139, 255, 0.18), transparent 28rem),
      radial-gradient(circle at 88% 10%, rgba(87, 201, 137, 0.14), transparent 30rem),
      linear-gradient(180deg, #17181d 0%, var(--bg) 48%, #0b0c0f 100%);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(251, 251, 253, 0.78);
  border-bottom: 1px solid rgba(23, 23, 25, 0.07);
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(16, 17, 20, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gym), var(--nutrition-2));
  box-shadow: 0 10px 26px rgba(43, 126, 194, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(23, 23, 25, 0.72);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--ink);
  background: rgba(23, 23, 25, 0.06);
}

@media (prefers-color-scheme: dark) {
  .nav-links {
    color: rgba(245, 245, 247, 0.72);
  }

  .nav-links a:hover,
  .nav-links .active {
    background: rgba(255, 255, 255, 0.09);
  }
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.hero {
  min-height: calc(100svh - 72px);
  padding: 64px 0 40px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: 52px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(23, 23, 25, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(23, 23, 25, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (prefers-color-scheme: dark) {
  .kicker {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(245, 245, 247, 0.72);
  }
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.detail-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(23, 23, 25, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(23, 23, 25, 0.08);
}

@media (prefers-color-scheme: dark) {
  .button {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }
}

.button.primary {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, var(--gym), var(--nutrition));
}

.button.gym {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, var(--gym), var(--gym-2));
}

.button.nutrition {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, var(--nutrition), var(--nutrition-2));
}

.app-stack {
  min-height: 650px;
  position: relative;
}

.phone-card {
  position: absolute;
  width: min(46%, 260px);
  padding: 10px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

@media (prefers-color-scheme: dark) {
  .phone-card {
    background: rgba(34, 35, 41, 0.84);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.phone-card img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  border-radius: 28px;
}

.phone-card.one {
  left: 2%;
  top: 44px;
  transform: rotate(-5deg);
}

.phone-card.two {
  right: 10%;
  top: 0;
  transform: rotate(4deg);
}

.phone-card.three {
  left: 25%;
  bottom: 10px;
  transform: rotate(1deg);
}

.floating-metric {
  position: absolute;
  right: 0;
  bottom: 96px;
  width: min(46%, 260px);
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

@media (prefers-color-scheme: dark) {
  .floating-metric {
    background: rgba(28, 29, 35, 0.84);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.metric-label {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-value {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.metric-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: rgba(23, 23, 25, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (prefers-color-scheme: dark) {
  .eyebrow {
    color: rgba(245, 245, 247, 0.56);
  }
}

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

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

.app-card,
.feature-card,
.legal-card,
.privacy-card {
  border: 1px solid rgba(23, 23, 25, 0.08);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

@media (prefers-color-scheme: dark) {
  .app-card,
  .feature-card,
  .legal-card,
  .privacy-card {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.app-card {
  overflow: hidden;
}

.app-card-media {
  min-height: 430px;
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 115, 219, 0.14), rgba(224, 110, 103, 0.1));
}

.app-card.nutrition .app-card-media {
  background: linear-gradient(135deg, rgba(43, 126, 194, 0.14), rgba(57, 169, 107, 0.12));
}

@media (prefers-color-scheme: dark) {
  .app-card-media {
    background: linear-gradient(135deg, rgba(133, 139, 255, 0.2), rgba(240, 125, 118, 0.14));
  }

  .app-card.nutrition .app-card-media {
    background: linear-gradient(135deg, rgba(88, 168, 236, 0.2), rgba(87, 201, 137, 0.16));
  }
}

.app-card-media img {
  width: min(76%, 280px);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 22px 52px rgba(23, 23, 25, 0.18);
}

.app-card-body,
.feature-card,
.privacy-card,
.legal-card {
  padding: 24px;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.app-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(23, 23, 25, 0.12);
}

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

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(23, 23, 25, 0.72);
  background: rgba(23, 23, 25, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (prefers-color-scheme: dark) {
  .pill {
    color: rgba(245, 245, 247, 0.74);
    background: rgba(255, 255, 255, 0.08);
  }
}

.feature-card p,
.privacy-card p,
.legal-card p,
.app-card p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gym), var(--nutrition));
  font-weight: 900;
}

.icon-box.gym {
  background: linear-gradient(135deg, var(--gym), var(--gym-2));
}

.icon-box.nutrition {
  background: linear-gradient(135deg, var(--nutrition), var(--nutrition-2));
}

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

.detail-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.product-hero-grid {
  gap: 64px;
}

.product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.product-proof span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(23, 23, 25, 0.06);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-hero-media {
  position: relative;
  min-height: 660px;
}

.product-hero-media::before {
  content: "";
  position: absolute;
  inset: 11% 6% 9%;
  border-radius: 46px;
  opacity: 0.36;
  filter: blur(34px);
  background: linear-gradient(135deg, var(--gym), var(--gym-2));
}

.product-hero-media.nutrition-glow::before {
  background: linear-gradient(135deg, var(--nutrition), var(--nutrition-2));
}

.hero-screen {
  position: absolute;
  width: min(46%, 270px);
  z-index: 1;
}

.hero-screen.main {
  left: 8%;
  top: 6%;
  animation: floatHero 7s ease-in-out infinite;
}

.hero-screen.side {
  right: 4%;
  top: 16%;
  animation: floatHero 8s ease-in-out 0.8s infinite reverse;
}

.hero-stat-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 10%;
  width: min(58%, 320px);
  padding: 18px;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(107, 115, 219, 0.92), rgba(224, 110, 103, 0.9));
  box-shadow: var(--shadow);
}

.hero-stat-card.nutrition-card {
  background: linear-gradient(135deg, rgba(43, 126, 194, 0.94), rgba(57, 169, 107, 0.9));
}

.hero-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stat-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.hero-stat-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  line-height: 1.45;
}

.screen {
  padding: 9px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

@media (prefers-color-scheme: dark) {
  .screen {
    background: rgba(34, 35, 41, 0.84);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.screen img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  border-radius: 27px;
}

.screen.offset {
  margin-top: 52px;
}

.product-strip {
  padding-top: 36px;
}

.product-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

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

.strip-metrics div {
  min-height: 132px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 23, 25, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.strip-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.strip-metrics strong {
  display: block;
  margin-top: 12px;
  font-size: 1.3rem;
  line-height: 1.08;
}

.product-feature {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-feature::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.12;
  background: linear-gradient(135deg, var(--gym), var(--nutrition-2));
}

.product-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 115, 219, 0.28);
  box-shadow: var(--shadow);
}

.feature-showcase {
  padding-top: 52px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 48px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: linear-gradient(135deg, #343a9f, #d2635d);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.nutrition-showcase .showcase-grid {
  background: linear-gradient(135deg, #1f6da9, #299968);
}

.showcase-copy .lead,
.showcase-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.showcase-copy .kicker,
.product-cta .kicker {
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.showcase-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  transform: rotate(2deg);
}

.showcase-screens .screen {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.dark-metrics .mini-metric {
  background: rgba(255, 255, 255, 0.14);
}

.insight-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 23, 25, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.insight-band p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.notice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 23, 25, 0.08);
  background: linear-gradient(135deg, rgba(107, 115, 219, 0.12), rgba(224, 110, 103, 0.09));
  box-shadow: var(--shadow-soft);
}

.notice-card.nutrition-notice {
  background: linear-gradient(135deg, rgba(43, 126, 194, 0.12), rgba(57, 169, 107, 0.1));
}

.notice-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.notice-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.band-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.band-pills span {
  padding: 10px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gym), var(--gym-2));
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.nutrition-band .band-pills span {
  background: linear-gradient(135deg, var(--nutrition), var(--nutrition-2));
}

.product-cta {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: linear-gradient(135deg, var(--gym), var(--gym-2));
  box-shadow: var(--shadow);
}

.product-cta.nutrition-cta {
  background: linear-gradient(135deg, var(--nutrition), var(--nutrition-2));
}

.product-cta h2 {
  max-width: 850px;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

.gradient-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: linear-gradient(135deg, var(--gym), var(--gym-2));
  box-shadow: 0 24px 70px rgba(107, 115, 219, 0.22);
}

.gradient-panel.nutrition {
  background: linear-gradient(135deg, var(--nutrition), var(--nutrition-2));
  box-shadow: 0 24px 70px rgba(43, 126, 194, 0.2);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mini-metric {
  min-height: 76px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-metric strong {
  display: block;
  margin-top: 7px;
  font-size: 1.35rem;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 23, 25, 0.08);
}

@media (prefers-color-scheme: dark) {
  .timeline-item {
    background: rgba(29, 30, 35, 0.74);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .timeline-number {
    color: #101114;
    background: #f5f5f7;
  }

  .product-proof span,
  .strip-metrics div,
  .insight-band {
    border-color: rgba(255, 255, 255, 0.1);
  }

  .product-proof span {
    background: rgba(255, 255, 255, 0.08);
  }
}

.timeline-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: #171719;
  font-weight: 900;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.legal-layout h1 {
  max-width: 100%;
  font-size: clamp(3.4rem, 5.5vw, 5rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.legal-card {
  margin-bottom: 16px;
}

.legal-card ul,
.legal-card ol,
.feature-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.support-hero {
  padding-top: 72px;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 23, 25, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.support-panel h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6.6vw, 6rem);
  overflow-wrap: anywhere;
}

.support-panel.compact {
  grid-template-columns: minmax(0, 1fr) auto;
}

.support-contact {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(107, 115, 219, 0.13), rgba(57, 169, 107, 0.12));
  border: 1px solid rgba(23, 23, 25, 0.08);
}

.support-contact p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.support-mail {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.support-app-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 23, 25, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.support-app-card h2 {
  margin-bottom: 4px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.support-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.support-list > div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(23, 23, 25, 0.05);
}

.support-list h3 {
  font-size: 1.05rem;
}

.support-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

@media (prefers-color-scheme: dark) {
  .support-panel,
  .support-app-card {
    border-color: rgba(255, 255, 255, 0.1);
  }

  .support-contact {
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(133, 139, 255, 0.17), rgba(87, 201, 137, 0.13));
  }

  .support-list > div {
    background: rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 920px) {
  .support-panel,
  .support-panel.compact,
  .support-grid,
  .product-strip-grid,
  .showcase-grid,
  .insight-band,
  .notice-card {
    grid-template-columns: 1fr;
  }

  .product-hero-media {
    min-height: 560px;
  }

  .strip-metrics {
    grid-template-columns: 1fr;
  }

  .showcase-screens {
    max-width: 620px;
    transform: none;
  }

  .band-pills {
    justify-content: flex-start;
  }
}

.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(23, 23, 25, 0.08);
  color: var(--muted);
}

@media (prefers-color-scheme: dark) {
  .footer {
    border-top-color: rgba(255, 255, 255, 0.09);
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 700;
}

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

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-grid,
  .split,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .app-stack {
    min-height: 560px;
  }

  .app-grid,
  .privacy-grid,
  .feature-grid,
  .feature-grid.three {
    grid-template-columns: 1fr;
  }

  .detail-media {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: min(calc(100vw - 64px), 1160px);
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .app-stack {
    min-height: 445px;
  }

  .phone-card {
    width: 48%;
    padding: 7px;
    border-radius: 26px;
  }

  .phone-card img {
    border-radius: 21px;
  }

  .phone-card.three {
    left: 18%;
  }

  .floating-metric {
    right: 0;
    bottom: 54px;
    width: 52%;
    padding: 14px;
  }

  .app-card-media {
    min-height: 330px;
  }

  .detail-media {
    gap: 10px;
  }

  .screen {
    padding: 6px;
    border-radius: 24px;
  }

  .screen img {
    border-radius: 19px;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .app-card-body,
  .feature-card,
  .privacy-card,
  .legal-card,
  .gradient-panel,
  .support-panel,
  .support-app-card,
  .showcase-grid,
  .insight-band,
  .notice-card,
  .product-cta {
    padding: 20px;
  }

  .product-hero-media {
    min-height: 460px;
  }

  .hero-screen {
    width: 52%;
  }

  .hero-screen.main {
    left: 0;
  }

  .hero-screen.side {
    right: 0;
  }

  .hero-stat-card {
    width: 72%;
    bottom: 2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-screen.main,
  .hero-screen.side {
    animation: none;
  }

  .product-feature {
    transition: none;
  }
}
