:root {
	--ink: hsl(240 10% 12%);
	--ink-soft: hsl(240 10% 25%);
	--muted: hsl(240 5% 46%);
	--paper: hsl(40 33% 98%);
	--paper-strong: hsl(40 30% 99%);
	--line: hsl(40 20% 88%);
	--charcoal: hsl(30 10% 8%);
	--primary: hsl(32 95% 44%);
	--primary-bright: hsl(38 92% 50%);
	--primary-soft: hsl(48 96% 89%);
	--success: hsl(152 60% 40%);
	--success-soft: hsl(141 84% 93%);
	--coral: hsl(24 80% 55%);
	--gold: hsl(45 93% 58%);
	--shadow: 0 24px 70px hsl(32 30% 50% / 0.14);
	--radius: 8px;
	--max: 1180px;
}

* {
	box-sizing: border-box;
	letter-spacing: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0;
	font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
	background: var(--paper);
	color: var(--ink);
	line-height: 1.55;
	overflow-x: hidden;
}

body::selection {
	background: var(--primary-soft);
	color: var(--ink);
}

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

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

h1,
h2,
h3 {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 500;
	line-height: 1.02;
	margin: 0;
}

p {
	margin: 0;
}

.skip-link {
	position: fixed;
	left: 16px;
	top: 12px;
	z-index: 100;
	transform: translateY(-140%);
	background: var(--charcoal);
	color: white;
	padding: 10px 14px;
	border-radius: var(--radius);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	left: 50%;
	top: 14px;
	z-index: 20;
	width: min(calc(100% - 28px), var(--max));
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 10px 10px 14px;
	border: 1px solid hsl(40 20% 88% / 0.76);
	border-radius: var(--radius);
	background: hsl(40 30% 99% / 0.82);
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 30px hsl(32 30% 50% / 0.08);
}

.site-header.compact {
	position: sticky;
	left: auto;
	transform: none;
	width: min(calc(100% - 28px), var(--max));
	margin: 14px auto 0;
}

.site-header.is-scrolled {
	background: hsl(40 30% 99% / 0.94);
	border-color: hsl(40 20% 88%);
}

.wordmark {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	font-weight: 700;
}

.wordmark img {
	border-radius: 10px;
	box-shadow: 0 8px 18px hsl(32 30% 50% / 0.14);
}

.nav-links,
.site-footer nav {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 0.94rem;
	color: var(--ink-soft);
}

.nav-links a:hover,
.site-footer a:hover {
	color: var(--ink);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: var(--radius);
	background: var(--primary);
	color: var(--paper-strong);
	font-weight: 700;
	box-shadow: 0 12px 24px hsl(32 95% 44% / 0.18);
}

.hero {
	position: relative;
	min-height: 92vh;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
	align-items: center;
	gap: clamp(28px, 5vw, 72px);
	width: min(calc(100% - 36px), var(--max));
	margin: 0 auto;
	padding: 138px 0 82px;
	background:
		linear-gradient(135deg, hsl(48 100% 96% / 0.88) 0%, transparent 45%),
		linear-gradient(290deg, hsl(141 84% 93% / 0.34), transparent 44%),
		var(--paper);
}

.hero::after {
	content: "";
	position: absolute;
	left: 50%;
	right: auto;
	bottom: 0;
	width: 70vw;
	height: 1px;
	transform: translateX(-50%);
	background: var(--line);
	pointer-events: none;
}

.window-bar {
	display: flex;
	gap: 7px;
	margin-bottom: 16px;
}

.window-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--line);
}

.window-bar span:nth-child(1) {
	background: var(--coral);
}

.window-bar span:nth-child(2) {
	background: var(--primary-bright);
}

.window-bar span:nth-child(3) {
	background: var(--success);
}

.dictation-demo {
	display: grid;
	gap: 10px;
	color: var(--ink-soft);
}

.dictation-demo p:not(.demo-label):last-child {
	background: var(--primary-soft);
	color: var(--ink);
	padding: 14px;
	border-radius: var(--radius);
	font-weight: 600;
}

.demo-label {
	font-size: 0.78rem;
	color: var(--muted);
}

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

.mini-toolbar img {
	width: 31px;
	height: 31px;
	border-radius: 6px;
}

.wave-lines {
	display: flex;
	align-items: end;
	gap: 8px;
	height: 86px;
	margin-top: 10px;
}

