/* relay-reveal.css */
.relay-reveal {
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
}
.relay-reveal::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  transform: translate(-50%, -30%);
  background: radial-gradient(circle, rgba(232, 96, 58, 0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.relay-reveal > * { position: relative; z-index: 1; }
.relay-reveal .wordmark-stage {
  display: grid;
  place-items: center;
  padding-block: var(--space-10);
  text-align: center;
}
.relay-reveal .wordmark {
  font-family: var(--font-display);
  font-size: clamp(96px, 22vw, 320px);
  line-height: 1;
  color: var(--ink-0);
  letter-spacing: -0.045em;
}
.relay-reveal .wordmark .dot {
  color: var(--ember);
  font-style: italic;
}
.relay-reveal .promise {
  text-align: center;
  margin-top: var(--space-7);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--ink-100);
  text-wrap: balance;
}
.relay-reveal .surfaces {
  margin-top: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}
.relay-reveal .surfaces span:not(:last-child)::after { content: "·"; margin-left: var(--space-5); color: var(--ink-500); }

/* Watch */
.watch-stage {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  align-items: center;
}
@media (min-width: 880px) { .watch-stage { grid-template-columns: 1fr 1fr; } }
.watch {
  width: 280px;
  height: 340px;
  margin-inline: auto;
  border-radius: 64px;
  background: linear-gradient(180deg, #14130f, #0a0908);
  border: 2px solid #2a2826;
  position: relative;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 8px #1a1917;
}
.watch::before, .watch::after {
  content: ""; position: absolute; right: -3px; width: 8px; background: #2a2826; border-radius: 4px;
}
.watch::before { top: 60px; height: 28px; }
.watch::after { top: 100px; height: 50px; border-radius: 6px 0 0 6px; width: 6px; }
.watch .face {
  width: 100%; height: 100%;
  background: var(--ink-950);
  border-radius: 48px;
  padding: var(--space-5);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-3);
  overflow: hidden;
}
.watch .face .top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-300);
}
.watch .face .top .pill-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 8px; letter-spacing: 0.15em;
  color: var(--ember);
}
.watch .face .top .pill-tag .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--ember); }
.watch .face .body {
  display: grid; gap: var(--space-2);
  font-family: var(--font-body);
}
.watch .face .body .who { font-family: var(--font-mono); font-size: 10px; color: var(--ink-300); letter-spacing: 0.1em; }
.watch .face .body .ask {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}
.watch .face .body .meta {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-300);
  letter-spacing: 0.1em;
}
.watch .face .approve {
  position: relative;
  background: var(--signal);
  color: var(--ink-950);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  display: flex; justify-content: space-between; align-items: center;
}
.watch .face .approve::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 999px;
  border: 1px solid var(--signal);
  opacity: 0;
  animation: breathe-ring 2.4s var(--ease-in-out) infinite;
  pointer-events: none;
}

.watch-copy h3 { font-size: clamp(36px, 5vw, 64px); margin-bottom: var(--space-4); }
.watch-copy p { font-size: var(--fs-md); color: var(--ink-100); }
.watch-copy .feat-list {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--ink-100);
}
.watch-copy .feat-list .row {
  display: grid; grid-template-columns: 80px 1fr; gap: var(--space-4);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--hairline);
}
.watch-copy .feat-list .row .k { color: var(--ink-300); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }

/* iPhone terminal */
.phone-stage {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  align-items: center;
}
@media (min-width: 880px) { .phone-stage { grid-template-columns: 1fr 1fr; } }
.phone {
  width: 290px;
  height: 600px;
  margin-inline: auto;
  border-radius: 56px;
  background: #1a1917;
  border: 1px solid #2a2826;
  padding: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  position: relative;
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 48px;
  background: var(--ink-950);
  overflow: hidden;
  position: relative;
  padding: var(--space-7) var(--space-4) var(--space-4);
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.6;
}
.phone .notch {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000; border-radius: 18px;
  z-index: 2;
}
.phone .status-bar {
  position: absolute; top: 18px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-0);
  z-index: 1;
}
.phone .term-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--space-3);
  font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-300);
}
.phone .term-head .live { color: var(--signal); display: inline-flex; align-items: center; gap: 4px; }
.phone .term-head .live .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--signal); }
.phone .term-body { color: var(--ink-100); }
.phone .term-body .prompt { color: var(--ink-300); }
.phone .term-body .you { color: var(--ember); }
.phone .term-body .ans { color: var(--ink-0); }
.phone .term-body .meta { color: var(--ink-300); }
.phone .term-body .signal-text { color: var(--signal); }

.phone-copy h3 { font-size: clamp(36px, 5vw, 64px); margin-bottom: var(--space-4); }
.phone-copy p { font-size: var(--fs-md); color: var(--ink-100); }
.phone-copy .featgrid {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}
.phone-copy .featgrid .feat .k { color: var(--ink-300); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.phone-copy .featgrid .feat .v { color: var(--ink-0); }

/* Voice */
.voice-stage {
  margin-top: var(--space-10);
  text-align: center;
  padding-block: var(--space-9);
}
.voice-stage .waveform {
  display: inline-flex;
  align-items: end;
  gap: 6px;
  height: 80px;
  margin-bottom: var(--space-7);
}
.voice-stage .waveform .bar {
  width: 4px;
  background: var(--violet);
  border-radius: 2px;
  height: 100%;
  transform-origin: bottom;
}
.voice-stage .voice-line {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}
.voice-stage .voice-line em { font-style: italic; color: var(--violet); }
.voice-stage .voice-meta {
  margin-top: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--ink-300);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
