:root {
  color-scheme: dark;
  --bg: #030406;
  --bg-soft: #07100c;
  --surface: #101114;
  --surface-2: #1c1c1e;
  --surface-3: #2c2c2e;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.32);
  --text: #f8fafc;
  --text-2: #d8dee8;
  --text-3: #a1a1a6;
  --text-4: #6f7785;
  --green: #30d158;
  --green-2: #22c55e;
  --orange: #ff9f0a;
  --red: #ff453a;
  --blue: #0a84ff;
  --cyan: #64d2ff;
  --purple: #bf5af2;
  --yellow: #ffd60a;
  --sans: "IBM Plex Sans", "IBM Plex Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(48, 209, 88, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 209, 88, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(10, 132, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 8%, rgba(48, 209, 88, 0.16), transparent 34%),
    #030406;
  background-size: 32px 32px, 32px 32px, 8px 8px, 100% 100%;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.52;
  background:
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(48, 209, 88, 0.08) 18px 19px, transparent 19px 42px),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(191, 90, 242, 0.08) 88px 89px, transparent 89px 178px);
  animation: matrix-drift 22s linear infinite;
  mask-image: linear-gradient(to bottom, black 0%, black 62%, transparent 100%);
}

@keyframes matrix-drift {
  from { transform: translate3d(0, -64px, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.mono {
  font-family: var(--mono);
}

.muted {
  color: var(--text-4);
}

.green { color: var(--green); }
.orange { color: var(--orange); }
.red { color: var(--red); }
.blue { color: var(--blue); }
.purple { color: var(--purple); }
.cyan { color: var(--cyan); }
.tint-orange { color: var(--orange); }
.tint-purple { color: var(--purple); }
.tint-blue { color: var(--blue); }
.push { margin-left: auto; }
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
}

.nav {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(3, 4, 6, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(48, 209, 88, 0.42);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 0 29%, rgba(48, 209, 88, 0.85) 29% 41%, transparent 41% 59%, rgba(48, 209, 88, 0.85) 59% 71%, transparent 71%),
    linear-gradient(transparent 0 24%, rgba(48, 209, 88, 0.85) 24% 36%, transparent 36% 64%, rgba(48, 209, 88, 0.85) 64% 76%, transparent 76%),
    #060806;
  box-shadow: 0 0 22px rgba(48, 209, 88, 0.18);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--text-3);
  font-size: 13px;
}

.nav-links a:hover,
.lang-link:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-link {
  color: var(--text-3);
  font-size: 12px;
  font-family: var(--mono);
}

.nav-cta,
.primary-btn,
.secondary-btn,
.submit-btn {
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta,
.primary-btn,
.submit-btn {
  background: var(--green);
  color: #031007;
}

.nav-cta {
  padding: 8px 14px;
  font-size: 13px;
}

.secondary-btn {
  background: rgba(248, 250, 252, 0.08);
  color: var(--text);
  border: 1px solid rgba(248, 250, 252, 0.14);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 82px clamp(16px, 3vw, 36px) 86px;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto 40px;
  text-align: center;
}

.eyebrow,
.section-kicker,
.film-badge,
.mini-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(48, 209, 88, 0.28);
  border-radius: 999px;
  background: rgba(48, 209, 88, 0.07);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(64px, 10vw, 124px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-line {
  max-width: 780px;
  margin: 0 auto 18px;
  color: var(--text-2);
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 710px;
  margin: 0 auto 30px;
  color: var(--text-3);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-form input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(16, 17, 20, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(48, 209, 88, 0.72);
  box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.12);
}

.submit-btn {
  height: 46px;
  padding: 0 16px;
}

.submit-btn.ok {
  background: var(--cyan);
}

.hero-note {
  margin-top: 14px;
  color: var(--text-4);
  font-size: 13px;
}

.product-film {
  --demo-loop: 9s;
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.82), rgba(5, 7, 10, 0.88)),
    rgba(3, 4, 6, 0.86);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.film-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--text-3);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  font-family: var(--mono);
  font-size: 12px;
}

.film-badge {
  color: var(--red);
}

.film-badge::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--red);
  animation: blink 1.2s steps(2, end) infinite;
}

@keyframes blink {
  50% { opacity: 0.2; }
}

.film-runtime {
  margin-left: auto;
  color: var(--text-4);
}

.film-grid {
  position: relative;
  display: block;
  min-height: 680px;
  padding: 24px;
}

.mac-frame {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-bottom: 34px;
}

.mac-frame::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #3a3a3c, #1d1d20);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.42);
}

.mac-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #55565a, #26272a);
  clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
}

.mac-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 15px;
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(140deg, #3b3b3f, #17181a 58%, #070709);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 28px 70px rgba(0, 0, 0, 0.56);
}

.mac-display {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(255, 246, 190, 0.62), transparent 24%),
    linear-gradient(122deg, rgba(143, 136, 200, 0.96) 0 13%, rgba(219, 161, 115, 0.96) 13% 25%, rgba(240, 186, 121, 0.94) 25% 38%, rgba(151, 144, 190, 0.92) 38% 50%, rgba(82, 122, 197, 0.94) 50% 67%, rgba(30, 62, 150, 0.96) 67% 83%, rgba(9, 20, 74, 0.98) 83% 100%);
  background-size: 100% 100%;
}

.mac-display::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 1;
}

.mac-menu-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 34px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.24), rgba(10, 10, 12, 0.06));
  font-family: var(--sans);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.mac-menu-bar strong {
  font-weight: 700;
}

.apple-dot {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.menu-clock {
  margin-left: auto;
}

.mac-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #000;
  z-index: 8;
}

.tui-window {
  position: absolute;
  z-index: 3;
  left: 46px;
  top: 122px;
  bottom: 74px;
  width: 52%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(1, 6, 8, 0.84);
  font-family: var(--mono);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.tui-titlebar {
  display: flex;
  gap: 6px;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--text-4);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 11px;
}

.traffic {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.traffic.red { background: #ff5f57; }
.traffic.yellow { background: #ffbd2e; }
.traffic.green { background: #28c840; }

.tui-panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.tui-pane {
  min-width: 0;
  padding: 12px;
}

.tui-pane + .tui-pane {
  border-left: 1px solid rgba(148, 163, 184, 0.14);
}

.pane-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-3);
  font-size: 11px;
}

.agent-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.07);
  color: var(--text-2);
}

.agent-chip.claude { color: var(--orange); }
.agent-chip.codex { color: var(--purple); }

.agent-logo {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  object-fit: contain;
}

.usage-strip .agent-logo {
  width: 11px;
  height: 11px;
  vertical-align: -2px;
}

.feature-icon .agent-logo {
  width: 26px;
  height: 26px;
}

.terminal-line {
  display: block;
  margin: 7px 0;
  color: #c7d2fe;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.terminal-line.dim {
  color: var(--text-4);
}

.terminal-line.good {
  color: var(--green);
}

.terminal-card {
  margin: 11px 0;
  padding: 10px;
  border: 1px solid rgba(255, 159, 10, 0.38);
  border-radius: 8px;
  background: rgba(255, 159, 10, 0.08);
  color: var(--text-2);
  font-size: 12px;
}

.permission-tui {
  opacity: 0;
  animation: tui-permission var(--demo-loop, 16s) ease-in-out infinite;
}

.terminal-waiting {
  opacity: 0;
  animation: tui-waiting var(--demo-loop, 16s) ease-in-out infinite;
}

.terminal-approved {
  opacity: 0;
  animation: show-approved var(--demo-loop, 16s) ease-in-out infinite;
}

.terminal-remote {
  opacity: 0;
  animation: show-remote var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes tui-permission {
  0%, 20% { opacity: 0; transform: translateY(6px); }
  26%, 56% { opacity: 1; transform: translateY(0); }
  64%, 100% { opacity: 0; transform: translateY(0); }
}

@keyframes tui-waiting {
  0%, 24% { opacity: 0; }
  30%, 56% { opacity: 1; }
  64%, 100% { opacity: 0; }
}

@keyframes show-approved {
  0%, 66% { opacity: 0; transform: translateY(5px); }
  72%, 91% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(0); }
}

@keyframes show-remote {
  0%, 66% { opacity: 0; transform: translateY(5px); }
  72%, 96% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(0); }
}

.mac-island-demo {
  position: absolute;
  left: 50%;
  top: 26px;
  z-index: 9;
  width: min(520px, 76%);
  transform: translateX(-50%);
  border-radius: 20px;
  background: #000;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.62);
  padding: 10px 14px;
  opacity: 0;
  animation: relay-mac var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes relay-mac {
  0%, 12% { opacity: 0; transform: translate(-50%, -10px) scale(0.98); }
  18%, 70% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  84%, 100% { opacity: 0; transform: translate(-50%, -4px) scale(0.99); }
}

.island-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
}

.pixel-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.permission-mini {
  margin-top: 6px;
  padding: 7px;
  border-radius: 7px;
  background: rgba(255, 159, 10, 0.08);
  border: 1px solid rgba(255, 159, 10, 0.26);
  font-family: var(--mono);
  font-size: 11px;
}

.permission-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.yes,
.no {
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
}

.yes {
  background: rgba(48, 209, 88, 0.18);
  color: var(--green);
}

