:root {
	color-scheme: light;
	--ink: #f5ffff;
	--muted: #a8c8c8;
	--cream: #050505;
	--paper: rgba(10, 25, 27, 0.82);
	--sage: #56e4e5;
	--terracotta: #ff625e;
	font-family: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	min-width: 320px;
	min-height: 100vh;
	color: var(--ink);
	background: var(--cream);
	background-image: radial-gradient(circle at 18% 10%, rgba(35, 196, 198, .13), transparent 32%), radial-gradient(circle at 90% 48%, rgba(255, 91, 86, .09), transparent 28%), linear-gradient(145deg, #050505 0%, #061012 56%, #050505 100%);
	overflow-x: hidden;
}

.glow { position: fixed; z-index: -1; border-radius: 50%; filter: blur(2px); opacity: .5; }
.glow-one { width: 24rem; height: 24rem; top: -12rem; right: -9rem; background: rgba(69, 229, 230, .18); }
.glow-two { width: 20rem; height: 20rem; bottom: -10rem; left: -10rem; background: rgba(255, 213, 30, .12); }

main { width: min(100% - 32px, 620px); margin: 0 auto; padding: 46px 0 36px; }

.profile { text-align: center; animation: rise .65s ease-out both; }
.brand { display: inline-block; width: min(100%, 430px); color: inherit; }
.brand img { display: block; width: 100%; height: auto; border-radius: 24px; object-fit: contain; filter: drop-shadow(0 0 22px rgba(62, 224, 226, .14)); }
.eyebrow { margin: 18px 0 13px; color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; font-family: "Italiana", Georgia, serif; font-size: clamp(2.4rem, 9vw, 3.8rem); font-weight: 400; line-height: .98; letter-spacing: -.02em; text-shadow: 0 0 18px rgba(86, 228, 229, .18); }
.intro { max-width: 470px; margin: 17px auto 30px; color: var(--muted); font-size: .96rem; line-height: 1.65; }

.featured { animation: rise .65s .08s ease-out both; }
.feature-card { display: flex; min-height: 116px; align-items: center; gap: 17px; padding: 22px 21px; border: 1px solid rgba(255,255,255,.28); border-radius: 24px; color: white; text-decoration: none; background: linear-gradient(135deg, #214e49, #102f2d); box-shadow: 0 18px 50px rgba(21,57,54,.18); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(21,57,54,.25); }
.tag { align-self: flex-start; padding: 5px 9px; border-radius: 999px; color: #244a46; background: #d7e6df; font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.feature-copy { display: grid; gap: 5px; flex: 1; }
.feature-copy strong { font-family: "Italiana", Georgia, serif; font-size: 1.7rem; font-weight: 400; }
.feature-copy small { color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.4; }
.arrow { font-size: 1.35rem; transition: transform .2s ease; }
.feature-card:hover .arrow, .link-card:hover span:last-child { transform: translate(2px,-2px); }

.link-section { margin-top: 31px; animation: rise .65s .14s ease-out both; }
.section-heading { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 13px; margin-bottom: 14px; }
.section-heading span { height: 1px; background: rgba(86, 228, 229, .28); }
h2 { margin: 0; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.links { display: grid; gap: 10px; }
.link-card { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border: 1px solid rgba(86,228,229,.25); border-radius: 16px; color: var(--ink); background: var(--paper); box-shadow: 0 0 25px rgba(35,211,213,.07); font-size: .91rem; font-weight: 500; text-decoration: none; backdrop-filter: blur(12px); transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.link-card:hover { transform: translateY(-2px); border-color: rgba(86,228,229,.75); background: rgba(13,36,38,.95); box-shadow: 0 0 28px rgba(35,211,213,.16); }
.link-card span:last-child { color: var(--terracotta); font-size: 1.1rem; transition: transform .18s ease; }
.link-label { display: flex; align-items: center; gap: 12px; }
.link-label svg { width: 22px; height: 22px; flex: 0 0 auto; fill: #55e1e2; }
.link-label svg rect, .link-label svg circle:not(.fill) { fill: none; stroke: #55e1e2; stroke-width: 1.8; }
.patreon-card { border-color: rgba(255, 98, 94, .38); }
.patreon-card:hover { border-color: rgba(255, 98, 94, .9); box-shadow: 0 0 28px rgba(255, 98, 94, .13); }
.patreon-card .link-label svg { fill: #ff625e; }

.socials { display: flex; justify-content: center; gap: 11px; margin: 34px 0 28px; }
.socials a { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(86,228,229,.28); border-radius: 50%; color: #56e4e5; background: rgba(8,22,23,.78); transition: transform .18s ease, background .18s ease, color .18s ease; }
.socials a:hover { transform: translateY(-3px); color: #050505; background: #56e4e5; }
.socials svg { width: 19px; height: 19px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.socials rect, .socials circle:not(.fill) { fill: none; }

footer { text-align: center; color: var(--muted); font-size: .76rem; }
footer p { margin: 0 0 5px; }
footer a { color: inherit; text-underline-offset: 3px; }

a:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 480px) {
	main { width: min(100% - 24px, 620px); padding-top: 30px; }
	.brand { width: 100%; }
	.feature-card { align-items: flex-start; padding: 19px 17px; }
	.tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
