:root {
	--bg: #05060c;
	--bg-2: #080a14;
	--surface: rgba(255, 255, 255, 0.035);
	--surface-2: rgba(255, 255, 255, 0.06);
	--line: rgba(180, 200, 255, 0.12);
	--cyan: #2de2e6;
	--cyan-dim: #1aa8b8;
	--purple: #9b5cff;
	--magenta: #c44dff;
	--navy: #10183a;
	--text: #eef2ff;
	--muted: #9aa3b8;
	--white: #ffffff;
	--shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	--radius: 22px;
	--font: "Outfit", system-ui, sans-serif;
	--grad: linear-gradient(120deg, var(--purple) 0%, var(--cyan) 100%);
	--max: 1180px;
	--header-bg: rgba(5, 6, 12, 0.72);
	--chip-bg: rgba(8, 10, 20, 0.82);
	--menu-bg: rgba(8, 10, 20, 0.96);
	--on-grad: #071018;
	--router-from: #12162a;
	--router-to: #0a0c16;
	--router-body: #171c32;
	--logo-filter: drop-shadow(0 0 0.7px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 14px rgba(45, 226, 230, 0.28));
	--hero-logo-filter: drop-shadow(0 0 0.8px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 28px rgba(45, 226, 230, 0.28)) drop-shadow(0 0 48px rgba(155, 92, 255, 0.2));
	--glow-a: rgba(155, 92, 255, 0.22);
	--glow-b: rgba(45, 226, 230, 0.16);
	--glow-c: rgba(196, 77, 255, 0.12);
	--grid-line: rgba(255, 255, 255, 0.04);
	--grid-opacity: 0.18;
	--color-scheme: dark;
	--theme-icon: #eef2ff;
}

html[data-theme="light"] {
	--bg: #f3f5fb;
	--bg-2: #ffffff;
	--surface: rgba(255, 255, 255, 0.78);
	--surface-2: #ffffff;
	--line: rgba(20, 28, 52, 0.1);
	--cyan: #0891a3;
	--cyan-dim: #0b7c8c;
	--purple: #7b3fe0;
	--magenta: #a33ad4;
	--text: #141a2e;
	--muted: #5c6578;
	--white: #141a2e;
	--shadow: 0 18px 40px rgba(20, 30, 60, 0.08);
	--header-bg: rgba(243, 245, 251, 0.82);
	--chip-bg: rgba(255, 255, 255, 0.9);
	--menu-bg: rgba(255, 255, 255, 0.98);
	--router-from: #e8ecf6;
	--router-to: #dfe5f2;
	--router-body: #cfd6e8;
	--logo-filter: drop-shadow(0 1px 6px rgba(16, 24, 58, 0.1));
	--hero-logo-filter: drop-shadow(0 8px 24px rgba(123, 63, 224, 0.12));
	--glow-a: rgba(123, 63, 224, 0.12);
	--glow-b: rgba(8, 145, 163, 0.1);
	--glow-c: rgba(163, 58, 212, 0.08);
	--grid-line: rgba(20, 28, 52, 0.05);
	--grid-opacity: 0.7;
	--color-scheme: light;
	--theme-icon: #141a2e;
}

html {
	color-scheme: var(--color-scheme);
	scroll-behavior: smooth;
}

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

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

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

button,
.btn {
	font-family: inherit;
}

.bg-glow {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(900px 500px at 12% -10%, var(--glow-a), transparent 55%),
		radial-gradient(800px 480px at 92% 8%, var(--glow-b), transparent 50%),
		radial-gradient(700px 500px at 50% 110%, var(--glow-c), transparent 55%);
}