.no {
  background: rgba(255, 69, 58, 0.16);
  color: var(--red);
}

.approved-badge {
  opacity: 0;
  color: var(--green);
  animation: approved-badge var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes approved-badge {
  0%, 62% { opacity: 0; }
  68%, 90% { opacity: 1; }
  100% { opacity: 0; }
}

.relay-state-stack {
  position: relative;
}

.relay-state {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.state-running {
  animation: relay-state-running var(--demo-loop, 16s) ease-in-out infinite;
}

.state-permission {
  animation: relay-state-permission var(--demo-loop, 16s) ease-in-out infinite;
}

.state-approved {
  animation: relay-state-approved var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes relay-state-running {
  0%, 25% { opacity: 1; transform: translateY(0); }
  28%, 74% { opacity: 0; transform: translateY(-4px); }
  82%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes relay-state-permission {
  0%, 27% { opacity: 0; transform: translateY(5px); }
  32%, 57% { opacity: 1; transform: translateY(0); }
  62%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes relay-state-approved {
  0%, 61% { opacity: 0; transform: translateY(5px); }
  66%, 80% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(-3px); }
}

.product-film[data-demo-state] .relay-state,
.product-film[data-demo-state] .terminal-remote,
.product-film[data-demo-state] .permission-tui,
.product-film[data-demo-state] .terminal-waiting,
.product-film[data-demo-state] .terminal-approved,
.product-film[data-demo-state] .sync-beam {
  animation: none !important;
}

.product-film[data-demo-state] .relay-state,
.product-film[data-demo-state] .terminal-remote,
.product-film[data-demo-state] .permission-tui,
.product-film[data-demo-state] .terminal-waiting,
.product-film[data-demo-state] .terminal-approved,
.product-film[data-demo-state] .sync-beam {
  opacity: 0 !important;
  transform: none !important;
}

.product-film[data-demo-state="running"] .state-running,
.product-film[data-demo-state="running"] .terminal-remote,
.product-film[data-demo-state="permission"] .state-permission,
.product-film[data-demo-state="permission"] .terminal-remote,
.product-film[data-demo-state="permission"] .permission-tui,
.product-film[data-demo-state="permission"] .terminal-waiting,
.product-film[data-demo-state="approved"] .state-approved,
.product-film[data-demo-state="approved"] .terminal-approved {
  opacity: 1 !important;
  transform: none !important;
}

.product-film[data-demo-state="permission"] .sync-beam-request,
.product-film[data-demo-state="approved"] .sync-beam-approve {
  opacity: 0.7 !important;
}

.mac-state-stack {
  min-height: 242px;
  margin-top: 8px;
}

.phone-state-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  margin: 0;
}

.watch-state-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
}

.phone-stage,
.watch-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

/* Device frame geometry adapted from picturepan2/devices.css (MIT). */
.device,
.device::before,
.device::after,
.device *,
.device *::before,
.device *::after {
  box-sizing: border-box;
}

.device {
  position: relative;
  z-index: 1;
}

.device-frame {
  position: relative;
  z-index: 1;
}

.device-screen {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.phone {
  --phone-frame-pad: 4.45%;
  position: relative;
  width: min(255px, 100%);
  aspect-ratio: 393 / 852;
  padding: var(--phone-frame-pad);
  border: 1px solid #1b1721;
  border-radius: 15.9% / 7.85%;
  background: #010101;
  box-shadow:
    inset 0 0 4px 2px rgba(255, 255, 255, 0.88),
    inset 0 0 0 6px #76726f,
    0 26px 60px rgba(0, 0, 0, 0.58);
}

.phone .device-frame,
.phone .device-screen {
  width: 100%;
  height: 100%;
}

.phone-screen {
  border-radius: 12.55% / 6.1%;
  background: linear-gradient(180deg, #020617, #000 68%);
  color: var(--text);
  padding: 0;
}

.phone .device-stripe::after,
.phone .device-stripe::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 0.8%;
  border: solid rgba(1, 1, 1, 0.25);
  border-width: 0 7px;
}

.phone .device-stripe::after {
  top: 9.8%;
}

.phone .device-stripe::before {
  bottom: 9.8%;
}

.phone .device-header {
  position: absolute;
  top: 3.35%;
  left: 50%;
  z-index: 9;
  width: 28%;
  height: 4.05%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #010101;
}

.phone .device-sensors::after,
.phone .device-sensors::before {
  content: "";
  position: absolute;
  z-index: 10;
}

.phone .device-sensors::after {
  top: 3.45%;
  left: 50%;
  width: 17.3%;
  height: 3.8%;
  transform: translateX(-57%);
  border-radius: 999px;
  background: #010101;
}

.phone .device-sensors::before {
  top: 4.82%;
  left: 58%;
  width: 2.1%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(farthest-corner at 20% 20%, #6074bf 0, transparent 42%),
    radial-gradient(farthest-corner at 80% 80%, #513785 0, #24555e 22%, transparent 52%);
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.06);
}

.phone .device-btns,
.phone .device-btns::after,
.phone .device-btns::before,
.phone .device-power {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: #5c5956;
}

.phone .device-btns {
  top: 13.2%;
  left: -2px;
  height: 3.7%;
}

.phone .device-btns::after,
.phone .device-btns::before {
  content: "";
  left: 0;
  height: 7.1%;
}

.phone .device-btns::after {
  top: 190%;
}

.phone .device-btns::before {
  top: 435%;
}

.phone .device-power {
  top: 23%;
  right: -2px;
  height: 11.5%;
}

.phone .device-home::after,
.phone .device-home::before {
  content: "";
  position: absolute;
  z-index: 9;
  width: 1.4%;
  height: 0.7%;
  border: solid rgba(1, 1, 1, 0.25);
  border-width: 6px 0;
}

.phone .device-home::after {
  top: 0;
  right: 20.1%;
}

.phone .device-home::before {
  bottom: 0;
  left: 20.1%;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

.usage-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-3);
}

.phone-card,
.mobile-command {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 10px;
  margin-bottom: 9px;
}

.phone-card {
  opacity: 1;
}

.phone-sync-chip {
  display: none;
}

.actual-overlay-card {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 174px;
  margin: 0;
  border-color: rgba(255, 159, 10, 0.34);
  background: rgba(26, 26, 26, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
}

.phone-approved-card.actual-overlay-card {
  top: 222px;
  border-color: rgba(48, 209, 88, 0.34);
}

@keyframes relay-phone {
  0%, 44% { box-shadow: none; transform: translateY(0); }
  50%, 62% { box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.17); transform: translateY(-2px); }
  76%, 100% { box-shadow: none; transform: translateY(0); }
}

.phone-status-line {
  margin-top: 8px;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 10px;
}

.phone-approved-card {
  border-color: rgba(48, 209, 88, 0.28);
  background: rgba(48, 209, 88, 0.08);
}

.card-title {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.code-snippet {
  margin: 7px 0;
  padding: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mobile-command {
  margin-top: 12px;
  animation: mobile-send var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes mobile-send {
  0%, 63% { box-shadow: none; transform: translateY(0); }
  69%, 76% { box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.16); transform: translateY(-2px); }
  90%, 100% { box-shadow: none; transform: translateY(0); }
}

.command-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
}

.command-input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.send-dot {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 999px;
  background: var(--green);
  color: #031007;
  font-weight: 900;
}

.watch {
  position: relative;
  width: min(190px, 100%);
  aspect-ratio: 360 / 380;
  padding: 7.4% 7.2%;
  border-radius: 25.5% / 24.2%;
  background: #0d0d0d;
  box-shadow:
    inset 0 0 24px 1px #0d0d0d,
    inset 0 0 0 12px #606c78,
    0 24px 52px rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.watch .device-frame,
.watch .device-screen {
  width: 100%;
  height: 100%;
}

.watch .device-frame::before {
  content: "";
  position: absolute;
  inset: -4.8%;
  border: 1px solid #0d0d0d;
  border-radius: 26% / 24%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.28), inset 0 0 12px 2px rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.watch-screen {
  border: 2px solid #121212;
  border-radius: 22.5% / 19.2%;
  background: #000;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
}

.watch .device-btns {
  position: absolute;
  top: 28.4%;
  right: 2.7%;
  z-index: 9;
  width: 5%;
  height: 18.9%;
  border-left: 1px solid #000;
  border-radius: 8px 6px 6px 8px / 20px 6px 6px 20px;
  background: #606c78;
  box-shadow: inset 8px 0 8px 0 #1c1f23, inset -2px 0 6px #272c31, -4px 0 8px rgba(13, 13, 13, 0.25);
}

.watch .device-btns::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  border-radius: 2px 4px 4px 2px / 20px 8px 8px 20px;
  background: #272c31;
  box-shadow: inset -2px 0 2px 0 #000, inset -6px 0 18px #272c31;
}

.watch .device-btns::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 11%;
  z-index: 9;
  width: 56%;
  height: 3px;
  margin-top: -2px;
  border-radius: 20%;
  background: #272c31;
  box-shadow:
    0 -30px rgba(62, 70, 77, 0.75),
    0 -27px #272c31,
    0 -25px #000,
    0 -21px rgba(62, 70, 77, 0.75),
    0 -18px #272c31,
    0 -16px #000,
    0 -12px rgba(62, 70, 77, 0.75),
    0 -9px #272c31,
    0 -7px #000,
    0 -3px rgba(62, 70, 77, 0.75),
    0 0 #272c31,
    0 2px #000,
    0 6px rgba(62, 70, 77, 0.75),
    0 9px #272c31,
    0 11px #000,
    0 15px rgba(62, 70, 77, 0.75),
    0 18px #272c31,
    0 20px #000,
    0 24px rgba(62, 70, 77, 0.75),
    0 27px #272c31,
    0 29px #000;
}

.watch .device-power {
  position: absolute;
  top: 55.8%;
  right: 5%;
  width: 1.1%;
  height: 18.9%;
  border-radius: 2px 4px 4px 2px / 2px 8px 8px 2px;
  background: #272c31;
  box-shadow: inset 0 0 2px 1px #101315;
}

.watch-state-stack .relay-state {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.watch-state-stack .state-permission {
  padding: 0;
}

.watch-head {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  color: var(--orange);
  font-weight: 800;
}

.watch-copy {
  color: var(--text-3);
  line-height: 1.35;
  margin: 6px 0 10px;
}

.watch-actions {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5px;
  margin-top: auto;
}

.watch-yes {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: var(--green);
  color: #031007;
  font-weight: 900;
  animation: tap-yes var(--demo-loop, 16s) ease-in-out infinite;
}

.watch-yes::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(48, 209, 88, 0.76);
  border-radius: 999px;
  opacity: 0;
  animation: tap-ring var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes tap-yes {
  0%, 43% { transform: scale(1); box-shadow: none; }
  50%, 56% { transform: scale(0.94); box-shadow: 0 0 0 7px rgba(48, 209, 88, 0.2); }
  62%, 100% { transform: scale(1); box-shadow: none; }
}

@keyframes tap-ring {
  0%, 48%, 60%, 100% { opacity: 0; transform: scale(0.76); }
  52% { opacity: 1; transform: scale(1.04); }
  58% { opacity: 0; transform: scale(1.42); }
}

.watch-no {
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(255, 69, 58, 0.18);
  color: var(--red);
  font-weight: 800;
}

.relay-beam,
.signal {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transform-origin: left center;
}

.relay-beam {
  z-index: 12;
  top: 50%;
  pointer-events: none;
}

.relay-beam::before,
.relay-beam::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  opacity: 0;
}

.permission-beam::after {
  right: -2px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-50%) rotate(-45deg);
  animation: beam-head-visible var(--demo-loop, 16s) ease-in-out infinite;
}

.approval-beam::before {
  left: -2px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
  animation: beam-head-visible var(--demo-loop, 16s) ease-in-out infinite;
}

.permission-beam {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.approval-beam {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.mac-to-phone {
  left: 51%;
  width: 5.5%;
  animation: relay-mac-phone var(--demo-loop, 16s) ease-in-out infinite;
}

.phone-to-watch {
  left: 71%;
  width: 5.5%;
  animation: relay-phone-watch var(--demo-loop, 16s) ease-in-out infinite;
}

.watch-to-phone {
  right: 20.5%;
  width: 5.5%;
  animation: relay-watch-phone var(--demo-loop, 16s) ease-in-out infinite;
}

.phone-to-mac {
  right: 44.5%;
  width: 6.5%;
  animation: relay-phone-mac var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes relay-mac-phone {
  0%, 20% { opacity: 0; transform: translateX(-22px); }
  26%, 33% { opacity: 1; transform: translateX(0); }
  41%, 100% { opacity: 0; transform: translateX(18px); }
}

@keyframes relay-phone-watch {
  0%, 28% { opacity: 0; transform: translateX(-22px); }
  34%, 41% { opacity: 1; transform: translateX(0); }
  49%, 100% { opacity: 0; transform: translateX(18px); }
}

@keyframes relay-watch-phone {
  0%, 54% { opacity: 0; transform: translateX(24px); }
  60%, 66% { opacity: 1; transform: translateX(0); }
  74%, 100% { opacity: 0; transform: translateX(-18px); }
}

@keyframes relay-phone-mac {
  0%, 62% { opacity: 0; transform: translateX(24px); }
  70%, 76% { opacity: 1; transform: translateX(0); }
  84%, 100% { opacity: 0; transform: translateX(-18px); }
}

@keyframes beam-head-visible {
  0%, 20% { opacity: 0; }
  26%, 76% { opacity: 1; }
  84%, 100% { opacity: 0; }
}

.signal.one {
  left: 62%;
  top: 30%;
  width: 150px;
  transform: rotate(15deg);
  animation: signal-one 16s ease-in-out infinite;
}

.signal.two {
  left: 70%;
  top: 52%;
  width: 150px;
  transform: rotate(32deg);
  animation: signal-two 16s ease-in-out infinite;
}

.signal.three {
  right: 20%;
  bottom: 22%;
  width: 170px;
  transform: rotate(205deg);
  animation: signal-three 16s ease-in-out infinite;
}

@keyframes signal-one {
  0%, 18% { opacity: 0; }
  23%, 31% { opacity: 1; }
  36%, 100% { opacity: 0; }
}

@keyframes signal-two {
  0%, 33% { opacity: 0; }
  40%, 48% { opacity: 1; }
  54%, 100% { opacity: 0; }
}

@keyframes signal-three {
  0%, 55% { opacity: 0; }
  60%, 70% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

.handoff-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(148, 163, 184, 0.12);
}

.handoff-step {
  background: rgba(3, 4, 6, 0.78);
  padding: 12px;
  min-height: 78px;
}

.step-num {
  font-family: var(--mono);
  color: var(--green);
  font-size: 11px;
}

.step-title {
  display: block;
  margin-top: 5px;
  font-weight: 700;
}

.step-copy {
  display: block;
  margin-top: 3px;
  color: var(--text-4);
  font-size: 12px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 94px clamp(20px, 5vw, 64px);
}

.section.alt {
  background: rgba(3, 4, 6, 0.62);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.lede {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-3);
  font-size: 16px;
}

.desktop-motion {
  overflow: hidden;
}

.desktop-stage {
  position: relative;
  --mini-scale: 0.36;
  --mini-small-scale: 0.26;
  --expanded-scale: 0.36;
  --expanded-small-scale: 0.24;
  --tiny-scale: 0.44;
  --tiny-small-scale: 0.32;
  --cursor-compact-sessions-x: 50%;
  --cursor-compact-sessions-y: 224px;
  --cursor-expanded-collapse-x: 63.8%;
  --cursor-expanded-collapse-y: 58px;
  --cursor-compact-shrink-x: 56%;
  --cursor-compact-shrink-y: 75px;
  --cursor-minimal-sessions-x: 50%;
  --cursor-minimal-sessions-y: 146px;
  --cursor-minimal-expand-x: 54.5%;
  --cursor-minimal-expand-y: 66px;
  width: min(820px, 92%);
  aspect-ratio: 16 / 10.8;
  min-height: 0;
  margin: 0 auto;
  padding: 18px 18px 58px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(140deg, #38383a, #171719 52%, #08080a);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 34px 90px rgba(0, 0, 0, 0.58);
  overflow: visible;
}

.desktop-stage::before {
  content: "";
  position: absolute;
  inset: 18px 18px 58px;
  border-radius: 7px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.38)),
    radial-gradient(ellipse at 54% 6%, rgba(255, 240, 184, 0.58) 0 11%, transparent 30%),
    linear-gradient(148deg, #8f88c8 0 11%, #dba173 11% 23%, #f0ba79 23% 35%, #a996b9 35% 47%, #597fc4 47% 62%, #213f94 62% 78%, #10205c 78% 100%),
    linear-gradient(24deg, transparent 0 32%, rgba(255, 204, 131, 0.42) 33% 38%, transparent 39% 100%);
  background-blend-mode: normal, screen, normal, soft-light;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.82) brightness(0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.desktop-stage::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 28px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, #3a3a3c, #19191b);
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.38);
}

.desktop-orbit {
  position: absolute;
  inset: 18px 18px 58px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(48, 209, 88, 0.12), transparent) 0 16% / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(10, 132, 255, 0.09), transparent) 0 58% / 100% 1px no-repeat;
  opacity: 0.12;
}

.desktop-orbit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: #000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.aw-window {
  font-family: var(--mono);
  color: var(--text);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}

.aw-traffic {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 22px;
  line-height: 1;
}

.aw-quota-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.aw-quota {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 106px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 700;
}

.aw-quota strong {
  color: var(--green);
  font-size: 18px;
}

.aw-quota.danger strong {
  color: var(--red);
}

.aw-quota.warn strong {
  color: var(--yellow);
}

.aw-quota .agent-logo {
  width: 20px;
  height: 20px;
}

.aw-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
}

