/* ---------- hero : edge to edge, larger than life ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #0a0a0c;
	isolation: isolate
}

/* full bleed photo on the right */
.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% center;
	transform: scale(1.18);
	opacity: 0;
	animation: heroZoom 2.4s .2s cubic-bezier(.22, 1, .36, 1) forwards
}

@keyframes heroZoom {
	0% {
		opacity: 0;
		transform: scale(1.18)
	}

	100% {
		opacity: 1;
		transform: scale(1.04)
	}
}

/* dark scrims so left copy stays legible */
.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, #070708 0%, rgba(8, 8, 10, .96) 26%, rgba(8, 8, 10, .72) 44%, rgba(8, 8, 10, .15) 66%, rgba(8, 8, 10, .05) 100%),
		linear-gradient(180deg, rgba(8, 8, 10, .55), transparent 30%, rgba(8, 8, 10, .4))
}

.hero-curtain {
	position: absolute;
	inset: 0;
	background: #0a6c74;
	z-index: 20;
	transform-origin: top;
	animation: curtain 1.1s .1s cubic-bezier(.76, 0, .24, 1) forwards
}

@keyframes curtain {
	0% {
		transform: scaleY(1)
	}

	100% {
		transform: scaleY(0)
	}
}

/*.hero-inner {*/
/*    position: relative;*/
/*    z-index: 5;*/
/*    width: 100%;*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*    padding: 120px 40px 80px*/
/*}*/

.hero-copy {
	max-width: 680px
}

.hero .eyebrow {
	color: var(--teal-400)
}

.hero h1 {
	font-size: clamp(3rem, 7vw, 4rem);
	color: #fff;
	margin: 24px 0;
	letter-spacing: -.035em;
	line-height: .96
}

.hero h1 .ln {
	display: block;
	overflow: hidden
}

.hero h1 .ln span {
	display: block;
	transform: translateY(110%);
	animation: lineUp .9s cubic-bezier(.22, 1, .36, 1) forwards
}

.hero h1 .ln:nth-child(1) span {
	animation-delay: .7s
}

.hero h1 .ln:nth-child(2) span {
	animation-delay: .82s
}

.hero h1 .ln:nth-child(3) span {
	animation-delay: .94s
}

@keyframes lineUp {
	to {
		transform: translateY(0)
	}
}

.hero h1 .accent {
	position: relative;
	color: var(--teal-400);
	white-space: nowrap
}

.hero h1 .accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -.02em;
	height: .14em;
	background: var(--gold);
	border-radius: 6px;
	z-index: -1;
	transform: scaleX(0);
	transform-origin: left;
	animation: underline .9s 1.5s cubic-bezier(.22, 1, .36, 1) forwards
}

@keyframes underline {
	to {
		transform: scaleX(1)
	}
}

.hero p.lead {
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	color: rgba(255, 255, 255, .82);
	max-width: 540px;
	margin-bottom: 34px;
	opacity: 0;
	animation: fadeUp .9s 1.5s forwards
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp .9s 1.7s forwards
}

.hero-trust {
	margin-top: 38px;
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: .9rem;
	color: rgba(255, 255, 255, .75);
	opacity: 0;
	animation: fadeUp .9s 1.9s forwards
}

.hero-trust .badges {
	display: flex;
	gap: 8px
}

.hero-trust .badges i {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	display: grid;
	place-items: center;
	font-style: normal;
	font-size: 1rem
}

.hero-trust b {
	color: #fff
}

/* floating glass cards on the photo */
.float-card {
	position: absolute;
	z-index: 8;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(12px);
	border-radius: 18px;
	padding: 15px 20px 15px 16px;
	box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .7);
	display: flex;
	align-items: center;
	gap: 13px;
	opacity: 0
}

.float-card .dot {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	flex: none
}

.float-card b {
	font-family: var(--display);
	font-size: 1.15rem;
	display: block;
	color: var(--teal-900);
	line-height: 1.1
}

.float-card small {
	font-size: .78rem;
	color: var(--ink-soft)
}

