/* ============================================
SVALINN — GEOTHERMAL CORE DESIGN SYSTEM
============================================ */
:root {
	--obsidian: #080B0F;
	--basalt: #0D1117;
	--slate-deep: #131920;
	--slate-mid: #1C2530;
	--slate-light: #2A3540;
	--glacial: #00D4FF;
	--glacial-dim: #0099CC;
	--glacial-glow: #00D4FF33;
	--magma: #FF6B1A;
	--gold: #E8A030;
	--ice-white: #E8EFF5;
	--mist: #8FA4B5;
	--fog: #5A7080;
	--net-zero: #00FF88;
	--mono: 'IBM Plex Mono', monospace;
	--display: 'Barlow Condensed', sans-serif;
	--body: 'Barlow', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	/* Slightly larger base so hero type has impact at 1080p; layout holds at 200% zoom */
	font-size: clamp(14px, 1.25vw + 14px, 20px);
}

body {
	background: var(--obsidian);
	color: var(--ice-white);
	font-family: var(--body);
	overflow-x: hidden;
	cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	background: var(--glacial);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: transform 0.05s linear, width 0.2s, height 0.2s, background 0.2s;
	mix-blend-mode: screen;
}

.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	border: 1px solid var(--glacial);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
	opacity: 0.4;
}

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	opacity: 0.025;
	pointer-events: none;
	z-index: 1000;
}

/* ---- NAVIGATION ---- */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 48px;
	height: 72px;
	background: linear-gradient(180deg, rgba(8, 11, 15, 0.98) 0%, transparent 100%);
	border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.nav-logo {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.nav-logo-word {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.15em;
	color: var(--ice-white);
	text-transform: uppercase;
	line-height: 1;
}

.nav-logo-sub {
	font-family: var(--mono);
	font-size: 9px;
	color: var(--glacial);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.8;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--mist);
	text-decoration: none;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--glacial);
}

.nav-cta {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--obsidian);
	background: var(--magma);
	border: none;
	padding: 10px 22px;
	cursor: none;
	font-weight: 600;
	transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
	background: #FF8540;
	transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 48px 80px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 120% 80% at 60% 40%, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
		radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 107, 26, 0.05) 0%, transparent 50%),
		linear-gradient(180deg, var(--basalt) 0%, var(--obsidian) 100%);
}

/* Animated data grid */
.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
	background-size: 80px 80px;
	animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(80px);
	}
}

/* Basalt columns */
.basalt-columns {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 280px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 280' preserveAspectRatio='none'%3E%3Cpolygon points='0,280 0,180 40,140 80,160 120,120 160,150 200,100 240,130 280,90 320,120 360,80 400,110 440,70 480,100 520,60 560,90 600,50 640,80 680,40 720,70 760,30 800,60 840,20 880,50 920,10 960,40 1000,0 1040,30 1080,10 1120,40 1160,20 1200,50 1240,30 1280,60 1320,40 1360,70 1400,50 1440,80 1440,280' fill='%230D1117' opacity='0.95'/%3E%3C/svg%3E") no-repeat bottom center;
	background-size: 100% 100%;
	pointer-events: none;
}

/* Steam particles */
.steam-container {
	position: absolute;
	bottom: 200px;
	left: 0;
	right: 0;
	height: 200px;
	overflow: hidden;
	pointer-events: none;
}

.steam-particle {
	position: absolute;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, transparent, rgba(200, 220, 240, 0.15), transparent);
	border-radius: 2px;
	animation: steamRise 4s ease-out infinite;
}

@keyframes steamRise {
	0% {
		transform: translateY(0) scaleX(1);
		opacity: 0;
		height: 20px;
	}

	30% {
		opacity: 1;
	}

	100% {
		transform: translateY(-180px) scaleX(3);
		opacity: 0;
		height: 80px;
	}
}

/* Fiber optic lines */
.fiber-lines {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.fiber-line {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--glacial), transparent);
	opacity: 0;
	animation: fiberPulse 3s ease-in-out infinite;
}