.aw-running-count {
  color: var(--green);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
}

.aw-session-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
}

.aw-cat {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.aw-cat.permission {
  color: var(--yellow);
}

.aw-cat.done {
  color: var(--cyan);
}

.aw-state-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
}

.aw-state-line .time {
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
}

.aw-branch {
  display: inline-flex;
  align-items: center;
  max-width: 270px;
  margin-top: 8px;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(45, 212, 191, 0.2);
  color: #5eead4;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aw-agent-tag {
  align-self: start;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 800;
}

.aw-message {
  margin: 12px 0 14px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.aw-warning {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 21px;
  font-weight: 900;
}

.aw-code {
  margin-top: 8px;
  padding: 9px 13px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aw-buttons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.aw-btn {
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  min-height: 34px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 900;
}

.aw-btn.yes {
  background: rgba(48, 209, 88, 0.22);
  color: var(--green);
}

.aw-btn.no {
  background: rgba(255, 69, 58, 0.2);
  color: var(--red);
}

.aw-collapse {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 20px;
  font-weight: 800;
}

.aw-compact-card {
  width: min(960px, 100%);
  border-radius: 0;
  padding: 28px 36px 22px;
}

.aw-compact-card.in-demo {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 9;
  width: min(760px, 88%);
  transform: translateX(-50%) scale(0.72);
  transform-origin: top center;
  padding: 22px 28px 20px;
  border-radius: 30px;
  opacity: 1;
  animation: relay-mac-card var(--demo-loop, 16s) ease-in-out infinite;
}

@keyframes relay-mac-card {
  0%, 100% { opacity: 1; transform: translate(-50%, 0) scale(0.72); }
  30%, 58% { opacity: 1; transform: translate(-50%, -2px) scale(0.73); }
  68%, 82% { opacity: 1; transform: translate(-50%, 0) scale(0.72); }
}

.aw-compact-card.in-demo .aw-title-row {
  margin-top: 10px;
  font-size: 17px;
}

.aw-compact-card.in-demo .aw-quota {
  min-width: 78px;
  gap: 6px;
  font-size: 11px;
}

.aw-compact-card.in-demo .aw-quota strong {
  font-size: 14px;
}

.aw-compact-card.in-demo .aw-quota .agent-logo {
  width: 16px;
  height: 16px;
}

.aw-compact-card.in-demo .aw-state-line {
  font-size: 15px;
}

.aw-compact-card.in-demo .aw-message {
  font-size: 14px;
  line-height: 1.35;
  max-height: 40px;
  overflow: hidden;
}

.aw-compact-card.in-demo .aw-code {
  font-size: 12px;
}

.aw-compact-card.in-demo .aw-btn {
  min-width: 46px;
  min-height: 27px;
  font-size: 14px;
}

.aw-compact-card.in-demo .compact-session-stack {
  gap: 4px;
}

.aw-compact-card.in-demo .compact-session-row {
  padding: 7px 0;
}

.aw-compact-card.in-demo .compact-session-row.featured {
  padding: 9px 8px;
}

.aw-compact-card.in-demo .compact-session-head {
  font-size: 14px;
}

.aw-compact-card.in-demo .compact-session-head .aw-cat {
  width: 22px;
  height: 22px;
}

.aw-compact-card.in-demo .compact-session-row .aw-message {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.35;
}

.aw-compact-card.in-demo .compact-session-row .aw-token-row {
  font-size: 12px;
}

.product-film .aw-compact-card.in-demo {
  top: 38px;
  width: min(700px, 58%);
  padding: 18px 24px 17px;
  border-radius: 24px;
  transform: translateX(-50%) scale(0.78);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
}

.product-film .aw-compact-card.in-demo .aw-title-row {
  font-size: 18px;
}

.product-film .aw-compact-card.in-demo .mac-state-stack {
  min-height: 212px;
}

.product-film .phone-stage {
  position: absolute;
  right: 72px;
  bottom: 66px;
  z-index: 9;
  display: block;
  min-height: 0;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.48));
}