.fc1 {
	top: 16%;
	right: 5%;
	animation: cardIn .8s 2s forwards, bob 6s 2.8s ease-in-out infinite
}

.fc1 .dot {
	background: var(--cyan-100);
	color: var(--teal-700)
}

.fc2 {
	top: 58%;
	right: 4%;
	animation: cardIn .8s 2.2s forwards, bob 7s 3s ease-in-out infinite
}

.fc2 .dot {
	background: #ffe9e6;
	color: var(--coral)
}

.fc3 {
	bottom: 9%;
	right: 16%;
	animation: cardIn .8s 2.4s forwards, bob 8s 3.2s ease-in-out infinite
}

.fc3 .dot {
	background: var(--gold-soft);
	color: #b67d00
}

@keyframes cardIn {
	0% {
		opacity: 0;
		transform: translateY(24px) scale(.9)
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1)
	}
}

@keyframes bob {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-12px)
	}
}

.scroll-cue {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 8;
	color: rgba(255, 255, 255, .6);
	font-size: .72rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0;
	animation: fadeUp 1s 2.6s forwards
}

.scroll-cue .line {
	width: 1px;
	height: 34px;
	background: linear-gradient(rgba(255, 255, 255, .7), transparent);
	animation: cue 1.8s ease-in-out infinite
}

@keyframes cue {

	0%,
	100% {
		transform: scaleY(.4);
		opacity: .4
	}

	50% {
		transform: scaleY(1);
		opacity: 1
	}
}

/* getintouch bar */
.touch-bar {
	position: relative;
	z-index: 5;
	background: var(--cyan-50);
	padding: 64px 0 14px
}

.touch-bar .wrap {
	padding-top: 0;
	padding-bottom: 0
}

.touch-inner {
	background: var(--teal-900);
	border-radius: var(--r-md);
	padding: 20px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: #fff;
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden
}

.touch-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px)
}

.touch-inner h3 {
	font-size: 1.4rem;
	position: relative
}

.touch-inner .stripes {
	display: flex;
	gap: 6px;
	position: relative
}

.touch-inner .stripes i {
	width: 34px;
	height: 6px;
	border-radius: 6px;
	display: block
}

.arrow-btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--coral);
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 1.3rem;
	flex: none;
	transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
	position: relative
}

.arrow-btn:hover {
	transform: translateX(6px) scale(1.08)
}

/* sections */
section {
	position: relative
}

.sec-pad {
	padding: 90px 0
}

.sec-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 56px
}

.sec-head h2 {
	font-size: clamp(1.9rem, 3.6vw, 2.9rem);
	color: var(--teal-900);
	margin: 16px 0 14px
}

.sec-head p {
	color: var(--ink-soft);
	font-size: 1.05rem
}

.sec-head .y {
	color: var(--coral)
}

/* journey */
.journey {
	background: var(--paper)
}

/* journey : Memphis-Zoo style expanding image strip */
.journey {
	background: var(--paper);
	padding-bottom: 0
}

.journey .sec-head {
	margin-bottom: 34px
}

.strip-outer {
	position: relative
}

.strip {
	display: flex;
	width: 100%;
	height: 78vh;
	min-height: 560px;
	overflow: hidden
}

.jpanel {
	position: relative;
	flex: 1 1 0;
	cursor: pointer;
	overflow: hidden;
	transition: flex-grow .7s cubic-bezier(.65, 0, .1, 1);
	min-width: 0
}

.jpanel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s cubic-bezier(.22, 1, .36, 1)
}

.jpanel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 12, 14, .25) 0%, rgba(8, 12, 14, .15) 45%, rgba(6, 30, 33, .9) 100%);
	transition: background .6s
}

.jpanel .pcontent {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 34px 26px;
	color: #fff
}