@keyframes fiberPulse {
	0% {
		opacity: 0;
		transform: scaleX(0);
		transform-origin: left;
	}

	50% {
		opacity: 0.6;
		transform: scaleX(1);
	}

	100% {
		opacity: 0;
		transform: scaleX(0);
		transform-origin: right;
	}
}

.hero-eyebrow {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.3em;
	color: var(--glacial);
	text-transform: uppercase;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
	z-index: 2;
}

.hero-eyebrow::before {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: var(--glacial);
}

.hero-headline {
	font-family: var(--display);
	font-size: clamp(52px, 8.5vw, 130px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--ice-white);
	position: relative;
	z-index: 2;
	max-width: 1100px;
}

.hero-headline .accent-glacial {
	color: var(--glacial);
}

.hero-sub {
	font-family: var(--body);
	font-size: clamp(15px, 1.5vw, 20px);
	font-weight: 300;
	color: var(--mist);
	line-height: 1.6;
	max-width: 580px;
	margin-top: 24px;
	position: relative;
	z-index: 2;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 40px;
	position: relative;
	z-index: 2;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	background: var(--magma);
	color: var(--obsidian);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: none;
	transition: background 0.2s, transform 0.15s;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
	background: #FF8540;
	transform: translateY(-2px);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 34px;
	border: 1px solid rgba(0, 212, 255, 0.3);
	color: var(--glacial);
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: none;
	transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
	border-color: var(--glacial);
	background: rgba(0, 212, 255, 0.05);
}

.hero-stats {
	position: absolute;
	right: 48px;
	bottom: 80px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	z-index: 2;
}

.hero-stat {
	text-align: right;
}

.hero-stat-value {
	font-family: var(--display);
	font-size: 36px;
	font-weight: 800;
	color: var(--glacial);
	line-height: 1;
}

.hero-stat-label {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--fog);
	margin-top: 2px;
}

.net-zero-badge {
	position: absolute;
	top: 90px;
	right: 48px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	z-index: 2;
}

.badge-ring {
	width: 120px;
	height: 120px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.badge-ring svg {
	position: absolute;
	inset: 0;
	animation: rotateBadge 12s linear infinite;
}

@keyframes rotateBadge {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.badge-inner {
	text-align: center;
}

.badge-inner-val {
	font-family: var(--display);
	font-size: 18px;
	font-weight: 900;
	color: var(--net-zero);
	line-height: 1;
}

.badge-inner-label {
	font-family: var(--mono);
	font-size: 7px;
	letter-spacing: 0.15em;
	color: var(--net-zero);
	text-transform: uppercase;
	opacity: 0.8;
}

/* ---- SECTION COMMON ---- */
section {
	position: relative;
}

.section-label {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--glacial);
	opacity: 0.7;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.section-label::before {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--glacial);
	opacity: 0.7;
}

.section-title {
	font-family: var(--display);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.95;
	color: var(--ice-white);
}

/* ---- TICKER STRIP ---- */
.ticker {
	background: var(--slate-deep);
	border-top: 1px solid rgba(0, 212, 255, 0.1);
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	padding: 14px 0;
	overflow: hidden;
	white-space: nowrap;
}

.ticker-inner {
	display: inline-flex;
	gap: 0;
	animation: tickerScroll 55s linear infinite;
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 40px;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--mist);
}

.ticker-item .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--glacial);
	flex-shrink: 0;
}

.ticker-item .highlight {
	color: var(--glacial);
}

.ticker-item .live {
	color: var(--net-zero);
}

.ticker-item .warn {
	color: var(--magma);
}

@keyframes tickerScroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ---- WHY ICELAND ---- */
.why-iceland {
	padding: 140px 48px;
	background: var(--basalt);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-top: 70px;
}

.why-left .section-title {
	font-size: clamp(42px, 5vw, 76px);
}

.why-body {
	font-size: 17px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.75;
	margin-top: 28px;
}

.why-body strong {
	color: var(--ice-white);
	font-weight: 500;
}

