:root {
	--bg: #061120;
	--bg-2: #071a2b;
	--panel: rgba(14, 31, 49, 0.82);
	--panel-2: rgba(19, 43, 65, 0.72);
	--text: #f8fafc;
	--muted: #a9b9ca;
	--line: rgba(157, 188, 216, 0.18);
	--cyan: #10d3d7;
	--cyan-soft: rgba(16, 211, 215, 0.18);
	--orange: #ff7816;
	--green: #5ee6a8;
	--danger: #ff5a3d;
	--max: 1220px;
	--shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 12% 10%, rgba(16, 211, 215, 0.16), transparent 28rem),
		radial-gradient(circle at 85% 78%, rgba(255, 120, 22, 0.12), transparent 24rem),
		linear-gradient(180deg, #061120 0%, #071827 45%, #04101c 100%);
	color: var(--text);
	font-family: "Aptos", "Segoe UI", sans-serif;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	opacity: 0.36;
	background-image:
		linear-gradient(30deg, rgba(120, 170, 200, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(120, 170, 200, 0.12) 87.5%, rgba(120, 170, 200, 0.12)),
		linear-gradient(150deg, rgba(120, 170, 200, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(120, 170, 200, 0.12) 87.5%, rgba(120, 170, 200, 0.12));
	background-position: 0 0, 0 0;
	background-size: 64px 110px;
	mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

a {
	color: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: var(--max);
	margin: 0 auto;
	padding: 22px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
}

.brand,
.mini-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.brand-mark,
.mini-mark {
	position: relative;
	width: 31px;
	height: 31px;
	border: 3px solid var(--orange);
	border-radius: 9px;
	transform: rotate(30deg);
}

.mini-mark {
	width: 18px;
	height: 18px;
	border-width: 2px;
	border-radius: 5px;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span,
.mini-mark::before,
.mini-mark::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--orange);
	border-radius: 3px;
}

.mini-mark::before,
.mini-mark::after {
	width: 5px;
	height: 5px;
	border-radius: 2px;
}

.brand-mark::before {
	top: -7px;
	left: 8px;
}

.brand-mark::after {
	right: -7px;
	bottom: 8px;
}

.brand-mark span {
	left: 8px;
	bottom: -7px;
}

.mini-mark::before {
	top: -5px;
	left: 5px;
}

.mini-mark::after {
	right: -5px;
	bottom: 5px;
}

.brand-name {
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.nav,
.site-footer nav {
	display: flex;
	gap: 30px;
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
}

.nav a,
.site-footer nav a {
	text-decoration: none;
	opacity: 0.88;
}

.nav a:hover,
.site-footer nav a:hover {
	opacity: 1;
	color: var(--orange);
}

.header-cta,
.button,
.pricing-grid button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 7px;
	border: 0;
	font-size: 14px;
	font-weight: 900;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease;
}

.header-cta,
.button-primary {
	background: var(--orange);
	color: #ffffff;
	box-shadow: 0 14px 42px rgba(255, 120, 22, 0.22);
}

.button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.04);
	color: #ffffff;
}

.header-cta:hover,
.button:hover,
.pricing-grid button:hover {
	transform: translateY(-2px);
}

.pulse {
	width: 16px;
	height: 16px;
	margin-right: 10px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: skewX(-18deg);
}

.hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(16, 211, 215, 0.18);
	background:
		radial-gradient(circle at 44% 64%, rgba(16, 211, 215, 0.16), transparent 24rem),
		linear-gradient(180deg, rgba(6, 17, 32, 0.3), rgba(3, 13, 24, 0.8));
}

.hero-inner {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 72px;
	align-items: center;
	max-width: var(--max);
	min-height: 705px;
	margin: 0 auto;
	padding: 52px 24px 92px;
}

.hero-copy h1 {
	max-width: 520px;
	margin-bottom: 22px;
	font-size: clamp(46px, 5.4vw, 68px);
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.hero-copy h1 span {
	display: block;
	color: var(--orange);
}

.hero-copy p {
	max-width: 510px;
	color: #c0d0df;
	font-size: 19px;
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 36px 0 54px;
}

.feature-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	max-width: 520px;
}

.feature-strip div {
	display: grid;
	gap: 10px;
	color: #c7d6e7;
	font-size: 14px;
	line-height: 1.25;
}

.feature-strip span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(16, 211, 215, 0.42);
	border-radius: 8px;
	color: var(--orange);
	font-size: 10px;
	font-weight: 900;
	background: rgba(16, 211, 215, 0.08);
}