.product-film .watch-stage {
  position: absolute;
  right: 248px;
  bottom: 94px;
  z-index: 10;
  display: block;
  min-height: 0;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.58));
}

.product-film .phone {
  width: 190px;
  transform: rotate(-2deg);
}

.product-film .watch {
  width: 126px;
  transform: rotate(5deg);
}

.product-film .phone-screen {
  background: #000;
}

.phone-statusbar {
  position: absolute;
  top: 13px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.phone-app-head {
  position: absolute;
  top: 58px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.phone-app-head .aw-cat {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.phone-app-head strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.phone-app-head span {
  display: block;
  color: #42d6ff;
  font-family: var(--mono);
  font-size: 9px;
  white-space: nowrap;
}

.phone-agent {
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.25;
}

.phone-agent em {
  color: rgba(255, 255, 255, 0.42);
  font-style: normal;
}

.product-film .phone-state-stack {
  inset: 104px 12px 58px;
}

.phone-timeline {
  display: grid;
  gap: 9px;
}

.phone-event {
  position: relative;
  padding: 9px 22px 9px 10px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 10px;
  background: rgba(4, 7, 12, 0.84);
  font-family: var(--mono);
  line-height: 1.28;
}

.phone-event strong {
  margin-right: 6px;
  color: #fff;
  font-size: 11px;
}

.phone-event span {
  color: #25d366;
  font-size: 10px;
}

.phone-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.45;
}

.product-film .actual-overlay-card {
  left: 0;
  right: 0;
  top: 18px;
  border-radius: 12px;
}

.product-film .phone-approved-card.actual-overlay-card {
  top: 42px;
}

.phone-composer {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 14px;
  z-index: 3;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 11px;
}

.watch-time {
  align-self: end;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.watch-title {
  margin-top: 4px;
  color: #fff;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1;
}

.watch-project {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.watch-status-line {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 4px;
  align-items: center;
  margin-top: 10px;
  color: var(--orange);
  font-size: 10px;
}

.watch-status-line svg {
  color: var(--orange);
}

.watch-status-line span {
  color: var(--green);
}

.watch-status-line em {
  justify-self: end;
  min-width: 0;
  color: #c084fc;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-branch {
  margin-top: 5px;
  color: #25d366;
  font-size: 9px;
}

.watch-bash {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 12px;
}

.watch-command {
  margin-top: 4px;
  padding: 3px 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-film .watch-actions {
  margin-top: 8px;
  grid-template-columns: 1fr 1fr;
}

.product-film .watch-state-stack .state-permission {
  padding: 12px;
}

.product-film .watch-yes,
.product-film .watch-no {
  min-height: 24px;
  border-radius: 7px;
  font-size: 10px;
}

.product-film .watch-yes {
  background: var(--green);
  color: #041305;
}

.product-film .watch-no {
  background: var(--red);
  color: #fff;
}

.product-film .mac-to-phone {
  left: 55%;
  top: 46%;
  width: 26%;
  transform: rotate(12deg);
}

.product-film .phone-to-watch {
  left: auto;
  right: 13%;
  top: 57%;
  width: 15%;
  transform: rotate(155deg);
}

.product-film .watch-to-phone {
  right: 15%;
  top: 59%;
  width: 15%;
  transform: rotate(-25deg);
}

.product-film .phone-to-mac {
  right: 24%;
  top: 49%;
  width: 28%;
  transform: rotate(190deg);
}

.film-grid.sync-showcase {
  --mac-h: 480px;
  --phone-h: 400px;
  --watch-h: 300px;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: end;
  gap: 20px;
  min-height: 0;
  padding: 24px 10px 28px;
}

.film-grid.sync-showcase .sync-mac-device {
  width: calc(var(--mac-h) * 1.749);
}

.film-grid.sync-showcase .sync-phone-device {
  width: calc(var(--phone-h) * 0.5);
}

.film-grid.sync-showcase .sync-watch-device {
  width: calc(var(--watch-h) * 0.578);
}

.sync-device {
  position: relative;
  min-width: 0;
  z-index: 3;
}

.sync-device-label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.sync-device-label span {
  color: var(--green);
}

.sync-macbook {
  width: 96%;
  margin: 0;
  padding-bottom: 28px;
}

.sync-macbook .mac-screen {
  aspect-ratio: 16 / 10.4;
}

.sync-macbook .mac-display {
  overflow: hidden;
}

.sync-terminal {
  position: absolute;
  z-index: 3;
  left: 24px;
  top: 66px;
  bottom: 50px;
  width: 45%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(5, 8, 12, 0.83);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  font-family: var(--mono);
  backdrop-filter: blur(14px);
}

.sync-terminal-body {
  position: relative;
  padding: 10px 12px;
}

.sync-terminal .terminal-card {
  margin-top: 10px;
  padding: 8px 9px;
  font-size: 11px;
}

.sync-terminal .terminal-line {
  margin: 5px 0;
  font-size: 9.5px;
}

.sync-terminal .pane-head {
  margin-bottom: 8px;
  font-size: 9px;
}

.sync-terminal .agent-chip {
  padding: 3px 7px;
}

.sync-terminal .permission-tui {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 96px;
}

.sync-terminal .terminal-waiting {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 172px;
}

.sync-terminal .terminal-approved {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 198px;
}

.sync-showcase .terminal-remote {
  animation: sync-prompt-line var(--demo-loop, 9s) ease-in-out infinite;
}

@keyframes sync-prompt-line {
  0%, 9% { opacity: 0; transform: translateY(5px); }
  14%, 34% { opacity: 1; transform: translateY(0); }
  44%, 100% { opacity: 0; transform: translateY(-2px); }
}

.product-film .sync-showcase .sync-aw {
  position: absolute;
  left: auto;
  right: 30px;
  top: 50%;
  z-index: 4;
  width: 30.5%;
  max-height: calc(100% - 86px);
  padding: 8px 10px 7px;
  border-radius: 16px;
  opacity: 1;
  transform: translateY(-50%);
  animation: none;
  overflow: hidden;
}

.product-film .sync-showcase .sync-aw .aw-title-row {
  margin-top: 5px;
  font-size: 10px;
}

.product-film .sync-showcase .sync-aw .aw-running-count {
  font-size: 9px;
}

.product-film .sync-showcase .sync-aw .aw-quota {
  min-width: 50px;
  font-size: 6.5px;
}

.product-film .sync-showcase .sync-aw .aw-quota .agent-logo {
  width: 9px;
  height: 9px;
}

.product-film .sync-showcase .sync-aw .aw-quota strong {
  font-size: 9px;
}

.product-film .sync-showcase .sync-aw .mac-state-stack {
  min-height: 202px;
  margin-top: 5px;
}

.product-film .sync-showcase .sync-aw .compact-session-row {
  padding: 2px 0;
  border-radius: 6px;
}

.product-film .sync-showcase .sync-aw .compact-session-row.featured {
  padding: 4px 5px;
  background: rgba(255, 255, 255, 0.055);
}

.product-film .sync-showcase .sync-aw .compact-session-head {
  font-size: 8px;
}

.product-film .sync-showcase .sync-aw .compact-session-head .aw-cat {
  width: 13px;
  height: 13px;
}

.product-film .sync-showcase .sync-aw .aw-session-head {
  gap: 5px;
  margin-bottom: 5px;
}

.product-film .sync-showcase .sync-aw .aw-session-head .aw-cat {
  width: 15px;
  height: 15px;
}

.product-film .sync-showcase .sync-aw .aw-agent-tag {
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 7px;
}

.product-film .sync-showcase .sync-aw .aw-branch {
  max-width: 116px;
  margin: 3px 0 2px 18px;
  padding: 2px 5px;
  font-size: 7px;
}

.product-film .sync-showcase .sync-aw .aw-message {
  margin-left: 17px;
  font-size: 7.2px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-film .sync-showcase .sync-aw .aw-token-row {
  margin: 1px 0 0 17px;
  gap: 4px;
  font-size: 6.6px;
  white-space: nowrap;
  overflow: hidden;
}

.product-film .sync-showcase .sync-aw .aw-state-line {
  gap: 5px;
  font-size: 10px;
}

.product-film .sync-showcase .sync-aw .aw-state-line .time {
  font-size: 10px;
}

.product-film .sync-showcase .sync-aw .aw-warning {
  margin: 7px 0 5px;
  font-size: 9px;
}

.product-film .sync-showcase .sync-aw .aw-code {
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 7px;
}

.product-film .sync-showcase .sync-aw .aw-btn {
  min-width: 26px;
  min-height: 18px;
  border-radius: 4px;
  font-size: 8px;
}

.product-film .sync-showcase .sync-aw .aw-collapse {
  margin-top: 3px;
  font-size: 10px;
}

.product-film[data-demo-state="permission"] .phone-app-head .aw-cat {
  color: var(--yellow);
}

.sync-showcase .phone {
  width: min(176px, 100%);
  margin: 0 auto;
  transform: none;
}

.sync-showcase .watch {
  width: min(150px, 100%);
  margin: 0 auto 6px;
  transform: none;
}

.sync-showcase .phone-state-stack {
  inset: 89px 14px 66px;
  overflow: hidden;
}

.sync-showcase .phone-state-stack .relay-state {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sync-showcase .phone-state-stack .phone-timeline {
  min-height: 0;
  overflow: hidden;
}

.sync-showcase .phone-state-stack .phone-working {
  margin-top: auto;
  flex-shrink: 0;
}

.sync-showcase .phone-island {
  top: 11px;
  width: 78px;
  height: 24px;
}

.sync-showcase .phone-statusbar {
  top: 13px;
  left: 19px;
  right: 19px;
  font-size: 8.5px;
}

.sync-showcase .phone-app-head {
  top: 57px;
  left: 18px;
  right: 18px;
  gap: 5px;
}

.sync-showcase .phone-app-head .aw-cat {
  width: 17px;
  height: 17px;
  animation: phone-cat-permission var(--demo-loop, 9s) ease-in-out infinite;
}

@keyframes phone-cat-permission {
  0%, 27%, 62%, 100% { color: var(--green); }
  32%, 57% { color: var(--yellow); }
}

.sync-showcase .phone-app-head strong {
  font-size: 9.2px;
}

.sync-showcase .phone-app-head span,
.sync-showcase .phone-agent {
  font-size: 6.8px;
}

.sync-showcase .phone-event {
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.sync-showcase .phone-event::after {
  content: "⌄";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.32);
}

.sync-showcase .phone-event strong,
.sync-showcase .phone-event span {
  font-size: 8.5px;
}

.sync-showcase .phone-event strong {
  font-weight: 700;
  margin-right: 6px;
}

.sync-showcase .phone-event.yellow {
  border-color: rgba(255, 214, 10, 0.34);
  background: rgba(255, 159, 10, 0.08);
}

.sync-showcase .phone-timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sync-showcase .phone-approved-feed {
  gap: 7px;
  justify-content: flex-start;
}

.sync-showcase .phone-approved-feed .phone-event {
  min-height: 34px;
  padding: 7px 10px;
  align-items: flex-start;
}

.sync-showcase .phone-approved-feed .phone-event strong,
.sync-showcase .phone-approved-feed .phone-event span {
  font-size: 8.8px;
}

.sync-showcase .phone-approved-feed p {
  margin: 2px 0;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 7.4px;
  line-height: 1.34;
}

.sync-showcase .phone-timeline p {
  margin: 2px 0;
  font-size: 6.8px;
  line-height: 1.26;
}

.sync-showcase .phone-card {
  padding: 7px;
  border-radius: 9px;
}

.sync-showcase .phone-permission-feed {
  gap: 5px;
  opacity: 0.82;
}

.sync-showcase .phone-permission-feed .phone-event {
  padding: 5px 6px;
}

.sync-showcase .phone-permission-sheet {
  top: auto;
  bottom: 0;
  border-color: rgba(255, 159, 10, 0.9);
  background: rgba(73, 50, 38, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
}

.sync-showcase .phone-sheet-title {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--red);
  font-size: 8.5px;
  font-weight: 900;
}

.sync-showcase .phone-sheet-title span {
  color: var(--orange);
}

.sync-showcase .card-title {
  font-size: 8.5px;
}

.sync-showcase .code-snippet {
  margin: 6px 0;
  padding: 5px 6px;
  font-size: 7.2px;
}

.sync-showcase .phone-actions {
  gap: 5px;
}

.sync-showcase .yes,
.sync-showcase .no {
  display: grid;
  place-items: center;
  min-height: 18px;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 8px;
}

.sync-showcase .phone-composer {
  left: 18px;
  right: 18px;
  bottom: 17px;
  height: 25px;
  padding: 0 6px 0 12px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sync-showcase .phone-stop {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #1a0606;
  font-size: 8px;
  font-weight: 900;
}

.sync-showcase .phone-working {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.62);
}

.sync-showcase .phone-working .aw-cat {
  color: rgba(255, 255, 255, 0.45);
}

.sync-showcase .phone-working strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.sync-showcase .phone-working span {
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}

.sync-showcase .watch-state-stack .state-permission {
  padding: 7px 7px 12px;
}

.sync-showcase .watch-state-stack .state-approved {
  padding: 7px 7px 10px;
}

.sync-showcase .watch-state-stack .relay-state {
  padding: 6px 6px 10px;
}

.sync-showcase .watch-time {
  font-size: 7px;
}

.sync-showcase .watch-title {
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.sync-showcase .watch-project {
  margin-top: 4px;
  font-size: 6.5px;
  color: rgba(255, 255, 255, 0.52);
}

.sync-showcase .watch-status-line {
  gap: 2px;
  margin-top: 4px;
  font-size: 6.4px;
}

.sync-showcase .watch-state-stack .state-permission .watch-time {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 6px;
}

.sync-showcase .watch-state-stack .state-permission .watch-title {
  padding-right: 18px;
  font-size: 8.5px;
  letter-spacing: -0.3px;
}

.sync-showcase .watch-state-stack .state-permission .watch-project,
.sync-showcase .watch-state-stack .state-permission .watch-branch {
  display: none;
}

.sync-showcase .watch-state-stack .state-permission .watch-status-line {
  margin-top: 5px;
  font-size: 5.4px;
}

.sync-showcase .watch-state-stack .state-permission .watch-status-line svg {
  width: 9px;
  height: 9px;
  color: var(--green);
}

.sync-showcase .watch-state-stack .state-approved .watch-time {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 6px;
}

.sync-showcase .watch-state-stack .state-approved .watch-title {
  padding-right: 19px;
  font-size: 8.6px;
  letter-spacing: -0.32px;
}

.sync-showcase .watch-state-stack .state-approved .watch-project {
  margin-top: 4px;
  font-size: 5.6px;
}

.sync-showcase .watch-state-stack .state-approved .watch-status-line {
  gap: 2px;
  margin-top: 5px;
  font-size: 5.5px;
}

.sync-showcase .watch-state-stack .state-approved .watch-status-line svg {
  width: 9px;
  height: 9px;
  color: var(--green);
}

.sync-showcase .watch-state-stack .state-approved .watch-branch {
  margin-top: 3px;
  font-size: 5.2px;
}

.sync-showcase .watch-state-stack .state-approved .watch-copy {
  margin-top: 4px;
  font-size: 5.4px;
  line-height: 1.32;
}

.sync-showcase .watch-branch {
  margin-top: 3px;
  font-size: 6.8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sync-showcase .watch-bash {
  margin-top: 3px;
  font-size: 6.4px;
}

.sync-showcase .watch-copy {
  margin: 3px 0 4px;
  font-size: 6px;
  line-height: 1.25;
}

.sync-showcase .watch-command {
  margin-top: 2px;
  padding: 2px 3px;
  font-size: 5px;
}

.sync-showcase .watch-actions {
  gap: 3px;
  margin-top: 3px;
}

.sync-showcase .watch-yes,
.sync-showcase .watch-no {
  min-height: 13px;
  border-radius: 4px;
  font-size: 6px;
}

.sync-showcase .actual-overlay-card {
  left: 0;
  right: 0;
  top: 12px;
}

.sync-showcase .actual-overlay-card.phone-permission-sheet {
  top: auto;
  bottom: 0;
}

.sync-showcase .phone-approved-card.actual-overlay-card {
  top: 34px;
}

.sync-beam {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform-origin: left center;
  display: none;
}

.sync-beam::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
}

.sync-beam-request {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: sync-request-beam var(--demo-loop, 9s) ease-in-out infinite;
}

.sync-beam-request::after {
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.sync-beam-approve {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: sync-approve-beam var(--demo-loop, 9s) ease-in-out infinite;
}

.sync-beam-approve::after {
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

.sync-showcase .sync-beam.mac-to-phone {
  left: 55.5%;
  top: 46%;
  width: 8%;
  transform: rotate(4deg);
}

.sync-showcase .sync-beam.phone-to-watch {
  left: 78%;
  top: 46%;
  width: 6%;
  transform: rotate(4deg);
}

.sync-showcase .sync-beam.watch-to-phone {
  left: 78%;
  top: 56%;
  width: 6%;
  transform: rotate(184deg);
}

.sync-showcase .sync-beam.phone-to-mac {
  left: 55.5%;
  top: 56%;
  width: 8%;
  transform: rotate(184deg);
}

@keyframes sync-request-beam {
  0%, 19% { opacity: 0; filter: blur(0); }
  24%, 39% { opacity: 0.88; filter: blur(0.1px); }
  48%, 100% { opacity: 0; filter: blur(1px); }
}

@keyframes sync-approve-beam {
  0%, 57% { opacity: 0; filter: blur(0); }
  63%, 78% { opacity: 0.9; filter: blur(0.1px); }
  88%, 100% { opacity: 0; filter: blur(1px); }
}

.aw-minimal-pill {
  position: absolute;
  left: 50%;
  top: 54px;
  z-index: 3;
  width: 480px;
  min-height: 470px;
  padding: 18px 18px 14px;
  border-radius: 20px;
  transform-origin: top center;
  animation: island-minimal-cycle 16s cubic-bezier(.2,.8,.2,1) infinite;
  animation-play-state: paused;
}

.desktop-stage.is-visible .aw-minimal-pill {
  animation-play-state: running;
}

@keyframes island-minimal-cycle {
  0%, 18% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px) scale(var(--mini-scale));
  }
  23%, 45% {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px) scale(var(--mini-small-scale));
  }
  50%, 58% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px) scale(var(--mini-scale));
  }
  63%, 97% {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px) scale(var(--mini-small-scale));
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px) scale(var(--mini-scale));
  }
}

.compact-project-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 10px;
  font-family: var(--sans);
}

.compact-project-head strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.compact-project-head span {
  margin-left: auto;
  color: var(--green);
  font-family: var(--mono);
  font-size: 16px;
}

.aw-compact-pill .aw-quota {
  gap: 6px;
}

.aw-compact-pill .aw-quota span {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.compact-session-stack {
  display: grid;
  gap: 8px;
}

.compact-session-row {
  padding: 8px 0;
  overflow: hidden;
}

.compact-session-row.featured {
  margin-inline: -2px;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.compact-session-head {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
}

.compact-session-head .aw-cat {
  width: 22px;
  height: 22px;
}

.compact-session-head .aw-agent-tag {
  justify-self: end;
}

.compact-session-row .aw-branch {
  max-width: 220px;
  margin: 5px 0 5px 31px;
}

.compact-session-row .aw-message {
  margin-left: 31px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compact-session-row .aw-token-row {
  margin-left: 31px;
  font-size: 13px;
}

.muted-branch {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
}

.aw-minimal-small {
  position: absolute;
  left: 50%;
  top: 56px;
  z-index: 5;
  width: 240px;
  min-height: 196px;
  padding: 14px;
  border-radius: 20px;
  transform-origin: top center;
  opacity: 0;
  animation: island-small-cycle 16s cubic-bezier(.2,.8,.2,1) infinite;
  animation-play-state: paused;
}

.desktop-stage.is-visible .aw-minimal-small {
  animation-play-state: running;
}

.minimal-topline {
  gap: 9px;
}

.minimal-topline .aw-quota {
  font-size: 11px;
}

.minimal-topline .agent-logo {
  width: 14px;
  height: 14px;
}

.minimal-state {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 900;
}

.minimal-state .aw-cat {
  width: 25px;
  height: 25px;
}

.minimal-permission-line {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 9px;
  border-radius: 8px;
  background: rgba(255, 159, 10, 0.08);
  font-family: var(--mono);
}

.minimal-permission-line strong {
  color: var(--orange);
}

.minimal-permission-line span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes island-small-cycle {
  0%, 60% {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px) scale(var(--tiny-small-scale));
  }
  64%, 76% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(var(--tiny-scale));
  }
  81%, 92% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(var(--tiny-small-scale));
  }
  95%, 98% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(var(--tiny-scale));
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(var(--tiny-small-scale));
  }
}

.aw-minimal-pill .aw-quota-row {
  gap: 20px;
}

.aw-minimal-pill > .aw-quota-row,
.aw-minimal-small > .aw-quota-row {
  position: relative;
  flex-wrap: nowrap;
  padding-right: 100px;
}

.aw-minimal-pill > .aw-quota-row > .aw-traffic,
.aw-minimal-small > .aw-quota-row > .aw-traffic {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.aw-minimal-pill .aw-quota {
  min-width: auto;
  font-size: 13px;
}

.aw-minimal-pill .aw-title-row {
  margin-top: 18px;
  justify-content: flex-start;
  gap: 12px;
  color: var(--orange);
}

.permission-stack {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.permission-item {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 159, 10, 0.08);
}

.permission-item-head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 9px;
  align-items: center;
}

.permission-item .aw-code {
  margin-top: 6px;
  padding: 0;
  background: transparent;
  font-size: 16px;
}

.aw-expanded-panel {
  position: absolute;
  left: 50%;
  top: 46px;
  z-index: 4;
  width: 1040px;
  padding: 28px 28px 18px;
  border-radius: 32px;
  transform-origin: top center;
  overflow: hidden;
  animation: island-expanded-cycle 16s cubic-bezier(.2,.8,.2,1) infinite;
  animation-play-state: paused;
}

.aw-expanded-panel > .aw-traffic {
  justify-content: flex-end;
  margin-bottom: 22px;
}

.desktop-stage.is-visible .aw-expanded-panel {
  animation-play-state: running;
}

@keyframes island-expanded-cycle {
  0%, 18% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(var(--expanded-small-scale));
  }
  23%, 43% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(var(--expanded-scale));
  }
  48%, 77% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px) scale(var(--expanded-small-scale));
  }
  81%, 91% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(var(--expanded-scale));
  }
  96%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px) scale(var(--expanded-small-scale));
  }
}