.bg-grid {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: var(--grid-opacity);
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.wrap {
	width: min(var(--max), calc(100% - 2rem));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(18px);
	background: var(--header-bg);
	border-bottom: 1px solid var(--line);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.brand img {
	height: 38px;
	width: auto;
	filter: var(--logo-filter);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--muted);
}

.nav-links a:hover {
	color: var(--white);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: 12px;
	cursor: pointer;
	place-items: center;
	gap: 5px;
}

.nav-toggle span {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--text);
	border-radius: 2px;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.theme-toggle {
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: 12px;
	cursor: pointer;
	display: grid;
	place-items: center;
	color: var(--theme-icon);
	flex-shrink: 0;
}

.theme-toggle svg {
	width: 20px;
	height: 20px;
}

.theme-toggle .icon-moon {
	display: none;
}

html[data-theme="light"] .theme-toggle .icon-sun {
	display: none;
}

html[data-theme="light"] .theme-toggle .icon-moon {
	display: block;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 0;
	border-radius: 999px;
	padding: 0.85rem 1.35rem;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--grad);
	color: var(--on-grad);
	box-shadow: 0 10px 30px rgba(45, 226, 230, 0.18);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--line);
}

.hero {
	position: relative;
	z-index: 1;
	padding: 4.5rem 0 3.5rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3rem;
	align-items: center;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--cyan);
	margin-bottom: 1.1rem;
}

.kicker::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 12px var(--cyan);
}

h1 {
	font-size: clamp(2.1rem, 5vw, 3.7rem);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 1.1rem;
}

.grad-text {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lede {
	font-size: 1.15rem;
	color: var(--muted);
	max-width: 38rem;
	margin-bottom: 1.8rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 2rem;
}

.hero-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
}

.point {
	padding: 0.9rem 1rem;
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: 16px;
}

.point strong {
	display: block;
	font-size: 0.95rem;
}

.point span {
	font-size: 0.82rem;
	color: var(--muted);
}

.hero-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 340px;
}

.orbit {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(45, 226, 230, 0.15);
}

.orbit-1 { width: 280px; height: 280px; animation: spin 22s linear infinite; }
.orbit-2 { width: 360px; height: 360px; animation: spin 34s linear infinite reverse; }
.orbit-3 { width: 440px; height: 440px; opacity: 0.5; }

.orbit span {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 16px var(--cyan);
	top: 0;
	left: 50%;
	translate: -50% -50%;
}

.orbit-2 span {
	background: var(--purple);
	box-shadow: 0 0 16px var(--purple);
	top: auto;
	bottom: 18%;
	left: 8%;
}

.hero-logo {
	position: relative;
	z-index: 1;
	width: min(100%, 380px);
	filter: var(--hero-logo-filter);
}

.hero-chip {
	position: absolute;
	z-index: 2;
	padding: 0.7rem 0.95rem;
	border-radius: 14px;
	background: var(--chip-bg);
	border: 1px solid var(--line);
	backdrop-filter: blur(10px);
	font-size: 0.85rem;
	box-shadow: var(--shadow);
}

.chip-speed { top: 12%; right: 0; }
.chip-city { bottom: 14%; left: 0; }
.chip-city strong,
.chip-speed strong {
	display: block;
	font-size: 0.78rem;
	color: var(--muted);
	font-weight: 500;
}

section {
	position: relative;
	z-index: 1;
	padding: 4.5rem 0;
	scroll-margin-top: 5rem;
}

.section-head {
	max-width: 640px;
	margin-bottom: 2.4rem;
}

.section-head h2,
.wifi-copy h2,
.cta-box h2 {
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0.35rem 0 0.7rem;
}

.section-head p,
.wifi-copy p {
	color: var(--muted);
}

.eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--purple);
}

.promise {
	padding-top: 0;
}

.promise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.4rem;
}

.icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
	background: linear-gradient(160deg, rgba(155, 92, 255, 0.2), rgba(45, 226, 230, 0.12));
	color: var(--cyan);
}

.icon svg {
	width: 22px;
	height: 22px;
}

.card h3 {
	font-size: 1.15rem;
	margin-bottom: 0.4rem;
}

.card p {
	color: var(--muted);
	font-size: 0.95rem;
}

.plans-carousel {
	position: relative;
}

.plans-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.8rem 0 0.4rem;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
}

.plans-scroll::-webkit-scrollbar {
	display: none;
}

.plans-grid {
	display: flex;
	gap: 0.9rem;
	width: max-content;
	align-items: stretch;
}

