:root {
	--bg: #0b0e14;
	--text: #eef1f6;
	--text-dim: #9aa3b2;
	--accent: #6ea8ff;
	--card: rgba(255, 255, 255, 0.04);
	--card-border: rgba(255, 255, 255, 0.09);
	--card-hover: rgba(255, 255, 255, 0.08);
}

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

html,
body {
	height: 100%;
	overflow: hidden; /* single viewport, no scrolling */
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: "Inter", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* Faint blueprint grid over the whole page */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	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: 48px 48px;
	mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
	pointer-events: none;
}

/* Soft background glows */
.bg-glow {
	position: fixed;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.35;
	pointer-events: none;
}

.bg-glow-1 {
	width: 55vw;
	height: 55vw;
	background: #1c3a6e;
	top: -20vw;
	right: -15vw;
}

.bg-glow-2 {
	width: 45vw;
	height: 45vw;
	background: #143024;
	bottom: -20vw;
	left: -12vw;
}

.hero {
	position: relative;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: clamp(1.25rem, 3vh, 2.5rem) clamp(1.25rem, 5vw, 4rem);
	text-align: center;
}

/* Brand */
.brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	align-self: flex-start;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 0.55rem;
	background: #f5f7fb; /* light chip so the dark-blue logo stays visible */
	padding: 0.3rem;
}

.brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.brand-name {
	font-family: "Sora", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.01em;
}

/* Center content */
.center {
	max-width: 40rem;
}

h1 {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: clamp(2.1rem, 5.5vw, 3.6rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.tagline {
	margin: 1.1rem auto 0;
	max-width: 30rem;
	color: var(--text-dim);
	font-size: clamp(0.95rem, 1.4vw, 1.1rem);
	line-height: 1.55;
}

/* App links */
.apps {
	margin-top: clamp(1.5rem, 4vh, 2.5rem);
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.app-card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1.1rem;
	width: 12.5rem;
	border: 1px solid var(--card-border);
	border-radius: 0.9rem;
	background: var(--card);
	text-decoration: none;
	color: var(--text);
	text-align: left;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Sport accent: thin strip on the left edge */
.app-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--sport, var(--accent));
	opacity: 0.85;
}

.app-card-golf {
	--sport: linear-gradient(180deg, #4ade80, #16a34a);
	--sport-glow: rgba(74, 222, 128, 0.12);
}

.app-card-beach {
	--sport: linear-gradient(180deg, #fbbf24, #f97316);
	--sport-glow: rgba(251, 191, 36, 0.12);
}

.app-card:hover {
	background: var(--card-hover);
	border-color: rgba(255, 255, 255, 0.18);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px var(--sport-glow, rgba(110, 168, 255, 0.1));
}

.app-text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	flex: 1;
}

.app-name {
	font-weight: 600;
	font-size: 0.98rem;
}

.app-desc {
	color: var(--text-dim);
	font-size: 0.82rem;
}

.app-arrow {
	color: var(--text-dim);
	transition: transform 0.2s ease, color 0.2s ease;
}

.app-card:hover .app-arrow {
	color: var(--text);
	transform: translateX(3px);
}

/* Footer */
.footer {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
	justify-content: center;
	color: var(--text-dim);
	font-size: 0.85rem;
}

.contact {
	color: var(--text);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding-bottom: 1px;
	transition: border-color 0.2s ease;
}

.contact:hover {
	border-color: var(--accent);
}

.dot {
	opacity: 0.5;
}

/* Small screens: keep everything within one viewport */
@media (max-height: 600px), (max-width: 420px) {
	.apps {
		gap: 0.6rem;
	}

	.app-card {
		width: 11.5rem;
		padding: 0.7rem 1rem;
	}

	.tagline {
		margin-top: 0.7rem;
	}
}