.why-right {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.advantage-item {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 20px;
	align-items: start;
	padding: 28px 0;
	border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.advantage-item:first-child {
	border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.advantage-num {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--glacial);
	opacity: 0.5;
	padding-top: 4px;
	letter-spacing: 0.1em;
}

.advantage-title {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ice-white);
	margin-bottom: 6px;
}

.advantage-desc {
	font-family: var(--body);
	font-size: 14px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.65;
}

/* Tectonic visual */
.tectonic-visual {
	position: relative;
	height: 320px;
	margin-top: 48px;
	overflow: hidden;
}

.tectonic-layer {
	position: absolute;
	left: 0;
	right: 0;
	border-top: 1px solid;
}

/* ---- SERVICES GRID ---- */
.services {
	padding: 140px 48px;
	background: var(--obsidian);
}

.services-header {
	max-width: 700px;
	margin-bottom: 80px;
}

.services-header .section-title {
	font-size: clamp(38px, 4.5vw, 68px);
	margin-top: 16px;
}

.services-header p {
	font-size: 15px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
	margin-top: 20px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(0, 212, 255, 0.08);
}

.service-card {
	background: var(--basalt);
	padding: 44px 36px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s;
	cursor: none;
}

.service-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s;
}

.service-card:hover {
	background: var(--slate-deep);
}

.service-card:hover::after {
	opacity: 1;
}

.service-card:hover .service-icon {
	border-color: var(--glacial);
}

.service-card:hover .service-icon-inner {
	color: var(--glacial);
}

.service-index {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.2em;
	color: var(--fog);
	margin-bottom: 24px;
}

.service-icon {
	width: 52px;
	height: 52px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: border-color 0.3s;
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.service-icon-inner {
	color: var(--fog);
	transition: color 0.3s;
}

.service-title {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--ice-white);
	margin-bottom: 12px;
	line-height: 1.1;
}

.service-desc {
	font-size: 13.5px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
	margin-bottom: 28px;
}

.service-specs {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.service-spec {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--fog);
}

.service-spec::before {
	content: '→';
	color: var(--glacial);
	font-size: 10px;
}

.service-card.featured {
	background: var(--slate-deep);
	border: 1px solid rgba(0, 212, 255, 0.15);
}

.service-card.featured .service-icon {
	border-color: rgba(0, 212, 255, 0.4);
}

.service-card.featured .service-icon-inner {
	color: var(--glacial);
}

/* ---- SUSTAINABILITY DASHBOARD ---- */
.sustainability {
	padding: 140px 48px;
	background: var(--basalt);
	overflow: hidden;
}

.sustain-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: end;
	margin-bottom: 80px;
}

.sustain-header .section-title {
	font-size: clamp(38px, 4.5vw, 68px);
	margin-top: 16px;
}

.sustain-header p {
	font-size: 15px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
}

.sustain-header .section-label {
	margin-bottom: 16px;
}

.dashboard {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	background: rgba(0, 212, 255, 0.08);
	margin-bottom: 1px;
}

.dash-metric {
	background: var(--obsidian);
	padding: 36px 28px;
	position: relative;
	overflow: hidden;
}

.dash-metric::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--glacial);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.6s ease;
}

.dash-metric.active::before {
	transform: scaleX(1);
}

.dash-label {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--fog);
	margin-bottom: 16px;
}

.dash-value {
	font-family: var(--display);
	font-size: 52px;
	font-weight: 900;
	line-height: 1;
	color: var(--glacial);
}

.dash-value.green {
	color: var(--net-zero);
}

.dash-value.orange {
	color: var(--magma);
}

.dash-unit {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--fog);
	margin-top: 6px;
}

.dash-change {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--net-zero);
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.dashboard-wide {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1px;
	background: rgba(0, 212, 255, 0.08);
}

.energy-chart {
	background: var(--obsidian);
	padding: 36px 28px;
}

.chart-title {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.2em;
	color: var(--fog);
	text-transform: uppercase;
	margin-bottom: 24px;
}

.bar-chart {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 100px;
}

.bar-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	height: 100%;
	justify-content: flex-end;
}

.bar {
	width: 100%;
	background: linear-gradient(180deg, var(--glacial), rgba(0, 212, 255, 0.3));
	border-radius: 1px 1px 0 0;
	min-height: 4px;
	transition: height 0.5s ease;
	position: relative;
}

.bar.geo {
	background: linear-gradient(180deg, var(--magma), rgba(255, 107, 26, 0.3));
}

