:root {
	--color-bg: #07090d;
	--color-bg-soft: #0d1117;
	--color-surface: #111722;
	--color-surface-raised: #151d2a;
	--color-border: rgba(255, 255, 255, 0.11);
	--color-text: #f7fbff;
	--color-muted: #a7b1c2;
	--color-soft: #d5deec;
	--color-cyan: #35d6ff;
	--color-green: #75f5a7;
	--color-amber: #ffd166;
	--color-coral: #ff6b6b;
	--shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.28);
	--radius: 8px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.cloudhost-theme {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

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

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

.site-shell {
	min-height: 100vh;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(53, 214, 255, 0.06) 0, rgba(53, 214, 255, 0) 360px),
		var(--color-bg);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	max-width: var(--container);
	margin: 0 auto;
	padding: 18px 24px;
	border-bottom: 1px solid var(--color-border);
	background: rgba(7, 9, 13, 0.82);
	backdrop-filter: blur(18px);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--color-text);
}

.site-brand img,
.site-brand .custom-logo {
	max-width: 168px;
	max-height: 46px;
	object-fit: contain;
}

.site-brand-mark {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(53, 214, 255, 0.55);
	border-radius: var(--radius);
	background: rgba(53, 214, 255, 0.13);
	color: var(--color-cyan);
}

.primary-menu,
.footer-menu {
	display: flex;
	gap: 22px;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav {
	justify-self: center;
}

.primary-menu a,
.footer-menu a {
	color: var(--color-muted);
	font-size: 0.95rem;
	transition: color 180ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus,
.footer-menu a:hover,
.footer-menu a:focus {
	color: var(--color-text);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary,
.header-cta {
	background: var(--color-green);
	color: #06110a;
	box-shadow: 0 16px 40px rgba(117, 245, 167, 0.17);
}

.button-secondary {
	border-color: var(--color-border);
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-text);
}

.button-ghost {
	border-color: rgba(53, 214, 255, 0.38);
	background: rgba(53, 214, 255, 0.07);
	color: var(--color-cyan);
}

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

.eyebrow {
	margin: 0 0 14px;
	color: var(--color-green);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero-section {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.76fr);
	gap: 56px;
	align-items: center;
	padding-top: 88px;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2 {
	margin: 0;
	color: var(--color-text);
	line-height: 1.04;
	letter-spacing: 0;
}

.hero-copy h1 {
	max-width: 760px;
	font-size: 5.75rem;
}

.hero-description {
	max-width: 660px;
	margin: 24px 0 0;
	color: var(--color-soft);
	font-size: 1.14rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.hero-panel {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(21, 29, 42, 0.96), rgba(13, 17, 23, 0.96));
	box-shadow: var(--shadow-panel);
	overflow: hidden;
}

.panel-topline {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-muted);
	font-size: 0.9rem;
}

.panel-topline strong {
	color: var(--color-green);
}

.terminal-card {
	padding: 18px;
}

.hero-image-frame {
	margin: 0;
	aspect-ratio: 4 / 3;
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.hero-image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.terminal-dots {
	display: flex;
	gap: 7px;
	margin-bottom: 16px;
}

.terminal-dots span {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--color-coral);
}

.terminal-dots span:nth-child(2) {
	background: var(--color-amber);
}

.terminal-dots span:nth-child(3) {
	background: var(--color-green);
}

.terminal-card pre {
	min-height: 260px;
	margin: 0;
	white-space: pre-wrap;
	color: var(--color-soft);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 0.96rem;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--color-border);
}

.hero-metrics div {
	padding: 18px;
	border-right: 1px solid var(--color-border);
}

.hero-metrics div:last-child {
	border-right: 0;
}

.hero-metrics span {
	display: block;
	color: var(--color-text);
	font-size: 1.4rem;
	font-weight: 900;
}

.hero-metrics small {
	color: var(--color-muted);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.section-heading.narrow {
	display: block;
	max-width: 760px;
}

.section-heading h2 {
	max-width: 800px;
	font-size: 3.25rem;
}

.section-heading p:not(.eyebrow) {
	color: var(--color-muted);
}

.billing-toggle {
	display: inline-flex;
	gap: 4px;
	padding: 5px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
}

.billing-toggle button {
	min-width: 104px;
	min-height: 38px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--color-muted);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.billing-toggle button.is-active {
	background: var(--color-cyan);
	color: #061017;
}

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

.plan-card,
.bento-item,
.faq-item,
.contact-details,
.contact-form-shell {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(17, 23, 34, 0.86);
}

.plan-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 24px;
	position: relative;
}

.plan-card.is-featured {
	border-color: rgba(117, 245, 167, 0.5);
	background: linear-gradient(180deg, rgba(26, 45, 38, 0.9), rgba(17, 23, 34, 0.95));
	box-shadow: 0 22px 70px rgba(117, 245, 167, 0.1);
}

.plan-badge {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 16px;
	padding: 6px 9px;
	border: 1px solid rgba(53, 214, 255, 0.34);
	border-radius: 6px;
	color: var(--color-cyan);
	font-size: 0.78rem;
	font-weight: 900;
}

.plan-card h3,
.bento-item h3,
.contact-details h2,
.footer-column h2,
.footer-newsletter h2 {
	margin: 0;
	color: var(--color-text);
	line-height: 1.15;
}

.plan-card p,
.bento-item p,
.footer-brand p,
.footer-newsletter p,
.contact-detail p {
	color: var(--color-muted);
}

.plan-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 22px 0;
	color: var(--color-text);
}

