/* ==========================================================================
   ClaimCadence theme styles. Classes only, no inline styles.
   Brand Guide v1. Palette and type as CSS custom properties.

   Rules enforced here:
   - One accent per surface. --petrol does all decorative work.
   - Functional colors (--strong / --weak / --adverse) appear ONLY on
     rejection-status chips and the verification ledger. Never as decoration.
   - Mono is for the machinery: app numbers, section symbols, dates, prices, URLs.
   ========================================================================== */

:root {
	/* Brand */
	--ink: #29251F;          /* body text, dark headings */
	--ink-deep: #1C1A16;     /* dark section grounds, header */
	--ink-black: #141310;    /* footer base */
	--paper: #F7F5F1;        /* page ground */
	--paper-2: #EFECE5;      /* alt section ground */
	--body: #3D3A34;         /* paragraph text on paper */
	--muted: #7C776E;        /* secondary text */
	--muted-label: #9A958C;  /* mono eyebrows / labels on paper */
	--petrol: #1682A0;       /* THE accent */
	--petrol-hi: #2EA7C6;    /* petrol on dark grounds */
	--petrol-deep: #106B84;  /* petrol hover */
	--line: rgba(0, 0, 0, .08);
	--line-2: rgba(0, 0, 0, .10);

	/* On dark grounds */
	--on-dark: #F2EFE8;      /* headings / logo on dark */
	--on-dark-soft: #CFC9BF; /* body on dark */
	--on-dark-mute: #A8A299; /* muted body on dark */
	--on-dark-faint: #6E6A62;/* mono labels on dark */
	--line-dark: rgba(255, 255, 255, .08);

	/* Functional - status ONLY, never decoration */
	--strong: oklch(0.55 0.11 150);        /* OVERCOME */
	--strong-ink: oklch(0.50 0.11 150);
	--strong-tint: oklch(0.55 0.11 150 / .13);
	--weak: oklch(0.62 0.12 72);           /* WEAK */
	--weak-ink: oklch(0.52 0.12 72);
	--weak-tint: oklch(0.62 0.12 72 / .17);
	--adverse: oklch(0.53 0.15 27);        /* AMEND / stamp */
	--adverse-ink: oklch(0.50 0.15 27);
	--adverse-tint: oklch(0.53 0.15 27 / .14);
	--stamp: rgba(194, 90, 72, .5);
	--stamp-soft: rgba(194, 90, 72, .62);

	/* Type */
	--display: 'Space Grotesk', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--sans: 'IBM Plex Sans', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

	/* Layout */
	--maxw: 1120px;
	--measure: 820px;
	--measure-legal: 760px;
	--radius-lg: 16px;
	--radius: 14px;
	--radius-doc: 12px;
	--radius-sm: 9px;
	--radius-chip: 5px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--petrol);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--petrol-deep);
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
}

.measure {
	max-width: var(--measure);
}

.measure-legal {
	max-width: var(--measure-legal);
}

.center {
	text-align: center;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink-deep);
	color: var(--on-dark);
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	z-index: 200;
}

.skip-link:focus {
	left: 16px;
	top: 16px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3 {
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

h1 {
	font-size: clamp(34px, 5vw, 56px);
	letter-spacing: -0.03em;
	line-height: 1.05;
}

h2 {
	font-size: clamp(26px, 3.6vw, 38px);
}

h3 {
	font-size: 21px;
}

.h2-sm {
	font-size: clamp(24px, 3.2vw, 32px);
	line-height: 1.15;
}

p {
	margin: 0 0 16px;
	color: var(--body);
}

.lead {
	font-size: 18px;
	line-height: 1.7;
}

.eyebrow {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted-label);
	margin: 0 0 16px;
}

.eyebrow-lg {
	font-size: 12px;
	letter-spacing: 0.18em;
	margin: 0 0 18px;
}

.eyebrow-ondark {
	color: var(--petrol-hi);
}

.mono {
	font-family: var(--mono);
}

/* Inline "DRAFT · NOT FOR FILING" text reference */
.stamp-inline {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--adverse-ink);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-block;
	font-family: var(--sans);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	border-radius: var(--radius-sm);
	padding: 15px 28px;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus {
	text-decoration: none;
}

.btn-primary {
	background: var(--petrol);
	color: #fff;
	border-color: var(--petrol);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--petrol-deep);
	border-color: var(--petrol-deep);
	color: #fff;
}

