/*
Theme Name: 4Boys Capital — Parked
Theme URI: https://4boyscapital.com
Author: 4Boys Capital Team
Author URI: https://4boyscapital.com
Description: Single-page holding theme for 4boyscapital.com. Renders the 4Boys Capital wordmark and nothing else — every request resolves to the same page. Uses the brand palette and typography from the full 4Boys Capital theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 4boys-parked
Tags: one-page, holding-page, coming-soon, minimal
*/

/* ============================================
   BRAND TOKENS
   Mirrors 4boys-capital/assets/css/base.css
   ============================================ */

:root {
	--sumi-ink: #131619;
	--indigo: #223460;
	--dawn: #e1c764;
	--arctic: #eff5ff;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	display: grid;
	justify-items: center;
	align-content: start;
	padding: clamp(3.5rem, 14vh, 9rem) 8vmin 8vmin;
	background: var(--arctic);
	color: var(--sumi-ink);
	font-family: "League Spartan", "Helvetica Neue", Arial, sans-serif;
	overflow: hidden;
}

/* Fine grain, keeps the flat light ground from reading as plain white */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 2;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
	opacity: 0.35;
}

.parked {
	position: relative;
	z-index: 1;
	text-align: center;
	animation: rise 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.parked-wordmark {
	width: clamp(170px, 28vw, 340px);
	height: auto;
	fill: var(--indigo);
	display: block;
}

.parked-rule {
	width: clamp(170px, 28vw, 340px);
	height: 1px;
	margin: clamp(1.25rem, 2.5vw, 2rem) auto 0;
	background: linear-gradient(
		90deg,
		rgba(225, 199, 100, 0) 0%,
		var(--dawn) 50%,
		rgba(225, 199, 100, 0) 100%
	);
	transform-origin: center;
	animation: sweep 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s both;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

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

@keyframes sweep {
	from {
		opacity: 0;
		transform: scaleX(0.2);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.parked,
	.parked-rule {
		animation: none;
	}
}
