:root {
  color-scheme: light dark;
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  --bg: #fcfbf9;
  --surface: #fffdfb;
  --band: #f4f3ef;
  --ink: #1a1c1b;
  --ink-2: #2e3531;
  --body: #565c58;
  --muted: #6e756f;
  --muted-2: #79807b;
  --label: #7d847f;
  --hairline: rgb(20 30 24 / 9%);
  --accent: #10b981;
  --accent-ink: #0b8a62;
  --accent-tint: #f3fbf7;
  --dim: #c6ccc8;
  --video-button: rgb(255 255 255 / 96%);
  --video-button-ink: var(--accent-ink);
  --shadow-icon: 0 20px 44px -18px rgb(16 60 42 / 50%);
  --shadow-demo: 0 44px 96px -44px rgb(16 40 30 / 62%), 0 3px 10px rgb(16 40 30 / 10%);
  --shadow-shot: 0 28px 58px -30px rgb(16 40 30 / 50%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-ui);
  font-size: 16.5px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
}

.page-container {
  width: min(100% - 112px, 1140px);
  margin-inline: auto;
}

.top-bar {
  height: 68px;
  border-bottom: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}

.top-bar-inner {
  display: flex;
  width: min(100% - 112px, 1140px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 590;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.wordmark img {
  border-radius: 7px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.top-nav-link {
  color: var(--body);
  font-size: 14px;
  font-weight: 530;
  text-decoration: none;
  transition: color 150ms ease;
}

.top-nav-link:hover {
  color: var(--ink);
}

.download-pill {
  display: inline-flex;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding-inline: 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13.5px;
  font-weight: 590;
  line-height: 1;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.download-pill:hover {
  background: var(--accent-ink);
  transform: translateY(-1px);
}

.wordmark:focus-visible,
.top-nav a:focus-visible,
.store-link:focus-visible,
.video-overlay:focus-visible,
.footer-row a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 100px;
}

.hero-wash {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 820px;
  height: 820px;
  pointer-events: none;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgb(16 185 129 / 14%) 0%, rgb(16 185 129 / 5%) 36%, transparent 65%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-stage {
  position: relative;
  width: 136px;
  height: 136px;
  margin-bottom: 42px;
}

.app-icon {
  position: relative;
  z-index: 2;
  width: 136px;
  height: 136px;
  border-radius: 31px;
  box-shadow: var(--shadow-icon), inset 0 0 0 1px rgb(255 255 255 / 35%);
}

.ring {
  position: absolute;
  inset: -72px;
  border: 1px solid rgb(16 185 129 / 34%);
  border-radius: 50%;
  opacity: 0;
  animation: ring 5.4s ease-out infinite;
}

.ring-two {
  animation-delay: 1.8s;
}

.ring-three {
  animation-delay: 3.6s;
}

@keyframes ring {
  0% {
    transform: scale(0.72);
    opacity: 0;
  }
  22% {
    opacity: 0.55;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 66px;
  font-weight: 640;
  letter-spacing: -0.037em;
  line-height: 1.03;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--muted-2);
}

.hero-subhead {
  max-width: 610px;
  margin-bottom: 42px;
  color: var(--body);
  font-size: 20px;
  line-height: 1.55;
  text-wrap: pretty;
}

.store-link {
  display: inline-block;
  border-radius: 11px;
}

.store-badge,
.store-badge img {
  display: block;
  width: 218px;
  height: 56px;
}

.micro-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding-bottom: 124px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 620;
  letter-spacing: -0.032em;
  line-height: 1.15;
  text-wrap: balance;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.demo-container {
  width: min(100% - 112px, 1020px);
}

.demo-heading {
  text-align: center;
}

.demo-heading h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: 35px;
  letter-spacing: -0.027em;
  line-height: 1.18;
}

.video-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #0b0d0c;
  box-shadow: var(--shadow-demo);
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-state {
  display: none;
}

.video-overlay {
  display: none;
}

.video-progress {
  display: none;
}

.js .video-state {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  height: 28px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgb(0 0 0 / 42%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 16%);
  color: rgb(255 255 255 / 92%);
  font-size: 11.5px;
  line-height: 1;
}

.video-state-glyph {
  width: 7px;
  height: 7px;
  border: 1px solid rgb(255 255 255 / 90%);
  border-radius: 2px;
}

.js .video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  height: 58px;
  cursor: pointer;
  align-items: center;
  gap: 13px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  background: var(--video-button);
  box-shadow: 0 8px 26px rgb(0 0 0 / 18%);
  color: var(--ink);
  font: inherit;
  font-size: 16.5px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  transition: transform 150ms ease, background 150ms ease;
}

.js .video-overlay:hover {
  transform: translate(-50%, calc(-50% - 1px));
}

.play-triangle {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--video-button-ink);
}

.js .video-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 3px;
  background: rgb(255 255 255 / 14%);
}