.jpanel .ptitle {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(1.1rem, 1.7vw, 1.7rem);
	letter-spacing: -.01em;
	line-height: 1.05;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
	transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.jpanel .prule {
	width: 0;
	height: 3px;
	background: var(--coral);
	margin: 16px auto 0;
	border-radius: 3px;
	transition: width .6s .1s cubic-bezier(.22, 1, .36, 1)
}

.jpanel .pdetail {
	max-width: 340px;
	overflow: hidden;
	opacity: 0;
	max-height: 0;
	transition: opacity .5s, max-height .7s, margin .6s
}

.jpanel .pdetail .jstat {
	font-size: 1.02rem;
	margin: 20px 0 14px;
	line-height: 1.5
}

.jpanel .pdetail .jstat b {
	font-family: var(--display);
	font-size: 1.5rem;
	color: var(--gold)
}

.jpanel .pdetail .desc {
	font-size: .92rem;
	color: rgba(255, 255, 255, .85);
	margin-bottom: 22px;
	line-height: 1.55
}

.jpanel .discover {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--coral);
	color: #fff;
	font-weight: 600;
	font-size: .9rem;
	padding: 13px 24px;
	border-radius: 100px;
	box-shadow: 0 14px 30px -12px rgba(255, 107, 94, .9);
	transition: transform .35s cubic-bezier(.34, 1.56, .64, 1)
}

.jpanel .discover:hover {
	transform: translateY(-3px) scale(1.04)
}

.jpanel .discover .ico {
	transition: transform .35s
}

.jpanel .discover:hover .ico {
	transform: translateX(5px)
}

/* active / hovered panel */
.strip:hover .jpanel {
	flex-grow: .6
}

.jpanel.active,
.strip:hover .jpanel:hover {
	flex-grow: 3.4
}

.jpanel.active img,
.strip .jpanel:hover img {
	transform: scale(1.06)
}

.jpanel.active::after,
.strip .jpanel:hover::after {
	background: linear-gradient(180deg, rgba(8, 12, 14, .2) 0%, rgba(6, 30, 33, .55) 55%, rgba(6, 30, 33, .92) 100%)
}

.jpanel.active .prule,
.strip .jpanel:hover .prule {
	width: 56px
}

.jpanel.active .pdetail,
.strip .jpanel:hover .pdetail {
	opacity: 1;
	max-height: 340px;
	margin-top: 6px
}

.jpanel.active .ptitle,
.strip .jpanel:hover .ptitle {
	transform: translateY(-4px)
}

/* strip nav arrows */
.strip-nav {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 6;
	display: flex
}

.strip-nav button {
	width: 64px;
	height: 64px;
	border: none;
	cursor: pointer;
	color: #fff;
	font-size: 1.4rem;
	background: var(--coral);
	display: grid;
	place-items: center;
	transition: background .3s, transform .3s
}

.strip-nav button:first-child {
	background: var(--teal-700)
}

.strip-nav button:hover {
	transform: translateY(-2px);
	filter: brightness(1.08)
}

@media(max-width:760px) {
	.strip {
		flex-direction: column;
		height: auto;
		min-height: 0
	}

	.jpanel {
		height: 130px;
		flex: none
	}

	.jpanel.active {
		height: 430px
	}

	.strip:hover .jpanel {
		flex-grow: 0
	}

	.jpanel.active .pdetail {
		max-height: 300px
	}
}

/* why */
.why {
	background: var(--cyan-50)
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center
}

.why-visual {
	position: relative
}

.why-visual img {
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
	aspect-ratio: 1/.86;
	object-fit: cover;
	width: 100%
}

.why-badge {
	position: absolute;
	bottom: -22px;
	right: -10px;
	background: #fff;
	border-radius: 18px;
	padding: 16px 20px;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	gap: 12px
}

.why-badge .ring {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: conic-gradient(var(--teal-500) 80%, var(--cyan-100) 0);
	display: grid;
	place-items: center;
	flex: none
}

.why-badge .ring i {
	width: 34px;
	height: 34px;
	background: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-style: normal;
	font-weight: 700;
	font-size: .78rem;
	color: var(--teal-700)
}

.why h2 {
	font-size: clamp(1.9rem, 3.6vw, 2.9rem);
	color: var(--teal-900);
	margin: 14px 0 18px
}