.wave-lines span {
	width: 100%;
	border-radius: 99px 99px 0 0;
	background: var(--success);
	animation: wave 1.4s ease-in-out infinite;
}

.wave-lines span:nth-child(1) {
	height: 34%;
	background: var(--primary);
}

.wave-lines span:nth-child(2) {
	height: 72%;
	animation-delay: 0.12s;
}

.wave-lines span:nth-child(3) {
	height: 46%;
	background: var(--gold);
	animation-delay: 0.22s;
}

.wave-lines span:nth-child(4) {
	height: 88%;
	background: var(--coral);
	animation-delay: 0.32s;
}

.wave-lines span:nth-child(5) {
	height: 55%;
	animation-delay: 0.42s;
}

@keyframes wave {
	0%,
	100% {
		transform: scaleY(0.72);
	}
	50% {
		transform: scaleY(1);
	}
}

.hero-copy {
	position: relative;
	z-index: 2;
	width: 100%;
	min-width: 0;
	text-align: left;
	display: grid;
	justify-items: start;
	gap: 22px;
}

.eyebrow,
.section-kicker,
.download-card span,
.price-card span {
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--primary);
	text-transform: uppercase;
}

.hero h1 {
	max-width: 760px;
	font-size: clamp(3.8rem, 7vw, 6.8rem);
	line-height: 0.95;
	overflow-wrap: break-word;
}

.hero-lede {
	max-width: 680px;
	font-size: clamp(1.12rem, 2vw, 1.34rem);
	color: var(--ink-soft);
}

.hero-actions,
.button-row,
.final-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: var(--radius);
	font-weight: 800;
	border: 1px solid transparent;
	transition:
		transform 160ms ease,
		box-shadow 160ms ease,
		background 160ms ease;
}

.button:hover,
.download-card:hover,
.feature-card:hover,
.workflow-card:hover {
	transform: translateY(-2px);
}

.button.primary {
	background: var(--primary);
	color: var(--paper-strong);
	box-shadow: 0 14px 28px hsl(32 95% 44% / 0.2);
}

.button.secondary {
	background: hsl(40 30% 99% / 0.82);
	border-color: hsl(40 20% 88%);
	color: var(--ink);
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 8px;
	max-width: 680px;
}

.hero-proof span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: hsl(40 30% 99% / 0.78);
	border: 1px solid hsl(40 20% 88% / 0.82);
	font-size: 0.92rem;
	font-weight: 700;
}

.voice-workspace {
	position: relative;
	z-index: 2;
	min-width: 0;
	width: 100%;
	overflow: hidden;
	border: 1px solid hsl(40 20% 88% / 0.92);
	border-radius: var(--radius);
	background: var(--paper-strong);
	box-shadow: 0 28px 82px hsl(32 30% 50% / 0.16);
}

.workspace-bar {
	min-height: 54px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
	border-bottom: 1px solid var(--line);
	background: hsl(40 25% 96%);
}

.workspace-bar strong {
	margin-right: auto;
}

.workspace-bar > span {
	padding: 5px 9px;
	border: 1px solid hsl(152 60% 40% / 0.28);
	border-radius: 999px;
	background: hsl(141 84% 93% / 0.58);
	color: hsl(153 60% 28%);
	font-size: 0.82rem;
	font-weight: 800;
}

.window-dots {
	display: flex;
	gap: 7px;
}

.window-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--line);
}

.window-dots span:nth-child(1) {
	background: var(--coral);
}

.window-dots span:nth-child(2) {
	background: var(--primary-bright);
}

.window-dots span:nth-child(3) {
	background: var(--success);
}

.workspace-body {
	display: grid;
	gap: 14px;
	padding: 18px;
}

.selection-panel,
.audio-panel,
.reply-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: hsl(40 33% 98%);
}

.selection-panel {
	display: grid;
	gap: 10px;
	padding: 18px;
}

.panel-label,
.audio-copy span,
.reply-panel span {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.selection-panel p {
	padding-left: 14px;
	border-left: 3px solid var(--primary);
	color: var(--ink-soft);
}

.audio-panel {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 16px;
	background: hsl(48 100% 96%);
	border-color: hsl(48 97% 77%);
}

.play-button {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--charcoal);
}

.play-button::before {
	content: "";
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 14px solid var(--primary-bright);
}