.usage-table {
  display: grid;
  gap: 12px;
  max-width: 810px;
  margin-bottom: 28px;
}

.usage-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.usage-name {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  font-family: var(--sans);
}

.usage-name strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.usage-name span {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 15px;
}

.usage-meter {
  display: grid;
  grid-template-columns: 34px 48px 120px 58px;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 14px;
  font-weight: 800;
}

.usage-meter strong {
  color: var(--green);
  font-size: 20px;
}

.usage-meter.warn strong {
  color: var(--yellow);
}

.usage-meter.danger strong {
  color: var(--red);
}

.meter-track {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.meter-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.meter-track .w-0 { width: 0%; }
.meter-track .w-7 { width: 7%; }
.meter-track .w-18 { width: 18%; }
.meter-track .w-21 { width: 21%; }
.meter-track .w-59 { width: 59%; }
.meter-track .w-100 { width: 100%; }

.usage-meter.warn .meter-track span {
  background: var(--yellow);
}

.usage-meter.danger .meter-track span {
  background: var(--red);
}

.aw-filter-row {
  display: flex;
  gap: 12px;
  padding: 13px 8px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.aw-filter {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
}

.aw-project-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 -28px;
  padding: 15px 36px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 900;
}

.aw-project-row span:last-child {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.32);
  font-size: 17px;
}