.bar-label {
	font-family: var(--mono);
	font-size: 8px;
	color: var(--fog);
	letter-spacing: 0.05em;
}

.partners-panel {
	background: var(--obsidian);
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.partner-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}

.partner-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.partner-name {
	font-family: var(--display);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ice-white);
}

.partner-role {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	color: var(--glacial);
	text-transform: uppercase;
}

/* ---- DATA FORTRESS ---- */
.fortress {
	padding: 140px 48px;
	background: var(--obsidian);
	overflow: hidden;
	position: relative;
}

.fortress-bg-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--display);
	font-size: 22vw;
	font-weight: 900;
	text-transform: uppercase;
	color: rgba(0, 212, 255, 0.015);
	white-space: nowrap;
	pointer-events: none;
	letter-spacing: -0.02em;
	user-select: none;
}

.fortress-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.fortress-title {
	font-family: var(--display);
	font-size: clamp(42px, 5vw, 80px);
	font-weight: 900;
	line-height: 0.92;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.fortress-title .line-glacial {
	color: var(--glacial);
	display: block;
}

.fortress-body {
	font-size: 16px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.75;
	margin-top: 28px;
}

.fortress-specs {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: rgba(0, 212, 255, 0.08);
}

.fortress-spec {
	background: var(--basalt);
	padding: 20px 18px;
}

.fortress-spec-key {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.2em;
	color: var(--fog);
	text-transform: uppercase;
	margin-bottom: 4px;
}

.fortress-spec-val {
	font-family: var(--mono);
	font-size: 14px;
	color: var(--glacial);
}

.fortress-visual {
	position: relative;
	height: 480px;
}

.server-diagram {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rack-unit {
	position: absolute;
	width: 200px;
	height: 16px;
	border: 1px solid;
	border-radius: 1px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 8px;
}

.rack-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.rack-bar {
	flex: 1;
	height: 3px;
	border-radius: 2px;
}

/* ---- WATER CRISIS SECTION ---- */
.water-crisis {
	padding: 140px 48px;
	background: var(--slate-deep);
	position: relative;
	overflow: hidden;
}

.water-crisis::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 80% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
		radial-gradient(ellipse 60% 40% at 10% 70%, rgba(255, 107, 26, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.water-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-top: 70px;
}

.water-headline {
	font-family: var(--display);
	font-size: clamp(38px, 4.5vw, 68px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.92;
	color: var(--ice-white);
	margin-top: 16px;
}

.water-headline .accent-water {
	color: var(--glacial);
}

.water-intro {
	font-size: 16px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.75;
	margin-top: 24px;
}

.water-intro strong {
	color: var(--ice-white);
	font-weight: 500;
}

.water-quote {
	margin-top: 36px;
	padding: 28px 32px;
	border-left: 2px solid var(--glacial);
	background: rgba(0, 212, 255, 0.04);
	position: relative;
}

.water-quote::before {
	content: '"';
	position: absolute;
	top: 8px;
	left: 16px;
	font-family: var(--display);
	font-size: 60px;
	color: var(--glacial);
	opacity: 0.2;
	line-height: 1;
}

.water-quote p {
	font-family: var(--body);
	font-size: 15px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.75;
	font-style: italic;
}

.water-quote p strong {
	color: var(--glacial);
	font-style: normal;
	font-weight: 500;
}

.water-comparison {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.compare-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: rgba(0, 212, 255, 0.08);
	margin-bottom: 1px;
}

.compare-cell {
	padding: 28px 24px;
	position: relative;
}

.compare-cell.bad {
	background: rgba(255, 107, 26, 0.05);
}

.compare-cell.good {
	background: rgba(0, 212, 255, 0.05);
}

.compare-tag {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.compare-tag.bad-tag {
	color: var(--magma);
}

.compare-tag.good-tag {
	color: var(--glacial);
}

.compare-location {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	color: var(--ice-white);
}

.compare-stat {
	font-family: var(--display);
	font-size: 40px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 6px;
}

.compare-stat.bad-stat {
	color: var(--magma);
}

.compare-stat.good-stat {
	color: var(--glacial);
}

.compare-desc {
	font-family: var(--body);
	font-size: 13px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.6;
}

.water-metric-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(0, 212, 255, 0.08);
	margin-top: 60px;
}

.water-metric {
	background: var(--obsidian);
	padding: 32px 24px;
}

.water-metric-val {
	font-family: var(--display);
	font-size: 56px;
	font-weight: 900;
	line-height: 1;
	color: var(--glacial);
	margin-bottom: 6px;
}

.water-metric-val.green {
	color: var(--net-zero);
}

.water-metric-unit {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.15em;
	color: var(--fog);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.water-metric-desc {
	font-size: 12px;
	font-weight: 300;
	color: var(--fog);
	line-height: 1.5;
}

/* ---- HEAT RECYCLING SECTION ---- */
.heat-recycling {
	padding: 140px 48px;
	background: var(--obsidian);
	position: relative;
	overflow: hidden;
}

.heat-recycling::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 30% 50%, rgba(255, 107, 26, 0.04) 0%, transparent 60%);
	pointer-events: none;
}

.heat-intro-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	margin-bottom: 80px;
	align-items: end;
}

.heat-main-title {
	font-family: var(--display);
	font-size: clamp(38px, 4.5vw, 72px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.92;
	margin-top: 16px;
}

.heat-main-title .accent-heat {
	color: var(--magma);
}

.heat-intro-body {
	font-size: 16px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.75;
}

.heat-intro-body strong {
	color: var(--ice-white);
	font-weight: 500;
}

/* Physics Comparison */
.physics-block {
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	gap: 0;
	background: rgba(255, 107, 26, 0.06);
	border: 1px solid rgba(255, 107, 26, 0.15);
	margin-bottom: 60px;
	position: relative;
}

.physics-side {
	padding: 44px 36px;
}

.physics-side.left {
	border-right: 1px solid rgba(255, 107, 26, 0.1);
}

.physics-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 107, 26, 0.08);
	padding: 20px 0;
}

.physics-vs {
	font-family: var(--display);
	font-size: 18px;
	font-weight: 900;
	color: var(--fog);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
}

.physics-location {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.physics-location.hot {
	color: var(--magma);
}

.physics-location.cold {
	color: var(--glacial);
}

.physics-temp {
	font-family: var(--display);
	font-size: 64px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 4px;
}

.physics-temp.hot {
	color: var(--magma);
}

.physics-temp.cold {
	color: var(--glacial);
}

.physics-temp-label {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--fog);
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}

.physics-desc {
	font-size: 14px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
}

.physics-desc strong {
	color: var(--ice-white);
	font-weight: 500;
}

.physics-method {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	padding: 8px 14px;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.physics-method.active-cooling {
	background: rgba(255, 107, 26, 0.1);
	border: 1px solid rgba(255, 107, 26, 0.2);
	color: var(--magma);
}

.physics-method.passive-cooling {
	background: rgba(0, 212, 255, 0.08);
	border: 1px solid rgba(0, 212, 255, 0.2);
	color: var(--glacial);
}

.physics-saving {
	text-align: center;
	padding: 20px;
	background: rgba(0, 212, 255, 0.05);
	border-top: 1px solid rgba(255, 107, 26, 0.1);
	font-family: var(--mono);
	font-size: 11px;
	color: var(--net-zero);
	letter-spacing: 0.15em;
}

/* Circular economy cards */
.circular-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 107, 26, 0.08);
}