.audio-copy {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.audio-copy strong {
	font-size: 1rem;
	overflow-wrap: anywhere;
}

.audio-wave {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	align-items: end;
	gap: 8px;
	height: 58px;
}

.audio-wave span {
	border-radius: 999px;
	background: var(--primary);
	animation: wave 1.4s ease-in-out infinite;
}

.audio-wave span:nth-child(1) {
	height: 32%;
}
.audio-wave span:nth-child(2) {
	height: 68%;
	animation-delay: 0.08s;
	background: var(--success);
}
.audio-wave span:nth-child(3) {
	height: 44%;
	animation-delay: 0.16s;
}
.audio-wave span:nth-child(4) {
	height: 92%;
	animation-delay: 0.24s;
	background: var(--coral);
}
.audio-wave span:nth-child(5) {
	height: 58%;
	animation-delay: 0.32s;
	background: var(--gold);
}
.audio-wave span:nth-child(6) {
	height: 74%;
	animation-delay: 0.4s;
	background: var(--success);
}
.audio-wave span:nth-child(7) {
	height: 38%;
	animation-delay: 0.48s;
}

.reply-panel {
	display: grid;
	gap: 10px;
	padding: 18px;
}

.reply-panel div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.reply-panel strong {
	color: var(--primary);
	overflow-wrap: anywhere;
}

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

.proof-strip,
.section,
.final-cta,
.site-footer {
	width: min(calc(100% - 36px), var(--max));
	margin-inline: auto;
}

.proof-strip {
	position: relative;
	z-index: 3;
	margin-top: -34px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid hsl(40 20% 88% / 0.9);
	box-shadow: 0 18px 46px hsl(32 30% 50% / 0.1);
}

.proof-strip div {
	background: var(--paper-strong);
	padding: 22px;
	display: grid;
	gap: 4px;
}

.proof-strip strong {
	font-size: 1.05rem;
}

.proof-strip span {
	color: var(--muted);
}

.section {
	padding: 110px 0 0;
}

.section-heading,
.comparison-header {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
	gap: 28px;
	align-items: end;
	margin-top: 16px;
	margin-bottom: 34px;
}

.section-heading.compact {
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
	align-items: start;
}

.section-heading h2,
.demo-copy h2,
.pricing-layout h2,
.comparison-header h2,
.final-cta h2,
.download-hero h1,
.legal-wrap h1 {
	font-size: 4rem;
}

.section-heading p,
.comparison-header p,
.demo-copy p,
.pricing-layout p,
.final-cta p,
.page-lede,
.download-hero p,
.legal-wrap > p {
	color: var(--ink-soft);
	font-size: 1.08rem;
}

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

.feature-card,
.workflow-card,
.price-card,
.download-card,
.support-grid section,
.note-grid div {
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: hsl(40 30% 99% / 0.8);
	box-shadow: 0 14px 34px hsl(32 30% 50% / 0.06);
}

.feature-card {
	min-height: 238px;
	padding: 22px;
	display: grid;
	align-content: space-between;
	gap: 18px;
	transition: transform 160ms ease;
}

.feature-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: var(--radius);
	background: var(--primary);
	color: var(--paper-strong);
	font-weight: 800;
	font-size: 0.86rem;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(5) .feature-icon {
	background: var(--success);
}

.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
	background: var(--coral);
}

.feature-card h3,
.workflow-card h3,
.support-grid h2,
.note-grid h3 {
	font-size: 1.65rem;
}

.feature-card p,
.workflow-card p,
.price-card p,
.support-grid p,
.note-grid p {
	color: var(--muted);
}

.evidence-section {
	padding-top: 96px;
}

.evidence-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.evidence-grid article {
	min-height: 300px;
	display: grid;
	align-content: space-between;
	gap: 16px;
	padding: 24px;
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: var(--paper-strong);
	box-shadow: 0 14px 34px hsl(32 30% 50% / 0.06);
}