.why .lead {
	color: var(--ink-soft);
	margin-bottom: 24px
}

.why-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 13px
}

.why-list li {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	font-size: .96rem;
	color: var(--ink)
}

.why-list .chk {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--teal-600);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: .8rem;
	flex: none;
	margin-top: 2px
}

/* ecosystem */
.eco {
	background: var(--teal-900);
	color: #fff;
	overflow: hidden
}

.eco .sec-head h2 {
	color: #fff
}

.eco .sec-head p {
	color: rgba(255, 255, 255, .7)
}

.eco .eyebrow {
	color: var(--teal-400)
}

.eco .eyebrow::before {
	background: var(--coral)
}

.eco-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.ecard {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--r-md);
	padding: 30px 26px;
	transition: all .4s cubic-bezier(.22, 1, .36, 1);
	position: relative;
	overflow: hidden
}

.ecard::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--accent, var(--teal-400));
	transform: scaleX(0);
	transform-origin: left;
	transition: .45s
}

.ecard:hover {
	background: rgba(255, 255, 255, .09);
	transform: translateY(-6px)
}

.ecard:hover::after {
	transform: scaleX(1)
}

.ecard .eico {
	width: 54px;
	height: 54px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	font-size: 1.4rem;
	margin-bottom: 18px;
	background: var(--accent, var(--teal-500));
	color: #053b41
}

.ecard h4 {
	font-size: 1.2rem;
	margin-bottom: 10px
}

.ecard p {
	font-size: .9rem;
	color: rgba(255, 255, 255, .72)
}

/* support tabs */
.support {
	background: var(--paper)
}

.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 40px
}

.tab {
	font-family: var(--body);
	font-weight: 600;
	font-size: .9rem;
	padding: 11px 20px;
	border-radius: 100px;
	border: 1.5px solid var(--line);
	background: #fff;
	color: var(--ink-soft);
	cursor: pointer;
	transition: all .3s
}

.tab:hover {
	border-color: var(--teal-400);
	color: var(--teal-700)
}

.tab.active {
	background: var(--teal-700);
	border-color: var(--teal-700);
	color: #fff;
	box-shadow: 0 12px 26px -12px rgba(10, 108, 116, .8)
}

.panel-wrap {
	position: relative;
	background: linear-gradient(150deg, var(--cyan-50), #fff);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm)
}

.panel {
	display: none;
	grid-template-columns: 1.4fr 1fr;
	align-items: center;
	gap: 0
}

.panel.active {
	display: grid;
	animation: fadeUp .5s ease
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(14px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.panel-imgs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 18px
}

.panel-imgs img {
	border-radius: 14px;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1.2
}

.panel-body {
	padding: 44px 44px 44px 24px
}

.panel-body .eyebrow {
	margin-bottom: 14px
}

.panel-body h3 {
	font-size: 1.7rem;
	color: var(--teal-900);
	margin-bottom: 14px
}

.panel-body p {
	color: var(--ink-soft);
	margin-bottom: 22px
}

.panel-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal-700);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 1.2rem;
	transition: transform .4s
}

.panel-circle:hover {
	transform: scale(1.1) rotate(10deg)
}

/* stages */
.stages {
	background: #fff7ea;
	position: relative;
	overflow: hidden
}

.stages .deco {
	position: absolute;
	color: var(--gold);
	opacity: .5;
	font-weight: 800
}

.stages .d1 {
	top: 60px;
	left: 6%;
	font-size: 3rem;
	animation: spin 16s linear infinite
}

.stages .d2 {
	bottom: 50px;
	right: 8%;
	font-size: 2.2rem;
	color: var(--coral-soft);
	animation: bob 7s ease-in-out infinite
}

.stages-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 880px;
	margin: 0 auto
}

.stage {
	background: #fff;
	border-radius: var(--r-lg);
	padding: 38px 34px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: .4s;
	border: 1px solid var(--line)
}

.stage:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md)
}

