/* Hero — full-height dark green banner
   Headline column plus the <canvas> film on the right; the canvas is drawn
   straight onto the section background by js/hero-film.js. */
.hero {
	/* Overrides the 96px `section` padding — the hero sizes itself with min-height
	   and the padding on .hero-in instead. */
	padding: 0;
	position: relative;
	overflow: hidden;
	margin-top: -70px;
	min-height: 100vh;
	display: grid;
	align-items: center;
	/* Three layers, painted top to bottom in this order:
	     1. a short shade under the transparent header, so the white nav still
	        reads against the bright top of the ramp
	     2. a soft glow behind the globe on the right
	     3. the ramp itself — brand green falling to near-black. The two middle
	        stops only ease the fall; the endpoints are the whole idea. */
	background:
		linear-gradient(to bottom, rgba(8, 17, 12, 0.3) 0, transparent 180px),
		radial-gradient(74% 60% at 82% 10%, rgba(150, 214, 176, 0.22), transparent 60%),
		linear-gradient(168deg, #448d61 0%, #235640 38%, #0e2018 72%, #08110c 100%);
	color: #fff;
}
.hero-in {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: 40px;
	align-items: center;
	padding-top: 104px;
	padding-bottom: 80px;
	position: relative;
	z-index: 2;
}
/* .eyebrow's default colour (--green-40) is nearly the same hue as this
   section's bright top-of-gradient green, so it needs its own high-contrast
   override here — everything below also gets a soft shadow to hold up
   against that same bright patch without touching the background itself. */
.hero .eyebrow {
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.hero .eyebrow::before {
	background: rgba(255, 255, 255, 0.6);
}
.hero h1 {
	font-size: clamp(40px, 4.8vw, 62px);
	line-height: 1.03;
	letter-spacing: -0.035em;
	font-weight: 800;
	color: #fff;
	text-wrap: balance;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero h1 em {
	font-style: normal;
	color: var(--green-30);
}
.hero .lede {
	font-size: 19px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 22px;
	max-width: 32em;
	text-wrap: pretty;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.hero .actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 34px;
	flex-wrap: wrap;
}
.hero .actions .orsep {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 500;
}
.hero .reassure {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 22px;
	flex-wrap: wrap;
}
.hero .reassure .item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
}
.hero .reassure .item svg {
	width: 15px;
	height: 15px;
	color: var(--green-30);
	flex: 0 0 auto;
}
/* The one line under the buttons — friction remover, not a feature list. */
.hero .nocard {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
}
.hero .nocard svg {
	width: 15px;
	height: 15px;
	color: var(--green-30);
	flex: 0 0 auto;
}

/* ---------------- HERO FILM ----------------
   A looping motion piece on <canvas>, drawn straight onto the hero with a
   transparent background so it belongs to the section rather than sitting
   in a frame. It carries the message without a word of copy: a turning
   Earth (global coverage), lanes running both ways through one bright
   point (access, convenience) and milestones lighting along each route
   (trackability). Honours prefers-reduced-motion. */
.plate {
	position: relative;
	margin-right: calc(-1 * ((100vw - min(100vw, var(--maxw))) / 2 + 32px));
}
.film {
	display: block;
	width: min(100%, 78vh);
	aspect-ratio: 1/1;
	margin-left: auto;
}