.evidence-grid span {
	width: fit-content;
	padding: 6px 9px;
	border-radius: var(--radius);
	background: var(--primary-soft);
	color: hsl(26 90% 37%);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.evidence-grid h3 {
	font-size: 1.8rem;
}

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

.evidence-grid a {
	color: var(--primary);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.demo-section {
	background: var(--charcoal);
	color: white;
	width: 100%;
	max-width: none;
	margin-top: 110px;
	padding: 96px 20px;
}

.demo-layout {
	width: min(100%, var(--max));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1fr);
	gap: 38px;
	align-items: center;
}

.demo-section .section-kicker {
	width: min(100%, var(--max));
	margin: 0 auto 16px;
	color: var(--primary-bright);
}

.demo-copy p {
	color: hsl(40 20% 92% / 0.72);
	margin-top: 18px;
}

.demo-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.demo-tabs button {
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid hsl(40 20% 92% / 0.16);
	border-radius: var(--radius);
	background: hsl(40 20% 92% / 0.08);
	color: white;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.demo-tabs button.active {
	background: var(--primary-bright);
	color: var(--ink);
}

.product-frame {
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--paper);
	color: var(--ink);
	box-shadow: 0 32px 80px hsl(0 0% 0% / 0.34);
	border: 1px solid hsl(40 20% 92% / 0.12);
}

.frame-top {
	min-height: 48px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 16px;
	border-bottom: 1px solid var(--line);
	background: var(--paper-strong);
}

.frame-top span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--coral);
}

.frame-top span:nth-child(2) {
	background: var(--primary-bright);
}

.frame-top span:nth-child(3) {
	background: var(--success);
}

.frame-top strong {
	margin-left: auto;
}

.frame-body {
	padding: 22px;
	display: grid;
	gap: 14px;
}

.transcript-block {
	display: grid;
	gap: 8px;
	padding: 18px;
	border-radius: var(--radius);
	background: var(--paper-strong);
	border: 1px solid var(--line);
}

.transcript-block span {
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--muted);
}

.transcript-block.output {
	background: hsl(48 96% 89% / 0.52);
	border-color: hsl(48 97% 77%);
}

.frame-controls {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.frame-controls div {
	border-radius: var(--radius);
	background: var(--paper-strong);
	border: 1px solid var(--line);
	padding: 14px;
	display: grid;
	gap: 2px;
}

.frame-controls span {
	color: var(--muted);
	font-size: 0.82rem;
}

.workflow-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.workflow-card {
	min-height: 260px;
	padding: 22px;
	display: grid;
	align-content: space-between;
	transition: transform 160ms ease;
}

.comparison-section {
	padding-top: 96px;
}

.comparison-table {
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--paper-strong);
	box-shadow: 0 16px 42px hsl(32 30% 50% / 0.07);
}

.comparison-table [role="row"] {
	display: grid;
	grid-template-columns: 0.75fr 0.75fr 1fr;
}

.comparison-table [role="cell"],
.comparison-table [role="columnheader"] {
	padding: 18px;
	border-bottom: 1px solid var(--line);
}

.comparison-table [role="row"]:last-child [role="cell"] {
	border-bottom: none;
}

.table-head {
	background: var(--charcoal);
	color: white;
	font-weight: 800;
}

.comparison-table [role="cell"]:first-child {
	font-weight: 800;
}

.comparison-table [role="cell"]:nth-child(2) {
	color: var(--muted);
}

.comparison-table [role="cell"]:nth-child(3) {
	background: hsl(48 100% 96%);
	color: var(--ink);
	font-weight: 700;
}

.alternative-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 18px;
}

.alternative-card {
	display: grid;
	gap: 10px;
	min-height: 220px;
	padding: 22px;
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: var(--paper-strong);
	box-shadow: 0 14px 34px hsl(32 30% 50% / 0.06);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease;
}

.alternative-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 42px hsl(32 30% 50% / 0.1);
}

.alternative-card span,
.compare-pill {
	width: fit-content;
	padding: 6px 9px;
	border-radius: var(--radius);
	background: var(--primary-soft);
	color: hsl(26 90% 37%);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.alternative-card strong {
	font-size: 1.32rem;
	line-height: 1.1;
}

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

.pricing-section {
	padding-bottom: 110px;
}

.pricing-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1fr);
	gap: 28px;
	align-items: start;
}

