:root {
  --bg: #050505;
  --surface: #0c0c0e;
  --card: #141416;
  --line: #2a2a2c;
  --text: #f5f5f7;
  --muted: #8e8e93;
  --faint: #636366;
  --blue: #3b82f6;
  --green: #34c759;
  --red: #ff453a;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.orb {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.orb-a {
  width: 480px;
  height: 480px;
  top: -120px;
  right: 8%;
  background: rgba(59, 130, 246, 0.22);
}

.orb-b {
  width: 360px;
  height: 360px;
  top: 420px;
  left: -80px;
  background: rgba(52, 199, 89, 0.08);
}

.nav,
main,
footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 15px;
}

.pro {
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 2px 6px 1px;
  border-radius: 4px;
}

.nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1,
h2 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  margin-bottom: 18px;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 34rem;
  margin-bottom: 28px;
}

.signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 480px;
}

.signup input[type="email"] {
  height: 52px;
  border: 1px solid var(--line);
  background: #0b0b0d;
  color: var(--text);
  border-radius: 12px;
  padding: 0 16px;
  font: 500 16px Outfit, sans-serif;
  outline: none;
}

.signup input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.signup button,
.button {
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font: 700 15px Outfit, sans-serif;
  padding: 0 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.signup button:hover,
.button:hover {
  filter: brightness(1.08);
}

.signup button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.signup-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  font-size: 14px;
  color: var(--green);
}

.signup-status.error {
  color: var(--red);
}

