:root {
	--navy: #071343;
	--text: #10183f;
	--muted: #5d668a;
	--line: #e8ebf5;
	--purple: #7446ff;
	--cyan: #23c7d9;
	--blue: #3483ff;
	--bg: #f8faff;
	--gradient: linear-gradient(135deg, var(--purple), var(--blue) 55%, var(--cyan));
	--radius: 22px;
	--shadow: 0 24px 80px rgba(20, 30, 80, .12);
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	background: #fff;
	color: var(--text)
}

a {
	text-decoration: none;
	color: inherit
}

.site-header {
	height: 92px;
	padding: 0 7vw;
	display: flex;
	align-items: center;
	gap: 42px;
	position: fixed;
	inset: 0 0 auto;
	z-index: 20;
	background: rgba(255, 255, 255, .76);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(232, 235, 245, .6)
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--gradient);
	color: white;
	font-weight: 900;
	font-size: 25px
}

.brand strong {
	letter-spacing: 7px;
	font-size: 22px
}

.brand small {
	display: block;
	letter-spacing: 8px;
	font-size: 9px;
	font-weight: 900;
	color: var(--muted)
}

.nav {
	margin-left: auto;
	display: flex;
	gap: 42px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 900;
	color: var(--navy)
}

.nav a:hover {
	color: var(--purple)
}

.menu-toggle {
	display: none
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 16px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 900;
	border: 1px solid transparent
}

.btn-primary {
	background: var(--gradient);
	color: white
}

.btn-outline {
	border-color: var(--purple);
	color: var(--purple);
	background: white
}

.btn-light {
	background: rgba(255, 255, 255, .15);
	border-color: rgba(255, 255, 255, .7);
	color: white
}

.hero {
	min-height: 760px;
	padding: 90px 7vw 70px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	align-items: center;
	position: relative;
	overflow: hidden
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #fff 0 38%, rgba(255, 255, 255, .72) 50%, transparent 70%), radial-gradient(circle at 76% 20%, #ffe3bd, transparent 24%), linear-gradient(135deg, #ecf7ff, #f7edff);
	z-index: -2
}

.hero-content {
	max-width: 550px
}

.eyebrow,
.label {
	color: var(--purple);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .05em
}

.hero h1 {
	font-size: clamp(44px, 5.25vw, 74px);
	line-height: .98;
	margin: 20px 0 28px;
	color: var(--navy);
	letter-spacing: -.06em
}

.hero h1 span {
	background: var(--gradient);
	-webkit-background-clip: text;
	color: transparent
}

.hero p,
.section-copy p,
.news-card p {
	color: var(--muted);
	font-weight: 500;
	line-height: 1.8
}

.actions {
	display: flex;
	gap: 18px;
	margin-top: 34px
}

.hero-visual {
	position: relative;
	min-height: 590px
	width: calc(100% + 40px);
    margin-right: -110px;
}