.muted-project strong {
  color: rgba(255, 255, 255, 0.78);
}

.aw-muted-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 69, 58, 0.82);
}

.aw-muted-icon svg {
  width: 15px;
  height: 15px;
}

.aw-expanded-session {
  padding: 28px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.aw-expanded-session .aw-message {
  margin-left: 44px;
  max-width: 1030px;
}

.aw-expanded-session .aw-code {
  margin-left: 44px;
}

.aw-token-row {
  display: flex;
  gap: 8px;
  margin-left: 44px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 16px;
}

.aw-token-row .blue-dot {
  color: var(--blue);
}

.aw-token-row .green-dot {
  color: var(--green);
}

.compact-shrink-hit,
.panel-collapse-hit,
.minimal-expand-hit {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.compact-sessions-hit,
.minimal-sessions-hit {
  width: max-content;
  margin-inline: auto;
  padding: 4px 14px;
  border-radius: 999px;
}

.desktop-stage.is-visible .compact-sessions-hit {
  animation: compact-sessions-flash 16s ease-in-out infinite;
}

.desktop-stage.is-visible .minimal-sessions-hit {
  animation: minimal-sessions-flash 16s ease-in-out infinite;
}

.desktop-stage.is-visible .panel-collapse-hit {
  animation: panel-collapse-flash 16s ease-in-out infinite;
}

.desktop-stage.is-visible .compact-shrink-hit {
  animation: compact-shrink-flash 16s ease-in-out infinite;
}

.desktop-stage.is-visible .minimal-expand-hit {
  animation: minimal-expand-flash 16s ease-in-out infinite;
}

@keyframes compact-sessions-flash {
  0%, 17%, 23%, 100% { background: transparent; color: rgba(255,255,255,0.42); }
  19%, 21% { background: rgba(48, 209, 88, 0.18); color: var(--green); }
}

@keyframes panel-collapse-flash {
  0%, 41%, 47%, 88%, 94%, 100% { background: transparent; color: rgba(255,255,255,0.42); }
  43%, 45%, 90%, 92% { background: rgba(48, 209, 88, 0.18); color: var(--green); }
}

@keyframes compact-shrink-flash {
  0%, 56%, 62%, 100% { background: transparent; color: rgba(255,255,255,0.42); }
  58%, 60% { background: rgba(48, 209, 88, 0.18); color: var(--green); }
}

@keyframes minimal-sessions-flash {
  0%, 70%, 76%, 100% { background: transparent; color: rgba(255,255,255,0.42); }
  72%, 74% { background: rgba(48, 209, 88, 0.18); color: var(--green); }
}

@keyframes minimal-expand-flash {
  0%, 94%, 99%, 100% { background: transparent; color: rgba(255,255,255,0.42); }
  96%, 98% { background: rgba(48, 209, 88, 0.18); color: var(--green); }
}

.aw-cursor {
  position: absolute;
  --cursor-shape: polygon(0 0, 0 82%, 24% 65%, 40% 100%, 58% 92%, 43% 58%, 78% 58%);
  z-index: 8;
  left: 62%;
  top: 118px;
  width: 28px;
  height: 32px;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.75));
  animation: cursor-click-cycle 16s ease-in-out infinite;
  animation-play-state: paused;
}

