/* The whole stylesheet (LND-01): static, linked, cache-busted by query — never through the bundler.
   Light ground, one teal accent, dark reserved for the transcript panel and the gate (LND-05). */

:root
{
	--bg: #faf9f5;
	--ink: #171a22;
	--muted: #5b6472;
	--line: #e4e1d8;
	--accent: #0d9488;
	--accent-ink: #0b7c72;

	--dark: #0f1720;
	--dark-raised: #172230;
	--dark-border: #24344a;
	--dark-text: #e6edf3;
	--dark-muted: #8fa3b8;

	--radius: 12px;
}

*
{
	box-sizing: border-box;
}

body
{
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.wrap
{
	width: min(100% - 40px, 1060px);
	margin: 0 auto;
}

h1, h2, h3
{
	line-height: 1.2;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
}

h1
{
	font-size: clamp(34px, 5.4vw, 54px);
}

h2
{
	font-size: clamp(24px, 3.2vw, 32px);
}

h3
{
	font-size: 18px;
}

p
{
	margin: 0 0 14px;
}

code
{
	background: #efece3;
	border-radius: 5px;
	padding: 1px 5px;
	font-size: 0.92em;
}

/* Navigation */

.nav
{
	border-bottom: 1px solid var(--line);
}

.nav-inner
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

.brand
{
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.01em;
}

.nav-cta
{
	color: var(--accent-ink);
	font-weight: 600;
	text-decoration: none;
}

.nav-cta:hover
{
	text-decoration: underline;
}

/* Hero */

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

.hero-inner
{
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 44px;
	align-items: center;
}

.eyebrow
{
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--accent-ink);
	margin-bottom: 10px;
}

.lead
{
	font-size: 18px;
	color: var(--muted);
	max-width: 60ch;
}

.lead.narrow
{
	max-width: 52ch;
}

.cta-row
{
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	margin-top: 26px;
}

.button
{
	display: inline-block;
	background: var(--accent);
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	padding: 13px 22px;
	border-radius: 10px;
}

.button:hover
{
	background: var(--accent-ink);
}

.button.big
{
	font-size: 18px;
	padding: 15px 30px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.cta-note,
.fine
{
	font-size: 13.5px;
	color: var(--muted);
	max-width: 62ch;
}

/* The transcript panel — the one dark thing above the fold (LND-05) */

.panel
{
	background: var(--dark);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	padding: 18px 20px 22px;
	color: var(--dark-text);
}

.panel-bar
{
	display: flex;
	align-items: center;
	gap: 6px;
	border-bottom: 1px solid var(--dark-border);
	padding-bottom: 12px;
	margin-bottom: 16px;
}

.dot
{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--dark-border);
}

.panel-title
{
	margin-left: 8px;
	color: var(--dark-muted);
	font-size: 13px;
}

.panel-line
{
	color: var(--dark-muted);
	font-size: 13px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.mic
{
	color: #2dd4bf;
	margin-right: 6px;
}

.panel-typed
{
	font-size: 17px;
	margin: 0 0 10px;
	border-left: 2px solid #2dd4bf;
	padding-left: 12px;
}

.panel-hint
{
	margin: 0;
	color: var(--dark-muted);
	font-size: 12.5px;
}

/* Sections */

.section
{
	padding: 56px 0;
}

.band
{
	background: #f3f1ea;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.rule
{
	padding-top: 48px;
	max-width: 22ch;
}

.rule-note
{
	color: var(--muted);
	max-width: 62ch;
	padding-bottom: 48px;
}

.steps
{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.step-n
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--accent);
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 12px;
}

.steps p
{
	color: var(--muted);
	margin: 0;
}

.cards
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 18px;
}

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

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

.download
{
	text-align: center;
}

.download .lead,
.download .fine
{
	margin-left: auto;
	margin-right: auto;
}

.download .button
{
	margin: 8px 0 16px;
}

.footer
{
	display: flex;
	justify-content: space-between;
	padding: 26px 0;
	color: var(--muted);
	font-size: 13.5px;
}

@media (max-width: 860px)
{
	.hero-inner,
	.steps,
	.cards
	{
		grid-template-columns: 1fr;
	}

	.hero
	{
		padding: 44px 0 36px;
	}
}

/* The preview gate (LND-03) — deleted with the gate block at launch */

#gate
{
	position: fixed;
	inset: 0;
	background: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.gate-card
{
	background: var(--dark-raised);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	padding: 32px 36px;
	width: min(90vw, 340px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
}

.gate-brand
{
	font-size: 22px;
	font-weight: 700;
	color: var(--dark-text);
}

.gate-note
{
	margin: 0;
	color: var(--dark-muted);
	font-size: 13.5px;
}

.gate-card input
{
	background: var(--dark);
	border: 1px solid var(--dark-border);
	border-radius: 8px;
	color: var(--dark-text);
	padding: 10px 12px;
	font-size: 15px;
}

.gate-card button
{
	background: var(--accent);
	border: none;
	border-radius: 8px;
	color: #ffffff;
	font-weight: 700;
	padding: 10px;
	font-size: 15px;
	cursor: pointer;
}

.gate-err
{
	margin: 0;
	color: #e5484d;
	font-size: 13px;
	min-height: 1em;
}
