/*
Theme Name: Latest Block Theme
Theme URI: https://example.com/latest-block-theme
Author: Codex
Author URI: https://example.com
Description: A clean full-site editing block theme built for current WordPress releases, including WordPress 7.0.
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 8.1
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: latest-block-theme
Tags: block-patterns, block-styles, full-site-editing, editor-style, wide-blocks
*/

body {
	margin: 0;
}

a {
	text-underline-offset: 0.18em;
}

.wp-site-blocks {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.wp-site-blocks > main {
	flex: 1;
}

.fluistix-pricing {
	--ac-ink: #1f1f1f;
	--ac-muted: #6d6d6d;
	--ac-line: #d8d8d8;
	--ac-soft: #f7f7f7;
	--ac-red: #eb1000;
	--ac-blue: #1473e6;
	--ac-yellow: #edcc2d;
	background: #fff;
	color: var(--ac-ink);
	font-size: 16px;
	line-height: 1.5;
}

.ac-pricing-shell {
	box-sizing: border-box;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.ac-pricing-hero {
	border-bottom: 1px solid var(--ac-line);
	padding: 58px 0 34px;
	text-align: center;
}

.ac-logo-lockup {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	font-size: 18px;
	font-weight: 800;
}

.ac-logo-mark {
	display: inline-grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border-radius: 7px;
	background: var(--ac-red);
	color: #fff;
	font-size: 20px;
	line-height: 1;
}

.ac-pricing-hero h1 {
	max-width: 880px;
	margin: 0 auto 16px;
	font-size: clamp(2.25rem, 4vw, 4.6rem);
	line-height: 1.02;
}

.ac-pricing-hero p {
	margin: 0;
	font-size: 1.45rem;
	font-weight: 700;
}

.ac-tabs {
	position: sticky;
	top: 0;
	z-index: 5;
	display: flex;
	justify-content: center;
	gap: 34px;
	border-bottom: 1px solid var(--ac-line);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
}

.ac-tabs a {
	display: block;
	padding: 18px 0 15px;
	border-bottom: 3px solid transparent;
	color: var(--ac-ink);
	font-weight: 800;
	text-decoration: none;
}

.ac-tabs a[aria-current="page"] {
	border-color: var(--ac-ink);
}

.ac-plan-section {
	padding: 46px 0 30px;
}

.ac-plan-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.ac-plan-card {
	position: relative;
	display: flex;
	min-height: 355px;
	flex-direction: column;
	gap: 10px;
	padding: 30px 26px 20px;
	border: 1px solid var(--ac-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ac-plan-card-featured {
	border: 2px solid var(--ac-yellow);
	padding-top: 48px;
}

.ac-badge {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: 9px 16px;
	border-radius: 6px 6px 0 0;
	background: var(--ac-yellow);
	color: #000;
	font-size: 0.83rem;
	font-weight: 800;
	text-align: center;
}

.ac-plan-card h3 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.2;
}

.ac-price {
	margin: 0;
	font-size: 1.85rem;
	font-weight: 900;
	line-height: 1.15;
}

.ac-price span,
.ac-tax,
.ac-billing,
.ac-secure {
	color: var(--ac-muted);
	font-size: 0.86rem;
	font-weight: 500;
}

.ac-tax,
.ac-billing,
.ac-plan-card p {
	margin: 0;
}

.ac-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.ac-button {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 8px 18px;
	border: 2px solid var(--ac-blue);
	border-radius: 20px;
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
}

.ac-button-primary {
	background: var(--ac-blue);
	color: #fff;
}

.ac-button-secondary {
	background: #fff;
	color: var(--ac-ink);
	border-color: var(--ac-ink);
}

.ac-secure::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 6px;
	border-radius: 2px;
	background: var(--ac-muted);
	vertical-align: -1px;
}

.ac-comparison {
	padding: 36px 0 56px;
}

.ac-comparison h2,
.ac-faq h2,
.ac-sales h2 {
	margin: 0 0 24px;
	text-align: center;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.ac-table-wrap {
	overflow-x: auto;
	border-top: 1px solid var(--ac-line);
}

.ac-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	background: #fff;
}

.ac-table th,
.ac-table td {
	padding: 17px 18px;
	border-bottom: 1px solid var(--ac-line);
	text-align: center;
	vertical-align: middle;
}

.ac-table thead th {
	position: sticky;
	top: 58px;
	background: #fff;
	font-size: 1rem;
	font-weight: 900;
}

.ac-table th:first-child {
	width: 42%;
	text-align: left;
}

.ac-table tbody th {
	font-weight: 600;
}

.ac-table td {
	color: #078348;
	font-size: 1.35rem;
	font-weight: 900;
}

.ac-center-action {
	margin: 28px 0 0;
	text-align: center;
}

.ac-faq {
	padding: 54px 0;
	background: var(--ac-soft);
}

.ac-faq details {
	max-width: 980px;
	margin: 0 auto;
	border-top: 1px solid var(--ac-line);
	background: transparent;
}

.ac-faq details:last-child {
	border-bottom: 1px solid var(--ac-line);
}

.ac-faq summary {
	cursor: pointer;
	padding: 22px 8px;
	font-size: 1.07rem;
	font-weight: 800;
}

.ac-faq details p {
	margin: 0;
	padding: 0 8px 22px;
	color: #3c3c3c;
}

.ac-sales {
	padding: 60px 0 70px;
	text-align: center;
}

.ac-sales p {
	max-width: 680px;
	margin: 0 auto 24px;
	font-size: 1.2rem;
}

.ac-sales-actions {
	justify-content: center;
}

.ac-phone {
	align-self: center;
	color: var(--ac-ink);
	font-weight: 800;
	text-decoration: none;
}

.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;
}

@media (max-width: 860px) {
	.ac-tabs {
		justify-content: flex-start;
		gap: 24px;
		overflow-x: auto;
		padding: 0 18px;
	}

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

	.ac-table thead th {
		top: 0;
	}
}