.pricing-layout h2,
.pricing-layout p {
	margin-top: 16px;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.price-card {
	padding: 24px;
	display: grid;
	gap: 16px;
	min-height: 320px;
}

.price-card h3 {
	font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
	font-size: 2.2rem;
	line-height: 1.05;
}

.price-card .button {
	align-self: end;
}

.price-card.highlighted {
	background: var(--charcoal);
	color: var(--paper-strong);
}

.price-card.highlighted p {
	color: hsl(40 20% 92% / 0.72);
}

.price-card.highlighted span {
	color: var(--primary-bright);
}

.trust-section {
	padding-top: 0;
	padding-bottom: 100px;
}

.trust-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.8fr);
	gap: 34px;
	align-items: start;
	padding: 46px;
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: linear-gradient(
		135deg,
		hsl(48 100% 96% / 0.9),
		hsl(141 84% 93% / 0.5)
	);
	box-shadow: 0 18px 48px hsl(32 30% 50% / 0.08);
}

.trust-layout h2,
.faq-layout h2,
.about-hero h1 {
	font-size: 4.4rem;
}

.trust-layout p {
	margin-top: 18px;
	color: var(--ink-soft);
	font-size: 1.08rem;
}

.trust-list {
	display: grid;
	gap: 12px;
}

.trust-list div {
	display: grid;
	gap: 5px;
	padding: 18px;
	border-radius: var(--radius);
	background: var(--paper-strong);
	border: 1px solid hsl(40 20% 88% / 0.82);
}

.trust-list strong {
	font-size: 1.06rem;
}

.trust-list span {
	color: var(--muted);
}

.faq-section {
	margin-top: 44px;
	padding-top: 0;
	padding-bottom: 110px;
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
	gap: 34px;
	align-items: start;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-list details {
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: var(--paper-strong);
	box-shadow: 0 12px 28px hsl(32 30% 50% / 0.05);
}

.faq-list summary {
	cursor: pointer;
	padding: 18px 20px;
	font-weight: 800;
	list-style: none;
}

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

.faq-list summary::after {
	content: "+";
	float: right;
	color: var(--primary);
}

.faq-list details[open] summary::after {
	content: "-";
}

.faq-list p {
	padding: 0 20px 20px;
	color: var(--muted);
}

.final-cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 26px;
	padding: 54px;
	border-radius: var(--radius);
	background:
		linear-gradient(100deg, hsl(48 96% 89% / 0.84), hsl(141 84% 93% / 0.5)),
		var(--paper-strong);
	border: 1px solid hsl(40 20% 88% / 0.9);
	box-shadow: var(--shadow);
}

.final-cta p {
	max-width: 650px;
	margin-top: 14px;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 44px 0;
	color: var(--muted);
}

.site-footer.simple {
	justify-content: center;
}

.site-footer p {
	font-size: 0.92rem;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 520ms ease,
		transform 520ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.simple-page {
	background:
		linear-gradient(115deg, hsl(48 100% 96% / 0.86), transparent 36%),
		linear-gradient(290deg, hsl(141 84% 93% / 0.46), transparent 44%),
		var(--paper);
}

.download-wrap,
.legal-wrap,
.compare-wrap {
	width: min(calc(100% - 36px), 980px);
	margin: 0 auto;
	padding: 82px 0 46px;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: uppercase;
}

.breadcrumb a {
	color: var(--primary);
}

.compare-wrap {
	width: min(calc(100% - 36px), var(--max));
	padding-top: 92px;
}

.compare-hero {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.75fr);
	gap: 28px;
	align-items: end;
}

.compare-hero h1 {
	max-width: 860px;
	font-size: 4.9rem;
}

.compare-hero p {
	max-width: 720px;
	color: var(--ink-soft);
	font-size: 1.12rem;
}

.compare-summary {
	display: grid;
	gap: 14px;
	padding: 24px;
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: var(--paper-strong);
	box-shadow: 0 16px 38px hsl(32 30% 50% / 0.08);
}

.compare-summary div {
	display: grid;
	gap: 4px;
	padding-bottom: 14px;
	border-bottom: 1px solid hsl(40 20% 88% / 0.82);
}

.compare-summary div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.compare-summary strong {
	font-size: 1.05rem;
}

.compare-summary span {
	color: var(--muted);
}

.compare-decision {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 42px;
}

.decision-card {
	min-height: 230px;
	padding: 24px;
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: var(--paper-strong);
	box-shadow: 0 14px 34px hsl(32 30% 50% / 0.06);
}

.decision-card h2 {
	margin: 12px 0;
	font-size: 1.86rem;
}

.decision-card p,
.compare-note p {
	color: var(--muted);
}

