@font-face {
  font-family: "Signifier";
  src: url("./assets/fonts/signifier-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@property --problem-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@font-face {
  font-family: "Inter Variable";
  src: url("./assets/fonts/inter-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  color-scheme: light;
  --paper: rgb(97.6% 97.2% 96.3%);
  --paper-warm: rgb(95.5% 95.1% 94.1%);
  --card: rgb(94.5% 94.1% 93.1%);
  --card-strong: rgb(91.8% 91.3% 90.2%);
  --surface: rgb(95.5% 95.1% 94.1%);
  --surface-raised: rgb(100% 100% 100%);
  --selection: rgb(89.5% 89% 87.8%);
  --hover: rgb(86.5% 86% 84.8%);
  --search: rgb(93.5% 93.1% 92%);
  --ink: rgb(8.5% 8.3% 7.8%);
  --ink-soft: rgb(21% 20.5% 19.5%);
  --muted: rgb(39% 38.2% 36.5%);
  --subtle: rgb(51% 50% 48%);
  --line: rgb(80% 79.2% 77.5% / 0.72);
  --accent: rgb(8.5% 8.3% 7.8%);
  --accent-fill: rgb(8.5% 8.3% 7.8%);
  --accent-soft: rgb(88.5% 88% 86.8%);
  --accent-foreground: rgb(98% 98% 97.5%);
  --focus: rgb(8.5% 8.3% 7.8%);
  --header-bg: rgb(97.6% 97.2% 96.3% / 0.76);
  --image-outline: oklch(0 0 0 / 0.1);
  --album-shadow-alpha: 0.12;
  --download-shadow-alpha: 0.18;
  --serif: "Signifier", Georgia, "Times New Roman", ui-serif, serif;
  --sans: "Inter Variable", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 60rem;
  --header-height: 3.75rem;
  --radius: 1rem;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: rgb(5.5% 6% 7%);
  --paper-warm: rgb(9.5% 10.2% 11.5%);
  --card: rgb(9.5% 10.2% 11.5%);
  --card-strong: rgb(12.5% 13.5% 15%);
  --surface: rgb(9.5% 10.2% 11.5%);
  --surface-raised: rgb(14.5% 15.5% 17.2%);
  --selection: rgb(19.5% 21% 23.5%);
  --hover: rgb(23.5% 25% 28%);
  --search: rgb(11.5% 12.5% 14%);
  --ink: rgb(92% 93% 95%);
  --ink-soft: rgb(79% 80.5% 83.5%);
  --muted: rgb(70% 73% 78%);
  --subtle: rgb(55% 59% 65%);
  --line: rgb(26.5% 28.5% 31.5% / 0.72);
  --accent: rgb(96% 96.5% 97.5%);
  --accent-fill: rgb(96% 96.5% 97.5%);
  --accent-soft: rgb(19.5% 21% 23.5%);
  --accent-foreground: rgb(5.5% 6% 7%);
  --focus: rgb(79% 80.5% 83.5%);
  --header-bg: rgb(5.5% 6% 7% / 0.72);
  --image-outline: oklch(1 0 0 / 0.1);
  --album-shadow-alpha: 0.22;
  --download-shadow-alpha: 0.24;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: from-font; text-underline-position: from-font; }
button { color: inherit; }
img, video { max-width: 100%; }
svg { display: block; width: 1.1rem; height: 1.1rem; }
[hidden] { display: none !important; }
.theme-image-dark { display: none !important; }
:root[data-theme="dark"] .theme-image-light { display: none !important; }
:root[data-theme="dark"] .theme-image-dark { display: block !important; }

::selection { background: var(--accent-soft); color: var(--ink); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

.skip-link {
  position: fixed;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 650;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 2rem), var(--shell)); margin-inline: auto; }
.section { padding-block: clamp(5rem, 8vw, 7.5rem); }

.site-header {
  position: sticky;
  z-index: 30;
  inset-block-start: 0;
  min-height: var(--header-height);
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.site-header .nav { width: 100%; max-width: none; min-height: var(--header-height); padding-inline: clamp(1rem, 2vw, 1.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.6rem; font-size: 0.94rem; font-weight: 650; letter-spacing: -0.02em; text-decoration: none; }
.brand img { width: 1.75rem; height: 1.75rem; border-radius: 0.52rem; box-shadow: 0 0 0 1px var(--image-outline); }
.nav-links, .nav-cta { display: none; }

.menu-button { display: grid; width: 2.75rem; height: 2.75rem; place-content: center; gap: 0.34rem; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 1rem; height: 1px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(0.21rem) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-0.21rem) rotate(-45deg); }

.mobile-menu { position: fixed; z-index: 29; inset: var(--header-height) 0 auto; padding: 1rem; border-block-end: 1px solid var(--line); background: var(--paper); box-shadow: 0 1.5rem 3rem oklch(0.2 0.01 78 / 0.08); }
.mobile-menu > a:not(.button) { display: flex; min-height: 3rem; align-items: center; border-block-end: 1px solid var(--line); font-weight: 550; text-decoration: none; }
.mobile-download-actions { display: grid; gap: 0.65rem; margin-block-start: 1rem; }

.button {
  display: inline-flex;
  width: auto;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 0.45rem;
  padding-block: 0.78rem;
  padding-inline: 1rem 1.5rem;
  border: 0;
  border-radius: 0.65rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:active { transform: scale(0.96); }
.button svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.platform-icon { display: block; height: 1rem; flex: 0 0 auto; background: currentColor; mask-position: center; mask-repeat: no-repeat; mask-size: contain; -webkit-mask-position: center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain; }
.platform-icon-macos { width: 1.05rem; mask-image: url("./assets/platform-macos.svg"); -webkit-mask-image: url("./assets/platform-macos.svg"); }
.platform-icon-ios { width: 0.9rem; mask-image: url("./assets/platform-ios.svg"); -webkit-mask-image: url("./assets/platform-ios.svg"); }
.platform-availability { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.6rem 1rem; color: var(--ink-soft); font-size: 0.84rem; }
.platform-label { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; }
.availability-badge { padding: 0.15rem 0.42rem; border-radius: 999px; background: var(--selection); color: var(--muted); font-size: 0.65rem; font-weight: 600; line-height: 1.2; white-space: nowrap; }
.button-dark { background: var(--accent-fill); color: var(--accent-foreground); box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.18), 0 0.8rem 2rem oklch(0 0 0 / 0.2); }
.button-dark:hover { background: var(--ink-soft); }
.button-light { background: var(--surface-raised); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.button-light:hover { background: var(--selection); }

.hero { display: flex; align-items: center; flex-direction: column; padding-block: clamp(5.25rem, 9vw, 7rem) 0; text-align: center; }
.hero-copy { display: flex; min-width: 0; align-items: center; flex-direction: column; }

h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -0.045em; text-wrap: balance; }
h1 { width: 100%; max-width: 40rem; font-size: clamp(1.85rem, 8vw, 3rem); line-height: 0.98; }
h1 span { display: block; white-space: nowrap; }
.hero-copy > p { max-width: 36rem; margin: 1.5rem 0 2rem; color: var(--muted); font-size: 1.04rem; text-wrap: pretty; }
.hero-actions { display: grid; width: 100%; gap: 0.65rem; margin-block-start: 0; }
.hero-actions .waitlist-form { margin: 0; }
.hero-actions .platform-availability { margin-block-start: 0.15rem; }

.hero-product { width: min(100%, 60rem); margin: 3.5rem auto 0; }
.product-showcase { margin: 0; }
.product-showcase > img { display: block; width: 100%; height: auto; object-fit: cover; }
.product-desktop { border-radius: calc(0.85rem + 2px); box-shadow: 0 1.25rem 2.75rem oklch(0 0 0 / 0.34); }

.section-heading { max-width: 38rem; margin-block-end: 2.5rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.kicker { margin: 0 0 0.85rem; color: var(--muted); font-size: 0.72rem; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; }
h2 { font-size: clamp(2.2rem, 6vw, 2.8rem); line-height: 1.02; }
.section-heading > p:last-child { max-width: 38rem; margin: 1.1rem auto 0; color: var(--muted); font-size: 0.98rem; text-wrap: pretty; }
.story .section-heading, .problem .section-heading { max-width: 52rem; }
.story .section-heading h2, .problem .section-heading h2 { max-width: 38rem; margin-inline: auto; }
.story .section-heading > p, .problem .section-heading > p { max-width: 52rem; }

.feature-grid { display: grid; grid-template-columns: 1fr; max-width: 52rem; margin-inline: auto; gap: 0.5rem; }
.feature-card { display: flex; min-height: 19.5rem; overflow: hidden; flex-direction: column; border-radius: var(--radius); background: var(--card); }
.feature-visual { display: grid; width: 100%; min-height: 12.5rem; place-items: center; padding: 1.5rem; }
.feature-copy { margin-block-start: auto; padding: 1rem; }
.feature-copy h3 { margin: 0; font-size: 1rem; font-weight: 600; letter-spacing: -0.025em; }
.feature-copy p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.86rem; text-wrap: pretty; }
.title-row { display: flex; align-items: center; justify-content: flex-start; gap: 0.5rem; }
.title-row h3 { width: auto; flex: 0 0 auto; }
.title-row > span { padding: 0.12rem 0.45rem; border-radius: 999px; background: var(--selection); color: var(--muted); font-size: 0.65rem; }
.import-visual { display: flex; align-items: center; justify-content: center; gap: 0.45rem; }
.import-visual span, .device-visual span { display: grid; min-width: 3.1rem; min-height: 3.1rem; place-items: center; border-radius: 0.75rem; background: var(--surface-raised); box-shadow: 0 0 0 1px var(--line), 0 0.45rem 1rem rgb(1% 0.5% 2% / 0.1); font-weight: 600; }
.album-stack { display: flex; align-items: center; justify-content: center; }
.album-stack img { width: 5.4rem; aspect-ratio: 1; border-radius: 0.75rem; object-fit: cover; box-shadow: 0 0 0 1px var(--image-outline), 0 0.8rem 1.5rem rgb(1% 0.5% 2% / var(--album-shadow-alpha)); }
.album-stack img:nth-child(1) { transform: translateX(1.1rem) rotate(-7deg); }
.album-stack img:nth-child(2) { position: relative; z-index: 2; }
.album-stack img:nth-child(3) { transform: translateX(-1.1rem) rotate(7deg); }
.offline-visual { align-content: center; justify-items: center; gap: 0.7rem; }
.folder-icon { position: relative; width: 4.2rem; height: 3.2rem; border-radius: 0.5rem; background: linear-gradient(180deg, oklch(0.78 0.11 230), oklch(0.64 0.18 250)); box-shadow: 0 0.65rem 1.25rem oklch(0.55 0.18 250 / 0.12); }
.folder-icon::before { content: ""; position: absolute; inset: -0.42rem auto auto 0.3rem; width: 1.7rem; height: 0.65rem; border-radius: 0.35rem 0.35rem 0 0; background: oklch(0.78 0.11 230); }
.offline-visual small { padding: 0.25rem 0.55rem; border-radius: 0.4rem; background: var(--surface-raised); box-shadow: 0 0 0 1px var(--line); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.66rem; }
.queue-visual { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.35rem; }
.queue-visual div { display: flex; width: min(100%, 15rem); min-height: 2.55rem; align-items: center; justify-content: space-between; padding: 0.6rem 0.75rem; border-radius: 0.65rem; background: var(--surface-raised); box-shadow: 0 0 0 1px var(--line); font-size: 0.68rem; }
.queue-visual span { color: var(--muted); }
.device-visual { display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.device-visual span { width: 3.6rem; min-width: 3.6rem; min-height: 3.6rem; padding: 0.4rem; }
.device-platform-icon { display: block; width: 1.5rem; height: 1.5rem; background: #000; mask-position: center; mask-repeat: no-repeat; mask-size: contain; -webkit-mask-position: center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain; }
.device-platform-macos { mask-image: url("./assets/platform-macos.svg"); -webkit-mask-image: url("./assets/platform-macos.svg"); }
.device-platform-apple { mask-image: url("./assets/platform-ios.svg"); -webkit-mask-image: url("./assets/platform-ios.svg"); }
.device-platform-android { width: 1.75rem; mask-image: url("./assets/platform-android.svg"); -webkit-mask-image: url("./assets/platform-android.svg"); }
.ai-visual { align-content: center; justify-items: center; gap: 0.6rem; }
.ai-visual span, .ai-visual b { width: min(100%, 16rem); padding: 0.7rem 0.8rem; border-radius: 0.75rem; background: var(--surface-raised); box-shadow: 0 0 0 1px var(--line); font-size: 0.72rem; font-weight: 500; }
.ai-visual b { width: auto; justify-self: center; background: var(--accent-fill); color: var(--accent-foreground); }

.player-section { padding-block-start: 2rem; }
.product-tour { max-width: 60rem; margin-inline: auto; }
.product-tabs { display: flex; width: max-content; max-width: 100%; overflow-x: auto; margin: 0 auto 2rem; padding: 0.25rem; gap: 0.15rem; border-radius: 999px; background: var(--card); scrollbar-width: none; }
.product-tabs::-webkit-scrollbar { display: none; }
.product-tabs button { min-height: 2.35rem; padding: 0.5rem 1rem; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-size: 0.78rem; font-weight: 550; white-space: nowrap; cursor: pointer; }
.product-tabs button:hover { color: var(--ink); }
.product-tabs button[aria-selected="true"] { background: var(--surface-raised); color: var(--ink); box-shadow: 0 1px 0 oklch(1 0 0 / 0.06), 0 0.25rem 0.75rem oklch(0 0 0 / 0.2); }
.product-panel { margin: 0; }
.product-panel img { display: block; width: 100%; height: auto; border-radius: calc(0.85rem + 2px); }
.section-product-shot { width: min(100%, 21rem); margin: 0 auto; padding: 0.45rem; border-radius: 1.35rem; background: var(--card-strong); box-shadow: 0 0 0 1px var(--line), 0 1.5rem 3.5rem oklch(0 0 0 / 0.36); }
.section-product-shot img { display: block; width: 100%; height: auto; border-radius: 1rem; outline: 1px solid var(--image-outline); outline-offset: -1px; }
.section-product-shot figcaption { padding: 0.75rem 0.35rem 0.3rem; color: var(--muted); font-size: 0.72rem; font-weight: 550; text-align: center; }

.problem { padding-block-start: 4rem; }
.problem-video-stage { position: relative; max-width: 52rem; overflow: hidden; margin-inline: auto; border-radius: 1rem; background: black; box-shadow: 0 0 0 1px var(--image-outline), 0 1.5rem 3.5rem oklch(0 0 0 / 0.24); }
.problem-video-stage video { display: block; width: 100%; aspect-ratio: 16 / 9; background: black; object-fit: cover; cursor: pointer; }
.problem-video-sound { position: absolute; z-index: 2; min-height: 2.75rem; border: 1px solid transparent; border-radius: 999px; background: linear-gradient(oklch(0.12 0 0 / 0.72), oklch(0.12 0 0 / 0.72)) padding-box; color: white; box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.16), 0 0.5rem 1.5rem oklch(0 0 0 / 0.24); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); cursor: pointer; transition-property: box-shadow; transition-duration: 150ms; transition-timing-function: ease-out; }
.problem-video-sound { inset: 50% auto auto 50%; min-width: 6.25rem; padding: 0.7rem 1.1rem; font-weight: 600; transform: translate(-50%, -50%); }
.problem-video-sound:hover { background: linear-gradient(oklch(0.12 0 0 / 0.78), oklch(0.12 0 0 / 0.78)) padding-box, conic-gradient(from var(--problem-border-angle), oklch(1 0 0 / 0.18) 0 58%, oklch(0.88 0.045 85 / 0.7) 72%, oklch(1 0 0 / 0.96) 80%, oklch(0.88 0.045 85 / 0.7) 88%, oklch(1 0 0 / 0.18) 100%) border-box; box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.12), 0 0 0.9rem oklch(0.88 0.045 85 / 0.22), 0 0.65rem 1.75rem oklch(0 0 0 / 0.3); animation: problem-border-orbit 1.6s linear infinite; }
.problem-video-sound:active { transform: translate(-50%, -50%) scale(0.96); }

@keyframes problem-border-orbit {
  to { --problem-border-angle: 360deg; }
}
.problem-video-selector { position: absolute; z-index: 2; inset: auto 50% 1rem auto; display: flex; align-items: center; gap: 0.2rem; padding: 0.3rem; transform: translateX(50%); }
.problem-video-selector button { --clip-progress: 0; position: relative; width: 2.5rem; height: 2rem; padding: 0; border: 0; background: transparent; cursor: pointer; }
.problem-video-selector button::before,
.problem-video-selector button::after { content: ""; position: absolute; inset: 50% 0.4rem auto; height: 0.22rem; border-radius: 999px; background: white; transform: translateY(-50%); }
.problem-video-selector button::after { opacity: 0.3; }
.problem-video-selector button::before { z-index: 1; opacity: 0; transform: translateY(-50%) scaleX(var(--clip-progress)); transform-origin: left center; }
.problem-video-selector button[aria-pressed="true"]::after { opacity: 0.48; }
.problem-video-selector button[aria-pressed="true"]::before { opacity: 1; }
.problem-video-stage[data-user-activated="true"] .problem-video-sound,
.problem-video-stage[data-user-activated="true"] .problem-video-selector { display: none; }

.native-section { padding-block-start: 1rem; }
.native-card { overflow: visible; background: transparent; }
.native-card .section-heading { max-width: 50rem; margin-block-end: 1.5rem; }
.native-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.4rem; }
.native-badges span { padding: 0.3rem 0.6rem; border-radius: 999px; background: var(--selection); color: var(--muted); font-size: 0.7rem; font-weight: 550; }
.native-devices { --native-carousel-edge: 1rem; --native-carousel-gap: 1rem; --native-slide-width: min(72vw, 18rem); position: relative; display: grid; width: 100vw; overflow-x: auto; overscroll-behavior-inline: contain; grid-auto-flow: column; grid-auto-columns: var(--native-slide-width); gap: var(--native-carousel-gap); margin-block-start: 2rem; margin-inline: calc(50% - 50vw); padding-block: 0.5rem 3.5rem; padding-inline-start: var(--native-carousel-edge); padding-inline-end: max(var(--native-carousel-edge), calc(100vw - var(--native-carousel-edge) - var(--native-slide-width))); scroll-padding-inline: var(--native-carousel-edge); scroll-snap-type: inline mandatory; scrollbar-width: none; }
.native-devices::-webkit-scrollbar { display: none; }
.native-card .section-product-shot { width: 100%; margin: 0; padding: 0; border-radius: 0; background: transparent; box-shadow: none; scroll-snap-align: start; scroll-snap-stop: always; }
.native-card .section-product-shot[aria-current="true"] figcaption { color: var(--ink); }
.native-devices:focus-visible { outline: 2px solid var(--ink); outline-offset: 0.35rem; }

