/* ==========================================================================
   Rodagem — landing page (rodagem.site)
   Sem framework: tokens, layout, componentes e mocks ilustrativos.
   ========================================================================== */

/* Fontes auto-hospedadas (SIL Open Font License): Barlow Condensed e Inter. */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/barlow-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/barlow-condensed-800.woff2') format('woff2');
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-variable.woff2') format('woff2');
}

:root {
  --ink: #0b1220;
  --ink-2: #121c33;
  --ink-3: #1b2745;
  --paper: #faf7f2;
  --paper-2: #f2ede5;
  --line: #e5dfd4;
  --text: #121a2b;
  --muted: #5b6473;
  --accent: #ff5a1f;
  --accent-deep: #d94512;
  --accent-soft: #ffe6da;
  --green: #2fbf71;
  --yellow: #f5c518;
  --red: #e5484d;
  --gray: #c3c8d2;
  --on-dark: #eef2f8;
  --on-dark-muted: #9aa6ba;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -20px rgba(11, 18, 32, 0.35);
  --font-display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  font-size: 1.55rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.container.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus {
  left: 8px;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 1.5px solid transparent;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-lg {
  padding: 15px 28px;
  font-size: 1.05rem;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(255, 90, 31, 0.8);
}
.btn-primary:hover {
  background: var(--accent-deep);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--on-dark);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost {
  color: var(--on-dark);
  padding-inline: 14px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--on-dark);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav > a:not(.btn) {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--on-dark-muted);
}
.site-nav > a:not(.btn):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.site-nav .btn-primary {
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 90, 31, 0.22), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(255, 90, 31, 0.12), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--on-dark);
  overflow: hidden;
  padding-block: clamp(56px, 9vw, 120px) clamp(72px, 10vw, 140px);
}
.track-lanes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.lane-highlight {
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  animation: draw 2.4s ease-out 0.3s forwards;
  opacity: 0.9;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 20px;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 12px rgba(255, 90, 31, 0);
  }
}
.hero h1 .accent {
  color: var(--accent);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--on-dark-muted);
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}
.hero-proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--on-dark-muted);
  font-size: 0.92rem;
}
.hero-proof li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
  vertical-align: 2px;
}

/* ------------------------------------------------------------ hero mocks */
.hero-visual {
  position: relative;
  min-height: 600px;
}
.mock {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 18, 32, 0.06);
}
.mock-calendar {
  position: absolute;
  left: 0;
  top: 0;
  width: min(100%, 520px);
  padding: 18px 18px 14px;
}
.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mock-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.mock-sub {
  font-size: 0.78rem;
  color: var(--muted);
}
.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.chip-orange {
  background: var(--accent);
  color: #fff;
}
.chip-green {
  background: #e3f7ec;
  color: #14804a;
}
.chip-gray {
  background: #eef0f4;
  color: #4b5565;
}
.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.day {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dow {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}
.wk {
  border-radius: 8px;
  padding: 7px 7px 6px;
  font-size: 0.68rem;
  line-height: 1.25;
  min-height: 52px;
  background: #f5f6f8;
  border-left: 3px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wk b {
  font-weight: 700;
}
.wk i {
  font-style: normal;
  color: var(--muted);
}
.wk-green {
  border-left-color: var(--green);
  background: #eefaf3;
}
.wk-yellow {
  border-left-color: var(--yellow);
  background: #fff9e3;
}
.wk-red {
  border-left-color: var(--red);
  background: #fdecec;
}
.wk-gray,
.wk-future {
  border-left-color: var(--gray);
}
.wk-future {
  border-style: dashed;
  background: #fff;
  border: 1.5px dashed #d6dae2;
  border-left: 3px dashed var(--gray);
}
.wk-empty {
  background: transparent;
  border-left-color: transparent;
  color: var(--muted);
}
.mock-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 12px;
  font-size: 0.7rem;
  color: var(--muted);
}
.mock-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}
.dot-green {
  background: var(--green);
}
.dot-yellow {
  background: var(--yellow);
}
.dot-red {
  background: var(--red);
}
.dot-gray {
  background: var(--gray);
}