.compare-matrix {
	margin-top: 44px;
}

.compare-matrix h2,
.compare-note h2 {
	font-size: 3rem;
	margin-bottom: 18px;
}

.compare-note {
	display: grid;
	grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
	gap: 28px;
	margin-top: 44px;
	padding: 34px;
	border-radius: var(--radius);
	background: var(--charcoal);
	color: var(--paper-strong);
}

.compare-note p {
	color: hsl(40 20% 92% / 0.72);
}

.compare-note .button {
	align-self: end;
	justify-self: start;
	background: var(--primary-bright);
	color: var(--ink);
}

.about-wrap {
	width: min(calc(100% - 36px), var(--max));
	margin: 0 auto;
	padding: 92px 0 48px;
}

.about-hero {
	display: grid;
	gap: 18px;
	max-width: 920px;
}

.about-hero p:last-child {
	max-width: 760px;
	color: var(--ink-soft);
	font-size: 1.16rem;
}

.about-principles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 48px;
}

.about-principles div {
	min-height: 260px;
	padding: 24px;
	display: grid;
	align-content: space-between;
	border-radius: var(--radius);
	border: 1px solid hsl(40 20% 88% / 0.9);
	background: var(--paper-strong);
	box-shadow: 0 14px 34px hsl(32 30% 50% / 0.06);
}

.about-principles h2 {
	font-size: 2.15rem;
}

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

.about-band {
	margin-top: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	padding: 34px;
	border-radius: var(--radius);
	background: var(--charcoal);
	color: var(--paper-strong);
}

.about-band h2 {
	font-size: 3rem;
	margin-bottom: 10px;
}

.about-band p {
	max-width: 690px;
	color: hsl(40 20% 92% / 0.72);
}

.about-band .button {
	background: var(--primary-bright);
	color: var(--ink);
	white-space: nowrap;
}

.legal-wrap.wide {
	width: min(calc(100% - 36px), var(--max));
}

.download-hero {
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 16px;
	padding: 52px 0 36px;
}