.circular-card {
	background: var(--basalt);
	padding: 44px 32px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s;
}

.circular-card:hover {
	background: var(--slate-deep);
}

.circular-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--magma), transparent);
}

.circular-num {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.25em;
	color: var(--fog);
	margin-bottom: 20px;
}

.circular-icon {
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 107, 26, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
	transition: border-color 0.3s;
}

.circular-card:hover .circular-icon {
	border-color: var(--magma);
}

.circular-title {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--ice-white);
	margin-bottom: 10px;
	line-height: 1.1;
}

.circular-desc {
	font-size: 13.5px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
}

.circular-desc strong {
	color: var(--ice-white);
	font-weight: 500;
}

.circular-impact {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--magma);
}

.circular-impact::before {
	content: '→';
	color: var(--magma);
}

.heat-callout {
	margin-top: 60px;
	padding: 44px 48px;
	background: rgba(255, 107, 26, 0.05);
	border: 1px solid rgba(255, 107, 26, 0.12);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
}

.heat-callout-text {
	font-family: var(--display);
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.2;
	color: var(--ice-white);
}

.heat-callout-text .hot {
	color: var(--magma);
}

.heat-callout-text .cold {
	color: var(--glacial);
}

.heat-callout-stat {
	text-align: right;
	flex-shrink: 0;
}