.stage .savatar {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	margin: 0 auto 18px;
	background-size: cover;
	background-position: center;
	border: 4px solid #fff;
	box-shadow: var(--shadow-sm)
}

.stage h3 {
	font-size: 1.5rem;
	color: var(--teal-900);
	margin-bottom: 12px
}

.stage p {
	color: var(--ink-soft);
	font-size: .92rem;
	margin-bottom: 22px
}

/* testimonial */
.testi {
	background: var(--paper);
	text-align: center
}

.testi-card {
	max-width: 760px;
	margin: 0 auto;
	background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
	border-radius: var(--r-lg);
	padding: 50px 44px;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg)
}

.testi-card::before {
	content: "\201C";
	position: absolute;
	top: -20px;
	left: 30px;
	font-family: var(--display);
	font-size: 9rem;
	color: rgba(255, 255, 255, .12)
}

.testi-card p {
	font-size: 1.3rem;
	line-height: 1.5;
	font-family: var(--display);
	font-weight: 500;
	position: relative
}

.testi-who {
	margin-top: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px
}

.testi-who .ta {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	border: 3px solid rgba(255, 255, 255, .3)
}

.testi-who b {
	display: block;
	font-family: var(--display)
}

.testi-who small {
	color: rgba(255, 255, 255, .7)
}

/* stats */
.stats {
	background: var(--cyan-50)
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.stat {
	background: #fff;
	border-radius: var(--r-md);
	padding: 36px 26px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: .4s;
	border: 1px solid var(--line)
}

.stat:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md)
}

.stat .num {
	font-family: var(--display);
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--teal-700);
	line-height: 1
}

.stat .num.coral {
	color: var(--coral)
}

.stat .lbl {
	color: var(--ink-soft);
	font-size: .88rem;
	margin-top: 8px
}

.stat.apollo .num {
	font-size: 1.3rem;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%
}

/* posters */
.posters {
	background: var(--paper)
}

.poster-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.poster {
	border-radius: var(--r-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	position: relative;
	cursor: pointer;
	transition: .4s;
	aspect-ratio: 3/4;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
	color: #fff
}

.poster::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--pg);
	z-index: 0
}

.poster::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .55));
	z-index: 1
}

.poster>* {
	position: relative;
	z-index: 2
}

.poster .ptag {
	font-size: .68rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	opacity: .85;
	font-weight: 700
}

.poster h4 {
	font-size: 1.15rem;
	margin: 6px 0 14px
}

.poster .pbtn {
	font-size: .82rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	opacity: .92
}

.poster:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-lg)
}

.poster:hover .pbtn {
	gap: 12px
}