/* Ghost on paper grounds */
.btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: rgba(0, 0, 0, .18);
}

.btn-ghost:hover,
.btn-ghost:focus {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
}

/* Ghost on dark grounds */
.btn-ghost-dark {
	background: transparent;
	color: var(--on-dark);
	border-color: rgba(255, 255, 255, .22);
}

.btn-ghost-dark:hover,
.btn-ghost-dark:focus {
	background: var(--on-dark);
	border-color: var(--on-dark);
	color: var(--ink);
}

.btn-sm {
	font-size: 14px;
	padding: 9px 18px;
	border-radius: 8px;
}

.btn-lg {
	font-size: 17px;
	padding: 16px 34px;
	border-radius: 10px;
}

.btn-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	margin: 36px 0 0;
}

.btn-row.center-row {
	justify-content: center;
}

/* Inline text link with trailing arrow */
.text-link {
	font-weight: 600;
	font-size: 15px;
	color: var(--petrol);
}

.text-link:hover,
.text-link:focus {
	color: var(--petrol-deep);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(28, 26, 22, .9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line-dark);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.site-brand:hover {
	text-decoration: none;
}

.brand-mark rect {
	fill: var(--on-dark);
}

.brand-mark .bar-accent {
	fill: var(--petrol-hi);
}

.brand-word {
	font-family: var(--display);
	font-weight: 600;
	font-size: 19px;
	letter-spacing: -0.02em;
	color: var(--on-dark);
}

.brand-word-accent {
	color: var(--petrol-hi);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
}

.nav-list a {
	font-family: var(--sans);
	font-weight: 500;
	font-size: 14px;
	color: var(--on-dark-soft);
}

.nav-list a:hover,
.nav-list a:focus {
	color: var(--on-dark);
	text-decoration: none;
}

.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
	color: var(--on-dark);
}

.nav-cta {
	margin-left: 4px;
}

.nav-toggle-checkbox {
	display: none;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	cursor: pointer;
	border-radius: 8px;
}

.nav-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--on-dark);
	margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Sections and grounds
   -------------------------------------------------------------------------- */

.site-main {
	display: block;
}

.section {
	padding: 80px 0;
}

.section-tight {
	padding: 72px 0;
}

.section-lg {
	padding: 96px 0;
}

.ground-paper {
	background: var(--paper);
}

.ground-alt {
	background: var(--paper-2);
}

.ground-dark {
	background: var(--ink-deep);
	color: var(--on-dark);
}

.ground-dark h1,
.ground-dark h2,
.ground-dark h3 {
	color: var(--on-dark);
}

.ground-dark p {
	color: var(--on-dark-soft);
}

/* Radial petrol glow for dark heroes / bands */
.has-glow {
	position: relative;
	overflow: hidden;
}

.has-glow > .wrap,
.has-glow > .glow-inner {
	position: relative;
	z-index: 1;
}

.has-glow::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(1100px 500px at 78% 8%, rgba(22, 130, 160, .16), transparent 60%);
	pointer-events: none;
}

.has-glow.glow-center::before {
	background: radial-gradient(800px 400px at 50% 0%, rgba(22, 130, 160, .16), transparent 62%);
}

/* --------------------------------------------------------------------------
   Interior page hero (dark)
   -------------------------------------------------------------------------- */

.page-hero {
	padding: 80px 0 64px;
}

.page-title {
	margin: 0;
}

.hero-subhead {
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
	color: var(--on-dark-soft);
	margin: 24px 0 0;
	max-width: 52ch;
}

