/* taketh.lol — giveth-flavored, parody-tilted */

:root {
	/* Primary palette: Giveth-style pink/teal pulled toward parody */
	--bg: #FBF7F4;            /* warm cream */
	--bg-soft: #FFF;
	--bg-card: #FFFFFF;
	--bg-tinted: #FFF1F8;     /* faint pink wash */
	--bg-tinted-2: #E8FBF9;   /* faint teal wash */

	--ink: #1A1F36;           /* near-black, slight blue */
	--ink-muted: #5C6987;
	--ink-quiet: #8A92A6;

	--pink: #E1458D;          /* Giveth pink */
	--pink-soft: #FFD1E5;
	--pink-deep: #B4276F;

	--teal: #1AC9C3;          /* Giveth teal */
	--teal-soft: #B6F0EE;
	--teal-deep: #0E938E;

	--giv-green: #5DEB3F;     /* GIVbacks green */
	--violet: #5326EC;        /* GIV-blue accent */

	--rule: #EAE3DC;
	--strike: #B0A8A0;

	--ok: #5DEB3F;
	--warn: #E1458D;

	--font: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
	--mono: ui-monospace, 'SF Mono', Menlo, monospace;

	--shadow-sm: 0 1px 2px rgba(26, 31, 54, 0.04), 0 1px 3px rgba(26, 31, 54, 0.06);
	--shadow-md: 0 4px 6px rgba(26, 31, 54, 0.05), 0 10px 15px rgba(26, 31, 54, 0.08);
	--shadow-lg: 0 10px 25px rgba(26, 31, 54, 0.10), 0 20px 40px rgba(225, 69, 141, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'cv11', 'ss01', 'ss03';
}

a { color: var(--pink); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--pink-deep); }