.p1 {
	--pg: linear-gradient(160deg, #1e6fb5, #0a3d6b)
}

.p2 {
	--pg: linear-gradient(160deg, #ff7a5c, #d83b2e)
}

.p3 {
	--pg: linear-gradient(160deg, #9b6bd6, #5e35a8)
}

.p4 {
	--pg: linear-gradient(160deg, #16a3ad, #0a6c74)
}

/* footer */
footer {
	background: var(--teal-900);
	color: #fff;
	padding: 70px 0 30px;
	position: relative;
	overflow: hidden
}

.foot-cross {
	position: absolute;
	font-weight: 800;
	color: rgba(255, 255, 255, .05);
	font-size: 14rem;
	right: -30px;
	top: -40px;
	line-height: 1
}

.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	position: relative
}

.foot-grid .logo {
	color: #fff;
	margin-bottom: 16px
}

.foot-grid .logo b {
	color: var(--coral)
}

.foot-about {
	color: rgba(255, 255, 255, .65);
	font-size: .92rem;
	max-width: 280px
}

.foot-col h5 {
	font-family: var(--display);
	font-size: 1rem;
	margin-bottom: 16px
}

.foot-col a {
	display: block;
	color: rgba(255, 255, 255, .65);
	font-size: .9rem;
	padding: 5px 0;
	transition: .25s
}

.foot-col a:hover {
	color: #fff;
	padding-left: 6px
}

.foot-bottom {
	margin-top: 46px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	color: rgba(255, 255, 255, .5);
	font-size: .84rem;
	position: relative
}

/* reveal */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal.in {
	opacity: 1;
	transform: none
}

.reveal.d1 {
	transition-delay: .08s
}

.reveal.d2 {
	transition-delay: .16s
}

.reveal.d3 {
	transition-delay: .24s
}

.reveal.d4 {
	transition-delay: .32s
}

.reveal.d5 {
	transition-delay: .4s
}

.reveal.d6 {
	transition-delay: .48s
}

/* responsive */
@media(max-width:980px) {

	.nav-links,
	.nav-cta {
		display: none
	}

	.burger {
		display: flex
	}

	.fc1 {
		top: 10%;
		right: 3%
	}

	.fc3 {
		display: none
	}

	.why-grid,
	.panel.active {
		grid-template-columns: 1fr
	}

	.journey-grid,
	.eco-grid,
	.stats-grid,
	.poster-row {
		grid-template-columns: 1fr 1fr
	}

	.stages-grid,
	.foot-grid {
		grid-template-columns: 1fr
	}

	.panel-body {
		padding: 30px
	}

	.hero-visual {
		order: -1;
		max-width: 420px;
		margin: 0 auto
	}

	.foot-grid {
		gap: 30px
	}
}

@media(max-width:560px) {

	.journey-grid,
	.eco-grid,
	.stats-grid,
	.poster-row {
		grid-template-columns: 1fr
	}

	.touch-inner {
		flex-direction: column;
		text-align: center
	}

	.hero h1 {
		font-size: 2.6rem
	}

	.hero-inner {
		padding: 120px 22px 90px
	}

	.float-card {
		display: none
	}

	.wrap {
		padding: 0 18px
	}
}

/* ===== CONTACT PAGE ===== */
.chero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #06181b;
	min-height: 62vh;
	display: flex;
	align-items: center;
	padding: 110px 0 70px
}

.chero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden
}

.chero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	transform: scale(1.12);
	opacity: 0;
	animation: heroZoom 2.2s .15s cubic-bezier(.22, 1, .36, 1) forwards
}

.chero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 18, 20, .95) 0%, rgba(5, 18, 20, .85) 32%, rgba(5, 18, 20, .5) 62%, rgba(5, 18, 20, .15) 100%),
		linear-gradient(180deg, rgba(5, 18, 20, .5), transparent 25%, rgba(5, 18, 20, .55))
}

.chero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .4;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 26px 26px
}

.chero-inner {
	/* position: relative;
	z-index: 5;
	max-width: 1200px;
	margin: 0 auto; */
	padding: 0 40px 28px;
	/* width: 100% */
}
.chero-inner>* {
	opacity: 0;
	animation: fadeUp .8s forwards
}

.chero-inner .eyebrow {
	animation-delay: .5s;
	color: var(--teal-400)
}

.chero-inner h1 {
	animation-delay: .62s
}

.chero-inner .lead {
	animation-delay: .74s
}

.chero-inner .chero-quick {
	animation-delay: .86s
}

.chero h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
	color: #fff;
	margin: 18px 0;
	max-width: 800px;
	letter-spacing: -.03em;
	line-height: 1.02
}

.chero h1 .accent {
	color: var(--teal-400);
	position: relative;
	white-space: nowrap
}

.chero h1 .accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -.02em;
	height: .13em;
	background: var(--gold);
	border-radius: 6px;
	z-index: -1;
	transform: scaleX(0);
	transform-origin: left;
	animation: underline .9s 1s cubic-bezier(.22, 1, .36, 1) forwards
}

.chero .lead {
	color: rgba(255, 255, 255, .82);
	max-width: 610px;
	font-size: 1.08rem;
	margin-bottom: 26px
}

.chero-quick {
	display: flex;
	gap: 14px;
	flex-wrap: wrap
}

.qchip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	color: #fff;
	padding: 11px 18px;
	border-radius: 100px;
	font-size: .92rem;
	font-weight: 500;
	transition: .3s
}