/* --------------------------------------------------------------------------
   Home hero (dark, with product visual)
   -------------------------------------------------------------------------- */

.hero-home {
	padding: 88px 0 96px;
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 56px;
	align-items: center;
}

.hero-home h1 {
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.02;
	margin: 0;
}

.hero-lede {
	font-size: clamp(18px, 2.1vw, 22px);
	line-height: 1.5;
	color: #E4DED4;
	margin: 26px 0 0;
	max-width: 42ch;
}

.hero-body {
	font-size: 16px;
	line-height: 1.65;
	color: var(--on-dark-mute);
	margin: 20px 0 0;
	max-width: 52ch;
}

.hero-docket {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--on-dark-faint);
	letter-spacing: 0.02em;
	margin: 26px 0 0;
}

/* Product visual: response paper + ledger cards */
.hero-visual {
	position: relative;
	min-height: 500px;
}

.hero-ledger {
	position: absolute;
	top: 52px;
	right: 0;
	width: 262px;
	background: #fff;
	border-radius: var(--radius-doc);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
	transform: rotate(6deg);
	overflow: hidden;
	color: var(--ink);
}

.hero-ledger-head {
	padding: 13px 16px;
	border-bottom: 1px solid var(--line);
}

.hero-ledger-head span {
	font-family: var(--mono);
	font-size: 9.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-label);
}

.hero-ledger-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 16px;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
	font-size: 11.5px;
}

.hero-ledger-row:last-child {
	border-bottom: 0;
}

.hero-paper {
	position: absolute;
	top: 0;
	left: 0;
	width: 344px;
	max-width: 100%;
	background: #fff;
	border-radius: var(--radius-doc);
	box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
	transform: rotate(-3deg);
	overflow: hidden;
	color: var(--ink);
	animation: cc-float 7s ease-in-out infinite;
}

@keyframes cc-float {
	0%, 100% { transform: rotate(-3deg) translateY(0); }
	50% { transform: rotate(-3deg) translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
	.hero-paper { animation: none; }
	html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Document (response paper) card
   -------------------------------------------------------------------------- */

.doc-frame {
	display: flex;
	justify-content: center;
}

.doc-card {
	width: 100%;
	max-width: 400px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .09);
	border-radius: var(--radius-doc);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
	overflow: hidden;
	position: relative;
	color: var(--ink);
}

.doc-head {
	padding: 22px 26px 0;
}

.doc-card--lg .doc-head {
	padding: 28px 32px 0;
}

.doc-meta {
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.05em;
	color: var(--muted-label);
	line-height: 1.7;
}

.doc-title {
	font-family: var(--display);
	font-weight: 600;
	font-size: 16px;
	margin: 14px 0 4px;
}

.doc-card--lg .doc-title {
	text-align: center;
	margin: 20px 0 4px;
}

.doc-rule {
	height: 1px;
	background: var(--line-2);
	margin: 12px 0 16px;
}

.doc-body {
	padding: 0 26px 30px;
	font-size: 12.5px;
	line-height: 1.75;
	color: var(--body);
}

.doc-card--lg .doc-body {
	padding: 0 32px 40px;
}

.doc-body p {
	margin: 0 0 14px;
	color: var(--body);
}

.doc-body p:last-child {
	margin: 0;
}

.claim-num {
	font-family: var(--mono);
	color: var(--on-dark-faint);
}

.claim-status {
	font-style: normal;
	color: var(--muted);
}

.claim-status.is-amended {
	color: var(--petrol);
	font-weight: 600;
}

.claim-ins {
	background: rgba(22, 130, 160, .14);
	padding: 0 2px;
}

/* --------------------------------------------------------------------------
   The DRAFT stamp
   -------------------------------------------------------------------------- */

.stamp {
	position: absolute;
	top: 46%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-14deg);
	border: 3px solid rgba(194, 90, 72, .32);
	color: rgba(194, 90, 72, .42);
	font-family: var(--mono);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.14em;
	padding: 10px 20px;
	border-radius: 8px;
	white-space: nowrap;
	pointer-events: none;
}

