.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 56px 0 40px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 650;
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: -0.048em;
  line-height: 1.06;
  margin: 0 0 16px;
  max-width: 16ch;
}
.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 46ch;
  margin: 0 0 24px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.proof { padding: 8px 0 64px; }
.proof h2 {
  font-size: 17px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.proof .card p { margin: 0; color: var(--muted); font-size: 15px; }
.stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px 0 36px;
}
.stage::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 72%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
}
.phone {
  position: relative;
  width: min(280px, 72vw);
  padding: 9px;
  border-radius: 36px;
  background: #070b12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
}
.watch img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -18%;
}
.watch {
  position: absolute;
  right: max(0px, calc(50% - 230px));
  bottom: 8px;
  width: 132px;
  padding: 10px 10px 12px;
  border-radius: 38px;
  background: #070b12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.watch-band {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 36px 44px;
}
.watch.inline {
  position: static;
  right: auto;
  bottom: auto;
  width: 148px;
}
section { padding: 8px 0 72px; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 650;
  margin: 0 0 8px;
}
h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .copy { order: 2; }
.copy p { color: var(--muted); margin: 0 0 12px; }
.copy p:last-child { margin-bottom: 0; }
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.quiet {
  color: var(--muted);
  font-size: 14px;
  max-width: 64ch;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: var(--surface);
}
.cta h2 { margin: 0 0 6px; }
.cta p { margin: 0; color: var(--muted); }
@media (max-width: 860px) {
  .hero, .split, .grid { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 28px; gap: 28px; }
  .proof { padding: 0 0 48px; }
  .split { gap: 28px; }
  .split.reverse .copy { order: 0; }
  .watch { display: none; }
  .watch.inline { display: block; }
  .watch-band { grid-template-columns: 1fr; padding: 28px 22px; justify-items: center; }
  .watch-band .copy { text-align: center; }
  .cta { flex-direction: column; align-items: flex-start; }
}