.download-hero img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.download-hero p {
	max-width: 650px;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.release-panel {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(260px, auto);
	gap: 24px;
	align-items: center;
	padding: 28px;
	margin-bottom: 16px;
	border: 1px solid hsl(40 20% 88% / 0.9);
	border-radius: var(--radius);
	background: var(--paper-strong);
	box-shadow: 0 14px 34px hsl(32 30% 50% / 0.06);
}

.release-panel h2 {
	font-size: 2.5rem;
	margin: 8px 0;
}

.release-panel p:last-child {
	color: var(--muted);
}

.release-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.download-card {
	padding: 24px;
	min-height: 260px;
	display: grid;
	align-content: space-between;
	gap: 16px;
	transition: transform 160ms ease;
}

.download-card h2 {
	font-size: 2rem;
}

.download-card strong {
	color: var(--primary);
}

.download-card.recommended {
	background: var(--charcoal);
	color: var(--paper-strong);
}

.download-card.recommended p {
	color: hsl(40 20% 92% / 0.7);
}

.download-card.recommended span,
.download-card.recommended strong {
	color: var(--primary-bright);
}

.install-notes {
	padding-top: 42px;
}

.install-notes h2 {
	font-size: 3rem;
	margin-bottom: 16px;
}

.note-grid,
.support-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.support-grid {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 28px;
}

.note-grid div,
.support-grid section {
	padding: 20px;
}

.legal-wrap h1 {
	margin: 12px 0 18px;
}

.legal-wrap h2 {
	font-size: 1.8rem;
	margin: 34px 0 8px;
}

.legal-wrap p {
	max-width: 780px;
}

.legal-wrap a:not(.button):not(.wordmark) {
	color: var(--primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.updated {
	color: var(--muted);
	margin-bottom: 26px;
}

.contact-band {
	margin-top: 34px;
	padding: 28px;
	border-radius: var(--radius);
	background: var(--charcoal);
	color: var(--paper-strong);
	display: grid;
	gap: 14px;
}

.contact-band p {
	color: hsl(40 20% 92% / 0.72);
}

.contact-band .button {
	width: fit-content;
	background: var(--primary-bright);
	color: var(--ink);
}

@media (max-width: 960px) {
	.nav-links {
		display: none;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 118px;
	}

	.proof-strip,
	.feature-grid,
	.evidence-grid,
	.workflow-list,
	.alternative-grid,
	.download-grid,
	.note-grid,
	.support-grid,
	.pricing-cards,
	.compare-decision,
	.release-panel {
		grid-template-columns: 1fr;
	}

	.section-heading,
	.section-heading.compact,
	.comparison-header,
	.demo-layout,
	.pricing-layout,
	.trust-layout,
	.faq-layout,
	.compare-hero,
	.compare-note {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 5.2rem;
	}

	.section-heading h2,
	.demo-copy h2,
	.pricing-layout h2,
	.comparison-header h2,
	.final-cta h2,
	.download-hero h1,
	.legal-wrap h1,
	.trust-layout h2,
	.faq-layout h2,
	.about-hero h1,
	.compare-hero h1 {
		font-size: 3.6rem;
	}

	.compare-matrix h2,
	.compare-note h2,
	.about-band h2,
	.install-notes h2 {
		font-size: 2.7rem;
	}

	.about-principles {
		grid-template-columns: 1fr;
	}

	.workflow-card,
	.feature-card {
		min-height: 220px;
	}

	.final-cta,
	.site-footer,
	.about-band {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer.simple {
		align-items: center;
	}

	.release-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.site-header {
		left: 28px;
		transform: none;
		width: min(320px, calc(100vw - 56px));
		top: 9px;
	}

	.site-header.compact {
		width: min(320px, calc(100vw - 56px));
		margin-left: 28px;
		margin-right: auto;
	}

	.header-cta {
		padding: 0 12px;
	}

	.hero {
		display: block;
		width: min(320px, calc(100vw - 56px));
		max-width: min(320px, calc(100vw - 56px));
		margin-left: 28px;
		margin-right: auto;
		min-height: auto;
		padding: 108px 0 54px;
	}

	.proof-strip,
	.section,
	.final-cta,
	.site-footer,
	.download-wrap,
	.legal-wrap,
	.compare-wrap {
		width: min(320px, calc(100vw - 56px));
		margin-left: 28px;
		margin-right: auto;
	}

	.download-wrap,
	.legal-wrap,
	.compare-wrap {
		padding-top: 72px;
	}

	.hero h1 {
		max-width: 100%;
		font-size: 2.35rem;
		line-height: 1;
		overflow-wrap: anywhere;
	}

	.hero-lede {
		max-width: 100%;
		font-size: 1.12rem;
	}

	.hero-proof {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.hero-proof span {
		max-width: 100%;
		white-space: normal;
	}

	.voice-workspace {
		max-width: 100%;
		margin-top: 28px;
	}

	.workspace-bar {
		padding-inline: 12px;
	}

	.workspace-bar > span {
		display: none;
	}

	.workspace-body {
		padding: 14px;
	}

	.selection-panel,
	.audio-panel,
	.reply-panel {
		padding: 16px;
	}

	.section-heading h2,
	.demo-copy h2,
	.pricing-layout h2,
	.comparison-header h2,
	.final-cta h2,
	.download-hero h1,
	.legal-wrap h1,
	.trust-layout h2,
	.faq-layout h2,
	.about-hero h1,
	.compare-hero h1 {
		max-width: 100%;
		font-size: 2.35rem;
		overflow-wrap: anywhere;
	}

	.compare-matrix h2,
	.compare-note h2,
	.about-band h2,
	.install-notes h2 {
		font-size: 2.15rem;
	}

	.proof-strip {
		margin-top: 0;
	}

	.section {
		padding-top: 72px;
	}

	.demo-section {
		margin-top: 72px;
		padding: 70px 18px;
	}

	.comparison-table {
		width: 100%;
		overflow-x: auto;
	}

	.comparison-table [role="row"] {
		min-width: 720px;
	}

	.frame-controls {
		grid-template-columns: 1fr;
	}

	.audio-panel {
		grid-template-columns: 1fr;
	}

	.play-button {
		width: 42px;
		height: 42px;
	}

	.audio-wave {
		grid-column: auto;
		gap: 6px;
	}

	.reply-panel div {
		align-items: flex-start;
		flex-direction: column;
	}

	.final-cta {
		padding: 28px;
	}

	.button,
	.final-actions,
	.hero-actions {
		width: 100%;
	}

	.button {
		padding: 0 16px;
	}
}

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