/* Denser stamp used on the small floating hero paper */
.stamp--sm {
	top: 150px;
	transform: translate(-50%, 0) rotate(-11deg);
	border-width: 2.5px;
	border-color: var(--stamp);
	color: var(--stamp-soft);
	font-size: 13px;
	letter-spacing: 0.12em;
	padding: 8px 16px;
	border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Cards and grids
   -------------------------------------------------------------------------- */

.grid {
	display: grid;
	gap: 22px;
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 48px;
}

.split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 48px;
	align-items: center;
}

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 30px;
}

.card p:last-child {
	margin-bottom: 0;
}

.card-dark {
	background: var(--ink-deep);
	color: var(--on-dark);
	border-radius: var(--radius);
	padding: 32px 30px;
}

.card-dark p {
	color: var(--on-dark-soft);
}

/* Numbered "work" card (Home: what we do) */
.work-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.num-badge {
	font-family: var(--display);
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	background: var(--petrol);
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.card-label {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--petrol);
}

/* Proof strip stat headings (Home) - display type, functional-tinted accent.
   These are status labels, not decoration. */
.stat-title {
	font-family: var(--display);
	font-weight: 600;
	font-size: 20px;
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}

.stat-title.is-strong { color: oklch(0.70 0.13 150); }
.stat-title.is-petrol { color: oklch(0.74 0.12 205); }
.stat-title.is-weak { color: oklch(0.80 0.11 85); }

.section-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin: 32px 0 0;
}

.section-note p {
	margin: 0;
	font-size: 15px;
	color: var(--muted);
}

/* --------------------------------------------------------------------------
   Pull quote
   -------------------------------------------------------------------------- */

.pullquote {
	font-family: var(--display);
	font-weight: 500;
	font-size: clamp(26px, 3.4vw, 38px);
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0;
	padding-left: 26px;
	border-left: 4px solid var(--petrol);
}

.pullquote-sm {
	font-size: clamp(24px, 3.2vw, 34px);
	line-height: 1.25;
}

.quote-wrap {
	align-self: stretch;
	display: flex;
	align-items: center;
}

/* --------------------------------------------------------------------------
   Timeline (How It Works)
   -------------------------------------------------------------------------- */

.timeline {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}

.timeline-step {
	position: relative;
	margin-left: 22px;
	padding-left: 34px;
	padding-bottom: 34px;
	border-left: 2px solid rgba(22, 130, 160, .25);
}

.timeline-step:last-child {
	border-left-color: transparent;
	padding-bottom: 0;
}

.timeline-node {
	position: absolute;
	left: -23px;
	top: -2px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--petrol);
	color: #fff;
	font-family: var(--display);
	font-weight: 600;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline-step h3 {
	margin: 0 0 8px;
}

.timeline-step p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Verification ledger (Deliverable)
   -------------------------------------------------------------------------- */

.ledger {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .09);
	border-radius: var(--radius-doc);
	overflow: hidden;
}

.ledger-head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	padding: 14px 22px;
	border-bottom: 1px solid var(--line);
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-label);
}

.ledger-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 16px 22px;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	font-size: 14.5px;
}

.ledger-row:last-child {
	border-bottom: 0;
}

.ledger-ground {
	color: var(--ink);
}

.ledger-ground .sec {
	font-family: var(--mono);
	color: var(--on-dark-faint);
}

/* --------------------------------------------------------------------------
   Status chips (functional colors only)
   -------------------------------------------------------------------------- */

.status-chip {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 4px 11px;
	border-radius: var(--radius-chip);
	white-space: nowrap;
	display: inline-block;
}

.status-chip.is-strong {
	color: var(--strong-ink);
	background: var(--strong-tint);
}

.status-chip.is-weak {
	color: var(--weak-ink);
	background: var(--weak-tint);
}