.fine {
  margin-top: 12px;
  color: var(--faint);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.phone-stack {
  position: relative;
  width: 310px;
  height: 640px;
}

.hero-visual .iphone {
  --s: 0.68;
}

.phone-front {
  position: relative;
  z-index: 2;
  transform: rotate(4deg) translateY(12px);
}

.phone-back {
  position: absolute;
  inset: 48px auto auto 0;
  opacity: 0.42;
  z-index: 1;
  transform: rotate(-11deg) scale(0.88);
  transform-origin: top center;
}

.watch {
  position: relative;
  width: 168px;
  z-index: 3;
  overflow: visible;
}

.hero-watch {
  position: absolute;
  right: 2%;
  top: 210px;
  transform: rotate(8deg);
}

.watch-case {
  position: relative;
  z-index: 2;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(165deg, #5e5e62 0%, #2a2a2e 12%, #141416 32%, #070708 55%, #151517 84%, #3c3c40 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.watch-lcd {
  height: 188px;
  border-radius: 32px;
  background: #000;
  color: #fff;
  padding: 14px 12px 12px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.watch-time {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
}

.watch-comp {
  margin-top: 16px;
  background: #1c1c1e;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.watch-t {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #3b82f6;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.watch-comp strong {
  display: block;
  font-size: 12px;
}

.watch-comp em {
  font-style: normal;
  font-size: 12px;
  color: #8e8e93;
}

.watch-comp b {
  color: #34c759;
  font-weight: 700;
}

.watch-lcd.notify {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.watch-lcd.notify .watch-app {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #8e8e93;
  line-height: 1;
  flex-shrink: 0;
}

.watch-lcd.notify .watch-t {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  font-size: 8px;
}

.watch-lcd.notify strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
  flex-shrink: 0;
}

.watch-lcd.notify p {
  margin: 0;
  color: #aeaeb2;
  font-size: 12px;
  line-height: 1.25;
  flex-shrink: 0;
}

.watch-px {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  line-height: 1.2;
  margin-top: auto;
}

.watch-px b {
  color: #34c759;
  font-size: 12px;
}

.watch-crown {
  position: absolute;
  right: -8px;
  top: 58px;
  width: 10px;
  height: 28px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(90deg, #6a6a6e, #2a2a2e 35%, #0c0c0e);
  z-index: 3;
}

.watch-side {
  position: absolute;
  right: -6px;
  top: 96px;
  width: 6px;
  height: 22px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, #6a6a6e, #2a2a2e 35%, #0c0c0e);
  z-index: 3;
}

.watch-band {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 86px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #5a5a60 0%,
    #2e2e32 10%,
    #1a1a1c 28%,
    #121214 50%,
    #1a1a1c 72%,
    #2e2e32 90%,
    #5a5a60 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 8px 0 12px rgba(0, 0, 0, 0.35),
    inset -8px 0 12px rgba(0, 0, 0, 0.35);
}

.watch-band.top {
  top: -70px;
  border-radius: 14px 14px 0 0;
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
}

.watch-band.bot {
  bottom: -70px;
  border-radius: 0 0 14px 14px;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 7% 100%);
}

.watch-band.bot::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 8px;
  height: 46px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 4px, #050505 2.4px, transparent 2.5px),
    radial-gradient(circle at 50% 16px, #050505 2.4px, transparent 2.5px),
    radial-gradient(circle at 50% 28px, #050505 2.4px, transparent 2.5px),
    radial-gradient(circle at 50% 40px, #050505 2.4px, transparent 2.5px);
  pointer-events: none;
}

.device-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 12px 0 8px;
}

.device-fig {
  margin: 0;
  text-align: center;
}

.device-fig figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.watch-fig {
  padding-top: 12px;
}

.watch-fig figcaption {
  position: relative;
  z-index: 5;
  margin-top: 86px;
}

.stage-watch {
  transform: rotate(-6deg);
}

.phone iframe,
.shot iframe {
  width: 390px;
  height: 844px;
  border: 0;
  display: block;
  background: #000;
}

.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(20, 20, 22, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  gap: 2px;
  min-width: 132px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.float-card .ex {
  font-size: 10px;
  letter-spacing: 0.8px;
  color: var(--faint);
  font-weight: 600;
}

.float-card strong {
  font-size: 15px;
}

.float-card .up {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.float-card .down {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.float-a {
  top: 72px;
  left: 0;
  animation: float 5.5s ease-in-out infinite;
}

.float-b {
  bottom: 90px;
  right: 4%;
  animation: float 6.5s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.exchanges {
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  color: var(--faint);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shots {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.shots-copy {
  max-width: 640px;
  margin-bottom: 36px;
}

.shots-copy h2,
.bottom-cta h2,
.features h3 {
  font-weight: 700;
}

.shots-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.shots-copy p {
  color: var(--muted);
  font-size: 17px;
}

.shot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
}

.shot-grid > figure {
  margin: 0;
  text-align: center;
}

.shot-grid figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.ios-shots {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.ios-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
}

.tv {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.tv-shell {
  background: #0b0b0d;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.tv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.tv-toolbar span {
  color: var(--muted);
  font-size: 13px;
  margin-left: 8px;
}

.tv-tfs {
  display: flex;
  gap: 4px;
}

.tv-tfs span {
  margin: 0;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.tv-tfs .on {
  background: #1c1c1e;
  color: var(--text);
  font-weight: 600;
}

.tv-last {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
}

.tv-last.up {
  color: var(--green);
}

.tv-last.dn {
  color: var(--red);
}

.tv-shell svg {
  width: 100%;
  height: 420px;
  display: block;
  background: #0b0b0d;
}

.features {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 901px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.features article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.features h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.features p {
  color: var(--muted);
}

.mac {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.mac-full {
  margin: 0 0 22px;
}

.mac-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.mac-full figcaption {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

.macdesk-scale {
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 1180 / 720;
  margin-bottom: 10px;
}

.macdesk {
  width: 1180px;
  height: 720px;
  transform: scale(calc(100cqi / 1180px));
  transform-origin: top left;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 70% 20%, rgba(59, 130, 246, 0.18), transparent),
    radial-gradient(700px 380px at 20% 80%, rgba(52, 199, 89, 0.08), transparent),
    #1a1a1e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.macbar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 10px;
  background: rgba(28, 28, 30, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 500;
  color: #f5f5f7;
  position: relative;
}

.macbar-left,
.macbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.macbar-left span {
  color: #d1d1d6;
}

.apple {
  width: 13px;
  height: 15px;
  display: block;
}

.wifi {
  width: 15px;
  height: 15px;
  opacity: 0.9;
}

.mac-extra {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.22);
  border: 1px solid rgba(59, 130, 246, 0.55);
  border-radius: 6px;
  padding: 1px 7px 1px 4px;
  z-index: 4;
}

.mac-extra i {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mac-extra b {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
}

.mac-extra .pulse {
  position: absolute;
  inset: -5px;
  border-radius: 8px;
  border: 2px solid var(--blue);
  opacity: 0.7;
  animation: pulse 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.94);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.mac-clock {
  font-variant-numeric: tabular-nums;
}

.macstage {
  position: relative;
  height: 692px;
}

.mac-win {
  margin: 0;
  background: #1c1c1e;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3a3a3c;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.mac-titlebar {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #2c2c2e;
  border-bottom: 1px solid #3a3a3c;
  font-size: 13px;
  font-weight: 600;
}

.dots {
  position: absolute;
  left: 12px;
  display: flex;
  gap: 6px;
}

.dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.dots i:nth-child(1) {
  background: #ff5f57;
}

.dots i:nth-child(2) {
  background: #febc2e;
}

.dots i:nth-child(3) {
  background: #28c840;
}

.coming {
  position: absolute;
  right: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 3px 8px;
  border-radius: 999px;
}

.mac-win-full {
  position: absolute;
  left: 28px;
  top: 80px;
  width: 720px;
}

.macdesk-app .mac-win-full {
  left: 62px;
  top: 18px;
  width: 1056px;
}

.mac-win-body {
  overflow: hidden;
  background: #1c1c1e;
  container-type: inline-size;
}

.mac-win-body iframe {
  border: 0;
  display: block;
  background: #1c1c1e;
  pointer-events: none;
  transform-origin: top left;
}

.mac-win-body-full {
  aspect-ratio: 1100 / 680;
}

.mac-win-body-full iframe {
  width: 1100px;
  height: 680px;
  transform: scale(calc(100cqi / 1100px));
}

.mac-win-pop {
  position: absolute;
  top: 8px;
  left: 360px;
  right: auto;
  width: 340px;
  z-index: 3;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.macdesk-bar .mac-win-pop {
  left: auto;
  right: 36px;
  top: 10px;
  width: 380px;
}

.mac-win-pop .mac-titlebar {
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.mac-win-pop .mac-win-body-pop {
  border-radius: 0 0 12px 12px;
  border: 1px solid #3a3a3c;
  border-top: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.mac-pop-arrow {
  position: absolute;
  top: -7px;
  right: 92px;
  width: 14px;
  height: 14px;
  background: #2c2c2e;
  border-top: 1px solid #3a3a3c;
  border-left: 1px solid #3a3a3c;
  transform: rotate(45deg);
  z-index: 2;
}

.mac-win-body-pop {
  aspect-ratio: 781 / 1024;
}

.mac-win-body-pop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  background: #000;
}

.mac-cursor {
  position: absolute;
  top: -8px;
  left: 628px;
  right: auto;
  width: 22px;
  height: 26px;
  z-index: 6;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.45));
  animation: cursor-tap 2.4s ease-in-out infinite;
}

.macdesk-bar .mac-cursor {
  left: auto;
  right: 168px;
  top: -10px;
}

@keyframes cursor-tap {
  0%,
  100% {
    transform: translate(0, 0);
  }
  45% {
    transform: translate(4px, -6px);
  }
  55% {
    transform: translate(2px, -2px);
  }
}

.mac-note {
  position: absolute;
  z-index: 5;
  margin: 0;
  padding: 6px 10px;
  background: rgba(10, 10, 12, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.macdesk-bar .mac-note.n1 {
  top: 8px;
  left: auto;
  right: 430px;
}

.macdesk-bar .mac-note.n2 {
  top: auto;
  bottom: 28px;
  left: auto;
  right: 48px;
}

.mac-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mac-steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.mac-steps h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.mac-steps p {
  color: var(--muted);
  font-size: 14px;
}

.bottom-cta {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 56px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(600px 180px at 50% 0%, rgba(59, 130, 246, 0.18), transparent),
    var(--surface);
}

.bottom-cta h2 {
  font-size: 42px;
  margin-bottom: 8px;
}

.bottom-cta p {
  color: var(--muted);
  margin-bottom: 22px;
}

.bottom-cta .button {
  width: auto;
  min-width: 180px;
}

.fine a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

html.export,
html.export body {
  margin: 0;
  width: 1180px;
  height: 720px;
  min-height: 720px;
  overflow: hidden;
  background: #000;
}

html.export .macdesk {
  transform: none;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

html.export .mac-cursor,
html.export .mac-extra .pulse {
  animation: none;
}

.macdesk-bar .mac-pop-arrow {
  right: 139px;
}

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

.footer-links a:hover,
.fine a:hover {
  color: var(--text);
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero,
  .features {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    order: -1;
  }

  .phone-front {
    transform: none;
  }

  .phone-back,
  .float-card,
  .hero-watch {
    display: none;
  }

  .shot-grid {
    gap: 32px;
  }

  .nav nav {
    gap: 12px;
    font-size: 13px;
  }

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

  .tv-shell svg {
    height: 280px;
  }

  .mac-steps {
    grid-template-columns: 1fr;
  }

  .mac-pair,
  .mac-steps {
    grid-template-columns: 1fr;
  }

  .ios-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .page-shots,
  .facts {
    grid-template-columns: 1fr;
  }
}

.learn {
  max-width: 1180px;
  margin: 0 auto 56px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.learn a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.learn a:hover {
  color: var(--text);
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 24px 32px;
}

.page-wide {
  max-width: 1180px;
}

.page h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

.page .lede {
  font-size: 20px;
  line-height: 1.4;
  color: var(--text);
  max-width: none;
  margin-bottom: 12px;
}

.updated {
  color: var(--faint);
  font-size: 13px;
  margin-bottom: 28px;
}

.page .prose p,
.page .prose li {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 17px;
}

.page .prose h2 {
  font-size: 26px;
  margin: 40px 0 12px;
}

.page .lede a,
.page .prose a,
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.facts {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 18px;
  margin: 8px 0 36px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.facts dt {
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts dd {
  font-size: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 8px 0 40px;
}

.faq-list article h2 {
  font-size: 20px;
  margin: 0 0 8px;
}

.faq-list article p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.page-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 36px;
}

.phone-shots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  margin: 8px 0 36px;
}

.phone-shots > figure {
  margin: 0;
  text-align: center;
}

.phone-shots figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.page .bottom-cta {
  max-width: 760px;
  margin: 24px auto 64px;
}

.page .bottom-cta .signup {
  margin: 0 auto 10px;
}

.page .watch-fig {
  margin: 8px 0 36px;
}