.dashboard-shell {
	padding: 18px;
	border: 1px solid rgba(199, 214, 231, 0.44);
	border-radius: 14px;
	background: rgba(3, 13, 24, 0.88);
	box-shadow: var(--shadow), 0 0 90px rgba(16, 211, 215, 0.08);
}

.mock-topbar {
	display: grid;
	grid-template-columns: 1fr 1fr 150px 18px;
	gap: 16px;
	align-items: center;
	margin-bottom: 16px;
	font-size: 12px;
	font-weight: 800;
}

.mock-topbar select {
	width: 100%;
	padding: 9px 10px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #0a1b2d;
	color: var(--muted);
	font-size: 11px;
}

.bell {
	width: 12px;
	height: 15px;
	border: 2px solid var(--muted);
	border-bottom: 0;
	border-radius: 8px 8px 3px 3px;
}

.mock-layout {
	display: grid;
	grid-template-columns: 136px 1fr;
	gap: 16px;
}

.mock-nav {
	display: grid;
	align-content: start;
	gap: 8px;
	font-size: 11px;
	color: var(--muted);
}

.mock-nav span {
	padding: 10px 11px;
	border-radius: 5px;
}

.mock-nav .active {
	background: rgba(16, 211, 215, 0.14);
	color: var(--text);
}

.mock-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.score-card,
.issue-card,
.recommend-card,
.hosting-card {
	padding: 17px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(11, 27, 45, 0.82);
}

.score-card p,
.card-title {
	display: flex;
	justify-content: space-between;
	margin: 0 0 13px;
	font-size: 12px;
	font-weight: 900;
}

.card-title a,
.card-title span {
	color: var(--green);
	font-size: 10px;
	text-decoration: none;
}

.score-dial {
	display: grid;
	align-content: center;
	justify-content: center;
	width: 124px;
	height: 124px;
	margin: 0 auto 13px;
	border: 11px solid rgba(16, 211, 215, 0.22);
	border-top-color: var(--green);
	border-right-color: var(--cyan);
	border-radius: 50%;
	text-align: center;
}

.score-dial strong {
	font-size: 42px;
	line-height: 0.92;
}

.score-dial span,
.score-card small,
.mock-stats small {
	color: var(--green);
	font-size: 10px;
}

.score-card a,
.hosting-card a {
	display: block;
	margin-top: 12px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 5px;
	color: var(--text);
	font-size: 11px;
	text-align: center;
	text-decoration: none;
}

.issue-row,
.hosting-card p {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
	font-size: 12px;
}

.issue-row::before {
	content: "";
	width: 9px;
	height: 9px;
	margin: 4px 8px 0 0;
	border: 2px solid currentColor;
	border-radius: 3px;
	transform: rotate(45deg);
}

.issue-row span {
	flex: 1;
}

.critical {
	color: var(--danger);
}

.high,
.medium {
	color: #ffb347;
}

.low {
	color: var(--green);
}

.recommend-card div:not(.card-title) {
	margin-bottom: 11px;
	color: var(--muted);
	font-size: 11px;
}

.recommend-card em {
	display: block;
	width: 100%;
	height: 6px;
	margin-top: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--cyan) var(--w), rgba(255, 255, 255, 0.08) var(--w));
}

.mock-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.mock-stats div {
	display: grid;
	gap: 4px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.mock-stats span {
	color: var(--muted);
	font-size: 10px;
}

.data-wave {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 108px;
	background:
		radial-gradient(circle at 50% 20%, rgba(16, 211, 215, 0.56), transparent 1.5px) 0 0 / 13px 13px,
		linear-gradient(180deg, transparent 0%, rgba(16, 211, 215, 0.18) 48%, transparent 100%);
	clip-path: polygon(0 66%, 9% 62%, 20% 70%, 30% 56%, 43% 64%, 54% 48%, 67% 58%, 78% 43%, 90% 55%, 100% 42%, 100% 100%, 0 100%);
}

.section {
	max-width: var(--max);
	margin: 0 auto;
	padding: 68px 24px;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--orange);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-align: center;
	text-transform: uppercase;
}

.section h2,
.pricing h2,
.workflow h2,
.pillars h2,
.agency h2,
.assistant-section h2 {
	margin: 0 0 34px;
	font-size: clamp(32px, 3.2vw, 44px);
	line-height: 1;
	letter-spacing: -0.04em;
	text-align: center;
}