.status-chip.is-adverse {
	color: var(--adverse-ink);
	background: var(--adverse-tint);
}

.status-chip.is-petrol {
	color: oklch(0.48 0.12 208);
	background: oklch(0.55 0.12 208 / .13);
}

.status-chip.is-neutral {
	color: var(--on-dark-faint);
	background: rgba(0, 0, 0, .06);
}

/* Smaller chip for the compact hero ledger */
.status-chip.chip-xs {
	font-size: 9px;
	padding: 2px 7px;
	border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.free-card {
	background: #fff;
	border: 2px solid var(--petrol);
	border-radius: var(--radius-lg);
	padding: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	align-items: center;
}

.free-title-row {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.free-name {
	font-family: var(--display);
	font-weight: 600;
	font-size: 28px;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.price-badge {
	font-family: var(--mono);
	font-size: 15px;
	font-weight: 600;
	color: var(--petrol);
	background: rgba(22, 130, 160, .12);
	padding: 4px 12px;
	border-radius: 6px;
}

.free-card p {
	margin: 0;
}

.price-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 26px;
}

.price-label {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-label);
	margin-bottom: 14px;
}

.price-amount {
	font-family: var(--display);
	font-weight: 600;
	font-size: 34px;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin-bottom: 12px;
}

.price-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--body);
	margin: 0;
}

.pack-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 28px;
}

.pack-card.is-dark {
	background: var(--ink-deep);
	color: var(--on-dark);
	border-color: transparent;
}

.pack-label {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-label);
	margin-bottom: 14px;
}

.pack-card.is-dark .pack-label {
	color: var(--petrol-hi);
}

.pack-amount {
	font-family: var(--display);
	font-weight: 600;
	font-size: 32px;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.pack-card.is-dark .pack-amount {
	color: var(--on-dark);
}

.pack-per {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--petrol);
	margin: 8px 0 14px;
}

.pack-card.is-dark .pack-per {
	color: var(--petrol-hi);
}

.pack-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--body);
	margin: 0;
}

.pack-card.is-dark .pack-desc {
	color: var(--on-dark-soft);
}

.fineprint {
	font-family: var(--mono);
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--on-dark-faint);
	margin: 24px 0 0;
}

/* --------------------------------------------------------------------------
   Proof
   -------------------------------------------------------------------------- */

.case-card .status-chip {
	margin-bottom: 18px;
}

.case-card p {
	font-size: 15.5px;
	line-height: 1.65;
	margin: 0;
}

.blindtest-note {
	background: rgba(0, 0, 0, .04);
	border: 1px dashed rgba(0, 0, 0, .2);
	border-radius: 10px;
	padding: 18px 22px;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}

.confirm-tag {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--adverse-ink);
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */

.faq {
	border-top: 1px solid var(--line-2);
}

.faq-item {
	border-bottom: 1px solid var(--line-2);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
	list-style: none;
	cursor: pointer;
}

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