.aw-cursor::before,
.aw-cursor::after {
  content: "";
  position: absolute;
  clip-path: var(--cursor-shape);
}

.aw-cursor::before {
  inset: 0;
  z-index: 1;
  background: #020202;
}

.aw-cursor::after {
  inset: 3px;
  z-index: 2;
  background: #fff;
}

.aw-cursor span {
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 0;
  width: 34px;
  height: 34px;
  border: 2px solid var(--green);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  animation: cursor-ripple-cycle 16s ease-in-out infinite;
  animation-play-state: paused;
}

.desktop-stage.is-visible .aw-cursor,
.desktop-stage.is-visible .aw-cursor span {
  animation-play-state: running;
}

@keyframes cursor-click-cycle {
  0% { opacity: 0; left: var(--cursor-compact-sessions-x); top: var(--cursor-compact-sessions-y); transform: scale(0.92); }
  8%, 17% { opacity: 1; left: var(--cursor-compact-sessions-x); top: var(--cursor-compact-sessions-y); transform: scale(0.92); }
  20% { opacity: 1; left: var(--cursor-compact-sessions-x); top: var(--cursor-compact-sessions-y); transform: scale(0.8); }
  23%, 30% { opacity: 1; left: var(--cursor-compact-sessions-x); top: var(--cursor-compact-sessions-y); transform: scale(0.92); }
  36%, 42% { opacity: 1; left: var(--cursor-expanded-collapse-x); top: var(--cursor-expanded-collapse-y); transform: scale(0.92); }
  44% { opacity: 1; left: var(--cursor-expanded-collapse-x); top: var(--cursor-expanded-collapse-y); transform: scale(0.8); }
  47%, 54% { opacity: 1; left: var(--cursor-expanded-collapse-x); top: var(--cursor-expanded-collapse-y); transform: scale(0.92); }
  56%, 58% { opacity: 1; left: var(--cursor-compact-shrink-x); top: var(--cursor-compact-shrink-y); transform: scale(0.92); }
  60% { opacity: 1; left: var(--cursor-compact-shrink-x); top: var(--cursor-compact-shrink-y); transform: scale(0.8); }
  63%, 70% { opacity: 1; left: var(--cursor-compact-shrink-x); top: var(--cursor-compact-shrink-y); transform: scale(0.92); }
  72% { opacity: 1; left: var(--cursor-minimal-sessions-x); top: var(--cursor-minimal-sessions-y); transform: scale(0.8); }
  75%, 84% { opacity: 1; left: var(--cursor-minimal-sessions-x); top: var(--cursor-minimal-sessions-y); transform: scale(0.92); }
  88% { opacity: 1; left: var(--cursor-expanded-collapse-x); top: var(--cursor-expanded-collapse-y); transform: scale(0.92); }
  91% { opacity: 1; left: var(--cursor-expanded-collapse-x); top: var(--cursor-expanded-collapse-y); transform: scale(0.8); }
  94% { opacity: 1; left: var(--cursor-expanded-collapse-x); top: var(--cursor-expanded-collapse-y); transform: scale(0.92); }
  96% { opacity: 1; left: var(--cursor-minimal-expand-x); top: var(--cursor-minimal-expand-y); transform: scale(0.8); }
  98% { opacity: 1; left: var(--cursor-minimal-expand-x); top: var(--cursor-minimal-expand-y); transform: scale(0.92); }
  100% { opacity: 0; left: var(--cursor-minimal-expand-x); top: var(--cursor-minimal-expand-y); transform: scale(0.92); }
}

@keyframes cursor-ripple-cycle {
  0%, 18%, 22%, 42%, 46%, 58%, 62%, 70%, 74%, 89%, 93%, 95%, 99%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  20%, 44%, 60%, 72%, 91%, 96% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.45); }
  22%, 46%, 62%, 74%, 93%, 99% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); }
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.usecase-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(16, 17, 20, 0.82);
}

.usecase-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050507;
}

.usecase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usecase-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.usecase-label {
  margin-bottom: 12px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.usecase-card h3 {
  font-size: 21px;
}

.usecase-card p {
  margin-top: auto;
  color: var(--text-3);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card,
.tone-card,
.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(16, 17, 20, 0.82);
}

.feature-card {
  padding: 22px;
  min-height: 242px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(48, 209, 88, 0.08);
  border: 1px solid rgba(48, 209, 88, 0.24);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p,
.tone-card p,
.faq-a {
  color: var(--text-3);
}

.device-preview {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.tone-card {
  padding: 24px;
}

.tone-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tone-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-3);
}

.tone-list strong {
  color: var(--text);
}

.mini-ui {
  min-height: 100%;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(rgba(48, 209, 88, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 209, 88, 0.05) 1px, transparent 1px),
    rgba(3, 4, 6, 0.88);
  background-size: 22px 22px;
}

.compact-island {
  max-width: 520px;
  margin: 0 auto 18px;
  padding: 12px 18px;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.46);
}

.compact-island.narrow {
  max-width: 420px;
}

.session-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(248, 250, 252, 0.08);
  font-family: var(--mono);
  font-size: 11px;
}

.session-row:first-child {
  border-top: 0;
}

.session-title {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--text);
  font-weight: 800;
}