.pillar-layout {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.pillar-card {
	min-height: 258px;
	padding: 28px 22px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: linear-gradient(180deg, rgba(26, 54, 78, 0.78), rgba(11, 27, 45, 0.78));
	text-align: center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pillar-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin-bottom: 28px;
	border: 2px solid rgba(16, 211, 215, 0.42);
	border-radius: 18px;
	color: var(--cyan);
	font-weight: 900;
	background: rgba(16, 211, 215, 0.1);
}

.pillar-card:nth-child(4) span {
	border-color: rgba(255, 120, 22, 0.6);
	color: var(--orange);
}

.pillar-card h3 {
	margin-bottom: 12px;
	font-size: 20px;
}

.pillar-card p,
.workflow-steps p,
.assistant-grid p,
.agency-points,
.final-cta p {
	color: var(--muted);
	line-height: 1.5;
}

.workflow-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px;
}

.workflow-steps div {
	position: relative;
	display: grid;
	justify-items: center;
	text-align: center;
}

.workflow-steps div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 48px;
	right: -23px;
	width: 28px;
	height: 2px;
	background: rgba(169, 185, 202, 0.34);
}

.workflow-steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 68px;
	margin-bottom: 18px;
	clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
	background: rgba(18, 41, 62, 0.9);
	border: 1px solid var(--line);
	color: var(--cyan);
	font-weight: 900;
}

.workflow-steps div:nth-child(4) span {
	color: var(--orange);
	box-shadow: inset 0 0 0 1px rgba(255, 120, 22, 0.45);
}

.workflow-steps strong {
	margin-bottom: 7px;
	font-size: 17px;
}

.workflow-steps p {
	margin: 0;
	font-size: 14px;
}

.assistant-section {
	padding-top: 34px;
}

.assistant-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 36px;
	align-items: center;
}

.check-list,
.agency-points,
.pricing-grid ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li,
.agency-points li,
.pricing-grid li {
	position: relative;
	margin-bottom: 16px;
	padding-left: 28px;
	color: var(--muted);
}

.check-list li::before,
.agency-points li::before,
.pricing-grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 13px;
	height: 13px;
	border: 2px solid var(--orange);
	border-radius: 50%;
}

.assistant-console,
.report-preview,
.side-reports > div {
	border: 1px solid var(--line);
	border-radius: 9px;
	background: rgba(13, 32, 52, 0.82);
	box-shadow: var(--shadow);
}

.assistant-console {
	padding: 22px;
}

