:root {
  --ink: #17132f;
  --muted: #625d73;
  --line: #dedbe8;
  --paper: #ffffff;
  --soft: #f5f3fb;
  --violet: #5630c8;
  --violet-dark: #271162;
  --green: #26c89a;
  --green-soft: #e9fbf5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(222, 219, 232, .8);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}
.nav-inner, .wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 20px; font-weight: 800; }
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 650; }
.nav-links a:hover { color: var(--violet); }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: white;
  background-color: #24145f;
  background-image: url("assets/fitness.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.hero-copy { position: relative; max-width: 650px; padding: 96px 0 116px; }
.eyebrow { color: #85f2cd; font-size: 13px; font-weight: 800; text-transform: uppercase; }
h1 { margin: 12px 0 20px; font-size: clamp(48px, 7vw, 82px); line-height: 1.02; letter-spacing: 0; }
.hero p { max-width: 590px; margin: 0 0 30px; color: #ece8fb; font-size: 20px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid transparent; border-radius: 6px; background: var(--green); color: #102a23; font-weight: 800; text-decoration: none; }
.button.secondary { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); color: white; }

.section { padding: 80px 0; }
.section.soft { background: var(--soft); }
.section h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); line-height: 1.15; letter-spacing: 0; }
.lead { max-width: 720px; margin: 0 0 36px; color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: white; }
.feature img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-copy { padding: 22px; }
.feature h3 { margin: 0 0 7px; font-size: 20px; }
.feature p { margin: 0; color: var(--muted); }
.notice { border-left: 4px solid var(--green); padding: 18px 20px; background: var(--green-soft); color: #27584a; }

.page-head { padding: 72px 0 42px; background: var(--violet-dark); color: white; }
.page-head h1 { margin: 0 0 12px; font-size: clamp(38px, 6vw, 60px); }
.page-head p { max-width: 720px; margin: 0; color: #e4ddf7; font-size: 18px; }
.document { max-width: 800px; padding: 56px 0 90px; }
.document h2 { margin: 38px 0 10px; font-size: 23px; }
.document h2:first-of-type { margin-top: 0; }
.document p, .document li { color: #4f4a5d; }
.document ul { padding-left: 22px; }
.updated { color: var(--violet); font-size: 14px; font-weight: 750; }
.support-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: start; }
.support-box { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }
.support-box h2 { margin-top: 0; }

.footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { text-decoration: none; }

@media (max-width: 760px) {
  .nav-inner, .wrap { width: min(100% - 28px, 1120px); }
  .nav-links { gap: 14px; }
  .nav-links a:first-child { display: none; }
  .hero { min-height: 620px; background-position: 62% center; }
  .hero-copy { padding: 74px 0 90px; }
  .hero p { font-size: 17px; }
  .section { padding: 58px 0; }
  .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