.plan-price .currency {
	color: var(--color-muted);
	font-weight: 800;
}

.plan-price strong {
	font-size: 3.2rem;
	line-height: 1;
}

.plan-price small {
	color: var(--color-muted);
}

.plan-specs {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0 0 24px;
	list-style: none;
	color: var(--color-soft);
}

.plan-specs li {
	display: flex;
	gap: 10px;
	align-items: center;
}

.plan-specs li::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--color-green);
}

.plan-card .button {
	margin-top: auto;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.bento-item {
	min-height: 220px;
	padding: 24px;
}

.bento-item-1,
.bento-item-6 {
	grid-column: span 3;
}

.bento-item-2,
.bento-item-3,
.bento-item-4,
.bento-item-5 {
	grid-column: span 3;
}

.bento-metric {
	display: block;
	margin-bottom: 40px;
	color: var(--color-amber);
	font-size: 3.2rem;
	font-weight: 950;
	line-height: 1;
}

.comparison-wrap {
	overflow-x: auto;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(17, 23, 34, 0.72);
}

.comparison-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
	padding: 18px;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
}

.comparison-table thead th {
	position: sticky;
	top: 80px;
	z-index: 2;
	background: #101722;
	color: var(--color-text);
}

.comparison-table tbody th {
	color: var(--color-muted);
}

.comparison-table td {
	color: var(--color-soft);
	font-weight: 800;
}

.faq-list {
	display: grid;
	gap: 12px;
	max-width: 900px;
}

.faq-item {
	overflow: hidden;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 18px;
	padding: 22px 24px;
	border: 0;
	background: transparent;
	color: var(--color-text);
	font: inherit;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.faq-icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--color-cyan);
	transform: translateY(-50%);
}

.faq-icon::after {
	transform: translateY(-50%) rotate(90deg);
	transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
	transform: translateY(-50%) rotate(0);
}

.faq-answer {
	padding: 0 24px 22px;
	color: var(--color-muted);
}

.faq-answer p {
	margin: 0;
}

.site-footer {
	border-top: 1px solid var(--color-border);
	background: #080b10;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.75fr 0.75fr 1.25fr;
	gap: 34px;
	max-width: var(--container);
	margin: 0 auto;
	padding: 64px 24px;
}

.footer-menu {
	display: grid;
	gap: 10px;
	align-items: start;
}

.footer-column h2,
.footer-newsletter h2 {
	margin-bottom: 14px;
	font-size: 0.95rem;
}

.newsletter-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: start;
}

.newsletter-form input,
.floating-field input,
.floating-field textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-text);
	font: inherit;
	outline: none;
	transition: border-color 180ms ease, background 180ms ease;
}

.newsletter-form input {
	padding: 0 14px;
}

.newsletter-form input:focus,
.floating-field input:focus,
.floating-field textarea:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: rgba(53, 214, 255, 0.75);
	background: rgba(53, 214, 255, 0.08);
}

.newsletter-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.newsletter-message {
	grid-column: 1 / -1;
	min-height: 20px;
	margin: 0;
	font-size: 0.9rem;
}

.newsletter-message.is-success {
	color: var(--color-green);
}

.newsletter-message.is-error {
	color: var(--color-coral);
}

.footer-bottom {
	max-width: var(--container);
	margin: 0 auto;
	padding: 18px 24px 28px;
	color: var(--color-muted);
	border-top: 1px solid var(--color-border);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.contact-page .contact-hero {
	padding-bottom: 32px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
	gap: 24px;
	padding-top: 24px;
}

.contact-details,
.contact-form-shell {
	padding: 28px;
}

.contact-detail {
	padding: 20px 0;
	border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-child {
	border-bottom: 0;
}

.contact-detail span {
	display: block;
	margin-bottom: 6px;
	color: var(--color-muted);
	font-size: 0.84rem;
	font-weight: 900;
	text-transform: uppercase;
}

.contact-detail a {
	color: var(--color-cyan);
	font-weight: 900;
}

.contact-form {
	display: grid;
	gap: 16px;
}

.floating-field {
	position: relative;
}

.floating-field input,
.floating-field textarea {
	padding: 18px 14px 8px;
}

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

.floating-field label {
	position: absolute;
	top: 14px;
	left: 14px;
	color: var(--color-muted);
	pointer-events: none;
	transform-origin: left top;
	transition: transform 160ms ease, color 160ms ease;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:focus + label,
.floating-field textarea:not(:placeholder-shown) + label {
	color: var(--color-cyan);
	transform: translateY(-9px) scale(0.78);
}

.form-notice {
	margin-bottom: 18px;
	padding: 12px 14px;
	border-radius: var(--radius);
	font-weight: 800;
}

.form-notice.success {
	border: 1px solid rgba(117, 245, 167, 0.42);
	background: rgba(117, 245, 167, 0.1);
	color: var(--color-green);
}

.form-notice.error {
	border: 1px solid rgba(255, 107, 107, 0.42);
	background: rgba(255, 107, 107, 0.1);
	color: var(--color-coral);
}

.content-entry {
	max-width: 900px;
}

.content-header h1 {
	margin-top: 0;
	font-size: 3.25rem;
	line-height: 1.08;
}

.content-body {
	color: var(--color-soft);
}

.cloudhost-checkout .site-main,
.woocommerce-checkout .site-main {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px 24px;
}

.cloudhost-checkout .woocommerce form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
	gap: 28px;
	align-items: start;
}

.cloudhost-checkout #customer_details,
.cloudhost-checkout #order_review,
.cloudhost-checkout #order_review_heading {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(17, 23, 34, 0.86);
}

.cloudhost-checkout #customer_details {
	grid-column: 1;
	padding: 28px;
}