/* ── Nav ── */

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 2rem;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--rule);
	position: sticky;
	top: 0;
	z-index: 50;
}
.nav-brand {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 0.4em;
}
.brand-strike { color: var(--strike); text-decoration: line-through; text-decoration-color: var(--pink); }
.brand-keep { color: var(--ink); }
.brand-arrow { color: var(--teal); margin: 0 0.2em; font-weight: 400; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--ink-muted); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.cta {
	color: white;
	background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
	padding: 0.55rem 1.2rem;
	border-radius: 999px;
	font-weight: 600;
	box-shadow: var(--shadow-sm);
}
.nav-links a.cta:hover {
	color: white;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

/* ── Hero ── */

.hero {
	max-width: 1100px;
	margin: 0 auto;
	padding: 5rem 2rem 6rem;
	text-align: left;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -10%;
	width: 60%;
	height: 80%;
	background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
	z-index: 0;
	pointer-events: none;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 50%;
	height: 70%;
	background: radial-gradient(circle, var(--teal-soft) 0%, transparent 70%);
	z-index: 0;
	pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
	color: var(--teal-deep);
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
.hero-title {
	font-size: clamp(2.6rem, 7vw, 4.6rem);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.035em;
	margin: 0 0 2rem;
	color: var(--ink);
}
.hero-title .muted {
	color: var(--ink-quiet);
	font-weight: 400;
	font-size: 0.55em;
	display: block;
	margin: 0.4em 0;
}
.hero-title .strike {
	color: var(--strike);
	text-decoration: line-through;
	text-decoration-color: var(--pink);
	text-decoration-thickness: 3px;
	font-weight: 700;
}
.hero-title sup { font-size: 0.45em; vertical-align: super; }
.hero-title em.hero-mark {
	font-style: normal;
	color: var(--teal-deep);
	background: linear-gradient(180deg, transparent 60%, var(--teal-soft) 60%, var(--teal-soft) 92%, transparent 92%);
	padding: 0 0.08em;
	font-weight: 800;
	position: relative;
}
.hero-title em.hero-mark::after {
	content: '';
	position: absolute;
	right: -0.05em;
	top: 0.1em;
	width: 0.32em;
	height: 0.32em;
	background: var(--giv-green);
	border-radius: 50%;
	box-shadow: 0 0 12px var(--giv-green);
	opacity: 0.85;
}
.hero-myco {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
.hero-pulse {
	display: inline-block;
	width: 0.55em;
	height: 0.55em;
	border-radius: 50%;
	background: var(--giv-green);
	box-shadow: 0 0 0 0 rgba(93, 235, 63, 0.6);
	margin-right: 0.5em;
	vertical-align: middle;
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(93, 235, 63, 0.55); }
	50%      { box-shadow: 0 0 0 8px rgba(93, 235, 63, 0); }
}
.hero-deprecate {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin: -0.5rem 0 1.8rem;
	font-family: var(--mono);
	font-size: 0.82rem;
}
.dep-tag {
	display: inline-block;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.2rem 0.55rem;
	border-radius: 4px;
	font-size: 0.7rem;
	color: var(--strike);
	background: rgba(176, 168, 160, 0.15);
	border: 1px solid var(--rule);
}
.dep-tag.dep-tag-new {
	color: var(--teal-deep);
	background: var(--bg-tinted-2);
	border-color: var(--teal-soft);
}
.dep-strike {
	color: var(--strike);
	text-decoration: line-through;
	text-decoration-color: var(--pink);
	text-decoration-thickness: 2px;
}
.dep-arrow {
	color: var(--giv-green);
	font-weight: 700;
	font-size: 1.1em;
}
.dep-keep {
	color: var(--ink);
	font-weight: 600;
}
.hero-lede {
	font-size: 1.15rem;
	color: var(--ink-muted);
	max-width: 720px;
	margin: 0 0 1.25rem;
}
.hero-lede em { color: var(--ink); font-style: italic; }
.hero-lede strong { color: var(--pink-deep); font-weight: 700; }
.hero-cta {
	display: flex;
	gap: 0.8rem;
	margin: 2.5rem 0 2rem;
	flex-wrap: wrap;
}
.hero-aside {
	color: var(--teal-deep);
	font-size: 0.95rem;
	font-weight: 500;
	border-left: 3px solid var(--teal);
	padding: 0.5rem 0 0.5rem 1.2rem;
	max-width: 540px;
	background: var(--bg-tinted-2);
	border-radius: 0 8px 8px 0;
}

/* ── OS install panel (mock terminal) ── */

.os-panel-section {
	max-width: 980px;
	margin: -2.5rem auto 4rem;
	padding: 0 1.5rem;
	position: relative;
	z-index: 2;
}
.os-panel {
	background: #0E1726;
	color: #E6F3F1;
	border-radius: 14px;
	box-shadow: 0 30px 60px -20px rgba(14, 23, 38, 0.45),
	            0 0 0 1px rgba(26, 201, 195, 0.18) inset,
	            0 0 60px -10px rgba(93, 235, 63, 0.18);
	overflow: hidden;
	font-family: var(--mono);
	font-size: 0.86rem;
	line-height: 1.65;
	position: relative;
}
.os-panel::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 0%, rgba(26, 201, 195, 0.10) 0%, transparent 60%),
	            radial-gradient(ellipse at 0% 100%, rgba(93, 235, 63, 0.07) 0%, transparent 50%);
	pointer-events: none;
}
.os-panel-bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.78rem;
}
.os-dot {
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	display: inline-block;
}
.os-dot-r { background: #E1458D; box-shadow: 0 0 8px rgba(225, 69, 141, 0.5); }
.os-dot-y { background: #E5C53A; box-shadow: 0 0 8px rgba(229, 197, 58, 0.5); }
.os-dot-g { background: var(--giv-green); box-shadow: 0 0 8px rgba(93, 235, 63, 0.6); }
.os-panel-title {
	margin-left: 0.6rem;
	color: #B8CFD0;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.os-panel-meta {
	margin-left: auto;
	color: var(--giv-green);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.os-panel-body {
	padding: 1.2rem 1.4rem 1.5rem;
	position: relative;
	z-index: 1;
}
.os-line {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.18rem 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.os-line code {
	color: #FFD1E5;
	font-family: var(--mono);
	background: rgba(225, 69, 141, 0.08);
	padding: 0.05rem 0.4rem;
	border-radius: 3px;
	font-size: 0.92em;
}
.os-cmd {
	color: var(--teal);
	font-weight: 700;
	min-width: 4.5rem;
	display: inline-block;
}
.os-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1rem;
	height: 1.1rem;
	font-size: 0.82rem;
	font-weight: 700;
	flex-shrink: 0;
}
.os-mark-ok { color: var(--giv-green); }
.os-mark-run {
	color: var(--teal);
	animation: spin 2.4s linear infinite;
}
@keyframes spin {
	from { transform: rotate(0); }
	to { transform: rotate(360deg); }
}
.os-status {
	color: #8FAEB0;
	font-size: 0.82em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.os-status-ok {
	color: var(--giv-green);
	font-weight: 700;
}
.os-bar {
	flex: 1;
	min-width: 90px;
	max-width: 240px;
	height: 0.55rem;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	overflow: hidden;
	position: relative;
}
.os-bar-fill {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--teal) 0%, var(--giv-green) 100%);
	border-radius: 999px;
	box-shadow: 0 0 10px rgba(93, 235, 63, 0.4);
	position: relative;
}
.os-bar-fill::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
	animation: shimmer 1.8s linear infinite;
}
@keyframes shimmer {
	from { transform: translateX(-100%); }
	to { transform: translateX(100%); }
}
.os-bar-fill-95 { width: 95%; }
.os-bar-fill-88 { width: 88%; }
.os-bar-fill-78 { width: 78%; }
.os-pct {
	color: var(--giv-green);
	font-size: 0.78em;
	font-weight: 700;
	min-width: 2.5rem;
	text-align: right;
}
.os-line-final {
	margin-top: 0.7rem;
	padding-top: 0.7rem;
	border-top: 1px dashed rgba(255, 255, 255, 0.08);
	font-size: 0.92rem;
	color: #E6F3F1;
}
.os-line-prompt {
	margin-top: 0.6rem;
	color: var(--giv-green);
}
.os-prompt {
	color: var(--teal);
	font-weight: 700;
	margin-right: 0.3rem;
}
.os-cursor { color: #E6F3F1; }
.os-blink {
	display: inline-block;
	color: var(--giv-green);
	font-weight: 700;
	margin-left: 0.15rem;
	animation: blink 1.05s steps(1) infinite;
}
@keyframes blink {
	0%, 50%   { opacity: 1; }
	51%, 100% { opacity: 0; }
}

/* ── Wave divider ── */
.wave-divider {
	display: block;
	width: 100%;
	height: 60px;
	margin: 0;
	color: var(--bg-tinted);
}

/* ── Buttons ── */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.85rem 1.8rem;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	background: white;
	color: var(--ink);
	font-family: inherit;
	text-decoration: none;
	transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-sm);
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	color: var(--ink);
}
.btn.primary {
	background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
	color: white;
	box-shadow: 0 4px 14px rgba(225, 69, 141, 0.35);
}
.btn.primary:hover {
	box-shadow: 0 8px 22px rgba(225, 69, 141, 0.45);
	color: white;
}
.btn.ghost {
	background: white;
	border: 2px solid var(--teal);
	color: var(--teal-deep);
}
.btn.ghost:hover { background: var(--bg-tinted-2); color: var(--teal-deep); }
.btn.big { padding: 1.1rem 2.2rem; font-size: 1.1rem; }

