* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- shared ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.rule { height: 1px; background: var(--divider); border: 0; margin: 0; }
.eyebrow {
  font-size: var(--text-label-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.brand img { width: 28px; height: 28px; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--fg-muted); font-weight: 500;
}
.nav-links a:hover { color: var(--fg); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-standard),
              background var(--dur-fast) var(--ease-standard);
}
.btn-dark {
  background: var(--dark-grey);
  color: var(--white);
}
.btn-dark:hover { background: #000; }
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: #ee5d27; }
.btn-outline {
  background: var(--white);
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--bg-subtle); }

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  background: var(--lavender-surface);
  border-radius: var(--radius-full);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.18);
  animation: pulse 2s var(--ease-standard) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,107,53,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255,107,53,0.06); }
}
h1.display-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 28px;
}
h1.display-headline .red    { color: var(--brand-red); }
h1.display-headline .blue   { color: var(--brand-blue); }
h1.display-headline .yellow { color: var(--brand-yellow); }
h1.display-headline .blk    { display: inline-block; padding: 0 4px; }

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg);
  max-width: 540px;
  margin: 0 0 16px;
}
.hero-sub-quiet {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-form {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero-form input[type="email"] {
  flex: 1 1 240px;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.hero-form input[type="email"]:focus { border-color: var(--orange); }
.hero-form .btn { height: 48px; padding: 0 22px; }
.hero-fineprint { font-size: 12px; color: var(--fg-muted); }

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--dark-grey);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.play-badge:hover { background: #000; transform: translateY(-1px); }
.play-badge .material-symbols-rounded { font-size: 28px; color: #3ddc84; }
.play-badge-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}
.play-badge-main {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

/* hero stage with phone */
.hero-stage {
  position: relative;
  height: 620px;
}
.stage-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
}
/* bauhaus shapes scattered behind */
.shape {
  position: absolute;
  z-index: 1;
}
.shape-blue {
  top: 24px; left: 24px;
  width: 120px; height: 120px;
  background: var(--brand-blue);
  border-radius: var(--radius-md);
}
.shape-yellow {
  top: 12px; right: 60px;
  width: 80px; height: 80px;
  background: var(--brand-yellow);
  border-radius: 50%;
}
.shape-red {
  bottom: 36px; left: 8px;
  width: 0; height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid var(--brand-red);
}
.shape-orange-ring {
  bottom: 48px; right: 28px;
  width: 140px; height: 140px;
  border: 8px solid var(--orange);
  border-radius: 50%;
}

/* phone frame */
.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 290px;
  height: 590px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 60px -20px rgba(17,24,39,0.35),
    0 12px 24px -10px rgba(17,24,39,0.20);
  z-index: 2;
}
.phone::after {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #0a0a0a;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* watch beside phone */
.watch {
  position: absolute;
  right: 30px;
  bottom: 60px;
  z-index: 3;
}
.watch-face {
  width: 130px; height: 130px;
  background: #0a0a0a;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 14px 30px -10px rgba(17,24,39,0.35);
  position: relative;
}
.watch-face::before, .watch-face::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #2a2a2a;
  left: 50%;
  transform: translateX(-50%);
}
.watch-face::before { top: -8px; height: 12px; border-radius: 2px 2px 0 0; }
.watch-face::after  { bottom: -8px; height: 12px; border-radius: 0 0 2px 2px; }
.watch-screen {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.watch-screen .ring {
  position: absolute; inset: 8px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0deg 252deg, rgba(255,255,255,0.12) 252deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 38px, black 39px);
          mask: radial-gradient(circle, transparent 38px, black 39px);
}
.watch-screen .num {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  z-index: 1;
}
.watch-screen .lbl {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2px;
  z-index: 1;
}

/* ---------- the gears section ---------- */
.gears {
  padding: 96px 0 64px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.gears-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.gears-head .eyebrow { margin-bottom: 8px; display: block; }
.gears-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 700px;
}
.gears-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gear-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid transparent;
  transition: transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.gear-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gear-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg-muted);
}
.gear-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.gear-icon .material-symbols-rounded { font-size: 28px; }
.gear-card.plan  .gear-icon { background: var(--brand-blue); }
.gear-card.act   .gear-icon { background: var(--orange); }
.gear-card.track .gear-icon { background: var(--brand-yellow); color: var(--dark-grey); }
.gear-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  margin: 0;
  display: flex; align-items: center; gap: 10px;
}
.gear-card.act .gear-title::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.20);
}
.gear-tag {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.4;
}
.gear-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gear-list li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.gear-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--medium-grey);
}
.gear-list li strong { font-weight: 600; }