@media (pointer: fine) {
  .native-devices { cursor: grab; }
  .native-devices.is-dragging { cursor: grabbing; scroll-snap-type: none; }
  .native-devices img { user-select: none; -webkit-user-drag: none; }
}

.faq-list { max-width: 46rem; margin-inline: auto; }
.faq-list details { border-block-end: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 4.5rem; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-weight: 550; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 1.25rem; font-weight: 350; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 40rem; margin: -0.4rem 0 1.4rem; color: var(--muted); font-size: 0.92rem; }

.download { padding-block-start: 2rem; }
.download-inner { padding: clamp(3rem, 9vw, 6rem) 1rem; border-radius: 1.4rem; background: var(--card); text-align: center; }
.download-inner > img { width: 4rem; height: 4rem; margin-block-end: 1.25rem; border-radius: 1.1rem; box-shadow: 0 0 0 1px var(--image-outline), 0 1rem 2rem oklch(0 0 0 / var(--download-shadow-alpha)); }
.download h2 { max-width: 42rem; margin-inline: auto; }
.download-inner > p:not(.kicker) { max-width: 48rem; margin: 1.2rem auto 0; color: var(--muted); }
.download .platform-availability { margin-block-start: 1.4rem; }
.waitlist-form { display: grid; width: min(100%, 30rem); margin: 1.5rem auto 0; padding: 0.3rem; grid-template-columns: minmax(0, 1fr) auto; gap: 0.3rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-raised); box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.45), 0 0.75rem 2rem oklch(0 0 0 / 0.08); scroll-margin-top: calc(var(--header-height) + 1rem); }
.waitlist-form:focus-within { outline: 2px solid var(--ink); outline-offset: 2px; }
.waitlist-form input { width: 100%; min-width: 0; min-height: 2.75rem; padding-block: 0.65rem; padding-inline: 1.25rem 0.75rem; border: 0; border-radius: 999px; background: transparent; color: var(--ink); font: inherit; font-size: 1rem; }
.waitlist-form input::placeholder { color: var(--subtle); }
.waitlist-form input:focus-visible { outline: 0; }
.waitlist-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.waitlist-form[aria-busy="true"] { cursor: progress; }
.waitlist-submit { position: relative; display: grid; width: 2.75rem; height: 2.75rem; place-items: center; align-self: center; padding: 0; border: 0; border-radius: 999px; background: var(--accent-fill); color: var(--accent-foreground); box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.18), 0 0.45rem 1rem oklch(0 0 0 / 0.18); cursor: pointer; transition-property: background-color, transform; transition-duration: 150ms; transition-timing-function: ease-out; }
.waitlist-submit:hover { background: var(--ink-soft); }
.waitlist-submit:active { transform: scale(0.96); }
.waitlist-submit:disabled { background: var(--selection); color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); cursor: default; transform: none; }
.submit-icon { position: absolute; display: grid; place-items: center; opacity: 1; filter: blur(0); transform: scale(1); transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), filter 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1); }
.submit-icon svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.submit-icon-check { opacity: 0; filter: blur(4px); transform: scale(0.25); }
.waitlist-submit.is-subscribed .submit-icon-arrow { opacity: 0; filter: blur(4px); transform: scale(0.25); }
.waitlist-submit.is-subscribed .submit-icon-check { opacity: 1; filter: blur(0); transform: scale(1); }
.waitlist-status { min-height: 1.2em; margin: 0.55rem 0 0; color: var(--muted); font-size: 0.78rem; text-align: center; }
.download-inner > .download-meta { margin-block-start: 0.8rem; color: var(--subtle); font-size: 0.75rem; }