.faq-q {
	font-family: var(--display);
	font-weight: 600;
	font-size: 19px;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.faq-plus {
	flex: none;
	width: 22px;
	height: 22px;
	position: relative;
	transition: transform 0.2s ease;
}

.faq-plus::before,
.faq-plus::after {
	content: "";
	position: absolute;
	background: var(--petrol);
}

.faq-plus::before {
	top: 10px;
	left: 3px;
	right: 3px;
	height: 2px;
}

.faq-plus::after {
	left: 10px;
	top: 3px;
	bottom: 3px;
	width: 2px;
}

.faq-item[open] .faq-plus {
	transform: rotate(45deg);
}

.faq-a {
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 24px;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
	padding: 100px 0;
	text-align: center;
}

.cta-mark {
	display: flex;
	justify-content: center;
	margin: 0 0 30px;
}

.cta-mark .brand-mark rect {
	fill: var(--on-dark);
}

.cta-mark .brand-mark .bar-accent {
	fill: var(--petrol-hi);
}

/* Spacing utilities */
.mt-lg {
	margin-top: 32px;
}

.mark-block {
	margin: 0 0 24px;
}

.cta-band h2 {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.12;
	margin: 0 0 20px;
}

.cta-reassure {
	font-size: 15px;
	color: var(--on-dark-mute);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-updated {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--on-dark-mute);
	margin: 14px 0 0;
}

.legal-body h2 {
	font-size: 22px;
	margin: 36px 0 12px;
}

.legal-body h2:first-child {
	margin-top: 0;
}

.legal-body p {
	font-size: 16px;
	line-height: 1.75;
	max-width: var(--measure-legal);
}

.legal-body ul {
	margin: 0 0 16px;
	padding: 0 0 0 22px;
	max-width: var(--measure-legal);
}

.legal-body li {
	font-size: 16px;
	line-height: 1.75;
	color: var(--body);
	margin: 0 0 8px;
	padding-left: 4px;
}

.legal-body strong {
	color: var(--ink);
}

.legal-lead {
	font-size: 17px;
	color: var(--body);
	margin: 0 0 8px;
}

.legal-note {
	background: var(--paper-2);
	border: 1px solid var(--line);
	border-left: 3px solid var(--adverse-ink);
	border-radius: 10px;
	padding: 18px 22px;
	margin: 40px 0 0;
	max-width: var(--measure-legal);
}

.legal-note p {
	margin: 0;
	font-size: 14.5px;
	color: var(--muted);
}

.confirm-note {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--adverse-ink);
}

.post-summary {
	margin: 0 0 28px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
	background: var(--ink-black);
	color: var(--on-dark-mute);
	padding: 56px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	align-items: start;
}

.footer-brand-row {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 16px;
}

.footer-brand-word {
	color: var(--on-dark);
	font-size: 17px;
}

.footer-tag {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	max-width: 38ch;
	color: var(--on-dark-mute);
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col-title {
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--on-dark-faint);
	margin: 0 0 4px;
}

.footer-link {
	color: var(--on-dark-soft);
	font-size: 14px;
}

.footer-link:hover,
.footer-link:focus {
	color: var(--on-dark);
	text-decoration: none;
}

.footer-legal {
	border-top: 1px solid var(--line-dark);
	margin-top: 40px;
	padding-top: 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 24px;
	font-family: var(--mono);
	font-size: 12px;
	color: var(--on-dark-faint);
}

/* --------------------------------------------------------------------------
   Anchor offset so deep links clear the sticky header
   -------------------------------------------------------------------------- */

[id] {
	scroll-margin-top: 90px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 820px) {
	.section { padding: 64px 0; }
	.section-lg { padding: 72px 0; }
	.hero-home { padding: 72px 0 72px; }

	.nav-toggle { display: flex; }

	.site-nav {
		position: fixed;
		inset: 62px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--ink-deep);
		border-bottom: 1px solid var(--line-dark);
		padding: 12px 32px 24px;
		transform: translateY(-130%);
		transition: transform 0.22s ease;
		box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
	}

	.nav-toggle-checkbox:checked ~ .site-nav {
		transform: translateY(0);
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-list .menu-item,
	.nav-list li {
		border-bottom: 1px solid var(--line-dark);
	}

	.nav-list a {
		display: block;
		padding: 14px 2px;
		font-size: 16px;
	}

	.nav-cta {
		margin: 16px 0 0;
		text-align: center;
	}

	.hero-visual {
		min-height: 440px;
		margin-top: 8px;
	}
}

@media (max-width: 520px) {
	.wrap { padding: 0 20px; }
	.free-card { padding: 28px 24px; }
	.card, .card-dark { padding: 26px 24px; }

	.btn { width: 100%; text-align: center; }
	.btn-sm.nav-cta { width: 100%; }
	.btn-row { flex-direction: column; align-items: stretch; }

	.footer-legal {
		flex-direction: column;
		gap: 8px;
	}
}