/* ── Section ── */

.section {
	max-width: 1100px;
	margin: 0 auto;
	padding: 5rem 2rem;
}
.section-eyebrow {
	color: var(--teal-deep);
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 0.75rem;
}
.section-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0 0 2rem;
	color: var(--ink);
}
.prose, .prose-narrow {
	max-width: 720px;
	color: var(--ink-muted);
	font-size: 1.05rem;
}
.prose p, .prose-narrow p { margin: 0 0 1.3rem; }
.prose strong, .prose-narrow strong { color: var(--ink); font-weight: 700; }
.prose em, .prose-narrow em { color: var(--ink); font-style: italic; }
.prose .quiet {
	color: var(--pink-deep);
	font-style: italic;
	font-size: 1.15rem;
	margin-top: 2.5rem;
	font-weight: 500;
}

/* ── Diff section ── */

.diff-section {
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tinted) 50%, var(--bg) 100%);
}
.diff-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-top: 1.5rem;
	font-size: 0.95rem;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.diff-table th, .diff-table td {
	padding: 1.1rem 1.4rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--rule);
}
.diff-table tbody tr:last-child td { border-bottom: 0; }
.diff-table th {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--bg-tinted);
}
.diff-table th.old, .diff-table td.old { color: var(--strike); }
.diff-table th.old { color: var(--ink-muted); }
.diff-table th.new, .diff-table td.new { color: var(--ink); }
.diff-table th.new { background: var(--bg-tinted-2); color: var(--teal-deep); }
.diff-table td.new strong { color: var(--pink-deep); font-weight: 700; }
.diff-table td:first-child {
	color: var(--ink);
	font-weight: 600;
	width: 18%;
	background: var(--bg);
}
.diff-table tbody tr:hover { background: var(--bg-tinted); }
.diff-table tbody tr:hover td.new { background: var(--bg-tinted-2); }

