:root {
	--hp-bg: #0b0b0c;
	--hp-bg-elevated: #121214;
	--hp-text: #f2f2f2;
	--hp-muted: rgba(255, 255, 255, 0.55);
	--hp-border: rgba(255, 255, 255, 0.08);
	--hp-orange: #ec6707;
	--hp-radius: 10px;
	--hp-font: "Segoe UI", system-ui, -apple-system, sans-serif;
	--hp-container: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

body.hp-theme {
	margin: 0;
	font-family: var(--hp-font);
	background: var(--hp-bg);
	color: var(--hp-text);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.hp-container { width: min(100% - 2rem, var(--hp-container)); margin-inline: auto; }
.hp-skip-link { position: absolute; left: -999px; top: 0; }
.hp-skip-link:focus { left: 1rem; top: 1rem; z-index: 1000; background: #fff; color: #000; padding: .5rem 1rem; }

.hp-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(11, 11, 12, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--hp-border);
}
.hp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.hp-brand { display: flex; align-items: center; gap: .6rem; }
.hp-brand__logos { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.hp-brand__logo { display: block; width: auto; object-fit: contain; }
.hp-brand__logo--hp { height: 32px; max-width: 150px; }
.hp-brand__logo--bb { height: 36px; width: 36px; border-radius: 6px; }
.hp-brand__sep { opacity: .35; color: var(--hp-muted); font-weight: 600; }
.custom-logo-link img { max-height: 40px; width: auto; }

.hp-nav__list { display: flex; gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
.hp-nav a { color: var(--hp-muted); text-decoration: none; font-size: .95rem; }
.hp-nav a:hover, .hp-nav .current-menu-item a { color: var(--hp-orange); }

.hp-nav-toggle { display: none; background: transparent; border: 1px solid var(--hp-border); color: #fff; width: 42px; height: 42px; border-radius: 8px; }
.hp-nav-toggle > span[aria-hidden="true"] { display: block; width: 18px; height: 2px; background: #fff; margin: 0 auto; box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff; }
.hp-nav-toggle:focus-visible,
.hp-btn:focus-visible { outline: 2px solid var(--hp-orange); outline-offset: 2px; }

.hp-hero {
	padding: 4.5rem 0 4rem;
	background:
		radial-gradient(ellipse 70% 55% at 85% 15%, rgba(236, 103, 7, 0.28), transparent 50%),
		radial-gradient(ellipse 40% 40% at 10% 80%, rgba(236, 103, 7, 0.08), transparent 45%),
		var(--hp-bg);
}
.hp-badge {
	display: inline-flex; align-items: center; gap: .4rem;
	font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
	color: var(--hp-orange); border: 1px solid rgba(236, 103, 7, 0.35);
	padding: .35rem .75rem; border-radius: 999px; margin: 0 0 1rem;
}
.hp-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hp-orange); }
.hp-hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.045em; line-height: 1.05; margin: 0 0 1rem; max-width: 14ch; }
.hp-hero__subtitle { color: var(--hp-muted); max-width: 42rem; margin: 0 0 1.5rem; }
.hp-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hp-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: .7rem 1.1rem; border-radius: 6px; font-weight: 700; font-size: .95rem;
	text-decoration: none; transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.hp-btn:hover { transform: translateY(-1px); }
.hp-btn--primary { background: var(--hp-orange); color: #fff; }
.hp-btn--ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.12); }

.hp-section { padding: 4rem 0; border-top: 1px solid var(--hp-border); }
.hp-section--partner { background: linear-gradient(180deg, var(--hp-bg), var(--hp-bg-elevated)); }
.hp-eyebrow { color: var(--hp-orange); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 700; margin: 0 0 .5rem; }
.hp-eyebrow--muted { color: var(--hp-muted); }
.hp-eyebrow--center, .hp-section__title--center { text-align: center; }
.hp-section__title { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 .75rem; }
.hp-section__lead { color: var(--hp-muted); max-width: 36rem; margin: 0 0 1.5rem; }
.hp-section__head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hp-section__meta { color: var(--hp-muted); font-size: .9rem; }
.hp-section__cta { margin: 1.25rem 0 0; text-align: right; }

.hp-grid { display: grid; gap: .75rem; }
.hp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hp-grid--2 { grid-template-columns: repeat(2, 1fr); }

.hp-card {
	background: rgba(255,255,255,.03); border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius); padding: 1.1rem;
}
.hp-card--accent { border-color: rgba(236, 103, 7, 0.35); box-shadow: 0 0 0 1px rgba(236, 103, 7, 0.1); }
.hp-card__num { color: var(--hp-orange); font-weight: 700; margin: 0 0 .5rem; }
.hp-card__label { color: var(--hp-orange); text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; font-weight: 700; margin: 0 0 .5rem; }
.hp-card__title { margin: 0 0 .4rem; font-size: 1.05rem; }
.hp-card__text { margin: 0; color: var(--hp-muted); font-size: .92rem; }
.hp-card--media { padding: 0; overflow: hidden; }
.hp-card--media .hp-card__title, .hp-card--media .hp-card__text { padding: 0 1rem; }
.hp-card--media .hp-card__title { margin-top: .85rem; }
.hp-card--media .hp-card__text { padding-bottom: 1rem; }
.hp-card__media {
	height: 160px;
	background: #151518;
	overflow: hidden;
}
.hp-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.hp-partner-card {
	text-align: center; padding: 1.5rem; border-radius: 12px;
	background: rgba(255,255,255,.03); border: 1px solid var(--hp-border);
}
.hp-partner-card--hp { border-color: rgba(236, 103, 7, 0.25); }
.hp-partner-logo { min-height: 56px; margin-bottom: .75rem; display: flex; align-items: center; justify-content: center; }
.hp-partner-logo__img { max-height: 56px; max-width: 180px; width: auto; height: auto; object-fit: contain; border-radius: 6px; }
.hp-partner-card--hp .hp-partner-logo__img { max-height: 48px; }
.hp-partner-card__url { color: var(--hp-muted); font-size: .9rem; }

.hp-footer { border-top: 1px solid var(--hp-border); padding: 2rem 0 2.5rem; }
.hp-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hp-footer__title { margin: 0; font-weight: 700; }
.hp-footer__hint { margin: .35rem 0 0; color: var(--hp-muted); font-size: .9rem; }
.hp-footer__copy { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--hp-border); color: rgba(255,255,255,.4); font-size: .85rem; }

[data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 800px) {
	.hp-grid--3, .hp-grid--2 { grid-template-columns: 1fr; }
	.hp-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.hp-nav { display: none; position: absolute; left: 0; right: 0; top: 64px; background: #0b0b0c; border-bottom: 1px solid var(--hp-border); padding: 1rem; }
	.hp-nav.is-open { display: block; }
	.hp-nav__list { flex-direction: column; }
	.hp-header { position: sticky; }
	.hp-header__inner { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
	[data-reveal] { opacity: 1; transform: none; }
}

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
