/* ============================================
   COMPONENTS
   Hero, Logo, Buttons, Branding
   ============================================ */

/* Hero Section */
.hero {
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
	text-align: center;
	padding-top: 32px;
	padding-bottom: 8px;
	position: relative;
	z-index: 1;
}

/* Logo */
.logo {
	margin-bottom: 12px;
}

.logo-link {
	text-decoration: none;
	display: block;
}

.logo img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	box-shadow: 0 2px 12px rgba(63, 174, 124, 0.08);
	border-radius: 50%;
	background: #fff;
}

/* Wordmark */
.wordmark {
	font-family: 'Noto Sans', Arial, sans-serif;
	font-weight: 800;
	font-size: 2rem;
	letter-spacing: 0.01em;
	margin-bottom: 6px;
	text-transform: lowercase;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0;
	line-height: 1.05;
	background: none;
	user-select: none;
}

.wordmark .dink {
	color: #232323;
	font-weight: 800;
	letter-spacing: 0.01em;
	margin-right: 1px;
}

.wordmark .dot {
	color: #3FAE7C;
	font-size: 2.1rem;
	font-weight: 900;
	margin: 0 2px 0px 2px;
	line-height: 1;
	vertical-align: middle;
}

.wordmark .zone {
	color: #3FAE7C;
	font-weight: 800;
	letter-spacing: 0.01em;
	margin-left: 0;
}

/* Tagline */
.tagline {
	font-family: 'Noto Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: var(--brand-green);
	margin-bottom: 0.75rem;
	letter-spacing: 2.5%;
}

.hero .tagline {
	color: #232323;
}

/* Inline Wordmark */
.inline-wordmark {
	font-family: 'Noto Sans', Arial, sans-serif;
	font-weight: 800;
	font-size: 1em;
	letter-spacing: 0.01em;
	text-transform: lowercase;
	display: inline-flex;
	align-items: flex-end;
	gap: 0;
	line-height: 1.05;
	background: none;
	user-select: none;
	color: var(--brand-dark);
}

.inline-wordmark .dink {
	color: var(--brand-dark);
	font-weight: 800;
	letter-spacing: 0.01em;
	margin-right: 1px;
}

.inline-wordmark .dot {
	color: var(--brand-green);
	font-size: 1.1em;
	font-weight: 900;
	margin: 0 1px 0px 1px;
	line-height: 1;
	vertical-align: middle;
}

.inline-wordmark .zone {
	color: var(--brand-green);
	font-weight: 800;
	letter-spacing: 0.01em;
	margin-left: 0;
}

/* Brand Text Utility */
.brand-text {
	font-family: 'Noto Sans', Arial, sans-serif;
	font-weight: 800;
	color: var(--brand-green);
	letter-spacing: 0.01em;
	text-transform: lowercase;
	background: none;
	user-select: none;
}

/* CTA Button */
.cta-btn {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.6rem 1.5rem;
	background: linear-gradient(90deg, var(--brand-green) 60%, #2e8c5a 100%);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	box-shadow: 0 0.125rem 0.5rem rgba(63, 174, 124, 0.10);
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
	text-decoration: none;
}

.cta-btn:hover,
.cta-btn:focus {
	background: linear-gradient(90deg, #2e8c5a 40%, #3FAE7C 100%);
	box-shadow: 0 4px 16px rgba(63, 174, 124, 0.18);
	transform: translateY(-2px) scale(1.03);
	outline: none;
}

/* Responsive Component Adjustments */
@media (max-width: 600px) {
	.hero {
		padding-top: 16px;
		padding-bottom: 4px;
	}

	.logo img {
		width: 36px;
		height: 36px;
	}

	.wordmark {
		font-size: 1.3rem;
	}

	.dot {
		font-size: 1.5rem;
	}

	.tagline {
		font-size: 0.88rem;
	}
}

@media (min-width: 600px) {
	.logo img {
		width: 52px;
		height: 52px;
	}

	.wordmark {
		font-size: 2.1rem;
	}

	.dot {
		font-size: 2.3rem;
	}
}

@media (min-width: 900px) {
	.logo img {
		width: 64px;
		height: 64px;
	}

	.wordmark {
		font-size: 2.6rem;
		margin-bottom: 10px;
	}

	.dot {
		font-size: 2.9rem;
	}

	.tagline {
		font-size: 1.15rem;
		margin-bottom: 24px;
	}
}