.site-footer { padding-block: 2.5rem; color: var(--muted); font-size: 0.78rem; }
.footer-inner { display: flex; align-items: center; justify-content: center; text-align: center; }
.footer-inner p { margin: 0; }

.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; }

@media (min-width: 48rem) {
  .nav-links { display: flex; align-items: center; gap: 2rem; margin-inline: auto; }
  .nav-links a { min-height: 2.75rem; display: inline-flex; align-items: center; color: var(--ink-soft); font-size: 0.78rem; font-weight: 520; text-decoration: none; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: inline-flex; min-height: 2.25rem; align-items: center; padding: 0.35rem 0.75rem; border-radius: 0.55rem; background: var(--card-strong); font-size: 0.75rem; font-weight: 600; text-decoration: none; }
  .menu-button { display: none; }
  .hero-actions { display: flex; width: min(100%, 30rem); align-items: center; flex-direction: column; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .native-devices { --native-carousel-edge: clamp(1rem, 2vw, 1.5rem); --native-carousel-gap: clamp(1rem, 2vw, 1.5rem); --native-slide-width: min(19rem, calc((100vw - (2 * var(--native-carousel-edge)) - (2 * var(--native-carousel-gap))) / 3)); }
}

@media (min-width: 70rem) {
  .story .section-heading > p,
  .problem .section-heading > p,
  .native-card .section-heading > p,
  .download-inner > p:not(.kicker, .download-meta) { white-space: nowrap; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-card { min-height: 21rem; }
  .feature-visual { transform: translateY(1.5rem); }
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(1rem); filter: blur(5px); transition: opacity 600ms ease-out, transform 600ms ease-out, filter 600ms ease-out; }
  .js .reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
  .js .reveal-delay { transition-delay: 100ms; }
  .feature-card:nth-child(2) { transition-delay: 70ms; }
  .feature-card:nth-child(3) { transition-delay: 140ms; }
}

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

@media (forced-colors: active) {
  .button, .waitlist-submit, .feature-card, .problem-video-stage, .hero-product, .section-product-shot, .product-panel, .product-tabs, .menu-button { border: 1px solid ButtonText; }
  .waitlist-form:focus-within { outline-color: Highlight; }
  .native-badges span { border: 1px solid CanvasText; }
}