.heat-callout-val {
	font-family: var(--display);
	font-size: 72px;
	font-weight: 900;
	line-height: 1;
	color: var(--magma);
}

.heat-callout-unit {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.15em;
	color: var(--fog);
	text-transform: uppercase;
}

/* ---- NO-LOGS SECTION ---- */
.no-logs-banner {
	background: var(--basalt);
	border-top: 1px solid rgba(0, 212, 255, 0.08);
	border-bottom: 1px solid rgba(0, 212, 255, 0.08);
	padding: 70px 48px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 60px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.no-logs-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
	pointer-events: none;
}

.no-logs-icon {
	width: 80px;
	height: 80px;
	border: 1px solid rgba(0, 212, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.no-logs-body {
	position: relative;
	z-index: 2;
}

.no-logs-headline {
	font-family: var(--display);
	font-size: clamp(26px, 3vw, 44px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.05;
	color: var(--ice-white);
	margin-bottom: 14px;
}

.no-logs-headline .accent-glacial {
	color: var(--glacial);
}

.no-logs-desc {
	font-size: 15px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
	max-width: 640px;
}

.no-logs-desc strong {
	color: var(--ice-white);
	font-weight: 500;
}

.no-logs-badge-col {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}

.legal-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 16px 20px;
	border: 1px solid rgba(0, 212, 255, 0.15);
	text-align: center;
	min-width: 160px;
}

.legal-badge-title {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--glacial);
	line-height: 1;
}

.legal-badge-sub {
	font-family: var(--mono);
	font-size: 8px;
	letter-spacing: 0.15em;
	color: var(--fog);
	text-transform: uppercase;
	line-height: 1.5;
}

.no-logs-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.no-logs-spec-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 1px solid rgba(0, 212, 255, 0.1);
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	color: var(--fog);
	text-transform: uppercase;
}

.no-logs-spec-tag::before {
	content: '✓';
	color: var(--net-zero);
	font-size: 10px;
}

@media (max-width: 960px) {
	.water-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.heat-intro-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.physics-block {
		grid-template-columns: 1fr;
	}

	.physics-divider {
		writing-mode: horizontal-tb;
		padding: 16px;
	}

	.physics-vs {
		writing-mode: horizontal-tb;
	}

	.circular-grid {
		grid-template-columns: 1fr;
	}

	.heat-callout {
		grid-template-columns: 1fr;
	}

	.heat-callout-stat {
		text-align: left;
	}

	.no-logs-banner {
		grid-template-columns: 1fr;
	}

	.no-logs-badge-col {
		align-items: flex-start;
	}

	.water-metric-strip {
		grid-template-columns: 1fr 1fr;
	}

	.compare-row {
		grid-template-columns: 1fr;
	}
}

/* ---- CTA SECTION ---- */
.cta-section {
	padding: 140px 48px;
	background: var(--slate-deep);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 100% 100% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.cta-label {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--glacial);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.cta-label::before,
.cta-label::after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: var(--glacial);
	opacity: 0.5;
}

.cta-title {
	font-family: var(--display);
	font-size: clamp(42px, 6vw, 96px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.92;
	color: var(--ice-white);
	position: relative;
	z-index: 2;
	margin-bottom: 28px;
}

.cta-sub {
	font-size: 17px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
	max-width: 540px;
	margin: 0 auto 48px;
	position: relative;
	z-index: 2;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	position: relative;
	z-index: 2;
}

/* ---- FOOTER ---- */
footer {
	background: var(--obsidian);
	border-top: 1px solid rgba(0, 212, 255, 0.1);
	padding: 80px 48px 40px;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}

.footer-brand .nav-logo-word {
	font-size: 28px;
}

.footer-brand-tagline {
	font-size: 13px;
	font-weight: 300;
	color: var(--mist);
	line-height: 1.7;
	margin-top: 16px;
	max-width: 280px;
}

.footer-col-title {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--fog);
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	font-size: 13px;
	font-weight: 300;
	color: var(--mist);
	text-decoration: none;
	transition: color 0.2s;
	cursor: none;
}