.console-top {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.console-top span {
	color: var(--green);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.assistant-message,
.assistant-task {
	margin-top: 16px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: rgba(4, 16, 28, 0.66);
}

.assistant-message span {
	color: var(--orange);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.assistant-message p,
.assistant-task p {
	margin: 8px 0;
	color: var(--muted);
	line-height: 1.5;
}

.assistant-task small {
	color: var(--green);
}

.agency {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(3, 13, 24, 0.35);
}

.agency-inner {
	padding-top: 54px;
	padding-bottom: 54px;
}

.agency-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.05fr 0.6fr;
	gap: 20px;
	align-items: center;
}

.report-preview {
	padding: 22px;
}

.report-head,
.report-metrics,
.side-reports p,
.hosting-card p {
	display: flex;
	justify-content: space-between;
	gap: 14px;
}

.report-head {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.report-head span {
	color: var(--muted);
	font-size: 12px;
}

.report-metrics {
	margin: 18px 0;
}

.report-metrics div {
	flex: 1;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 6px;
}

.report-metrics span,
.report-metrics small,
.side-reports p {
	color: var(--muted);
	font-size: 12px;
}

.report-metrics strong {
	display: block;
	margin: 8px 0 2px;
	font-size: 27px;
}

.report-metrics small,
.side-reports p::after {
	color: var(--green);
}

.chart-lines {
	position: relative;
	height: 132px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 32px,
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 58px 100%;
}

.chart-lines span {
	position: absolute;
	left: 18px;
	right: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--cyan);
	transform-origin: left center;
}

.chart-lines span:nth-child(1) {
	top: 80px;
	transform: rotate(-8deg);
}

.chart-lines span:nth-child(2) {
	top: 96px;
	background: rgba(169, 185, 202, 0.7);
	transform: rotate(-5deg);
}

.chart-lines span:nth-child(3) {
	top: 66px;
	width: 58%;
	transform: rotate(-12deg);
}

.side-reports {
	display: grid;
	gap: 20px;
}

.side-reports > div {
	padding: 18px;
}

.mini-donut {
	display: grid;
	place-items: center;
	width: 112px;
	height: 112px;
	margin: 18px auto 0;
	border: 14px solid rgba(94, 230, 168, 0.6);
	border-top-color: var(--orange);
	border-radius: 50%;
	font-size: 24px;
	font-weight: 900;
}

.pricing {
	position: relative;
}

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

.pricing-grid article {
	position: relative;
	padding: 26px 24px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: rgba(13, 32, 52, 0.82);
}

.pricing-grid .featured-plan {
	border-color: var(--orange);
	box-shadow: 0 0 0 1px rgba(255, 120, 22, 0.42), var(--shadow);
}

.plan-ribbon {
	position: absolute;
	top: -1px;
	right: 0;
	left: 0;
	padding: 6px;
	border-radius: 9px 9px 0 0;
	background: var(--orange);
	color: #061120;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
}

.featured-plan h3 {
	margin-top: 22px;
}

.pricing-grid h3 {
	margin-bottom: 12px;
	text-align: center;
}

.price {
	margin: 0;
	font-size: 40px;
	font-weight: 900;
	text-align: center;
}

.price span {
	color: var(--muted);
	font-size: 15px;
	font-weight: 700;
}

.pricing-grid small {
	display: block;
	margin-bottom: 24px;
	color: var(--muted);
	text-align: center;
}

.pricing-grid form {
	margin-top: 10px;
}

.pricing-grid button {
	width: 100%;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--text);
}

.checkout-status {
	max-width: 820px;
	text-align: center;
}

.checkout-status p:not(.eyebrow) {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.55;
}

.featured-plan button {
	border-color: var(--orange);
	background: var(--orange);
	color: #fff;
}

.final-cta {
	padding: 38px 24px;
	border-top: 1px solid rgba(255, 120, 22, 0.3);
	border-bottom: 1px solid rgba(255, 120, 22, 0.22);
	background:
		radial-gradient(circle at 90% 50%, rgba(255, 120, 22, 0.14), transparent 18rem),
		rgba(10, 25, 40, 0.76);
	text-align: center;
}

.final-cta h2 {
	margin-bottom: 8px;
	font-size: 34px;
}

.final-cta p {
	margin-bottom: 18px;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: var(--max);
	margin: 0 auto;
	padding: 24px;
	color: var(--muted);
	font-size: 12px;
}

.site-footer .brand-name {
	font-size: 16px;
}

.site-footer .brand-mark {
	width: 24px;
	height: 24px;
	border-width: 2px;
}

.site-footer p {
	margin: 0;
}

@media (max-width: 1050px) {
	.hero-inner,
	.assistant-grid,
	.agency-grid {
		grid-template-columns: 1fr;
	}

	.pillar-layout,
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.workflow-steps {
		grid-template-columns: 1fr;
	}

	.workflow-steps div:not(:last-child)::after {
		display: none;
	}

	.mock-layout {
		grid-template-columns: 1fr;
	}

	.mock-nav {
		display: none;
	}
}

@media (max-width: 720px) {
	.site-header {
		position: static;
		flex-wrap: wrap;
		padding: 18px;
	}

	.nav {
		order: 3;
		width: 100%;
		gap: 20px;
		overflow-x: auto;
		padding-bottom: 6px;
	}

	.header-cta {
		width: 100%;
	}

	.hero-inner {
		gap: 34px;
		min-height: auto;
		padding: 42px 18px 76px;
	}

	.hero-copy {
		max-width: calc(100vw - 36px);
		overflow: hidden;
	}

	.hero-copy h1 {
		max-width: 340px;
		font-size: clamp(38px, 11.8vw, 46px);
	}

	.hero-copy p {
		max-width: 340px;
		font-size: 17px;
	}

	.feature-strip,
	.mock-main,
	.mock-stats,
	.pillar-layout,
	.pricing-grid,
	.report-metrics {
		grid-template-columns: 1fr;
	}

	.dashboard-shell {
		width: 100%;
		max-width: calc(100vw - 36px);
		overflow: hidden;
		padding: 14px;
	}

	.mock-topbar {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 54px 18px;
	}

	.pillar-card {
		min-height: auto;
	}

	.site-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer nav {
		flex-wrap: wrap;
		gap: 16px;
	}
}