.session-sub {
  margin-top: 3px;
  color: var(--text-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agent-tag {
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(248, 250, 252, 0.07);
  color: var(--text-2);
  font-size: 10px;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 0 18px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-a {
  padding-bottom: 20px;
}

.cta {
  position: relative;
  z-index: 1;
  padding: 104px clamp(20px, 5vw, 64px);
  text-align: center;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 44px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--text-4);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.footer-tagline {
  margin-top: 10px;
}

@media (max-width: 1080px) {
  .film-grid,
  .device-preview {
    grid-template-columns: 1fr;
  }

  .film-grid.sync-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px;
  }

  .sync-showcase .sync-beam {
    display: none;
  }

  .sync-showcase .sync-phone-device,
  .sync-showcase .sync-watch-device {
    justify-self: center;
    width: min(100%, 310px);
  }

  .phone-stage,
  .watch-stage {
    min-height: auto;
  }

  .relay-beam {
    display: none;
  }

  .phone {
    width: min(285px, 88vw);
  }

  .watch {
    width: min(210px, 70vw);
  }

  .desktop-stage {
    --mini-scale: 0.32;
    --mini-small-scale: 0.23;
    --expanded-scale: 0.31;
    --expanded-small-scale: 0.22;
    --tiny-scale: 0.38;
    --tiny-small-scale: 0.28;
    --cursor-compact-sessions-y: 204px;
    --cursor-expanded-collapse-x: 65.5%;
    --cursor-expanded-collapse-y: 54px;
    --cursor-compact-shrink-x: 57.5%;
    --cursor-compact-shrink-y: 67px;
    --cursor-minimal-sessions-y: 132px;
    --cursor-minimal-expand-x: 55%;
    --cursor-minimal-expand-y: 58px;
  }

  .usage-row {
    grid-template-columns: 140px 1fr 1fr;
    gap: 18px;
  }

  .usage-meter {
    grid-template-columns: 34px 48px 112px 58px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usecase-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 11vw, 44px);
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .film-grid {
    padding: 14px;
  }

  .product-film {
    width: calc(100vw - 32px);
  }

  .film-topbar {
    gap: 8px;
    font-size: 10px;
  }

  .film-topbar > span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .film-grid.sync-showcase {
    padding: 16px 14px 22px;
  }

  .sync-device-label {
    margin-bottom: 10px;
  }

  .sync-macbook {
    width: 92%;
    margin: 0 auto;
  }

  .sync-terminal {
    left: 12px;
    top: 58px;
    bottom: 42px;
    width: 48%;
  }

  .sync-macbook .mac-screen {
    padding: 10px;
  }

  .sync-macbook .mac-display {
    border-radius: 4px;
  }

  .sync-macbook .mac-menu-bar {
    height: 24px;
    gap: 8px;
    padding: 0 10px;
    font-size: 8px;
  }

  .sync-macbook .mac-notch {
    width: 76px;
    height: 20px;
  }

  .sync-terminal .terminal-line,
  .sync-terminal .terminal-card,
  .sync-terminal .pane-head {
    font-size: 8px;
  }

  .product-film .sync-showcase .sync-aw {
    right: 12px;
    top: 58px;
    width: 42%;
    padding: 8px 9px;
    border-radius: 14px;
  }

  .product-film .sync-showcase .sync-aw .aw-title-row {
    margin-top: 5px;
    font-size: 8.5px;
  }

  .product-film .sync-showcase .sync-aw .aw-running-count {
    font-size: 8px;
  }

  .product-film .sync-showcase .sync-aw .aw-quota {
    min-width: 42px;
    font-size: 6px;
  }

  .product-film .sync-showcase .sync-aw .aw-quota .agent-logo {
    width: 9px;
    height: 9px;
  }

  .product-film .sync-showcase .sync-aw .aw-quota strong {
    font-size: 8px;
  }

  .product-film .sync-showcase .sync-aw .mac-state-stack {
    min-height: 112px;
  }

  .product-film .sync-showcase .sync-aw .compact-session-head,
  .product-film .sync-showcase .sync-aw .aw-message,
  .product-film .sync-showcase .sync-aw .aw-branch,
  .product-film .sync-showcase .sync-aw .aw-agent-tag {
    font-size: 7px;
  }

  .product-film .sync-showcase .sync-aw .compact-session-head .aw-cat {
    width: 11px;
    height: 11px;
  }

  .product-film .sync-showcase .sync-aw .aw-message,
  .product-film .sync-showcase .sync-aw .aw-branch {
    margin-left: 15px;
  }

  .product-film .sync-showcase .sync-aw .aw-collapse {
    margin-top: 4px;
    font-size: 10px;
  }

  .tui-window {
    inset: 32px 12px 18px;
  }

  .tui-panes {
    grid-template-columns: 1fr;
  }

  .tui-pane + .tui-pane {
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
  }

  .mac-island-demo {
    width: 90%;
    top: 18px;
  }

  .phone-stage,
  .watch-stage {
    min-height: auto;
  }

  .desktop-stage {
    --mini-scale: 0.23;
    --mini-small-scale: 0.17;
    --expanded-scale: 0.2;
    --expanded-small-scale: 0.14;
    --tiny-scale: 0.28;
    --tiny-small-scale: 0.2;
    --cursor-compact-sessions-y: 143px;
    --cursor-expanded-collapse-x: 69%;
    --cursor-expanded-collapse-y: 42px;
    --cursor-compact-shrink-x: 59.5%;
    --cursor-compact-shrink-y: 42px;
    --cursor-minimal-sessions-y: 82px;
    --cursor-minimal-expand-x: 55.5%;
    --cursor-minimal-expand-y: 36px;
    padding: 10px 10px 42px;
    aspect-ratio: 16 / 13.2;
  }

  .desktop-stage::before,
  .desktop-orbit {
    inset: 10px 10px 42px;
  }

  .desktop-stage::after {
    bottom: 20px;
  }

  .aw-minimal-pill {
    top: 32px;
  }

  .aw-minimal-pill {
    border-radius: 28px;
  }

  .aw-quota-row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .aw-quota {
    min-width: auto;
  }

  .aw-traffic {
    font-size: 18px;
    gap: 14px;
  }

  .aw-minimal-pill > .aw-quota-row,
  .aw-minimal-small > .aw-quota-row {
    padding-right: 76px;
  }

  .aw-title-row {
    font-size: 20px;
  }

  .aw-expanded-panel {
    top: 28px;
    padding: 20px 16px 0;
    overflow: hidden;
  }

  .aw-minimal-small {
    top: 28px;
  }

  .aw-cursor {
    width: 20px;
    height: 24px;
  }

  .aw-cursor::after {
    inset: 2px;
  }

  .aw-filter-row {
    overflow-x: auto;
    padding-bottom: 18px;
  }

  .aw-filter {
    white-space: nowrap;
    font-size: 15px;
  }

  .aw-project-row {
    margin: 0 -16px;
    padding: 13px 18px;
    font-size: 20px;
  }

  .aw-expanded-session .aw-message,
  .aw-expanded-session .aw-code,
  .aw-token-row {
    margin-left: 0;
  }

  .aw-message {
    font-size: 16px;
  }

  .aw-code {
    font-size: 14px;
  }

  .phone {
    width: min(270px, 86vw);
  }

  .watch {
    width: min(196px, 70vw);
  }

  .handoff-map {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .usecase-card:last-child {
    grid-column: auto;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .mac-island-demo,
  .aw-compact-card.in-demo,
  .phone-card,
  .watch,
  .terminal-approved,
  .terminal-remote,
  .approved-badge {
    opacity: 1;
  }
}

/* === PommePlate device frames in sync-showcase === */
.sync-showcase .phone {
  width: 100%;
  aspect-ratio: 1296 / 2592;
  padding: 0;
  border: none;
  border-radius: 0;
  background: url("./assets/mockups/iphone.svg") center/contain no-repeat;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.sync-showcase .phone .device-frame,
.sync-showcase .phone .device-screen {
  position: absolute;
  inset: auto;
  left: 6.62%;
  top: 3%;
  width: 86.82%;
  height: 94%;
  border-radius: 10% / 4.9%;
  overflow: hidden;
}

.sync-showcase .phone .device-stripe,
.sync-showcase .phone .device-header,
.sync-showcase .phone .device-sensors,
.sync-showcase .phone .device-btns,
.sync-showcase .phone .device-power,
.sync-showcase .phone .device-home {
  display: none !important;
}

.sync-showcase .watch {
  width: 100%;
  aspect-ratio: 508 / 878;
  padding: 0;
  border: none;
  border-radius: 0;
  background: url("./assets/mockups/watch.svg") center/contain no-repeat;
  box-shadow: none;
}

.sync-showcase .watch .device-frame,
.sync-showcase .watch .device-screen {
  position: absolute;
  inset: auto;
  left: 3.57%;
  top: 19.8%;
  width: 92.4%;
  height: 64.8%;
  border-radius: 21% / 18%;
  overflow: hidden;
}

.sync-showcase .watch .device-btns,
.sync-showcase .watch .device-power {
  display: none !important;
}

/* === PommePlate MacBook frame in sync-showcase === */
.sync-showcase .sync-macbook {
  position: relative;
  width: 100%;
  aspect-ratio: 3910 / 2236;
  margin: 0;
  padding: 0;
  background: url("./assets/mockups/macbook.svg") center/contain no-repeat;
}

.sync-showcase .sync-macbook::before,
.sync-showcase .sync-macbook::after {
  display: none !important;
}

.sync-showcase .sync-macbook .mac-screen {
  position: absolute;
  inset: auto;
  left: 10.72%;
  top: 4.25%;
  width: 78.57%;
  height: 85.87%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: auto;
}

.sync-showcase .sync-macbook .mac-display {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