.video-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.js .video-player.has-sound .video-state,
.js .video-player.has-sound .video-overlay,
.js .video-player.has-sound .video-progress {
  display: none;
}

.caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  text-align: center;
}

.gap-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--hairline);
}

.gap-cell {
  padding: 40px 36px 44px;
  background: var(--surface);
}

.gap-cell h3 {
  margin-bottom: 18px;
  color: var(--label);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.gap-cell p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 17.5px;
  line-height: 1.6;
}

.gap-cell-emphasis {
  position: relative;
  background: var(--accent-tint);
}

.gap-cell-emphasis::before {
  position: absolute;
  top: 0;
  right: 36px;
  left: 36px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--accent);
  content: "";
}

.gap-cell-emphasis h3 {
  color: var(--accent-ink);
}

.gap-cell-emphasis p {
  color: var(--ink-2);
}

.control-section .section-heading {
  margin-bottom: 42px;
}

.section-intro {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 34px 32px 38px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--surface);
}

.feature-icon {
  position: relative;
  width: 40px;
  height: 36px;
  margin-bottom: 24px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20.5px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
}

.interval-icon {
  display: flex;
  align-items: end;
  gap: 8px;
}

.interval-icon span {
  width: 3px;
  border-radius: 2px;
  background: var(--dim);
}

.interval-icon span:nth-child(1) {
  height: 15px;
}

.interval-icon span:nth-child(2) {
  height: 24px;
}

.interval-icon span:nth-child(3) {
  height: 36px;
  background: var(--accent);
}

.quiet-icon span {
  position: absolute;
  display: block;
}

.bell-stem {
  top: 1px;
  left: 15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.bell-body {
  top: 5px;
  left: 5px;
  width: 24px;
  height: 18px;
  border-radius: 12px 12px 3px 3px;
  background: var(--accent);
}

.bell-bar {
  top: 23px;
  left: 3px;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.bell-clapper {
  top: 27px;
  left: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.bell-cut,
.bell-slash {
  top: 14.5px;
  left: -3px;
  width: 40px;
  border-radius: 3px;
  transform: rotate(-45deg);
}

.bell-cut {
  height: 5px;
  background: var(--surface);
}

.bell-slash {
  top: 15.8px;
  height: 2.5px;
  background: var(--accent);
}

.focus-icon {
  overflow: hidden;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
}

.focus-icon span {
  position: absolute;
  top: -8px;
  left: 9px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
}

.origin-section {
  padding: 108px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--band);
}

.origin-grid {
  display: grid;
  width: min(100% - 112px, 1020px);
  grid-template-columns: 1fr 1.35fr;
  gap: 76px;
}

.origin-section h2 {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 620;
  letter-spacing: -0.032em;
  line-height: 1.12;
  text-wrap: balance;
}

.origin-copy p {
  margin-bottom: 24px;
  color: var(--ink-2);
  font-size: 19.5px;
  line-height: 1.65;
}

.origin-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.screenshots-section {
  padding-top: 124px;
}

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

.screenshot-grid figure {
  margin-bottom: 0;
}

.screenshot-grid img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-shot), inset 0 0 0 1px var(--hairline);
}

.screenshot-grid figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-top: 124px;
  border-top: 1px solid var(--hairline);
}

.final-wash {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 900px;
  height: 700px;
  pointer-events: none;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgb(16 185 129 / 11%), transparent 67%);
}

