/*
  Booti WordPress theme styles.
  Hand-written CSS ported from the original Tailwind utility markup
  (app/globals.css + components/*.tsx) — no build step required.
*/

/* ---------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------- */
:root {
	--color-accent-50: #f4f1ff;
	--color-accent-100: #ece5ff;
	--color-accent-200: #d9ccff;
	--color-accent-300: #bfa6ff;
	--color-accent-400: #a175ff;
	--color-accent-500: #863bff;
	--color-accent-600: #7420f0;
	--color-accent-700: #6015c9;
	--color-accent-800: #4f14a3;
	--color-accent-900: #421485;

	--color-ink-950: #070510;
	--color-ink-900: #0c0918;
	--color-ink-850: #120e22;
	--color-ink-800: #17122c;
	--color-ink-700: #241b40;
	--color-ink-600: #362a5c;

	--color-slate-200: #e2e8f0;
	--color-slate-300: #cbd5e1;
	--color-slate-400: #94a3b8;
	--color-slate-500: #64748b;
	--color-emerald-400: #34d399;
	--color-emerald-500: #10b981;
	--color-sky-300: #7dd3fc;
	--color-sky-500: #0ea5e9;

	--font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

	color-scheme: dark;
}

/* ---------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	height: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

body {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	margin: 0;
	background-color: var(--color-ink-950);
	color: #e7e3f4;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.5;
}

.site-main { flex: 1 1 auto; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd, h1, h2, h3, p, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection {
	background: rgba(134, 59, 255, 0.45);
	color: #fff;
}

:focus-visible {
	outline: 2px solid var(--color-accent-400);
	outline-offset: 2px;
	border-radius: 4px;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #2a2140 transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #2a2140; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3a2d5c; }

/* ---------------------------------------------------------------------
   Accessibility helpers
   ------------------------------------------------------------------- */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	border: 0;
}

.skip-link.screen-reader-text:focus {
	position: fixed;
	top: 1rem; left: 1rem;
	z-index: 100;
	width: auto; height: auto;
	clip: auto;
	margin: 0;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: var(--color-accent-500);
	color: #fff;
	font-weight: 600;
}

/* ---------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: 72rem; /* 1152px */
	margin-inline: auto;
	padding-inline: 1.25rem;
}
@media (min-width: 640px) {
	.container { padding-inline: 2rem; }
}

.section { padding-block: 5rem; }
@media (min-width: 640px) {
	.section { padding-block: 7rem; }
}
.section--bordered {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(12, 9, 24, 0.4);
}
.section--bordered-top {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(12, 9, 24, 0.4);
}

