/* The app's actual brand font is self-hosted so the marketing site matches the product. */
@font-face { font-family: "Open Sans"; src: url("/fonts/opensans-regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Open Sans"; src: url("/fonts/opensans-semibold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Open Sans"; src: url("/fonts/opensans-bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --lw-bg: #0a0a0d;
  --lw-card: #15151a;
  --lw-card-elevated: #1c1c22;
  --lw-stroke: #26262e;
  --lw-field: #1c1c22;
  --lw-text-hi: #ffffff;
  --lw-text-muted: #8a8a95;
  --lw-text-faint: #5a5a66;
  --lw-crimson: #e11d2e;
  --lw-crimson-bright: #ff3347;
  --lw-crimson-deep: #b3121f;
  --lw-success: #2ecc71;
  --lw-gold: #ffc83d;
  --lw-exercise-tint: rgba(225, 29, 46, 0.2);
  --lw-ring-track: #2a2a33;
  --lw-radius-card: 20px;
  --lw-radius-hero: 24px;
  --lw-radius-pill: 26px;
  --lw-radius-sm: 12px;
  --lw-grad-hero: linear-gradient(135deg, #ff2d40 0%, #b3121f 100%);
  --lw-grad-start: linear-gradient(90deg, #ff2d40 0%, #c20d1c 100%);
  --lw-grad-gold: linear-gradient(135deg, #ffc83d 0%, #ff9f1c 100%);
  --lw-shadow-card: 0 6px 18px rgba(0, 0, 0, 0.4);
  --lw-shadow-hero: 0 10px 26px rgba(225, 29, 46, 0.5);
  --lw-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  background:
    radial-gradient(900px 520px at 85% -6%, rgba(255,45,64,0.16), transparent 60%),
    radial-gradient(800px 520px at 0% 0%, rgba(194,13,28,0.12), transparent 55%),
    var(--lw-bg);
  color: var(--lw-text-hi);
  font-family: var(--lw-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
a:focus-visible, summary:focus-visible, select:focus-visible {
  outline: 2px solid var(--lw-crimson-bright);
  outline-offset: 3px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 44px; }
section { padding: 92px 0; }
section[id] { scroll-margin-top: 68px; }
.sect-line { border-top: 1px solid var(--lw-stroke); }
h1 { font-size: clamp(38px, 6vw, 62px); line-height: 1.04; letter-spacing: -1.4px; font-weight: 700; }
h2 { font-size: clamp(30px, 4.4vw, 40px); line-height: 1.1; letter-spacing: -1px; font-weight: 700; }

.eyebrow { font-weight: 600; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--lw-text-muted); }
.eyebrow.hot { color: var(--lw-crimson-bright); }
.lead { font-size: clamp(16px, 1.7vw, 18px); line-height: 1.6; color: var(--lw-text-muted); }
.sub { font-size: 16px; line-height: 1.6; color: var(--lw-text-muted); }
.micro { font-size: 13px; color: var(--lw-text-faint); }

.btn-grad, .btn-ghost, .btn-solid, .btn-invert {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; cursor: pointer; white-space: nowrap;
  border-radius: var(--lw-radius-pill); transition: transform .08s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn-grad { background: var(--lw-grad-start); color: #fff; font-size: 15px; padding: 13px 24px; border: 0; box-shadow: 0 8px 22px rgba(225,29,46,.34); }
.btn-grad:hover { filter: brightness(1.07); }
.btn-grad svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-ghost { color: var(--lw-text-hi); font-size: 15px; padding: 12px 22px; border: 1px solid var(--lw-stroke); background: transparent; }
.btn-ghost:hover { border-color: var(--lw-text-muted); }
.btn-solid { background: var(--lw-crimson); color: #fff; font-size: 14px; padding: 10px 20px; border: 0; }
.btn-solid:hover { background: var(--lw-crimson-bright); }
.btn-invert { background: #fff; color: var(--lw-crimson-deep); font-size: 16px; font-weight: 700; padding: 17px 32px; border: 0; box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.btn-invert:hover { filter: brightness(1.03); }
@media (prefers-reduced-motion: no-preference) {
  .btn-grad:active, .btn-ghost:active, .btn-solid:active, .btn-invert:active { transform: translateY(1px); }
}

header.nav {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px);
  background: rgba(10,10,13,.78);
  background: color-mix(in srgb, var(--lw-bg) 78%, transparent);
  border-bottom: 1px solid var(--lw-stroke);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; min-width: 0; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 17px; flex: 0 0 auto; }
.logo { width: 34px; height: 34px; border-radius: 10px; background: var(--lw-grad-hero); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(214,31,43,.42); }
.logo svg { width: 20px; height: 20px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--lw-text-muted); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--lw-text-hi); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.lang { background: var(--lw-field); border: 1px solid var(--lw-stroke); color: var(--lw-text-muted); border-radius: var(--lw-radius-sm); padding: 9px 8px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.lang:focus { border-color: var(--lw-crimson); }

.hero { position: relative; padding: 84px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.hero-glow { position: absolute; right: -80px; top: -120px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(closest-side, rgba(225,29,46,.14), transparent); pointer-events: none; z-index: 0; }
.hero-copy { position: relative; z-index: 1; max-width: 560px; }
.hero-copy h1 { margin: 18px 0 20px; }
.hero-copy .lead { max-width: 520px; text-wrap: pretty; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin: 30px 0 24px; }
.hero-copy .micro { margin: 0; }

.hero-stage { position: relative; z-index: 1; justify-self: end; padding: 30px 92px 34px 128px; }
.hero-shot { display: block; width: 330px; height: auto; border-radius: 32px; border: 1px solid var(--lw-stroke); box-shadow: 0 30px 60px rgba(0,0,0,.5); position: relative; z-index: 1; }
.float-card { position: absolute; z-index: 2; background: var(--lw-card); border: 1px solid var(--lw-stroke); border-radius: 18px; box-shadow: var(--lw-shadow-card); padding: 13px 17px; }
.fc-goal { left: 0; top: 58px; display: flex; align-items: center; gap: 13px; }
.fc-streak { left: 18px; bottom: 74px; }
.fc-pr { right: 0; top: 98px; display: flex; flex-direction: column; gap: 7px; max-width: 196px; }
.fc-sync { right: 22px; bottom: 34px; display: flex; align-items: center; gap: 10px; }
.fc-t { font-weight: 700; font-size: 14px; }
.fc-s { font-size: 12px; color: var(--lw-text-muted); }
.fc-line { font-size: 13px; font-weight: 700; }
.fc-sub { font-size: 11.5px; color: var(--lw-text-muted); }
.fc-sync span:last-child { font-size: 12.5px; font-weight: 600; }
.ring-wrap { position: relative; width: 64px; height: 64px; flex: 0 0 auto; }
.ring-wrap svg { width: 64px; height: 64px; display: block; }
.ring-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; }
.stat-v { font-weight: 700; font-size: 30px; line-height: 1.05; }
.stat-row { display: flex; align-items: center; gap: 9px; }
.stat-row .fc-ic { color: var(--lw-crimson-bright); display: inline-flex; }
.stat-c { font-size: 12px; color: var(--lw-text-muted); }
.badge-gold { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 12px; font-weight: 700; color: #7a5800; background: var(--lw-grad-gold); border-radius: 999px; padding: 4px 10px; }
.badge-gold svg { width: 13px; height: 13px; }
.fc-ic svg { width: 16px; height: 16px; }
.fc-ic.ok { color: var(--lw-success); }

.features-head { max-width: 560px; }
.features-head h2 { margin: 12px 0 12px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.card { background: var(--lw-card); border: 1px solid var(--lw-stroke); border-radius: var(--lw-radius-card); padding: 24px; }
.card-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--lw-exercise-tint); color: var(--lw-crimson-bright); display: grid; place-items: center; margin-bottom: 15px; }
.card-ic svg { width: 21px; height: 21px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.card p { color: var(--lw-text-muted); font-size: 14px; line-height: 1.55; }

.split { display: grid; grid-template-columns: 1fr auto; gap: 72px; align-items: center; }
.split.rev { grid-template-columns: auto 1fr; }
.split.rev .copy { order: 2; }
.split .copy h2 { margin: 12px 0 14px; }
.split .copy .sub { max-width: 480px; }
.rule-list { list-style: none; display: grid; gap: 16px; margin-top: 26px; max-width: 500px; }
.rule-list.two { grid-template-columns: 1fr 1fr; gap: 16px 34px; }
.rule-list li { display: flex; gap: 14px; align-items: stretch; font-size: 15px; line-height: 1.5; color: var(--lw-text-muted); }
.rule-list li::before { content: ""; flex: 0 0 auto; width: 3px; border-radius: 2px; background: var(--lw-crimson); }
.rule-list b { color: var(--lw-text-hi); font-weight: 600; }
.shot-side { display: block; width: 320px; height: auto; border-radius: 32px; border: 1px solid var(--lw-stroke); box-shadow: var(--lw-shadow-card); }

.wear-row { display: flex; gap: 52px; align-items: flex-start; margin-top: 44px; flex-wrap: wrap; }
.wear-fig { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 190px; flex: 0 0 auto; }
.wear-img { display: block; width: 190px; height: auto; aspect-ratio: 1 / 1; border-radius: 50%; border: 6px solid var(--lw-card-elevated); box-shadow: var(--lw-shadow-card); object-fit: cover; background: #000; }
.wear-cap { font-size: 13px; color: var(--lw-text-muted); text-align: center; }
.wear-note { margin-top: 40px; font-size: 14px; line-height: 1.6; color: var(--lw-text-muted); max-width: 700px; }

.screens-head h2 { margin: 12px 0 0; }
.gallery { display: flex; gap: 28px; margin-top: 44px; align-items: flex-start; }
.g-item { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; }
.g-shot { display: block; width: 280px; height: auto; border-radius: 26px; border: 1px solid var(--lw-stroke); box-shadow: var(--lw-shadow-card); }
.g-cap { font-size: 13px; color: var(--lw-text-muted); }
.g-aside { align-self: center; padding-left: 8px; max-width: 300px; }
.g-aside p { font-size: 15px; line-height: 1.6; color: var(--lw-text-muted); margin-bottom: 18px; }
.g-aside a { font-weight: 600; font-size: 14px; color: var(--lw-crimson-bright); }

.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 72px; }
.faq-aside h2 { margin: 12px 0 14px; }
.faq-aside p { font-size: 15px; color: var(--lw-text-muted); line-height: 1.6; }
.faq-aside a { color: var(--lw-crimson-bright); font-weight: 600; }
.faq-list { display: block; }
.faq-item { border-bottom: 1px solid var(--lw-stroke); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 0; font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--lw-text-faint); font-size: 22px; font-weight: 400; line-height: 1; flex: 0 0 auto; }
@media (prefers-reduced-motion: no-preference) { .faq-plus { transition: transform .15s ease; } }
.faq-item[open] .faq-plus { transform: rotate(45deg); color: var(--lw-crimson-bright); }
.faq-item .a { padding: 0 0 20px; color: var(--lw-text-muted); font-size: 14px; line-height: 1.6; max-width: 660px; }

.banner { background: var(--lw-grad-hero); border-radius: var(--lw-radius-hero); padding: 64px 72px; display: flex; align-items: center; justify-content: space-between; gap: 32px; box-shadow: var(--lw-shadow-hero); }
.banner-copy h2 { color: #fff; margin: 0 0 10px; }
.banner-copy p { margin: 0; font-size: 16px; color: rgba(255,255,255,.85); }
.banner .btn-invert { flex: 0 0 auto; }

footer { border-top: 1px solid var(--lw-stroke); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px 28px; padding: 30px 0; font-size: 13px; color: var(--lw-text-faint); }
.foot-brand { font-weight: 700; color: var(--lw-text-muted); }
.foot-links { display: flex; flex-wrap: wrap; gap: 26px; }
.foot-links a:hover { color: var(--lw-text-hi); }
.foot-legal { display: flex; gap: 8px; flex-wrap: wrap; }

@media (max-width: 1140px) { .nav-links { gap: 20px; } }
@media (max-width: 1100px) {
  .wrap { padding: 0 32px; }
  .hero-stage { padding: 26px 60px 30px 96px; }
  .faq-grid { grid-template-columns: 280px 1fr; gap: 48px; }
}
@media (max-width: 1020px) { .nav-links { display: none; } }
@media (max-width: 900px) {
  section { padding: 68px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-stage { justify-self: center; }
  .cards { grid-template-columns: 1fr 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .copy, .split .copy { order: 0; }
  .shot-side { margin: 0 auto; }
  .rule-list, .split .copy .sub { max-width: none; }
  .rule-list.two { grid-template-columns: 1fr; }
  .gallery { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .g-item { scroll-snap-align: start; }
  .g-aside { order: -1; align-self: flex-start; padding-left: 0; max-width: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .banner { flex-direction: column; align-items: flex-start; padding: 48px; }
  .wear-note { max-width: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .cards { grid-template-columns: 1fr; }
  .hero-stage { padding: 20px 24px 24px; }
  .hero-shot { width: 280px; }
  .fc-goal, .fc-sync { display: none; }
  .fc-pr { right: -6px; top: 40px; }
  .fc-streak { left: -6px; bottom: 40px; }
  .banner { padding: 40px 28px; }
  .banner-copy h2 { font-size: 30px; }
  .wear-row { gap: 32px; justify-content: center; }
}
@media (max-width: 520px) {
  header.nav .wrap { padding: 0 14px; }
  .nav-inner { gap: 8px; height: 60px; }
  .brand { gap: 6px; }
  .brand .brand-name {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .nav-cta { gap: 8px; }
  .lang { padding: 8px 5px; font-size: 12px; }
  .nav-cta .btn-solid { padding: 9px 14px; font-size: 13px; }
}