/* phone */
.mock-phone {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 250px;
  padding: 10px;
  border-radius: 34px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(-4deg);
}
.phone-notch {
  width: 70px;
  height: 18px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  margin: -10px auto 4px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #fff;
  border-radius: 26px;
  padding: 16px 14px 14px;
  min-height: 420px;
  margin-top: -18px;
  padding-top: 26px;
  color: var(--text);
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.phone-date {
  white-space: nowrap;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
}
.phone-meta {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.blocks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.74rem;
  background: #f5f6f8;
}
.block span {
  font-weight: 600;
  white-space: nowrap;
}
.block em {
  font-style: normal;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.block-warm {
  background: #fff3ea;
}
.block-run {
  background: var(--accent);
  color: #fff;
}
.block-run em {
  color: rgba(255, 255, 255, 0.85);
}
.block-rest {
  background: #eef0f4;
}
.block-cool {
  background: #e9f3fb;
}
.phone-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.phone-compare small {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-compare b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.phone-compare b.ok {
  color: #14804a;
}
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.float-badge svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}
.badge-sync {
  right: 18px;
  top: -22px;
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  50% {
    transform: translateY(-6px);
  }
}

/* --------------------------------------------------------------- marquee */
.marquee {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-block: 12px;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track span::before {
  content: '◆';
  font-size: 0.55em;
  vertical-align: middle;
  margin-right: 48px;
  opacity: 0.7;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* -------------------------------------------------------------- sections */
.section {
  padding-block: clamp(64px, 9vw, 112px);
}
.section-dark {
  background: var(--ink);
  color: var(--on-dark);
}
.section-dark p {
  color: var(--on-dark-muted);
}
.section-dark b {
  color: var(--on-dark);
}
.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-lead {
  font-size: 1.15rem;
  color: var(--muted);
}
.section-dark .section-lead {
  color: var(--on-dark-muted);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split-wide {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}

.section-problem {
  background: var(--paper-2);
}
.section-problem h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}
.section-problem p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* -------------------------------------------------------------- features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ----------------------------------------------------------------- steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.45rem;
}
.step p {
  margin: 0;
  font-size: 0.95rem;
}

/* -------------------------------------------------------------- semáforo */
.semaforo-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.semaforo-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
}
.semaforo-list .dot {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  box-shadow: 0 0 0 4px rgba(11, 18, 32, 0.05);
}
.mock-list {
  padding: 8px 6px;
  font-size: 0.85rem;
}
.list-head,
.list-row {
  display: grid;
  grid-template-columns: 1fr 52px 176px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}
.list-head {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.list-row + .list-row {
  border-top: 1px solid var(--line);
}
.who {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.who span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.who small {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
  flex: none;
}
.avatar-sm {
  width: 26px;
  height: 26px;
  font-size: 0.6rem;
}
.micro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.mini {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.mini .c {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--gray);
}
.mini .g {
  background: var(--green);
}
.mini .y {
  background: var(--yellow);
}
.mini .r {
  background: var(--red);
}
.mini .e {
  background: #eceff3;
}
.mini .f {
  background: #fff;
  border: 1.5px dashed #d6dae2;
}

/* ---------------------------------------------------------------- garmin */
.section-garmin {
  background:
    radial-gradient(700px 400px at 20% 50%, rgba(255, 90, 31, 0.18), transparent 60%),
    var(--ink);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--on-dark-muted);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='black'/%3E%3Cpath d='M7 12.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='black'/%3E%3Cpath d='M7 12.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fineprint {
  font-size: 0.9rem;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.watch {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  width: 280px;
}
.watch-band {
  width: 120px;
  height: 110px;
  background: linear-gradient(90deg, #1c2540, #2a3557 50%, #1c2540);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.watch-band-top {
  border-radius: 40px 40px 8px 8px;
  margin-bottom: -22px;
}
.watch-band-bottom {
  border-radius: 8px 8px 40px 40px;
  margin-top: -22px;
}
.watch-face {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3a4666, #151d33 65%);
  box-shadow:
    0 0 0 6px #0f1729,
    0 0 0 8px rgba(255, 90, 31, 0.9),
    0 40px 80px -30px rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
  z-index: 1;
}
.watch-face::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.watch-screen {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #050912;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.watch-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-dark-muted);
}
.watch-pace {
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
}
.watch-unit {
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  margin-bottom: 10px;
}
.watch-range {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 150px;
}
.watch-range-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: visible;
}
.watch-range-fill {
  position: absolute;
  left: 25%;
  right: 25%;
  top: 0;
  bottom: 0;
  border-radius: 4px;
  background: var(--green);
}
.watch-range-pin {
  position: absolute;
  top: -4px;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  left: 44%;
  animation: pin 3s ease-in-out infinite;
}
@keyframes pin {
  50% {
    left: 56%;
  }
}
.watch-range-txt {
  font-size: 0.78rem;
  color: var(--on-dark-muted);
}
.watch-foot {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}

/* ---------------------------------------------------------------- atleta */
.athlete-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 26px 0 30px;
}
.athlete-points div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.95rem;
}
.athlete-points b {
  font-weight: 700;
}
.athlete-points span {
  color: var(--muted);
}
.mock-phone-static {
  position: static;
  transform: none;
  width: 290px;
  margin-inline: auto;
}
.agenda {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.agenda-item {
  display: grid;
  grid-template-columns: 34px 1fr 12px;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
  font-size: 0.74rem;
}
.agenda-item.is-today {
  background: var(--accent-soft);
}
.agenda-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--muted);
}
.agenda-day b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}
.agenda-item > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.agenda-item > div b {
  font-weight: 700;
}
.agenda-item > div i {
  font-style: normal;
  color: var(--muted);
}
.phone-comment {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 12px;
  padding: 10px;
  border-radius: 12px;
  background: #f5f6f8;
  font-size: 0.72rem;
  line-height: 1.4;
}

/* ------------------------------------------------------------------- faq */
.section-faq {
  background: var(--paper-2);
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 22px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 0;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq details p {
  margin: 0 0 20px;
  color: var(--muted);
}

/* ------------------------------------------------------------------- cta */
.section-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(255, 90, 31, 0.35), transparent 60%),
    var(--ink);
  color: var(--on-dark);
  text-align: center;
}
.track-lanes-cta {
  opacity: 0.8;
}
.cta-box {
  position: relative;
  max-width: 760px;
}
.kicker-light {
  color: #ffb26b;
}
.cta-box p {
  color: var(--on-dark-muted);
  font-size: 1.1rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: #070c17;
  color: var(--on-dark-muted);
  padding-block: 56px 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand-footer {
  color: #fff;
}
.footer-tagline {
  max-width: 380px;
  margin-top: 12px;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer nav a:hover {
  color: #fff;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 6px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 20px;
  font-size: 0.8rem;
}

/* ------------------------------------------------------------- reveal fx */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track,
  .lane-highlight,
  .pulse-dot,
  .badge-sync,
  .watch-range-pin {
    animation: none;
  }
  .lane-highlight {
    stroke-dashoffset: 0;
  }
}

/* ------------------------------------------------------------ responsive */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-visual {
    min-height: 0;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
    padding-bottom: 60px;
  }
  .mock-calendar {
    position: relative;
    width: 100%;
  }
  .hero-visual .mock-phone {
    position: absolute;
    right: 8px;
    bottom: -40px;
    width: 220px;
  }
  .badge-sync {
    top: -18px;
    right: 8px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 4px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav > a:not(.btn) {
    padding: 12px 10px;
    font-size: 1rem;
  }
  .site-nav .btn {
    margin: 6px 0 0;
  }
  .split,
  .split-wide {
    grid-template-columns: 1fr;
  }
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .list-head,
  .list-row {
    grid-template-columns: 1fr 44px 120px;
    padding-inline: 10px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .features,
  .steps {
    grid-template-columns: 1fr;
  }
  .athlete-points {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    padding-bottom: 0;
  }
  .hero-visual .mock-phone {
    position: relative;
    width: 210px;
    right: auto;
    bottom: auto;
    margin: -28px 6px 0 auto;
    transform: rotate(-3deg);
  }
  .mock-phone-static {
    width: min(290px, 100%);
  }
  .phone-screen {
    min-height: 0;
  }
  .week {
    grid-template-columns: repeat(4, 1fr);
  }
  .list-head span:last-child {
    display: none;
  }
  .list-head,
  .list-row {
    grid-template-columns: 1fr 40px;
  }
  .list-row .mini {
    grid-column: 1 / -1;
    grid-template-columns: repeat(21, 1fr);
    gap: 2px;
  }
  .watch {
    transform: scale(0.85);
    transform-origin: top center;
    margin-bottom: -60px;
  }
  .btn-lg {
    width: 100%;
  }
}

/* ----------------------------------------------------------- legal pages */
.legal-hero {
  background: var(--ink);
  color: var(--on-dark);
  padding-block: 56px 48px;
}
.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}
.legal-hero p {
  color: var(--on-dark-muted);
  margin: 0;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--on-dark-muted);
}
.lang-switch {
  display: inline-flex;
  gap: 6px;
  margin-top: 22px;
}
.lang-switch a {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
}
.lang-switch a:hover {
  border-color: #fff;
}
.legal {
  padding-block: 48px 80px;
}
.legal .container {
  max-width: 820px;
}
.legal h2 {
  font-size: 1.9rem;
  margin-top: 2.2em;
  text-transform: none;
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal h3 {
  font-size: 1.25rem;
  margin-top: 1.6em;
  font-family: var(--font-body);
  font-weight: 700;
}
.legal p,
.legal li {
  color: #2c3446;
  font-size: 1rem;
}
.legal ul {
  padding-left: 22px;
}
.legal li {
  margin-bottom: 6px;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 12px 0 20px;
}
.legal th,
.legal td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.legal th {
  background: var(--paper-2);
  font-weight: 600;
}
.table-wrap {
  overflow-x: auto;
}
.callout {
  border-left: 4px solid var(--accent);
  background: #fff;
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}
.callout p {
  margin: 0;
}
.legal-toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.legal-toc ol {
  margin: 8px 0 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 24px;
}
.legal-toc li {
  margin-bottom: 4px;
  break-inside: avoid;
}
.legal-toc a:hover {
  color: var(--accent-deep);
}
.placeholder {
  background: #fff3ea;
  padding: 0 4px;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .legal-toc ol {
    columns: 1;
  }
}
