/* ==========================================================================
   Max2D — AI-era landing page
   Playful creator energy: candy palette, sticker cards, bouncy motion.
   ========================================================================== */

@font-face {
	font-family: 'Bricolage Grotesque';
	font-style: normal;
	font-weight: 400 800;
	font-stretch: 100%;
	font-display: swap;
	src: url('../fonts/bricolage/bricolage-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Bricolage Grotesque';
	font-style: normal;
	font-weight: 400 800;
	font-stretch: 100%;
	font-display: swap;
	src: url('../fonts/bricolage/bricolage-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--bg: #FFFDF4;
	--ink: #191524;
	--purple: #6A45FF;
	--purple-soft: #EDE8FF;
	--yellow: #FFE94E;
	--cyan: #4EE4FF;
	--pink: #F27AFF;
	--green: #3ED598;
	--white: #FFFFFF;
	--display: 'Bricolage Grotesque', 'Arial Black', system-ui, sans-serif;
	--body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--border: 2.5px solid var(--ink);
	--pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--body);
	background: var(--bg);
	color: var(--ink);
	font-size: 17px;
	line-height: 1.6;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
	outline: 3px solid var(--purple);
	outline-offset: 3px;
	border-radius: 4px;
}

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Level-editor grid backdrop, the whole page sits on graph paper */
.grid-paper {
	background-image:
		linear-gradient(rgba(25, 21, 36, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(25, 21, 36, 0.045) 1px, transparent 1px);
	background-size: 44px 44px;
}

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

.btn-play {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: var(--ink);
	color: var(--white);
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 60px;
	border: var(--border);
	box-shadow: 5px 5px 0 var(--yellow), 5px 5px 0 2.5px var(--ink);
	transition: transform 0.18s var(--pop), box-shadow 0.18s var(--pop);
}
.btn-play:hover {
	transform: translate(-2px, -2px);
	box-shadow: 8px 8px 0 var(--yellow), 8px 8px 0 2.5px var(--ink);
}
.btn-play:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--yellow), 2px 2px 0 2.5px var(--ink); }
.btn-play img { width: 26px; height: 26px; }
.btn-play .btn-lines { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-play .btn-lines span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.btn-play .btn-lines strong { font-family: var(--display); font-size: 19px; font-weight: 700; }

.btn-pill {
	display: inline-block;
	background: var(--purple);
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 10px 22px;
	border-radius: 60px;
	border: var(--border);
	box-shadow: 3px 3px 0 var(--ink);
	transition: transform 0.18s var(--pop), box-shadow 0.18s var(--pop);
}
.btn-pill:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 18px 0;
	transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
	background: rgba(255, 253, 244, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 2.5px 0 var(--ink);
	padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; gap: 36px; }
/* Brand lockup (nav + footer): official app icon + wordmark */
.brand-lockup { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.brand-mark { display: block; flex: none; width: 32px; height: 32px; }
.brand-word { font-family: var(--display); font-weight: 800; font-size: 23px; letter-spacing: -0.5px; line-height: 1; }
.nav-logo.brand-lockup .brand-word { color: var(--ink); }
.nav-links { display: flex; gap: 30px; list-style: none; margin-left: auto; }
.nav-links a {
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	padding: 4px 2px;
	border-bottom: 3px solid transparent;
	transition: border-color 0.15s;
}
.nav-links a:hover { border-bottom-color: var(--yellow); }

@media (max-width: 767px) {
	.nav-links { display: none; }
	.nav-inner { justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	padding: 170px 0 90px;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
	gap: 56px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--purple-soft);
	border: var(--border);
	border-radius: 60px;
	padding: 6px 16px;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 3px 3px 0 var(--ink);
	margin-bottom: 28px;
}
.hero-badge .spark { color: var(--purple); }

.hero h1 {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(46px, 6.4vw, 84px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}
.hero h1 .hl {
	position: relative;
	display: inline-block;
	color: var(--purple);
}
.hero h1 .hl::after {
	content: '';
	position: absolute;
	left: -2%; right: -2%; bottom: 0.02em;
	height: 0.28em;
	background: var(--yellow);
	z-index: -1;
	border-radius: 4px;
	transform: rotate(-1.2deg);
}
.hero-sub {
	font-size: 20px;
	max-width: 26em;
	margin-bottom: 36px;
	color: rgba(25, 21, 36, 0.78);
}
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-note { font-size: 14px; font-weight: 600; color: rgba(25, 21, 36, 0.6); }
.hero-note strong { color: var(--purple); font-size: 15px; }

@media (max-width: 991px) {
	.hero { padding-top: 130px; min-height: 0; }
	.hero-grid { grid-template-columns: 1fr; gap: 48px; }
	.hero-sub { font-size: 18px; }
}

/* --------------------------------------------------------------------------
   Hero AI demo card, the signature element
   -------------------------------------------------------------------------- */

.demo-card {
	position: relative;
	background: var(--white);
	border: var(--border);
	border-radius: 26px;
	box-shadow: 10px 10px 0 var(--cyan), 10px 10px 0 2.5px var(--ink);
	overflow: hidden;
	transform: rotate(1.2deg);
}
.demo-top {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 13px 18px;
	border-bottom: var(--border);
	background: var(--bg);
}
.demo-top .dot { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--ink); }
.demo-top .dot:nth-child(1) { background: var(--pink); }
.demo-top .dot:nth-child(2) { background: var(--yellow); }
.demo-top .dot:nth-child(3) { background: var(--green); }
.demo-top .demo-title {
	margin-left: auto;
	font-family: var(--display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
}
.demo-top .demo-title .spark { color: var(--purple); }

.demo-screen {
	position: relative;
	aspect-ratio: 16 / 10.5;
	background: linear-gradient(#BDEFFF, #E8FAFF 72%);
	overflow: hidden;
	transition: background 0.6s;
}
.demo-screen.space { background: linear-gradient(#231d47, #3b2d6e); }
.demo-screen.sunset { background: linear-gradient(#FFD9A0, #FFF3D6 72%); }
.demo-stage { position: absolute; inset: 0; }

/* every element the "AI" builds pops in through this */
.demo-el {
	position: absolute;
	opacity: 0;
	transform: scale(0.2) translateY(14px);
	transition: opacity 0.34s var(--pop), transform 0.42s var(--pop);
}
.demo-el.on { opacity: 1; transform: scale(1) translateY(0); }

.demo-hud {
	position: absolute;
	top: 12px; left: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.92);
	border: 2px solid var(--ink);
	border-radius: 10px;
	padding: 4px 12px;
	font-family: var(--display);
	font-weight: 700;
	font-size: 13px;
	z-index: 5;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s, transform 0.35s var(--pop);
}
.demo-hud.on { opacity: 1; transform: none; }
.demo-hud .hearts { display: flex; gap: 3px; color: var(--pink); letter-spacing: 1px; }

.demo-ready {
	position: absolute;
	left: 50%; top: 50%;
	translate: -50% -50%;
	background: var(--green);
	border: var(--border);
	border-radius: 60px;
	padding: 9px 20px;
	font-family: var(--display);
	font-weight: 700;
	font-size: 15px;
	white-space: nowrap;
	box-shadow: 4px 4px 0 var(--ink);
	z-index: 6;
	opacity: 0;
	scale: 0.4;
	transition: opacity 0.3s, scale 0.4s var(--pop);
}
.demo-ready.on { opacity: 1; scale: 1; }

.demo-prompt {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-top: var(--border);
	background: var(--white);
}
.demo-prompt-field {
	flex: 1;
	display: flex;
	align-items: center;
	min-height: 44px;
	background: var(--bg);
	border: 2px solid var(--ink);
	border-radius: 14px;
	padding: 8px 14px;
	font-size: 15px;
	font-weight: 500;
}
.demo-caret {
	display: inline-block;
	width: 2px;
	height: 1.15em;
	margin-left: 2px;
	background: var(--purple);
	animation: blink 0.85s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.demo-send {
	width: 44px; height: 44px;
	flex: none;
	border-radius: 50%;
	border: var(--border);
	background: var(--purple);
	color: var(--white);
	font-size: 19px;
	line-height: 1;
	display: grid;
	place-items: center;
	box-shadow: 3px 3px 0 var(--ink);
	transition: transform 0.15s var(--pop);
}
.demo-send.sent { transform: scale(0.82); background: var(--green); }

.demo-status {
	position: absolute;
	bottom: 84px;
	left: 18px;
	background: var(--yellow);
	border: 2px solid var(--ink);
	border-radius: 60px;
	padding: 4px 14px;
	font-size: 13px;
	font-weight: 700;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s, transform 0.25s var(--pop);
	z-index: 7;
}
.demo-status.on { opacity: 1; transform: translateY(0); }

/* pixel sprite host: JS paints via box-shadow on the inner 1px cell */
.sprite { position: relative; }
.sprite .cell { width: var(--px); height: var(--px); }

.demo-el.bob.on { animation: bob 1.6s ease-in-out 0.5s infinite; }
@keyframes bob {
	0%, 100% { transform: scale(1) translateY(0); }
	50% { transform: scale(1) translateY(-9px); }
}
.demo-el.spin-slow.on { animation: spin 7s linear 0.5s infinite; }
@keyframes spin { to { rotate: 360deg; } }
.demo-el.drift.on { animation: drift 5.5s ease-in-out 0.4s infinite alternate; }
@keyframes drift { to { translate: 26px 0; } }

/* --------------------------------------------------------------------------
   Scroll-reveal system
   -------------------------------------------------------------------------- */

[data-anim] {
	opacity: 0;
	transition: opacity 0.65s ease, transform 0.75s var(--pop);
	transition-delay: var(--d, 0s);
}
[data-anim="up"] { transform: translateY(42px); }
[data-anim="pop"] { transform: scale(0.72); }
[data-anim="left"] { transform: translateX(-46px); }
[data-anim="right"] { transform: translateX(46px); }
[data-anim].in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Section scaffolding
   -------------------------------------------------------------------------- */

.section { padding: 110px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
	display: inline-block;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--purple);
	margin-bottom: 14px;
}
.section-head h2 {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(34px, 4.6vw, 58px);
	line-height: 1.06;
	letter-spacing: -0.015em;
}
.section-head p { margin-top: 18px; font-size: 19px; color: rgba(25, 21, 36, 0.75); }

@media (max-width: 767px) {
	.section { padding: 76px 0; }
	.section-head { margin-bottom: 44px; }
}

/* --------------------------------------------------------------------------
   Feature trio
   -------------------------------------------------------------------------- */

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.trio-card {
	border: var(--border);
	border-radius: 24px;
	padding: 36px 30px;
	box-shadow: 7px 7px 0 var(--ink);
	background: var(--white);
	transition: transform 0.2s var(--pop), box-shadow 0.2s var(--pop);
}
.trio-card:hover { transform: translate(-3px, -3px) rotate(-0.6deg); box-shadow: 11px 11px 0 var(--ink); }
.trio-card.c-yellow { background: var(--yellow); rotate: -1.4deg; }
.trio-card.c-cyan { background: var(--cyan); rotate: 1deg; }
.trio-card.c-pink { background: var(--pink); rotate: -0.8deg; }
.trio-icon {
	width: 64px; height: 64px;
	border: var(--border);
	border-radius: 18px;
	background: var(--white);
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	box-shadow: 3px 3px 0 var(--ink);
}
.trio-card h3 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 27px;
	margin-bottom: 10px;
}
.trio-card p { font-size: 16px; line-height: 1.55; }

@media (max-width: 899px) {
	.trio { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* --------------------------------------------------------------------------
   Counter
   -------------------------------------------------------------------------- */

.counter-wrap { text-align: center; position: relative; }
.counter-num {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(56px, 9.5vw, 128px);
	line-height: 1;
	color: var(--purple);
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}
.counter-label {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(20px, 2.6vw, 30px);
	margin-top: 10px;
}
.counter-label .hl-c { background: var(--cyan); padding: 0 8px; border-radius: 8px; box-decoration-break: clone; }

.doodle { position: absolute; pointer-events: none; animation: floaty 4.5s ease-in-out infinite; }
.doodle.d2 { animation-delay: -1.6s; animation-duration: 5.4s; }
.doodle.d3 { animation-delay: -3s; animation-duration: 6.2s; }
@keyframes floaty {
	0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
	50% { transform: translateY(-16px) rotate(var(--rot, 0deg)); }
}
@media (max-width: 767px) { .doodle { display: none; } }

/* --------------------------------------------------------------------------
   Games showcase
   -------------------------------------------------------------------------- */

.showcase { overflow: hidden; }
.showcase-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
}
.phones { display: flex; justify-content: center; gap: 8px; }
.phone-frame {
	width: min(240px, 42vw);
	border: 3px solid var(--ink);
	border-radius: 30px;
	padding: 10px;
	background: var(--white);
	box-shadow: 8px 8px 0 var(--pink), 8px 8px 0 2.5px var(--ink);
	animation: floaty 5s ease-in-out infinite;
}
.phone-frame img { border-radius: 20px; width: 100%; border: 2px solid var(--ink); }
.phone-frame.tilt-l { rotate: -6deg; margin-top: 44px; }
.phone-frame.tilt-r { rotate: 4deg; animation-delay: -2.2s; box-shadow: 8px 8px 0 var(--cyan), 8px 8px 0 2.5px var(--ink); }

@media (max-width: 899px) {
	.showcase-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* marquee */
.marquee {
	margin-top: 90px;
	border-top: var(--border);
	border-bottom: var(--border);
	background: var(--white);
	padding: 22px 0;
	overflow: hidden;
	transform: rotate(-1.1deg) scale(1.02);
}
.marquee-track {
	display: flex;
	gap: 26px;
	width: max-content;
	animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-chip {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 2px solid var(--ink);
	border-radius: 16px;
	padding: 8px 18px 8px 8px;
	background: var(--bg);
	flex: none;
}
.marquee-chip img {
	width: 46px; height: 46px;
	object-fit: cover;
	border-radius: 10px;
	border: 2px solid var(--ink);
}
.marquee-chip span { font-weight: 700; font-size: 14px; white-space: nowrap; }

/* --------------------------------------------------------------------------
   Beyond games
   -------------------------------------------------------------------------- */

.beyond-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 30px;
}
.beyond-card {
	border: var(--border);
	border-radius: 24px;
	padding: 34px 30px;
	box-shadow: 7px 7px 0 var(--ink);
	background: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 240px;
	transition: transform 0.2s var(--pop), box-shadow 0.2s var(--pop);
}
.beyond-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--ink); }
.beyond-card .tag {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: auto;
	opacity: 0.7;
}
.beyond-card h3 { font-family: var(--display); font-weight: 800; font-size: 30px; margin: 18px 0 6px; }
.beyond-card p { font-size: 15.5px; }
.beyond-card.primary { background: var(--purple); color: var(--white); rotate: -0.7deg; }
.beyond-card.primary .tag { opacity: 0.85; color: var(--yellow); }

@media (max-width: 899px) {
	.beyond-grid { grid-template-columns: 1fr 1fr; }
	.beyond-card.primary { grid-column: 1 / -1; }
}
@media (max-width: 599px) {
	.beyond-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.reviews-strip {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 20px 24px 34px;
	margin: 0 -24px;
	scrollbar-width: none;
}
.reviews-strip::-webkit-scrollbar { display: none; }
.review-card {
	flex: 0 0 min(360px, 82vw);
	scroll-snap-align: center;
	border: var(--border);
	border-radius: 24px;
	padding: 32px 30px;
	box-shadow: 6px 6px 0 var(--ink);
	display: flex;
	flex-direction: column;
}
.review-card:nth-child(odd) { rotate: -1.2deg; }
.review-card:nth-child(even) { rotate: 1.1deg; }
.review-card .stars { font-size: 15px; letter-spacing: 3px; margin-bottom: 18px; }
.review-card p { font-size: 16.5px; line-height: 1.55; flex: 1; }
.review-card .who { margin-top: 24px; font-family: var(--display); font-weight: 700; font-size: 17px; }
.review-card .where { font-size: 14px; opacity: 0.7; }
.reviews-hint { text-align: center; font-size: 14px; font-weight: 600; opacity: 0.55; }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.finale-panel {
	position: relative;
	background: var(--purple);
	color: var(--white);
	border: var(--border);
	border-radius: 34px;
	box-shadow: 10px 10px 0 var(--yellow), 10px 10px 0 2.5px var(--ink);
	padding: 90px 40px;
	text-align: center;
	overflow: hidden;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 44px 44px;
}
.finale-panel h2 {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.05;
	letter-spacing: -0.015em;
	max-width: 15em;
	margin: 0 auto 20px;
}
.finale-panel h2 .hl-y { color: var(--yellow); }
.finale-panel p { font-size: 19px; opacity: 0.9; margin-bottom: 40px; }
.finale-panel .btn-play {
	background: var(--white);
	color: var(--ink);
	box-shadow: 5px 5px 0 var(--pink), 5px 5px 0 2.5px var(--ink);
}
.finale-panel .btn-play:hover { box-shadow: 8px 8px 0 var(--pink), 8px 8px 0 2.5px var(--ink); }

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

.footer {
	position: relative;
	background: var(--ink);
	color: var(--white);
	margin-top: 120px;
	padding: 68px 0 34px;
	/* subtle level-editor grid, matching the page paper */
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 44px 44px;
}
/* playful accent bar across the very top of the footer */
.footer::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--purple) 0 25%, var(--cyan) 25% 50%, var(--yellow) 50% 75%, var(--pink) 75% 100%);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .brand-word { color: var(--white); font-size: 24px; }
.footer-brand p { font-size: 15px; opacity: 0.72; max-width: 22em; margin-bottom: 22px; }
/* mini Google Play CTA */
.footer-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	color: var(--ink);
	border-radius: 12px;
	padding: 10px 18px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14.5px;
	box-shadow: 4px 4px 0 var(--purple);
	transition: transform 0.15s var(--pop), box-shadow 0.15s;
}
.footer-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--purple); }
.footer-cta img { width: 20px; height: 20px; }
/* social icon row */
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--white);
	transition: background 0.15s, transform 0.15s var(--pop), border-color 0.15s;
}
.footer-social a:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.footer h5 {
	font-family: var(--display);
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 16px;
	color: var(--yellow);
	letter-spacing: 0.2px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { text-decoration: none; font-size: 15px; opacity: 0.78; transition: opacity 0.15s, color 0.15s; }
.footer ul a:hover { opacity: 1; color: var(--cyan); }
.footer-bottom { padding-top: 26px; text-align: center; font-size: 13.5px; opacity: 0.6; }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--cyan); opacity: 1; }

@media (max-width: 899px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
	.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   Reduced motion: everything collapses to simple fades / final states
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.15s !important;
	}
	[data-anim] { transform: none; }
	.marquee-track { animation: none; }
}
