/* Renewables.Architect — standalone splash page styles */
@import url("https://onedesign.azureedge.net/onedesigncdn/3.9.3/oneDesign.css");

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

body {
	font-family: var(--font, "Gantari"), Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ra-marketing-home {
	--ra-ink: #eef7ff;
	--ra-cyan: #4fd4ff;
	--ra-dark: #020d1a;
	color: var(--ra-ink);
	background: var(--ra-dark);
	min-height: 100vh;
	overflow-x: hidden;
}

/* ─── Navigation ─── */
.ra-nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.4rem 3.5rem;
}

.ra-nav-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
}

.ra-nav-brand img {
	height: 2.6rem;
	width: auto;
}

.ra-nav-brand span {
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.ra-nav-links {
	display: flex;
	align-items: center;
	gap: 2.2rem;
}

.ra-nav-links a {
	font-size: 0.84rem;
	font-weight: 500;
	color: rgba(238, 247, 255, 0.7);
	text-decoration: none;
	transition: color 180ms ease;
}

.ra-nav-links a:hover {
	color: #ffffff;
}

.ra-nav-cta {
	padding: 0.45rem 1.1rem !important;
	border: 1px solid var(--ra-cyan) !important;
	color: var(--ra-cyan) !important;
	font-weight: 600 !important;
}

.ra-nav-cta:hover {
	background: rgba(79, 212, 255, 0.1) !important;
}

.ra-nav-links .login-btn {
	padding: 0.45rem 1.1rem;
	border: 1px solid var(--ra-cyan);
	color: var(--ra-cyan);
	font-weight: 600;
	font-size: 0.82rem;
	font-family: inherit;
	background: transparent;
	border-radius: 0;
	cursor: pointer;
	transition: background 180ms ease;
	line-height: 1.4;
}

.ra-nav-links .login-btn:hover {
	background: rgba(79, 212, 255, 0.1);
}

/* ─── Hero ─── */
.ra-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 10rem 2rem 5rem;
	min-height: 100vh;
	justify-content: center;
	background: url('/marketing/offshore-digital-twin.jpg') center center / cover no-repeat;
}

.ra-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 13, 26, 0.75) 0%, rgba(2, 13, 26, 0.45) 45%, rgba(2, 13, 26, 0.85) 100%);
}

.ra-hero > * {
	position: relative;
	z-index: 1;
}

.ra-hero h1 {
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #ffffff;
	max-width: 16ch;
}

.ra-hero-sub {
	margin-top: 1.5rem;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.55;
	font-weight: 400;
	color: rgba(226, 243, 255, 0.82);
	max-width: 54ch;
}

/* ─── Buttons ─── */
.ra-hero-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2.5rem;
}

.ra-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.78rem 1.7rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 200ms ease;
	letter-spacing: 0.01em;
}

.ra-btn--primary {
	background: var(--ra-cyan);
	color: var(--ra-dark);
}

.ra-btn--primary:hover {
	background: #7be3ff;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(79, 212, 255, 0.3);
}

.ra-btn--ghost {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.ra-btn--ghost:hover {
	border-color: #ffffff;
	transform: translateY(-2px);
}

/* ─── Stats ─── */
.ra-hero-stats {
	display: flex;
	gap: 3.5rem;
	margin-top: 4.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ra-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}

.ra-stat-num {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--ra-cyan);
}

.ra-stat-label {
	font-size: 0.72rem;
	font-weight: 500;
	color: rgba(226, 243, 255, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

/* ─── Features ─── */
.ra-features {
	padding: 6rem 3.5rem;
	background: var(--ra-dark);
}

.ra-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: 1.8rem;
	max-width: 72rem;
	margin: 0 auto;
}

.ra-feature-card {
	padding: 2.2rem 2rem;
	border: 1px solid rgba(79, 212, 255, 0.12);
	background: rgba(10, 30, 50, 0.55);
	transition: border-color 220ms ease, transform 220ms ease;
}

.ra-feature-card:hover {
	border-color: rgba(79, 212, 255, 0.45);
	transform: translateY(-4px);
}

.ra-feature-num {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--ra-cyan);
	letter-spacing: 0.1em;
	margin-bottom: 1.1rem;
}

.ra-feature-card h3 {
	margin-bottom: 0.8rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
}

.ra-feature-card p {
	margin-bottom: 1.3rem;
	font-size: 0.88rem;
	line-height: 1.6;
	color: rgba(215, 236, 251, 0.75);
}

.ra-feature-card a {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ra-cyan);
	text-decoration: none;
	transition: color 180ms ease;
}

.ra-feature-card a:hover {
	color: #7be3ff;
}

/* ─── Responsive ─── */
@media (max-width: 60rem) {
	.ra-nav {
		padding: 1rem 1.5rem;
	}

	.ra-nav-links {
		gap: 1.4rem;
	}

	.ra-hero {
		padding: 7rem 1.5rem 4rem;
		min-height: 80vh;
	}

	.ra-hero-stats {
		gap: 2rem;
	}

	.ra-features {
		padding: 4rem 1.5rem;
	}
}

@media (max-width: 42rem) {
	.ra-nav {
		padding: 0.8rem 1rem;
	}

	.ra-nav-links a:not(.ra-nav-cta) {
		display: none;
	}

	.ra-hero h1 {
		font-size: clamp(1.9rem, 8vw, 2.8rem);
	}

	.ra-hero-sub {
		font-size: 0.92rem;
	}

	.ra-hero-actions {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.ra-hero-stats {
		flex-direction: column;
		gap: 1.2rem;
		align-items: center;
	}

	.ra-features-grid {
		grid-template-columns: 1fr;
	}
}