/* ── Layered: Giveth foundation + rCauses extensions ── */

.layer-stack {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin: 2rem auto 0;
	max-width: 1100px;
	align-items: stretch;
}
.layer-card {
	background: var(--bg-card);
	border: 2px solid var(--rule);
	border-radius: 20px;
	padding: 2rem 2.2rem;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.layer-card.layer-base {
	border-color: var(--pink-soft);
	background: linear-gradient(180deg, #FFF8FB 0%, var(--bg-card) 100%);
}
.layer-card.layer-extra {
	border-color: var(--teal-soft);
	background: linear-gradient(180deg, #F2FDFC 0%, var(--bg-card) 100%);
}
.layer-card.layer-base::before,
.layer-card.layer-extra::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
}
.layer-card.layer-base::before {
	background: linear-gradient(90deg, var(--pink) 0%, var(--pink-deep) 100%);
}
.layer-card.layer-extra::before {
	background: linear-gradient(90deg, var(--teal) 0%, var(--violet) 100%);
}
.layer-head {
	margin-bottom: 1.2rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed var(--rule);
}
.layer-tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pink-deep);
	background: var(--bg-tinted);
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	margin-bottom: 0.7rem;
}
.layer-tag.layer-tag-new {
	color: var(--teal-deep);
	background: var(--bg-tinted-2);
}
.layer-head h4 {
	margin: 0;
	font-size: 1.4rem;
	color: var(--ink);
	font-weight: 700;
	letter-spacing: -0.015em;
}
.layer-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0.7rem 1.6rem;
}
.layer-list li {
	position: relative;
	padding-left: 1.4rem;
	color: var(--ink-muted);
	line-height: 1.55;
	font-size: 0.95rem;
}
.layer-list li::before {
	content: '✦';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--pink);
	font-size: 0.85rem;
}
.layer-extra .layer-list li::before {
	content: '◆';
	color: var(--teal);
}
.layer-list li strong { color: var(--ink); font-weight: 700; }
.layer-arrow {
	text-align: center;
	font-size: 2.4rem;
	color: var(--pink);
	line-height: 1;
	padding: 0.4rem 0;
	user-select: none;
}
.layer-coda {
	text-align: center;
	margin-top: 2rem;
	color: var(--ink-muted);
	font-style: italic;
}

/* ── Primitives grid ── */

.grid-7 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}
.prim {
	background: white;
	border: 2px solid var(--rule);
	border-radius: 16px;
	padding: 1.6rem;
	transition: all 0.2s;
	position: relative;
	overflow: hidden;
}
.prim::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--pink) 0%, var(--teal) 100%);
}
.prim:hover {
	border-color: var(--teal);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.prim h4 {
	margin: 0 0 0.6rem;
	font-size: 1.05rem;
	color: var(--ink);
	font-weight: 700;
	letter-spacing: -0.01em;
}
.prim p {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.93rem;
}

/* ── Migrate section ── */

.migrate {
	background: linear-gradient(135deg, var(--bg-tinted) 0%, var(--bg-tinted-2) 100%);
}
.steps {
	max-width: 720px;
	margin: 1.5rem 0 2rem;
	padding-left: 1.5rem;
	color: var(--ink-muted);
	counter-reset: step;
	list-style: none;
}
.steps li {
	margin: 0.8rem 0;
	line-height: 1.55;
	counter-increment: step;
	position: relative;
	padding-left: 2.4rem;
}
.steps li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	width: 1.8rem;
	height: 1.8rem;
	background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
	color: white;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 0.85rem;
	box-shadow: var(--shadow-sm);
}
.steps strong { color: var(--ink); font-weight: 700; }

.migrate-form {
	max-width: 640px;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	background: white;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
	border: 2px solid var(--pink-soft);
}
.migrate-form label {
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 600;
}
.migrate-form input {
	padding: 1rem 1.2rem;
	background: var(--bg);
	border: 2px solid var(--rule);
	border-radius: 12px;
	color: var(--ink);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.15s;
}
.migrate-form input:focus { outline: 0; border-color: var(--teal); background: white; }
.migrate-form button { margin-top: 0.5rem; align-self: flex-start; }
.micro { color: var(--ink-quiet); font-size: 0.88rem; margin-top: 0.5rem; }
.micro a { color: var(--teal-deep); font-weight: 600; }