.qchip:hover {
	background: rgba(255, 255, 255, .16);
	transform: translateY(-2px)
}

.qchip .ico {
	font-style: normal
}

.contact-main {
	background: var(--paper)
}

.cm-grid {
	display: grid;
	grid-template-columns: 1.25fr .85fr;
	gap: 34px;
	align-items: start
}

.cform-card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 42px;
	box-shadow: var(--shadow-sm)
}

.cform-card h2 {
	font-size: 1.9rem;
	color: var(--teal-900);
	margin: 12px 0 8px
}

.cform-card>p {
	color: var(--ink-soft);
	margin-bottom: 26px
}

.cform {
	display: grid;
	gap: 16px
}

.cform .row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.field {
	display: flex;
	flex-direction: column;
	gap: 7px
}

.field label {
	font-size: .82rem;
	font-weight: 600;
	color: var(--teal-700);
	padding-bottom: 5px;
    display: inline-block;
}

.field input,
.field select,
.field textarea {
	font-family: var(--body);
	font-size: .95rem;
	color: var(--ink);
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 13px 15px;
	transition: .25s;
	width: 100%
}

.field textarea {
	resize: vertical;
	min-height: 118px
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--teal-500);
	box-shadow: 0 0 0 4px rgba(22, 163, 173, .12)
}

.cform .btn {
	justify-content: center;
	margin-top: 6px
}

.field-req .flabel {
	font-size: .82rem;
	font-weight: 600;
	color: var(--teal-700);
	margin-bottom: 4px;
	display: block
}

.checks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px 18px;
	margin-top: 4px
}

.check,
.checks span {
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
	font-size: 14px;
	color: var(--ink);
	user-select: none
}

.check input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0
}

.check .box {
	width: 22px;
	height: 22px;
	border: 1.5px solid var(--line);
	border-radius: 7px;
	background: #fff;
	display: grid;
	place-items: center;
	flex: none;
	transition: .25s
}

.check .box svg {
	width: 13px;
	height: 13px;
	stroke: #fff;
	stroke-width: 3;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0;
	transform: scale(.5);
	transition: .25s
}

.check:hover .box {
	border-color: var(--teal-500)
}

.check input:checked+.box {
	background: var(--teal-600);
	border-color: var(--teal-600)
}

.check input:checked+.box svg {
	opacity: 1;
	transform: scale(1)
}

.check input:focus-visible+.box {
	box-shadow: 0 0 0 4px rgba(22, 163, 173, .18)
}

.cdone {
	display: none;
	text-align: center;
	padding: 44px 20px
}

.cdone.show {
	display: block;
	animation: fadeUp .5s
}

.cdone .tick {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: var(--teal-600);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 2rem;
	margin: 0 auto 18px
}

.cdone h3 {
	font-size: 1.5rem;
	color: var(--teal-900);
	margin-bottom: 8px
}

.cdone p {
	color: var(--ink-soft)
}

.cinfo {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.icard {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 24px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: .35s
}

.icard:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md)
}

.icard .iico {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	flex: none;
	background: var(--cyan-100);
	color: var(--teal-700)
}

.icard.coral .iico {
	background: #ffe9e6;
	color: var(--coral)
}

.icard.gold .iico {
	background: var(--gold-soft);
	color: #b67d00
}

.icard h4 {
	font-size: 1.05rem;
	color: var(--teal-900);
	margin-bottom: 5px
}

.icard a,
.icard p {
	color: var(--ink-soft);
	font-size: .92rem;
	line-height: 1.5;
	word-break: break-word;
	display: block
}

.icard a:hover {
	color: var(--teal-700)
}

.socials {
	display: flex;
	gap: 10px;
	margin-top: 4px
}

.socials a {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--teal-700);
	color: #fff;
	transition: .3s
}

.socials a:hover {
	transform: translateY(-3px);
	background: var(--coral)
}

.socials svg {
	width: 19px;
	height: 19px;
	fill: currentColor
}