.plan {
	position: relative;
	padding: 1.35rem 1.15rem 1.2rem;
	display: flex;
	flex-direction: column;
	width: min(78vw, 280px);
	flex: 0 0 min(78vw, 280px);
	scroll-snap-align: start;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.plans-arrow {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	z-index: 3;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--menu-bg);
	color: var(--text);
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: var(--shadow);
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.plans-arrow svg {
	width: 20px;
	height: 20px;
}

.plans-prev { left: -6px; }
.plans-next { right: -6px; }

.plans-arrow.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.plan:hover {
	transform: translateY(-4px);
	border-color: rgba(45, 226, 230, 0.35);
}

.plan.featured {
	background:
		linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
		var(--grad) border-box;
	border: 1px solid transparent;
	box-shadow: 0 16px 40px rgba(155, 92, 255, 0.16);
}

.badge {
	position: absolute;
	top: -11px;
	left: 50%;
	translate: -50% 0;
	background: var(--grad);
	color: var(--on-grad);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	white-space: nowrap;
}

.plan-speed {
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.plan-speed small {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--muted);
	margin-left: 0.15rem;
}

.plan-name {
	color: var(--muted);
	font-size: 0.85rem;
	margin-bottom: 1rem;
}

.plan-tag {
	display: inline-block;
	margin: 0.2rem 0 0.15rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cyan);
}

.plan-price {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
}

.plan-price span {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--muted);
}

.plan-pay {
	margin-top: 0.35rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
}

.plan-copy {
	font-size: 0.88rem;
	color: var(--muted);
	margin: 1.1rem 0 1.3rem;
	flex: 1;
	line-height: 1.5;
}

.plan ul {
	list-style: none;
	margin: 1.1rem 0 1.3rem;
	flex: 1;
}

.plan li {
	font-size: 0.88rem;
	color: var(--muted);
	padding: 0.28rem 0 0.28rem 1.15rem;
	position: relative;
}

.plan li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cyan);
}

.plan .btn {
	width: 100%;
}