.footer-links a:hover {
	color: var(--glacial);
}

.footer-bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	padding-top: 40px;
}

.footer-legal {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.05em;
	color: var(--fog);
	line-height: 1.9;
	max-width: 600px;
}

.footer-legal a {
	color: var(--glacial);
	text-decoration: none;
	opacity: 0.7;
}

.footer-legal a:hover {
	opacity: 1;
}

.footer-right {
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}

.footer-address {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.05em;
	color: var(--fog);
	line-height: 1.9;
}

.footer-reg {
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.05em;
	color: rgba(90, 112, 128, 0.5);
	line-height: 1.8;
}

/* ---- SCROLL ANIMATIONS — CSS keyframes, no JS observer needed ---- */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeLeft {
	from {
		opacity: 0;
		transform: translateX(-36px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.reveal {
	animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-left {
	animation: fadeLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay-1 {
	animation-delay: 0.12s;
}

.reveal-delay-2 {
	animation-delay: 0.22s;
}

.reveal-delay-3 {
	animation-delay: 0.32s;
}

.reveal-delay-4 {
	animation-delay: 0.44s;
}

/* ---- LIVE INDICATOR ---- */
.live-dot {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--net-zero);
}

.live-dot::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--net-zero);
	animation: livePulse 1.5s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes livePulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.4;
		transform: scale(0.7);
	}
}

/* ---- GLITCH EFFECT ---- */
.hero-headline .glitch {
	position: relative;
	display: inline-block;
}

.hero-headline .glitch::before,
.hero-headline .glitch::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
}

.hero-headline .glitch::before {
	color: var(--glacial);
	transform: translateX(-2px);
	animation: glitch1 6s infinite;
}

.hero-headline .glitch::after {
	color: var(--magma);
	transform: translateX(2px);
	animation: glitch2 6s infinite;
}

@keyframes glitch1 {

	0%,
	92%,
	100% {
		opacity: 0;
	}

	94% {
		opacity: 0.8;
		clip-path: polygon(0 20%, 100% 20%, 100% 35%, 0 35%);
	}

	96% {
		opacity: 0.5;
		clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
	}
}

@keyframes glitch2 {

	0%,
	93%,
	100% {
		opacity: 0;
	}

	95% {
		opacity: 0.6;
		clip-path: polygon(0 45%, 100% 45%, 100% 60%, 0 60%);
	}

	97% {
		opacity: 0.3;
		clip-path: polygon(0 10%, 100% 10%, 100% 25%, 0 25%);
	}
}

/* ---- HORIZONTAL RULE STYLE ---- */
.divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
	margin: 0;
}

/* ---- DATA STREAM ANIMATION ---- */
.data-stream {
	position: absolute;
	width: 1px;
	top: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
}

.data-stream::after {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	width: 1px;
	height: 40%;
	background: linear-gradient(180deg, transparent, var(--glacial), transparent);
	animation: streamFlow 2s linear infinite;
}

@keyframes streamFlow {
	0% {
		top: -40%;
	}

	100% {
		top: 140%;
	}
}

.services-grid-row2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: rgba(0, 212, 255, 0.08);
	margin-top: 1px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
	nav {
		padding: 0 24px;
	}

	.nav-links {
		display: none;
	}

	.hero {
		padding: 0 24px 60px;
	}

	.hero-stats {
		right: 24px;
		bottom: 60px;
	}

	.net-zero-badge {
		top: 80px;
		right: 24px;
	}

	.why-iceland,
	.services,
	.sustainability,
	.fortress,
	.cta-section {
		padding: 80px 24px;
	}

	.why-grid,
	.sustain-header,
	.fortress-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.services-grid-row2 {
		grid-template-columns: 1fr;
	}

	.dashboard {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.dashboard-wide {
		grid-template-columns: 1fr;
	}
}