.cloudhost-checkout #customer_details .col-1,
.cloudhost-checkout #customer_details .col-2 {
	width: 100%;
	float: none;
}

.cloudhost-checkout #customer_details .col-2 {
	display: none;
}

.cloudhost-checkout #order_review_heading {
	grid-column: 2;
	margin: 0 0 12px;
	padding: 20px 22px;
	font-size: 1.1rem;
}

.cloudhost-checkout #order_review {
	grid-column: 2;
	position: sticky;
	top: 112px;
	padding: 22px;
}

.cloudhost-checkout .woocommerce-billing-fields h3 {
	margin-top: 0;
}

.cloudhost-checkout .form-row {
	position: relative;
	margin-bottom: 18px;
}

.cloudhost-checkout .form-row label {
	color: var(--color-soft);
	font-weight: 800;
}

.cloudhost-checkout .woocommerce table.shop_table {
	border-color: var(--color-border);
	color: var(--color-soft);
}

.cloudhost-checkout .woocommerce table.shop_table th,
.cloudhost-checkout .woocommerce table.shop_table td {
	border-color: var(--color-border);
}

.cloudhost-checkout .woocommerce #payment {
	background: transparent;
}

.cloudhost-checkout .woocommerce #payment div.payment_box {
	background: rgba(53, 214, 255, 0.08);
	color: var(--color-soft);
}

.cloudhost-checkout .woocommerce #payment #place_order {
	width: 100%;
	min-height: 50px;
	background: var(--color-green);
	color: #06110a;
	border-radius: var(--radius);
	font-weight: 900;
}

.cloudhost-field-error {
	display: block;
	margin-top: 6px;
	color: var(--color-coral);
	font-size: 0.86rem;
	font-weight: 800;
}

.woocommerce-invalid input,
.woocommerce-invalid select {
	border-color: rgba(255, 107, 107, 0.78) !important;
}

@media (max-width: 960px) {
	.site-header,
	.hero-section,
	.contact-layout,
	.cloudhost-checkout .woocommerce form.checkout {
		grid-template-columns: 1fr;
	}

	.primary-nav {
		display: none;
	}

	.header-cta {
		justify-self: end;
	}

	.hero-section {
		gap: 36px;
	}

	.hero-copy h1 {
		font-size: 4.2rem;
	}

	.section-heading h2,
	.content-header h1 {
		font-size: 2.65rem;
	}

	.bento-metric {
		font-size: 2.65rem;
	}

	.section-heading {
		display: block;
	}

	.billing-toggle {
		margin-top: 22px;
	}

	.plan-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

	.bento-item-1,
	.bento-item-2,
	.bento-item-3,
	.bento-item-4,
	.bento-item-5,
	.bento-item-6 {
		grid-column: span 1;
	}

	.cloudhost-checkout #customer_details,
	.cloudhost-checkout #order_review,
	.cloudhost-checkout #order_review_heading {
		grid-column: 1;
	}

	.cloudhost-checkout #order_review {
		position: static;
	}
}

@media (max-width: 640px) {
	.site-header {
		padding: 14px 18px;
	}

	.site-brand-name {
		display: none;
	}

	.header-cta {
		min-height: 40px;
		padding: 0 12px;
		font-size: 0.88rem;
	}

	.section-pad {
		padding: 64px 18px;
	}

	.hero-copy h1 {
		font-size: 3rem;
	}

	.section-heading h2,
	.content-header h1 {
		font-size: 2.15rem;
	}

	.bento-metric {
		font-size: 2.2rem;
	}

	.hero-actions,
	.newsletter-form {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-metrics {
		grid-template-columns: 1fr;
	}

	.hero-metrics div {
		border-right: 0;
		border-bottom: 1px solid var(--color-border);
	}

	.hero-metrics div:last-child {
		border-bottom: 0;
	}

	.bento-grid {
		grid-template-columns: 1fr;
	}
}