.final-ring {
  position: absolute;
  top: 30px;
  left: 50%;
  border: 1px solid rgb(16 185 129 / 13%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.final-ring-small {
  width: 280px;
  height: 280px;
}

.final-ring-large {
  top: -50px;
  width: 440px;
  height: 440px;
}

.final-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-content h2 {
  margin-bottom: 38px;
  font-size: 56px;
  font-weight: 640;
  letter-spacing: -0.037em;
  line-height: 1.05;
}

.footer-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 84px;
  padding: 30px 0 38px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-row a {
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-row a:hover {
  color: var(--ink);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e100f;
    --surface: #151817;
    --band: #131615;
    --ink: #f1f3f1;
    --ink-2: #e1e7e3;
    --body: #aab2ac;
    --muted: #8b928c;
    --muted-2: #8b928c;
    --label: #8b928c;
    --hairline: rgb(255 255 255 / 9%);
    --accent: #10b981;
    --accent-ink: #34d399;
    --accent-tint: #101f1a;
    --dim: #465049;
    --video-button: var(--accent);
    --video-button-ink: #0b0d0c;
    --shadow-icon: 0 20px 44px -18px rgb(0 0 0 / 70%);
    --shadow-demo: inset 0 0 0 1px rgb(255 255 255 / 12%);
    --shadow-shot: 0 28px 58px -30px rgb(0 0 0 / 70%);
  }

  .ring {
    border-color: rgb(16 185 129 / 48%);
  }

  .hero-wash {
    background: radial-gradient(circle, rgb(16 185 129 / 20%) 0%, rgb(16 185 129 / 7%) 36%, transparent 65%);
  }

  .final-ring {
    border-color: rgb(16 185 129 / 19%);
  }

  .final-wash {
    background: radial-gradient(circle, rgb(16 185 129 / 16%), transparent 67%);
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15.5px;
  }

  .page-container,
  .demo-container,
  .origin-grid {
    width: min(100% - 44px, 1140px);
  }

  .top-bar {
    height: 56px;
  }

  .top-bar-inner {
    width: calc(100% - 40px);
  }

  .top-nav {
    gap: 0;
  }

  .top-nav-link {
    display: none;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .hero-wash {
    top: -40px;
    width: 520px;
    height: 520px;
  }

  .icon-stage {
    width: 92px;
    height: 92px;
    margin-bottom: 34px;
  }

  .app-icon {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }

  .ring {
    inset: -40px;
  }

  .ring-two {
    animation-delay: 2.7s;
  }

  .ring-three {
    display: none;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: 37px;
    letter-spacing: -0.033em;
    line-height: 1.06;
  }

  .hero h1 span {
    display: inline;
  }

  .hero-subhead {
    margin-bottom: 34px;
    font-size: 16.5px;
    line-height: 1.55;
  }

  .store-link,
  .store-badge,
  .store-badge img {
    width: min(100%, 226px);
    height: auto;
  }

  .store-badge img {
    aspect-ratio: 156.10054 / 40;
  }

  .section {
    padding-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 28px;
    line-height: 1.14;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10.5px;
  }

  .demo-heading h2 {
    font-size: 25px;
  }

  .video-player {
    border-radius: 12px;
  }

  .js .video-state {
    top: 10px;
    left: 10px;
    height: 25px;
    font-size: 10.5px;
  }

  .js .video-overlay {
    height: 50px;
    gap: 10px;
    padding: 0 18px;
    font-size: 15.5px;
  }

  .caption {
    margin-top: 14px;
    font-size: 13.5px;
  }

  .gap-grid,
  .feature-grid,
  .origin-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .gap-cell {
    padding: 24px 22px;
  }

  .gap-cell h3 {
    margin-bottom: 12px;
  }

  .gap-cell p {
    font-size: 16px;
  }

  .gap-cell-emphasis::before {
    right: 22px;
    left: 22px;
  }

  .section-intro {
    margin-top: 12px;
    font-size: 16px;
  }

  .feature-grid {
    gap: 14px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    padding: 24px 22px;
  }

  .feature-icon {
    margin-bottom: 0;
    transform: scale(0.9);
    transform-origin: top left;
  }

  .feature-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .feature-card p {
    font-size: 15.5px;
  }

  .origin-section {
    padding: 48px 0;
  }

  .origin-grid {
    gap: 28px;
  }

  .origin-section h2 {
    font-size: 28px;
  }

  .origin-copy p {
    margin-bottom: 20px;
    font-size: 16.5px;
  }

  .screenshots-section {
    padding-top: 56px;
  }

  .screenshot-grid {
    gap: 26px;
  }

  .screenshot-grid figcaption {
    margin-top: 12px;
    font-size: 14.5px;
  }

  .final-cta {
    padding-top: 72px;
  }

  .final-content h2 {
    margin-bottom: 30px;
    font-size: 38px;
  }

  .final-ring-small {
    width: 220px;
    height: 220px;
  }

  .final-ring-large {
    width: 340px;
    height: 340px;
  }

  .footer-row {
    flex-wrap: wrap;
    margin-top: 64px;
    padding-bottom: 30px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ring {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
