.bird[data-astro-cid-myi22sxs] {
  display: inline-block;
  width: var(--size);
  height: var(--size);
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: var(--bird) center / contain no-repeat;
  mask: var(--bird) center / contain no-repeat;
}
/* Tokens match Palette in ios/Sources/VocalDrills/Design.swift. */
:root {
	color-scheme: light dark;
	--bg: #fff8f1;
	--paper: #fffcf8;
	--ink: #4b2942;
	--on-ink: #fff8f1;
	--muted: #705567;
	--apricot: #f2aa87;
	--wash: #fbe5d9;
	--line: #e7d5dc;
	--success: #386452;
	--frame: #2a1d27;
	--shadow: 0 30px 60px -24px rgb(75 41 66 / 0.35);
	--font-rounded: ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	--font-text: -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, sans-serif;
	--font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	--radius: 18px;
	--page: 1120px;
	--gutter: clamp(16px, 5vw, 40px);
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #1b1219;
		--paper: #251a24;
		--ink: #f4e7ec;
		--on-ink: #1b1219;
		--muted: #bb9dae;
		--wash: #3a2634;
		--line: #3e2c3a;
		--success: #8cc7a5;
		--frame: #0f090d;
		--shadow: 0 30px 60px -24px rgb(0 0 0 / 0.6);
	}
}

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-text);
	font-size: 1.0625rem;
	line-height: 1.55;
	overflow-wrap: break-word;
}

h1,
h2,
h3 {
	font-family: var(--font-rounded);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.015em;
	margin: 0;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.4rem, 6.2vw, 4.25rem);
	letter-spacing: -0.03em;
	line-height: 1.02;
}

h2 {
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	letter-spacing: -0.025em;
}

h3 {
	font-size: 1.3rem;
}

p {
	margin: 0;
	text-wrap: pretty;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

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

:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 3px;
	border-radius: 6px;
}

.container {
	width: min(var(--page), 100% - 2 * var(--gutter));
	margin-inline: auto;
}

.section {
	padding-block: clamp(56px, 9vw, 112px);
}

.section-head {
	display: grid;
	gap: 14px;
	max-width: 44rem;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.eyebrow {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.lede {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: var(--muted);
	max-width: 38rem;
}

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

.button,
.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 24px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
}

.button {
	background: var(--ink);
	color: var(--on-ink);
}

.button:hover {
	opacity: 0.92;
}

.button.secondary {
	background: var(--paper);
	color: var(--ink);
	border: 1px solid var(--line);
}

.pill {
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	background: var(--wash);
	font-size: 0.95rem;
}

.pill::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--apricot);
}

.card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.wash {
	background: var(--wash);
}

.prose {
	max-width: 42rem;
}

.prose > * + * {
	margin-top: 1.1em;
}

.prose h2 {
	font-size: 1.75rem;
	margin-top: 2em;
}

.prose h3 {
	margin-top: 1.6em;
}

.prose ul,
.prose ol {
	padding-left: 1.3em;
}

.prose li + li {
	margin-top: 0.4em;
}

.prose code {
	font-family: var(--font-mono);
	font-size: 0.9em;
	background: var(--wash);
	padding: 0.1em 0.35em;
	border-radius: 6px;
}

.prose blockquote {
	margin-inline: 0;
	padding-left: 1em;
	border-left: 3px solid var(--apricot);
	color: var(--muted);
}

.phone {
	position: relative;
	margin: 0;
	width: min(var(--width, 300px), 80vw);
	border: 9px solid var(--frame);
	border-radius: 48px;
	overflow: hidden;
	background: var(--frame);
	box-shadow: var(--shadow);
}

.phone img,
.phone video {
	width: 100%;
	border-radius: 39px;
}

@keyframes rise {
	from {
		opacity: 0;
		translate: 0 32px;
	}
	to {
		opacity: 1;
		translate: 0 0;
	}
}

@media (prefers-reduced-motion: no-preference) {
	@view-transition {
		navigation: auto;
	}

	.intro {
		animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
		animation-delay: calc(var(--order, 0) * 90ms);
	}

	@supports (animation-timeline: view()) {
		.reveal {
			animation: rise linear both;
			animation-timeline: view();
			animation-range: entry 10% entry 70%;
		}
	}
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}
footer[data-astro-cid-jo6i4kqk] {
  border-top: 1px solid var(--line);
  padding-block: 40px 56px;
  margin-top: 40px;
}

.container[data-astro-cid-jo6i4kqk] {
  display: grid;
  gap: 16px;
}

.brand[data-astro-cid-jo6i4kqk] {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-rounded);
}

nav[data-astro-cid-jo6i4kqk] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

nav[data-astro-cid-jo6i4kqk] a[data-astro-cid-jo6i4kqk] {
  font-weight: 600;
  font-size: .95rem;
}

.small[data-astro-cid-jo6i4kqk] {
  font-size: .875rem;
}
header[data-astro-cid-nen7h5rs] {
  view-transition-name: site-header;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
}

.brand[data-astro-cid-nen7h5rs] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-rounded);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
}

nav[data-astro-cid-nen7h5rs] {
  display: flex;
  gap: 4px;
}

nav[data-astro-cid-nen7h5rs] a[data-astro-cid-nen7h5rs] {
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}

nav[data-astro-cid-nen7h5rs] a[data-astro-cid-nen7h5rs]:hover, nav[data-astro-cid-nen7h5rs] a[data-astro-cid-nen7h5rs][aria-current="page"] {
  background: var(--wash);
}
.skip[data-astro-cid-ybatimd6]:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip-path: none;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--on-ink);
  border-radius: 12px;
  z-index: 10;
}