.asset-placeholder {
	border: 1px dashed #b8c0dd;
	background: linear-gradient(135deg, #eef4ff, #fbf7ff);
	color: #8a92b2;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 800;
	border-radius: var(--radius);
	min-height: 180px
}

.hero-img {
	width: 100%;
	height: 600px;
	background-image: url("assets/hero-visual.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
    border: none;
    box-shadow: none;
	
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 50%
    );

    mask-image: linear-gradient(
        to right,
        transparent 5%,
        black 50%
    );
}

.icon-fiber {
    background: linear-gradient(135deg, #7c4dff, #4fc3f7);
}

.icon-peering {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.icon-datacenter {
    background: linear-gradient(135deg, #00d26a, #00a651);
}

.icon-redundancy {
    background: linear-gradient(135deg, #ff7b00, #ff3d00);
}

.floating-card {
	position: absolute;
	right: 2vw;
	top: 220px;
	width: 245px;
	padding: 26px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--shadow)
}

.floating-card div {
	display: flex;
	gap: 16px;
	align-items: center;
	margin: 17px 0;
	font-size: 13px;
	font-weight: 800
}

.floating-card i {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
	font-size: 16px;
    line-height: 1;
    color: white;
    flex-shrink: 0;
}

.trusted {
	padding: 24px 7vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-block: 1px solid var(--line);
	color: var(--navy)
}

.trusted span {
	color: var(--muted);
	font-size: 13px
}

.trusted strong {
	font-size: 18px
}

.section-grid {
	padding: 70px 7vw;
	display: grid;
	grid-template-columns: .85fr 1.05fr .58fr;
	gap: 45px;
	align-items: center;
	background: var(--bg)
}

h2 {
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.06;
	margin: 12px 0 22px;
	color: var(--navy);
	letter-spacing: -.04em
}

.map-card {
	position: relative;
	min-height: 430px
}

.map-card .map-img {
	position: absolute;
	height: 500px;
	inset: 0;
	background-image: url("assets/map-france.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
    border: none;
    box-shadow: none;
	opacity: .9
}

.map-card svg {
	position: absolute;
	inset: 20px;
	width: 90%;
	height: 90%;
	overflow: visible
}

.map-card path {
	fill: none;
	stroke: black;
	stroke-width: 4
}

.map-card circle {
	fill: #fff;
	stroke: #6844ff;
	stroke-width: 5
}

.map-card text {
	fill: #000;
	font-weight: 900;
	font-size: 22px
}

.map-card .map-card-circle-yellow circle {
	fill: yellow;
	stroke: #6844ff;
	stroke-width: 5
}

.map-card .map-card-circle-green circle {
	fill: green;
	stroke: #6844ff;
	stroke-width: 5
}

.presence-card {
	padding: 32px;
	border-radius: 20px;
	background: white;
	box-shadow: var(--shadow)
}

.presence-card li {
	list-style: none;
	margin: 20px 0;
	font-weight: 800
}

.presence-card li:before {
	content: "⌖";
	color: var(--purple);
	margin-right: 12px
}

.presence-card ul {
	padding: 0;
	margin: 20px 0 30px
}

.why {
	padding: 65px 7vw
}

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

.cards article {
	padding: 36px 28px;
	border: 1px solid var(--line);
	border-radius: 14px;
	text-align: center;
	background: white
}

.cards span {
	font-size: 44px
}

.cards p {
	color: var(--muted);
	line-height: 1.7
}

.vision {
	margin: 0 7vw;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border-radius: 24px;
	background: var(--gradient);
	color: white
}

.vision>div:first-child {
	padding: 54px
}

.vision h2 {
	color: white
}

.vision li {
	margin: 14px 0
}

.vision-img {
	background-image: url("assets/as197676.png");
	background-size: cover;
	background-height: 10 0px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
    border: none;
    box-shadow: none;
	min-height: 390px;
	color: white
}

.stats {
	margin: 0 7vw;
	padding: 55px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	border-radius: 18px;
	background: linear-gradient(135deg, #09104a, #10165f);
	color: white
}

.stats b {
	display: block;
	font-size: 30px
}

.stats span {
	font-size: 13px;
	line-height: 1.6
}

.news {
	padding: 70px 7vw
}

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

.news-card,
.connect {
	padding: 22px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(20, 30, 80, .09)
}

.news-card .asset-placeholder {
	min-height: 150px;
	margin: -22px -22px 20px;
	border-radius: 14px 14px 0 0
}

.news-card small {
	color: var(--purple);
	font-weight: 900;
	text-transform: uppercase
}

.news-card a {
	color: var(--blue);
	font-weight: 900;
	font-size: 12px
}

.connect {
	background: var(--gradient);
	color: white;
	padding: 36px
}

.footer {
	padding: 45px 7vw;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 30px;
	background: #f6f8ff;
	color: var(--muted)
}

.footer .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 16px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 900;
	border: 1px solid transparent
}	

.footer .btn-outline {
	border-color: var(--purple);
	color: var(--purple);
	background: white
}

.footer a {
	display: block;
	margin: 10px 0
}

.footer strong {
	color: var(--navy)
}

@media(max-width:980px) {
	.site-header {
		padding: 0 24px
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
		border: 0;
		background: var(--navy);
		color: white;
		border-radius: 10px;
		padding: 10px 13px
	}

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

	.nav.open {
		display: flex;
		position: absolute;
		top: 92px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: white;
		padding: 24px
	}

	.hero,
	.section-grid,
	.vision {
		grid-template-columns: 1fr
	}

	.hero {
		padding: 125px 24px 45px
	}

	.hero-visual {
		min-height: 420px
	}

	.hero-img {
		inset: 0;
		border-radius: 28px
	}

	.floating-card {
		position: relative;
		right: auto;
		top: 170px;
		margin: auto
	}

	.trusted,
	.cards,
	.stats,
	.news-grid,
	.footer {
		grid-template-columns: 1fr;
		display: grid
	}

	.trusted {
		align-items: start
	}

	.section-grid,
	.why,
	.news {
		padding-left: 24px;
		padding-right: 24px
	}

	.vision,
	.stats {
		margin-left: 24px;
		margin-right: 24px
	}

	.actions {
		flex-wrap: wrap
	}
}