/* ── PAGE HERO ── */
.page-hero {
	padding: 4rem 0 3.5rem;
	border-bottom: 1px solid var(--paper-3);
	position: relative;
	overflow: hidden
}

.page-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center
}

.page-hero-text {
	min-width: 0
}

.page-hero-art {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.page-hero-art svg {
	width: 100%;
	max-width: 520px;
	height: auto;
	display: block
}

.page-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.5rem
}

.page-hero-eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--blue)
}

.page-hero h1 {
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	margin-bottom: 1.25rem;
	max-width: 780px
}

.page-hero h1 em {
	font-style: italic;
	color: var(--blue)
}

.page-hero-sub {
	font-size: 1.05rem;
	color: var(--ink-2);
	line-height: 1.75;
	max-width: 600px
}

/* ── TOOLS SECTIONS ── */
.tools-section {
	padding: 4rem 0 1rem
}

.tools-section+.tools-section {
	padding-top: 1rem
}

.section-head {
	margin-bottom: 2rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap
}

.section-head-left {
	max-width: 560px
}

.section-head h2 {
	font-family: var(--serif);
	font-weight: 900;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	color: var(--heading);
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin-bottom: 0.5rem
}

.section-head h2 em {
	font-style: italic;
	color: var(--blue)
}

.section-head-meta {
	font-size: 0.78rem;
	color: var(--ink-3);
	font-variant-numeric: tabular-nums
}

/* ── CARD GRID ── */
.tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem
}

/* ── TOOL CARD ── */
.tool-card {
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--paper-3);
	border-radius: var(--r-lg);
	padding: 1.5rem 1.5rem 1.25rem;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	min-height: 230px;
	text-decoration: none;
	color: inherit;
}

.tool-card.is-available {
	cursor: pointer
}

.tool-card.is-available:hover {
	border-color: var(--blue);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(16, 25, 66, 0.06);
}

.tool-card.is-soon {
	cursor: default
}

.tool-card.is-soon::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(244, 246, 253, 0.4) 100%);
	pointer-events: none;
	border-radius: var(--r-lg);
}

/* category icon chip */
.tool-card-chip {
	width: 42px;
	height: 42px;
	border-radius: var(--r);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.tool-card-chip svg {
	width: 22px;
	height: 22px;
	display: block
}

.chip-blue {
	background: var(--blue-pale);
	color: var(--blue)
}

.chip-teal {
	background: var(--teal-pale);
	color: var(--teal)
}

.chip-amber {
	background: var(--amber-pale);
	color: var(--amber)
}

.chip-forest {
	background: var(--forest-pale);
	color: var(--forest)
}

.chip-rose {
	background: var(--rose-pale);
	color: var(--rose)
}

.tool-card-title {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--heading);
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin-bottom: 0.45rem;
}

.tool-card-desc {
	font-size: 0.85rem;
	color: var(--ink-2);
	line-height: 1.6;
	margin-bottom: 1rem;
	flex: 1;
}

.tool-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

/* status badges */
.tool-card-badge {
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.badge-available {
	background: var(--forest-pale);
	color: var(--forest)
}

.badge-available .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--forest);
	box-shadow: 0 0 0 3px rgba(26, 102, 71, 0.15)
}

.badge-soon {
	background: var(--paper-2);
	color: var(--ink-3);
	border: 1px solid var(--paper-3)
}

.tool-card-arrow {
	font-size: 0.78rem;
	color: var(--blue);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: transform 0.18s;
}

.tool-card.is-available:hover .tool-card-arrow {
	transform: translateX(3px)
}

/* ── CTA SECTION ── */
.cta-section {
	background: var(--night);
	padding: 5rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-top: 5rem;
}

.cta-section::before {
	content: '';
	position: absolute;
	bottom: -120px;
	left: -120px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(47, 74, 199, 0.12);
	pointer-events: none
}

.cta-label {
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 1.25rem
}

.cta-headline {
	font-family: var(--serif);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-size: clamp(1.9rem, 3.5vw, 3rem);
	color: #fff;
	max-width: 680px;
	margin: 0 auto 1rem
}

.cta-headline em {
	font-style: italic;
	color: var(--blue-2)
}

.cta-sub {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 480px;
	margin: 0 auto 2rem;
	line-height: 1.8
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 1
}

.btn-white {
	background: #fff;
	color: var(--blue);
	border-color: #fff
}

.btn-white:hover {
	background: rgba(255, 255, 255, 0.92)
}

.btn-outline-white {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3)
}

.btn-outline-white:hover {
	border-color: #fff;
	transform: translateY(-1px)
}