.text-gradient {
	background: linear-gradient(100deg, #ffffff 0%, #d9ccff 45%, #a175ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

@keyframes float-slow {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
	50% { transform: translateY(-18px) scale(1.04); opacity: 1; }
}
.animate-float-slow { animation: float-slow 9s ease-in-out infinite; }

@keyframes rise {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}
.animate-rise { animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* ---------------------------------------------------------------------
   Icons
   ------------------------------------------------------------------- */
.icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	display: inline-block;
	vertical-align: middle;
}
.icon.icon--xs { width: 0.875rem; height: 0.875rem; }
.icon.icon--sm { width: 1rem; height: 1rem; }

/* ---------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 0.75rem;
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.2s ease;
	white-space: nowrap;
}
.btn--lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
.btn--primary {
	background: var(--color-accent-500);
	color: #fff;
	box-shadow: 0 10px 25px -5px rgba(134, 59, 255, 0.25);
}
.btn--primary:hover {
	background: var(--color-accent-400);
	box-shadow: 0 10px 25px -5px rgba(161, 117, 255, 0.3);
}
.btn--secondary {
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}
.btn--secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost { color: var(--color-slate-200); }
.btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }

/* ---------------------------------------------------------------------
   Badge / section heading
   ------------------------------------------------------------------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 1px solid rgba(134, 59, 255, 0.3);
	background: rgba(134, 59, 255, 0.1);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-accent-200);
}

.section-heading { max-width: 42rem; margin-inline: auto; text-align: center; }
.section-heading__eyebrow {
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--color-accent-300);
}
.section-heading__title {
	font-size: 1.875rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #fff;
}
@media (min-width: 640px) {
	.section-heading__title { font-size: 2.25rem; }
}
.section-heading__subtitle {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.625;
	color: rgba(203, 213, 225, 0.8);
}
@media (min-width: 640px) {
	.section-heading__subtitle { font-size: 1.125rem; }
}

/* ---------------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(7, 5, 16, 0.7);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
.site-logo { display: inline-flex; align-items: center; gap: 0.625rem; }
.site-logo__text { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; color: #fff; }

.site-nav { display: none; }
.site-nav__list { display: flex; align-items: center; gap: 0.25rem; }
.site-nav__list a {
	display: inline-block;
	border-radius: 0.5rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	color: var(--color-slate-300);
	transition: color 0.15s ease;
}
.site-nav__list a:hover { color: #fff; }

.header-actions { display: none; align-items: center; gap: 0.75rem; }

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	color: #fff;
}

.mobile-menu {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(7, 5, 16, 0.95);
}
.mobile-menu__inner { display: flex; flex-direction: column; gap: 0.25rem; padding-block: 1rem; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu__list a {
	display: block;
	border-radius: 0.5rem;
	padding: 0.75rem;
	font-size: 1rem;
	color: var(--color-slate-200);
}
.mobile-menu__list a:hover { background: rgba(255, 255, 255, 0.05); }
.mobile-menu__cta { margin-top: 0.5rem; width: 100%; }

@media (min-width: 768px) {
	.site-nav { display: flex; align-items: center; gap: 0.25rem; }
	.header-actions { display: flex; }
	.menu-toggle { display: none; }
	.mobile-menu { display: none; }
}

/* ---------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------- */
.hero {
	position: relative;
	overflow: hidden;
	padding-top: 4rem;
	padding-bottom: 5rem;
}
@media (min-width: 640px) {
	.hero { padding-top: 6rem; padding-bottom: 7rem; }
}
.hero__grid-backdrop {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(to right, rgba(134, 59, 255, 0.06) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(134, 59, 255, 0.06) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 78%);
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 78%);
}
.hero__glow {
	pointer-events: none;
	position: absolute;
	top: -10rem;
	left: 50%;
	z-index: -1;
	height: 24rem;
	width: 46rem;
	transform: translateX(-50%);
	border-radius: 9999px;
	background: rgba(116, 32, 240, 0.25);
	filter: blur(120px);
}
.hero__inner {
	display: grid;
	gap: 3.5rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr 1fr; }
}
.hero__title {
	margin-top: 1.5rem;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
}
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }

.hero__description {
	margin-top: 1.5rem;
	max-width: 36rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: rgba(203, 213, 225, 0.85);
}

.hero__actions {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }

.hero__stats {
	margin-top: 3rem;
	display: grid;
	max-width: 28rem;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.hero__stat dt { font-size: 1.5rem; font-weight: 600; color: #fff; }
.hero__stat dd { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-slate-400); }

.hero__visual { display: flex; justify-content: center; }
@media (min-width: 1024px) { .hero__visual { justify-content: flex-end; } }

/* ---------------------------------------------------------------------
   Chat mockup
   ------------------------------------------------------------------- */
.chat-mockup { position: relative; width: 100%; max-width: 24rem; }
.chat-mockup__glow {
	position: absolute;
	inset: -1.5rem;
	z-index: -1;
	border-radius: 2rem;
	background: rgba(134, 59, 255, 0.2);
	filter: blur(64px);
}
.chat-mockup__card {
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(18, 14, 34, 0.9);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(16px);
}
.chat-mockup__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(23, 18, 44, 0.8);
	padding: 0.75rem 1rem;
}
.chat-mockup__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	background: rgba(134, 59, 255, 0.15);
}
.chat-mockup__title { font-size: 0.875rem; font-weight: 600; color: #fff; }
.chat-mockup__status {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: var(--color-emerald-400);
}
.chat-mockup__status-dot {
	width: 0.375rem; height: 0.375rem;
	border-radius: 9999px;
	background: var(--color-emerald-400);
}
.chat-mockup__body { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.25rem 1rem; }

.bubble {
	max-width: 85%;
	border-radius: 1rem;
	padding: 0.625rem 0.875rem;
	font-size: 0.875rem;
	line-height: 1.625;
}
.bubble--bot {
	align-self: flex-start;
	border-top-left-radius: 0.125rem;
	background: rgba(36, 27, 64, 0.7);
	color: var(--color-slate-200);
}
.bubble--user {
	align-self: flex-end;
	border-top-right-radius: 0.125rem;
	background: var(--color-accent-500);
	color: #fff;
}
.bubble strong { color: #fff; }

.typing-dots { display: flex; align-items: center; gap: 0.375rem; padding-left: 0.25rem; padding-top: 0.25rem; }
.typing-dots span {
	display: inline-block;
	width: 0.375rem; height: 0.375rem;
	border-radius: 9999px;
	background: var(--color-slate-500);
}

.chat-mockup__input-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1rem;
}
.chat-mockup__input {
	flex: 1 1 auto;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--color-ink-900);
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	color: var(--color-slate-400);
}
.chat-mockup__send {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem; height: 2.25rem;
	flex-shrink: 0;
	border-radius: 9999px;
	background: var(--color-accent-500);
	color: #fff;
}