.soft {
	background: white;
	text-align: center;
}
.soft .section-title { margin-bottom: 1rem; }
.soft .prose-narrow { margin: 0 auto 2rem; }

/* ── Footer ── */

.footer {
	background: var(--ink);
	color: var(--bg);
	padding: 4rem 2rem 2.5rem;
}
.footer-row {
	max-width: 1100px;
	margin: 0 auto 2.5rem;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
}
.footer-brand {
	font-size: 1.15rem;
	color: var(--bg);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-weight: 700;
}
.footer-brand .brand-strike { color: rgba(255,255,255,0.4); }
.footer-brand .brand-keep { color: white; }
.footer-brand .brand-arrow { color: var(--teal); }
.footer-tagline {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	font-weight: 400;
	margin-top: 0.5rem;
}
.footer-tagline strong { color: var(--pink); font-weight: 700; }
.footer-disclaimer {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.92rem;
	line-height: 1.6;
	font-style: italic;
}
.footer-meta {
	max-width: 1100px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.88rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.8rem;
	display: flex;
	gap: 1.2rem;
	flex-wrap: wrap;
	align-items: center;
}
.footer-meta a { color: rgba(255, 255, 255, 0.85); }
.footer-meta a:hover { color: var(--pink); }

/* ── Decay → Growth grid ── */

.rot-fruit {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 1100px;
	margin: 2rem auto 0;
}
.rot-fruit-row {
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	gap: 1rem;
	align-items: stretch;
}
.rot, .fruit {
	background: white;
	border-radius: 16px;
	padding: 1.4rem 1.5rem;
	box-shadow: var(--shadow-sm);
	border: 2px solid transparent;
	position: relative;
	transition: transform 0.18s, box-shadow 0.18s;
}
.rot {
	background: linear-gradient(135deg, #FFFAF6 0%, #F8EFE8 100%);
	border-color: #E5D5C8;
	color: var(--ink-quiet);
}
.fruit {
	background: linear-gradient(135deg, #F0FBF5 0%, #DEF6EA 100%);
	border-color: var(--giv-green);
}
.rot:hover, .fruit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rot-label, .fruit-label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	margin-bottom: 0.6rem;
}
.rot-label {
	background: rgba(176, 168, 160, 0.15);
	color: #8A7A68;
}
.fruit-label {
	background: rgba(93, 235, 63, 0.18);
	color: #2D7C2A;
}
.rot h4, .fruit h4 {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
}
.rot h4 { color: #5C5043; text-decoration: line-through; text-decoration-color: rgba(176, 39, 111, 0.4); }
.fruit h4 { color: var(--ink); }
.rot p, .fruit p { font-size: 0.92rem; line-height: 1.55; margin: 0; }
.rot p { color: var(--ink-quiet); }
.fruit p { color: var(--ink-muted); }
.arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--teal);
	font-weight: 300;
}

/* ── Mobile ── */

@media (max-width: 880px) {
	.rot-fruit-row {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}
	.arrow {
		transform: rotate(90deg);
		padding: 0.3rem 0;
		font-size: 1.6rem;
	}
}

@media (max-width: 720px) {
	.nav { padding: 1rem; }
	.nav-links { gap: 0.75rem; }
	.nav-links a:not(.cta) { display: none; }
	.hero { padding: 3rem 1.25rem 4rem; }
	.section { padding: 3rem 1.25rem; }
	.diff-table th, .diff-table td { padding: 0.7rem 0.7rem; font-size: 0.85rem; }
	.diff-table td:first-child { width: 32%; }
	.footer { padding: 3rem 1.5rem 2rem; }
	.footer-row { grid-template-columns: 1fr; gap: 1.8rem; }
	.migrate-form { padding: 1.25rem; }
	.layer-card { padding: 1.5rem 1.4rem; }
	.layer-head h4 { font-size: 1.15rem; }
	.layer-list { grid-template-columns: 1fr; gap: 0.6rem; }
	.os-panel-section { margin-top: -1rem; padding: 0 1rem; }
	.os-panel-body { padding: 1rem 1rem 1.1rem; font-size: 0.78rem; }
	.os-line { white-space: normal; flex-wrap: wrap; gap: 0.4rem; }
	.os-cmd { min-width: 0; }
	.os-bar { min-width: 60px; max-width: 100%; }
	.os-panel-meta { display: none; }
	.hero-deprecate { font-size: 0.72rem; }
	.dep-keep { word-break: break-all; }
}