/* ---------- energy section ---------- */
.energy {
  padding: 96px 0;
  background: var(--bg);
}
.energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.energy-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 32px;
}
.energy-grid p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0 0 16px;
  max-width: 520px;
}
.energy-grid p em {
  font-style: italic;
  color: var(--fg-muted);
}
.energy-grid p .punch {
  font-weight: 700;
}
.energy-chips {
  display: inline-flex;
  gap: 8px;
  padding: 12px;
  background: var(--lavender-surface);
  border-radius: var(--radius-xl);
  margin-top: 24px;
  align-items: center;
}
.energy-chips .label {
  font-size: 12px;
  color: var(--fg-muted);
  padding: 0 10px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.energy-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: var(--fg);
}
.energy-chip.low    { background: rgba(77,182,172,0.20); color: #1f6f67; }
.energy-chip.medium { background: rgba(255,183,77,0.25); color: #95560f; }
.energy-chip.high   { background: rgba(255,112,67,0.20); color: #a83617; }
.energy-chip .dots { display: inline-flex; gap: 2px; }
.energy-chip .dots span { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.energy-chip .dots span.off { background: rgba(0,0,0,0.15); }

/* tasks preview card */
.preview-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.preview-frame::before {
  content: 'TASKS · BOARD';
  position: absolute;
  top: -10px; left: 24px;
  background: var(--white);
  padding: 0 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
}
.preview-tabs {
  display: flex; gap: 20px;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.preview-tabs span {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  padding-bottom: 8px;
  margin-bottom: -13px;
}
.preview-tabs span.active {
  color: var(--fg);
  border-bottom: 2px solid var(--orange);
}
.task-row {
  background: var(--lavender-surface);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 4px 18px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
}
.task-row::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  border-radius: 2px;
}
.task-row.p-low::before    { background: var(--priority-low); }
.task-row.p-medium::before { background: var(--priority-medium); }
.task-row.p-high::before   { background: var(--priority-high); }
.task-checkbox {
  width: 18px; height: 18px;
  border: 1.5px solid var(--medium-grey);
  border-radius: 4px;
  grid-column: 2;
}
.task-content { grid-column: 3; }
.task-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}
.task-meta {
  font-size: 11px;
  color: var(--orange);
  margin-top: 4px;
  display: flex; align-items: center; gap: 4px;
}
.task-meta .material-symbols-rounded { font-size: 12px; }
.task-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.task-play .material-symbols-rounded { font-size: 18px; font-variation-settings: 'FILL' 1; }

/* ---------- where it runs ---------- */
.where {
  padding: 80px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.where-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.where h2 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  margin: 12px 0 0;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  transition: all var(--dur-base) var(--ease-standard);
}
.platform:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
}
.platform.coming {
  color: var(--fg-muted);
  background: transparent;
}
.platform .material-symbols-rounded { font-size: 18px; }
.platform .badge {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-left: 4px;
  padding: 2px 6px;
  background: var(--bg-subtle);
  border-radius: 4px;
}

/* ---------- open dev / quote ---------- */
.open {
  padding: 64px 0;
  background: var(--lavender-surface);
  text-align: center;
}
.open p {
  font-size: 18px;
  color: var(--fg);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.open-links {
  display: inline-flex;
  gap: 32px;
}
.open-links a {
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* personal note */
.personal {
  padding: 96px 0;
  background: var(--bg);
}
.personal-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}
.personal-mark {
  width: 160px; height: 160px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.personal-mark img { width: 90px; height: 90px; }
.personal p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  margin: 0 0 16px;
}
.personal .signoff {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-top: 8px;
}

/* ---------- final CTA ---------- */
.final {
  padding: 96px 0;
  background: var(--dark-grey);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-deco {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  pointer-events: none;
}
.final-deco .b1 {
  position: absolute;
  top: 40px; right: 80px;
  width: 100px; height: 100px;
  background: var(--brand-yellow);
  border-radius: 50%;
}
.final-deco .b2 {
  position: absolute;
  bottom: 40px; right: 200px;
  width: 80px; height: 80px;
  background: var(--brand-red);
  border-radius: var(--radius-md);
}
.final-deco .b3 {
  position: absolute;
  top: 50%; right: 20px;
  width: 140px; height: 140px;
  border: 8px solid var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}
.final-inner { position: relative; z-index: 1; max-width: 640px; }
.final h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.final p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}
.final .hero-form input[type="email"] {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
}
.final .hero-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.final .hero-fineprint { color: rgba(255,255,255,0.55); }

/* ---------- footer ---------- */
.foot {
  padding: 32px 0;
  background: var(--bg);
  border-top: 1px solid var(--divider);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.foot-links { display: flex; gap: 28px; }
.foot-links a, .foot-copy {
  font-size: 13px;
  color: var(--fg-muted);
}
.foot-links a:hover { color: var(--fg); }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 600;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: 95%;
  max-width: 850px;
  max-height: 85vh;
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.modal h1, .modal h2, .modal h3 { color: var(--dark-grey); }
.modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.modal .modal-body { color: var(--fg-muted); line-height: 1.6; }
.modal .modal-close {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--fg);
}
.legal-loading {
  text-align: center;
  color: var(--fg-muted);
  padding: var(--space-md) 0;
}
.form-message {
  margin-top: var(--space-sm);
  font-size: var(--text-body-sm);
  color: var(--fg);
  text-align: center;
}
.form-error  { color: var(--error); }
.form-success { color: var(--success); }

/* ---------- roadmap ---------- */
.roadmap {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--divider);
}
.roadmap-intro { margin-bottom: 56px; }
.roadmap-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.roadmap-intro p {
  font-size: 17px;
  color: var(--fg-muted);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.milestones {
  position: relative;
  padding-left: 56px;
}
.milestones::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--divider);
}

.milestone {
  position: relative;
  padding: 28px 0;
}
.milestone + .milestone {
  border-top: 1px solid var(--divider);
}

.milestone-num {
  position: absolute;
  left: -56px;
  top: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--bg);
  border: 2px solid var(--divider);
  color: var(--fg-muted);
  z-index: 1;
}
.ms-active .milestone-num   { background: var(--success); border-color: var(--success); color: var(--white); }
.ms-next .milestone-num     { background: var(--brand-blue); border-color: var(--brand-blue); color: var(--white); }
.ms-horizon .milestone-num  { background: #7b72d8; border-color: #7b72d8; color: var(--white); }

.milestone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.milestone-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--fg);
}
.milestone-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ms-active .milestone-status  { background: rgba(16,185,129,0.12); color: #065f46; }
.ms-next .milestone-status    { background: rgba(30,63,168,0.10); color: #1e3fa8; }
.ms-horizon .milestone-status { background: rgba(123,114,216,0.12); color: #4c46a0; }
.ms-later .milestone-status   { background: var(--bg-tinted); color: var(--fg-subtle); }

.milestone-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 40px;
}
.milestone-list li {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.milestone-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
}
.ms-active .milestone-list li::before  { background: var(--success); }
.ms-next .milestone-list li::before    { background: var(--brand-blue); }
.ms-horizon .milestone-list li::before { background: #7b72d8; }

.roadmap-cta {
  margin-top: 56px;
  padding: 28px 36px;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.roadmap-cta-text strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--fg);
}
.roadmap-cta-text span {
  font-size: 13px;
  color: var(--fg-muted);
}
.roadmap-cta .hero-form {
  flex: 1 1 320px;
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .energy-grid { grid-template-columns: 1fr; gap: 48px; }
  .gears-grid { grid-template-columns: 1fr; }
  .where-inner { grid-template-columns: 1fr; gap: 24px; }
  .personal-grid { grid-template-columns: 1fr; gap: 32px; }
  .personal-mark { width: 120px; height: 120px; }
  .personal-mark img { width: 70px; height: 70px; }
  .hero-stage { height: 520px; }
  .nav-links { display: none; }
  .milestone-list { grid-template-columns: 1fr; }
  .roadmap-cta { flex-direction: column; gap: 20px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 40px 0 24px; }
  .gears, .energy, .where, .personal, .final, .roadmap { padding: 64px 0; }
  .gears-head { flex-direction: column; align-items: flex-start; }
  .watch { right: 0; bottom: 24px; }
  .watch-face { width: 100px; height: 100px; }
  .milestones { padding-left: 44px; }
  .milestones::before { left: 15px; }
  .milestone-num { left: -44px; width: 32px; height: 32px; font-size: 11px; }
}