.note {
	margin-top: 1.2rem;
	font-size: 0.85rem;
	color: var(--muted);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.benefit {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
}

.wifi {
	padding-top: 2rem;
}

.wifi-panel {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 1.5rem;
	align-items: center;
	padding: 1.6rem;
	border-radius: 28px;
	border: 1px solid var(--line);
	background:
		radial-gradient(600px 240px at 90% 0%, rgba(45, 226, 230, 0.12), transparent 50%),
		var(--surface);
}

.wifi-list {
	display: grid;
	gap: 0.85rem;
	margin: 1.3rem 0 1.6rem;
}

.wifi-list div {
	display: grid;
	grid-template-columns: 10px 1fr;
	gap: 0.7rem;
	align-items: start;
	color: var(--muted);
}

.wifi-list b {
	color: var(--text);
	font-weight: 600;
}

.dot {
	width: 10px;
	height: 10px;
	margin-top: 0.45rem;
	border-radius: 50%;
	background: var(--grad);
}

.wifi-art {
	display: grid;
	place-items: center;
	min-height: 280px;
}

.router {
	width: min(100%, 320px);
	aspect-ratio: 1.4;
	border-radius: 28px;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, var(--router-from), var(--router-to));
	position: relative;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.router::before,
.router::after {
	content: "";
	position: absolute;
	left: 50%;
	translate: -50% 0;
	border-radius: 50%;
	border: 1px solid rgba(45, 226, 230, 0.25);
}

.router::before {
	width: 180px;
	height: 180px;
	top: -70px;
	animation: pulse 3.4s ease-out infinite;
}

.router::after {
	width: 260px;
	height: 260px;
	top: -110px;
	animation: pulse 3.4s ease-out infinite 0.6s;
}

.router-body {
	position: absolute;
	inset: auto 18% 18% 18%;
	height: 58px;
	border-radius: 16px;
	background: var(--router-body);
	border: 1px solid var(--line);
}

.router-body i {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 10px var(--cyan);
	top: 50%;
	left: 18px;
	translate: 0 -50%;
}

.antenna {
	position: absolute;
	bottom: 72px;
	width: 8px;
	height: 70px;
	border-radius: 8px;
	background: linear-gradient(#9b5cff, #2de2e6);
}

.a1 { left: 28%; }
.a2 { right: 28%; }

.local {
	padding-bottom: 2rem;
}

.local-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.stat {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.cta {
	padding-top: 1rem;
}

.cta-box {
	text-align: center;
	padding: 3rem 1.5rem;
	border-radius: 32px;
	border: 1px solid var(--line);
	background:
		radial-gradient(500px 180px at 50% 0%, rgba(155, 92, 255, 0.18), transparent 60%),
		var(--surface);
}

.cta-box p {
	color: var(--muted);
	margin-bottom: 1.4rem;
}

.cta-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.legal {
	position: relative;
	z-index: 1;
	padding: 3rem 0 5rem;
}

.legal-wrap {
	width: min(760px, calc(100% - 2rem));
	margin-inline: auto;
}

.legal-kicker {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--purple);
	margin-bottom: 0.6rem;
}

.legal h1 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin-bottom: 1.2rem;
}

.legal h2 {
	font-size: 1.12rem;
	letter-spacing: -0.02em;
	margin: 2.1rem 0 0.75rem;
	line-height: 1.35;
	scroll-margin-top: 5rem;
}

.legal p,
.legal li {
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.legal p + p {
	margin-top: 0.85rem;
}

.legal a {
	color: var(--cyan);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal a:hover {
	color: var(--text);
}

.legal ul,
.legal ol {
	margin: 0.7rem 0 0.4rem 1.15rem;
}

.legal li + li {
	margin-top: 0.4rem;
}

.legal-toc {
	margin: 1.4rem 0 2rem;
	padding: 1.1rem 1.2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.legal-toc p {
	color: var(--text);
	font-weight: 600;
	margin-bottom: 0.55rem;
}

.legal-toc ol {
	margin-left: 1.2rem;
}

.legal-toc a {
	text-decoration: none;
}

.legal-back {
	display: inline-flex;
	margin-bottom: 1.2rem;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.legal-back:hover {
	color: var(--cyan);
}

.site-footer {
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--line);
	padding: 2.4rem 0 1.6rem;
	color: var(--muted);
	font-size: 0.9rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.8rem;
}

.site-footer h3 {
	color: var(--text);
	font-size: 0.95rem;
	margin-bottom: 0.7rem;
}

.site-footer ul {
	list-style: none;
}

.site-footer li + li {
	margin-top: 0.35rem;
}

.site-footer a:hover {
	color: var(--cyan);
}

.footer-brand img {
	height: 34px;
	width: auto;
	margin-bottom: 0.7rem;
	filter: var(--logo-filter);
}

.copy {
	border-top: 1px solid var(--line);
	padding-top: 1.1rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: 0.8rem;
}

.wa {
	position: fixed;
	right: 1.1rem;
	bottom: 1.1rem;
	z-index: 50;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--grad);
	color: var(--on-grad);
	box-shadow: 0 12px 30px rgba(45, 226, 230, 0.28);
}

.wa svg {
	width: 26px;
	height: 26px;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes pulse {
	0% { opacity: 0.7; transform: scale(0.82); }
	100% { opacity: 0; transform: scale(1.15); }
}

@media (max-width: 1020px) {
	.hero-grid,
	.wifi-panel,
	.local-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.orbit-3 { display: none; }
}

@media (max-width: 760px) {
	.nav-toggle { display: grid; place-items: center; }

	.nav-links {
		display: none;
		position: absolute;
		top: 68px;
		left: 1rem;
		right: 1rem;
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem;
		background: var(--menu-bg);
		border: 1px solid var(--line);
		border-radius: 16px;
	}

	.nav.open .nav-links { display: flex; }

	.nav-actions .btn { display: none; }

	.plans-prev { left: 4px; }
	.plans-next { right: 4px; }

	.hero-points,
	.promise-grid,
	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.hero { padding-top: 2.4rem; }

	.orbit-2 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.orbit, .orbit-1, .orbit-2, .router::before, .router::after {
		animation: none;
	}
}