.mapcard {
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm)
}

.mapcard .mwrap {
	position: relative
}

.mapcard svg {
	display: block;
	width: 100%;
	height: 172px
}

.contact-section-iframe {
	width: 100%;
	height: 220px;
	border-radius: 20px 20px 0 0;
}

.mapcard .pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -100%);
	font-size: 1.7rem;
	filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .3));
	animation: bob 3s ease-in-out infinite
}

.mapcard .mlabel {
	padding: 14px 18px;
	background: var(--cream);
	font-size: .86rem;
	color: var(--ink-soft)
}

.mapcard .mlabel b {
	color: var(--teal-900);
	font-family: var(--display);
	display: block;
	margin-bottom: 2px
}

.offices {
	background: var(--cyan-50)
}

.offices-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.office {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 26px;
	transition: .4s;
	position: relative;
	overflow: hidden
}

.office::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--oc, var(--teal-500));
	transform: scaleX(0);
	transform-origin: left;
	transition: .45s
}

.office:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md)
}

.office:hover::before {
	transform: scaleX(1)
}

.office .opin {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--cyan-100);
	color: var(--teal-700);
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	margin-bottom: 14px
}

.office h4 {
	font-size: 1.1rem;
	color: var(--teal-900);
	margin-bottom: 8px
}

.office .oaddr {
	color: var(--ink-soft);
	font-size: .9rem;
	line-height: 1.55;
	margin-bottom: 12px
}

.office .ophones {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-top: auto
}

.office .ophones a {
	font-size: .88rem;
	color: var(--teal-700);
	font-weight: 600
}

.office .ophones a:hover {
	color: var(--coral)
}

.blue-bg.office {
	background: var(--cyan-100);
}

.office.blue-bg .opin {
	background: #fff;
}


.cta-band {
	background: var(--teal-900);
	padding: 62px 0;
	position: relative;
	overflow: hidden
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0 16px, transparent 16px 32px)
}

.cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap
}

.cta-inner h3 {
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	max-width: 520px;
	margin-top: 6px
}

.cta-inner .eyebrow {
	color: var(--teal-400)
}

.cta-form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap
}

.cta-form input {
	font-family: var(--body);
	border: none;
	border-radius: 100px;
	padding: 15px 22px;
	min-width: 240px;
	font-size: .95rem
}

.cta-form input:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, .18)
}

.field-req .wpcf7-form-control-wrap{
	display:block;
}

.field-req .wpcf7-checkbox{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap: 8px 40px;
}

.field-req .wpcf7-list-item{
	margin:0;
	display:block;
}

.field-req .wpcf7-list-item label{
	display:flex;
	align-items:center;
	cursor:pointer;
	font-weight:500;
}

.field-req input[type="checkbox"]{
	appearance:none;
	-webkit-appearance:none;

	width:28px;
	height:28px;

	border:1px solid #d9e3e8;
	border-radius:10px;
	background:#fff;

	cursor:pointer;
	position:relative;
	transition:.25s ease;
}

.field-req input[type="checkbox"]:checked{
	background:#0e8089;
	border-color:#0e8089;
}

.field-req input[type="checkbox"]:checked::after{
	content:"✓";
	position:absolute;
	color:#fff;
	font-size:16px;
	font-weight:700;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}


@media(max-width:900px) {
	.cm-grid {
		grid-template-columns: 1fr
	}

	.offices-grid {
		grid-template-columns: 1fr 1fr
	}

	.cta-inner {
		flex-direction: column;
		align-items: flex-start
	}
}

@media(max-width:560px) {
	.chero-media img {
    	object-position: 90% center;
	}
	
	.field-req .wpcf7-checkbox {
		display: flex;
		flex-direction: column;
	}
	
	
	.offices-grid {
		grid-template-columns: 1fr
	}

	.cform .row2 {
		grid-template-columns: 1fr
	}

	.checks {
		grid-template-columns: 1fr
	}

	.cform-card {
		padding: 26px
	}

	.cta-form input {
		min-width: 100%
	}
}