/* ---------------------------------------------------------------------
   Features
   ------------------------------------------------------------------- */
.features__grid {
	margin-top: 3.5rem;
	display: grid;
	gap: 1.25rem;
}
@media (min-width: 640px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
	position: relative;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(12, 9, 24, 0.6);
	padding: 1.5rem;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}
.feature-card:hover {
	border-color: rgba(134, 59, 255, 0.4);
	background: rgba(18, 14, 34, 0.7);
}
.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem; height: 2.75rem;
	border-radius: 0.75rem;
	background: rgba(134, 59, 255, 0.12);
	color: var(--color-accent-300);
	box-shadow: inset 0 0 0 1px rgba(134, 59, 255, 0.2);
	transition: background-color 0.15s ease;
}
.feature-card:hover .feature-card__icon { background: rgba(134, 59, 255, 0.2); }
.feature-card__title { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 600; color: #fff; }
.feature-card__description {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(203, 213, 225, 0.75);
}

/* ---------------------------------------------------------------------
   How it works
   ------------------------------------------------------------------- */
.steps { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
	position: relative;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(18, 14, 34, 0.6);
	padding: 1.75rem;
}
.step__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem; height: 2.5rem;
	border-radius: 9999px;
	background: var(--color-accent-500);
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
}
.step__title { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 600; color: #fff; }
.step__description {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(203, 213, 225, 0.75);
}
.step__arrow {
	position: absolute;
	right: 1.5rem;
	top: 2.25rem;
	display: none;
	color: rgba(134, 59, 255, 0.4);
}
@media (min-width: 768px) { .step__arrow { display: block; } }

/* ---------------------------------------------------------------------
   Pricing
   ------------------------------------------------------------------- */
.pricing__grid { margin-top: 3.5rem; display: grid; align-items: stretch; gap: 1.5rem; }
@media (min-width: 1024px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(12, 9, 24, 0.5);
	padding: 1.75rem;
}
.plan-card--highlighted {
	border-color: rgba(134, 59, 255, 0.5);
	background: linear-gradient(to bottom, rgba(134, 59, 255, 0.12), rgba(18, 14, 34, 0.6));
	box-shadow: 0 25px 50px -12px rgba(134, 59, 255, 0.1);
}
.plan-card__badge {
	position: absolute;
	top: -0.75rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 9999px;
	background: var(--color-accent-500);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}
.plan-card__name { font-size: 1.125rem; font-weight: 600; color: #fff; }
.plan-card__blurb { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(203, 213, 225, 0.7); }
.plan-card__price { margin-top: 1.25rem; display: flex; align-items: baseline; gap: 0.25rem; }
.plan-card__amount { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.plan-card__cadence { font-size: 0.875rem; color: var(--color-slate-400); }
.plan-card__features { margin-top: 1.5rem; flex: 1 1 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.875rem;
	color: rgba(226, 232, 240, 0.85);
}
.plan-card__features .icon { margin-top: 0.125rem; color: var(--color-accent-400); }
.plan-card__cta { margin-top: 2rem; width: 100%; }

.pricing__note { margin-top: 2rem; text-align: center; font-size: 0.875rem; color: var(--color-slate-400); }

/* ---------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------- */
.faq-list {
	margin: 3rem auto 0;
	max-width: 48rem;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(18, 14, 34, 0.5);
}
.faq-item {
	padding: 1.25rem 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item:first-child { border-top: 0; }
.faq-item[open] { background: rgba(255, 255, 255, 0.02); }
.faq-item__summary {
	display: flex;
	cursor: pointer;
	list-style: none;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__icon {
	flex-shrink: 0;
	color: var(--color-accent-400);
	transition: transform 0.2s ease;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
	margin-top: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(203, 213, 225, 0.8);
}

/* ---------------------------------------------------------------------
   Contact CTA
   ------------------------------------------------------------------- */
.contact-cta__panel {
	position: relative;
	overflow: hidden;
	border-radius: 1.5rem;
	border: 1px solid rgba(134, 59, 255, 0.25);
	background: linear-gradient(to bottom right, rgba(116, 32, 240, 0.2), var(--color-ink-850), var(--color-ink-900));
	padding: 2rem;
}
@media (min-width: 640px) { .contact-cta__panel { padding: 3.5rem; } }
.contact-cta__glow {
	pointer-events: none;
	position: absolute;
	right: -6rem; top: -6rem;
	height: 18rem; width: 18rem;
	border-radius: 9999px;
	background: rgba(134, 59, 255, 0.25);
	filter: blur(64px);
}
.contact-cta__content { position: relative; }
.contact-cta__title {
	max-width: 42rem;
	font-size: 1.875rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #fff;
}
@media (min-width: 640px) { .contact-cta__title { font-size: 2.25rem; } }
.contact-cta__description {
	margin-top: 1rem;
	max-width: 36rem;
	color: rgba(203, 213, 225, 0.85);
}
.contact-cta__grid {
	margin-top: 2.5rem;
	display: grid;
	gap: 1rem;
}
@media (min-width: 640px) { .contact-cta__grid { grid-template-columns: repeat(3, 1fr); } }

.contact-channel {
	display: flex;
	align-items: center;
	gap: 1rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(7, 5, 16, 0.4);
	padding: 1.25rem;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}
.contact-channel:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(7, 5, 16, 0.7); }
.contact-channel__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem; height: 2.75rem;
	border-radius: 0.75rem;
}
.contact-channel__icon--whatsapp { color: var(--color-emerald-400); background: rgba(16, 185, 129, 0.1); box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.2); }
.contact-channel__icon--email { color: var(--color-accent-300); background: rgba(134, 59, 255, 0.1); box-shadow: inset 0 0 0 1px rgba(134, 59, 255, 0.2); }
.contact-channel__icon--call { color: var(--color-sky-300); background: rgba(14, 165, 233, 0.1); box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.2); }
.contact-channel__text { min-width: 0; }
.contact-channel__label { display: block; font-size: 0.875rem; font-weight: 600; color: #fff; }
.contact-channel__value {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.875rem;
	color: var(--color-slate-400);
}
.contact-channel__arrow {
	margin-left: auto;
	color: var(--color-slate-500);
	transition: transform 0.15s ease, color 0.15s ease;
}
.contact-channel:hover .contact-channel__arrow { transform: translateX(0.125rem); color: #fff; }

/* ---------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--color-ink-950);
}
.site-footer__inner { padding-block: 3.5rem; }
.site-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
	.site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.site-footer__blurb {
	margin-top: 1rem;
	max-width: 20rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: var(--color-slate-400);
}
.site-footer__heading { font-size: 0.875rem; font-weight: 600; color: #fff; }
.site-footer__nav ul,
.site-footer__contact ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__nav a,
.site-footer__contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-slate-400);
	transition: color 0.15s ease;
}
.site-footer__nav a:hover,
.site-footer__contact a:hover { color: #fff; }

.site-footer__bottom {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.5rem;
	font-size: 0.875rem;
	color: var(--color-slate-500);
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }

/* ---------------------------------------------------------------------
   Generic page / archive content (used by page.php, single.php, etc.)
   ------------------------------------------------------------------- */
.page-content__header { max-width: 48rem; margin-inline: auto; text-align: center; }
.page-content__title { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.page-content__meta { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-slate-400); }
.page-content__body {
	max-width: 48rem;
	margin: 2.5rem auto 0;
	line-height: 1.7;
	color: rgba(203, 213, 225, 0.9);
}
.page-content__body a { color: var(--color-accent-300); text-decoration: underline; }
.page-content__body h2, .page-content__body h3 { color: #fff; margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content__body p { margin-bottom: 1rem; }
.page-content--centered { text-align: center; }

.archive-list { max-width: 48rem; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 2rem; }
.archive-item { padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.archive-item:last-child { border-bottom: 0; padding-bottom: 0; }
.archive-item__title { font-size: 1.25rem; font-weight: 600; }
.archive-item__title a { color: #fff; }
.archive-item__title a:hover { color: var(--color-accent-300); }
.archive-item__excerpt { margin-top: 0.5rem; color: rgba(203, 213, 225, 0.8); }
