/*
Theme Name: Findira Labs
Theme URI: https://findiralabs.com/
Author: Findira Labs
Author URI: https://findiralabs.com/
Description: A lightweight, accessible WordPress theme for the Findira Labs product studio.
Version: 1.0.1
Requires at least: 6.3
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: findira-labs
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--fl-ink: #19191d;
	--fl-muted: #62616b;
	--fl-paper: #f7f6f2;
	--fl-white: #ffffff;
	--fl-line: #deddd7;
	--fl-violet: #5f3df0;
	--fl-violet-dark: #4424cf;
	--fl-violet-soft: #eeeaff;
	--fl-green: #c8f7d5;
	--fl-radius-sm: 12px;
	--fl-radius-md: 22px;
	--fl-radius-lg: 34px;
	--fl-shadow: 0 24px 70px rgba(28, 20, 73, 0.14);
	--fl-container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--fl-paper);
	color: var(--fl-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--fl-white);
	color: var(--fl-ink);
}

:focus-visible {
	outline: 3px solid var(--fl-violet);
	outline-offset: 4px;
}

.fl-container {
	width: min(calc(100% - 40px), var(--fl-container));
	margin-inline: auto;
}

.site-header {
	position: relative;
	z-index: 20;
	padding: 24px 0;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--fl-ink);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.025em;
	text-decoration: none;
}

.site-branding__mark {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 11px;
	background: var(--fl-violet-soft);
}

.site-branding__mark img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.custom-logo {
	width: auto;
	max-height: 42px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	color: #434249;
	font-size: 15px;
	font-weight: 650;
	text-decoration: none;
}

.site-nav a:hover {
	color: var(--fl-violet);
}

.site-nav__cta,
.menu-item-cta > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 19px;
	border-radius: 999px;
	background: var(--fl-ink);
	color: var(--fl-white) !important;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--fl-line);
	border-radius: 50%;
	background: var(--fl-white);
	color: var(--fl-ink);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 104px 0 118px;
}

.hero::before {
	position: absolute;
	z-index: -1;
	top: 50px;
	right: max(-80px, calc((100vw - var(--fl-container)) / 2 - 150px));
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(95, 61, 240, 0.14), rgba(95, 61, 240, 0) 68%);
	content: "";
}

.hero__grid {
	display: grid;
	align-items: center;
	grid-template-columns: 1.03fr 0.97fr;
	gap: 76px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 24px;
	color: var(--fl-violet-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fl-violet);
	content: "";
	box-shadow: 0 0 0 5px var(--fl-violet-soft);
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.hero h1 {
	max-width: 760px;
	font-size: clamp(52px, 6vw, 84px);
}

.hero h1 em {
	color: var(--fl-violet);
	font-weight: inherit;
}

.hero__copy {
	max-width: 610px;
	margin: 30px 0 0;
	color: var(--fl-muted);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.55;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 38px;
}

.fl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 25px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 750;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.fl-button:hover {
	transform: translateY(-2px);
}

.fl-button--primary {
	background: var(--fl-violet);
	color: var(--fl-white);
}

.fl-button--primary:hover {
	background: var(--fl-violet-dark);
}

.fl-button--secondary {
	border-color: var(--fl-line);
	background: var(--fl-white);
	color: var(--fl-ink);
}

.fl-button.is-disabled {
	cursor: not-allowed;
	opacity: 0.62;
	transform: none;
}

.hero__note {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 22px 0 0;
	color: var(--fl-muted);
	font-size: 13px;
}

.hero__note span {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: var(--fl-green);
	color: #14672c;
	font-size: 12px;
	font-weight: 900;
}

.product-visual {
	position: relative;
	padding: 15px;
	border: 1px solid rgba(95, 61, 240, 0.18);
	border-radius: var(--fl-radius-lg);
	background: rgba(255, 255, 255, 0.64);
	box-shadow: var(--fl-shadow);
	transform: rotate(1.2deg);
}

.product-visual::after {
	position: absolute;
	z-index: -1;
	right: -24px;
	bottom: -28px;
	width: 72%;
	height: 55%;
	border-radius: var(--fl-radius-lg);
	background: var(--fl-violet);
	content: "";
	transform: rotate(3deg);
}

.product-visual img {
	width: 100%;
	border-radius: 23px;
}

.product-visual__badge {
	position: absolute;
	bottom: 32px;
	left: -28px;
	padding: 13px 18px;
	border: 1px solid var(--fl-line);
	border-radius: 14px;
	background: var(--fl-white);
	box-shadow: 0 16px 35px rgba(25, 25, 29, 0.14);
	font-size: 13px;
	font-weight: 800;
	transform: rotate(-1.2deg);
}

.intro-strip {
	border-block: 1px solid var(--fl-line);
	background: rgba(255, 255, 255, 0.5);
}

.intro-strip__inner {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
}

.intro-strip__item {
	padding: 27px 28px;
	border-left: 1px solid var(--fl-line);
}

.intro-strip__item:first-child {
	padding-left: 0;
	border-left: 0;
}

.intro-strip__item strong,
.intro-strip__item span {
	display: block;
}

.intro-strip__item strong {
	margin-bottom: 2px;
	font-size: 15px;
}

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

.section {
	padding: 116px 0;
}

.section--white {
	background: var(--fl-white);
}

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

.section-heading h2 {
	max-width: 720px;
	font-size: clamp(40px, 5vw, 64px);
}

.section-heading p {
	max-width: 440px;
	margin: 0;
	color: var(--fl-muted);
}

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

.feature-card {
	min-height: 260px;
	padding: 32px;
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius-md);
	background: var(--fl-paper);
}

.feature-card__number {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 52px;
	place-items: center;
	border-radius: 50%;
	background: var(--fl-violet-soft);
	color: var(--fl-violet-dark);
	font-size: 13px;
	font-weight: 850;
}

.feature-card h3 {
	margin: 0 0 10px;
	font-size: 20px;
	letter-spacing: -0.025em;
}

.feature-card p {
	margin: 0;
	color: var(--fl-muted);
	font-size: 15px;
}

.product-card {
	display: grid;
	overflow: hidden;
	grid-template-columns: 0.9fr 1.1fr;
	border-radius: var(--fl-radius-lg);
	background: #151524;
	color: var(--fl-white);
}

.product-card__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	padding: clamp(42px, 7vw, 84px);
}

.product-card__label {
	margin-bottom: 24px;
	color: #b9afff;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.product-card h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5vw, 65px);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1;
}

.product-card p {
	max-width: 480px;
	margin: 25px 0 0;
	color: #c7c5d2;
}

.product-card .fl-button {
	margin-top: 34px;
	background: var(--fl-white);
	color: var(--fl-ink);
}

.product-card__visual {
	position: relative;
	min-height: 580px;
	background: linear-gradient(135deg, #3e22b9, #19172c 65%);
}

.product-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding: 68px;
	border-radius: var(--fl-radius-lg);
	background: var(--fl-violet-soft);
}

.cta-panel h2 {
	max-width: 700px;
	font-size: clamp(38px, 5vw, 60px);
}

.site-footer {
	padding: 48px 0;
	border-top: 1px solid var(--fl-line);
}

.site-footer a {
	display: block;
	text-decoration: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: 60px;
}

.footer-brand p {
	max-width: 300px;
	margin: 18px 0 0;
	color: var(--fl-muted);
}

.footer-title {
	display: block;
	margin-bottom: 16px;
	color: var(--fl-ink);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
	margin-top: 9px;
	color: var(--fl-muted);
	font-size: 14px;
}

.footer-grid a:hover {
	color: var(--fl-violet);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 52px;
	padding-top: 26px;
	border-top: 1px solid var(--fl-line);
	color: var(--fl-muted);
	font-size: 13px;
}

.site-main--default {
	min-height: 60vh;
	padding: 80px 0 120px;
}

.entry-header h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1;
}

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

.entry-content > * + * {
	margin-top: 1.4em;
}

.display-heading,
.page-hero h1,
.newsletter-hero h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1;
}

.display-heading {
	font-size: clamp(42px, 5vw, 66px);
}

.lead {
	color: var(--fl-muted);
	font-size: 19px;
}

.fine-print {
	margin-top: 24px;
	color: var(--fl-muted);
	font-size: 13px;
}

.text-link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: 22px;
	color: var(--fl-violet-dark);
	font-weight: 750;
	text-decoration: none;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.split-layout,
.trust-grid,
.story-grid {
	display: grid;
	align-items: start;
	grid-template-columns: 1fr 1fr;
	gap: clamp(50px, 8vw, 110px);
}

.check-panel {
	padding: 38px;
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius-md);
	background: var(--fl-paper);
}

.check-panel h3 {
	margin: 0 0 24px;
	font-size: 18px;
}

.check-list {
	display: grid;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 32px;
}

.check-list li::before {
	position: absolute;
	top: 3px;
	left: 0;
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	background: var(--fl-green);
	color: #14672c;
	content: "✓";
	font-size: 12px;
	font-weight: 900;
}

.trust-list {
	display: grid;
	border-top: 1px solid var(--fl-line);
}

.trust-list > div {
	padding: 25px 0;
	border-bottom: 1px solid var(--fl-line);
}

.trust-list strong {
	font-size: 18px;
}

.trust-list p {
	margin: 6px 0 0;
	color: var(--fl-muted);
	font-size: 15px;
}

.page-hero,
.newsletter-hero {
	padding: 112px 0 120px;
}

.page-hero {
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	position: absolute;
	z-index: -1;
	top: 15px;
	right: -100px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(95, 61, 240, 0.14), transparent 69%);
	content: "";
}

.page-hero__grid {
	display: grid;
	align-items: end;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 70px;
}

.page-hero h1,
.newsletter-hero h1 {
	max-width: 900px;
	font-size: clamp(54px, 7vw, 88px);
}

.page-hero__lead {
	max-width: 650px;
	margin: 30px 0 0;
	color: var(--fl-muted);
	font-size: 20px;
}

.page-hero__grid .page-hero__lead {
	margin: 0;
}

.page-hero--compact {
	padding-bottom: 90px;
}

.page-hero--compact h1,
.page-hero--legal h1 {
	max-width: 880px;
	font-size: clamp(50px, 6vw, 76px);
}

.page-hero--legal {
	padding-bottom: 84px;
}

.newsletter-hero {
	position: relative;
	overflow: hidden;
}

.product-listing {
	display: grid;
	align-items: center;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(48px, 7vw, 90px);
}

.product-listing__visual {
	padding: 12px;
	border-radius: var(--fl-radius-lg);
	background: var(--fl-violet-soft);
	box-shadow: var(--fl-shadow);
}

.product-listing__visual img {
	border-radius: 24px;
}

.product-listing__content h2 {
	margin: 22px 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1;
}

.product-listing__content > p {
	color: var(--fl-muted);
	font-size: 18px;
}

.status-pill,
.docs-label {
	display: inline-flex;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--fl-violet-soft);
	color: var(--fl-violet-dark);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.mini-list {
	display: grid;
	gap: 8px;
	margin: 24px 0 32px;
	padding-left: 20px;
}

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

.narrow-center .lead {
	margin-inline: auto;
}

.story-grid .prose {
	padding-top: 0;
}

.workflow-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius-md);
	background: var(--fl-line);
}

.workflow-grid article {
	min-height: 300px;
	padding: 32px;
	background: var(--fl-paper);
}

.workflow-grid article > span {
	color: var(--fl-violet);
	font-size: 13px;
	font-weight: 850;
}

.workflow-grid h3 {
	margin: 72px 0 10px;
	font-size: 21px;
}

.workflow-grid p {
	margin: 0;
	color: var(--fl-muted);
	font-size: 14px;
}

.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius-md);
	background: var(--fl-white);
}

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

.comparison-table th,
.comparison-table td {
	padding: 17px 22px;
	border-bottom: 1px solid var(--fl-line);
	text-align: left;
}

.comparison-table th {
	background: var(--fl-paper);
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.comparison-table th:nth-child(n+2),
.comparison-table td:nth-child(n+2) {
	width: 22%;
	text-align: center;
}

.comparison-table td:nth-child(3) {
	color: var(--fl-violet-dark);
	font-weight: 750;
}

.comparison-table tr:last-child td {
	border-bottom: 0;
}

.pricing-grid {
	display: grid;
	max-width: 950px;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 54px;
}

.price-card {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: 40px;
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius-md);
	background: var(--fl-paper);
}

.price-card--featured {
	border-color: var(--fl-violet);
	background: var(--fl-violet-soft);
}

.price-card h3 {
	margin: 28px 0 14px;
	font-size: 46px;
	letter-spacing: -0.04em;
}

.price-card h3 small {
	font-size: 15px;
	letter-spacing: 0;
}

.price-card p {
	min-height: 58px;
	margin: 0 0 30px;
	color: var(--fl-muted);
}

.price-card .fl-button {
	width: 100%;
	margin-top: auto;
}

.checkout-note {
	display: flex;
	gap: 18px;
	max-width: 950px;
	margin-top: 22px;
	color: var(--fl-muted);
	font-size: 13px;
}

.checkout-note strong {
	flex: 0 0 auto;
	color: var(--fl-ink);
}

.faq-layout {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(50px, 8vw, 110px);
}

.faq-list {
	border-top: 1px solid var(--fl-line);
}

.faq-list details {
	border-bottom: 1px solid var(--fl-line);
}

.faq-list summary {
	padding: 24px 36px 24px 0;
	cursor: pointer;
	font-size: 17px;
	font-weight: 750;
}

.faq-list p {
	margin: -5px 0 25px;
	color: var(--fl-muted);
}

.support-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.support-card {
	padding: 42px;
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius-md);
	background: var(--fl-paper);
}

.support-card h2 {
	margin: 34px 0 12px;
	font-size: 28px;
	letter-spacing: -0.03em;
}

.support-card p {
	color: var(--fl-muted);
}

.docs-layout {
	display: grid;
	align-items: start;
	grid-template-columns: 230px minmax(0, 760px);
	justify-content: space-between;
	gap: 80px;
}

.docs-nav {
	position: sticky;
	top: 30px;
	display: grid;
	gap: 9px;
	padding: 24px;
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius-sm);
	background: var(--fl-paper);
}

.docs-nav strong {
	margin-bottom: 8px;
}

.docs-nav a {
	color: var(--fl-muted);
	font-size: 14px;
	text-decoration: none;
}

.docs-nav a:hover {
	color: var(--fl-violet);
}

.docs-content > section {
	padding: 0 0 70px;
	scroll-margin-top: 30px;
}

.docs-content > section + section {
	padding-top: 70px;
	border-top: 1px solid var(--fl-line);
}

.docs-content h2 {
	margin: 20px 0 24px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 42px;
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.docs-content h3 {
	margin: 30px 0 8px;
}

.docs-content p,
.docs-content li {
	color: #4f4e56;
}

.docs-content pre {
	overflow-x: auto;
	padding: 22px;
	border-radius: var(--fl-radius-sm);
	background: #17171d;
	color: #f4f2ff;
}

.docs-callout,
.legal-alert {
	margin-top: 28px;
	padding: 22px 24px;
	border-left: 4px solid var(--fl-violet);
	border-radius: 0 var(--fl-radius-sm) var(--fl-radius-sm) 0;
	background: var(--fl-violet-soft);
}

.docs-callout p,
.legal-alert p {
	margin: 5px 0 0;
}

.prose,
.legal-prose {
	padding-top: 70px;
	padding-bottom: 120px;
}

.prose {
	max-width: 780px;
}

.prose--flush {
	padding-bottom: 0;
}

.legal-prose {
	max-width: 800px;
}

.legal-prose h2 {
	margin: 46px 0 12px;
	font-size: 25px;
	letter-spacing: -0.025em;
}

.legal-prose h2:first-child {
	margin-top: 0;
}

.legal-prose p,
.legal-prose li {
	color: #4f4e56;
}

.legal-updated {
	margin-top: 60px;
	padding-top: 24px;
	border-top: 1px solid var(--fl-line);
	font-size: 13px;
}

@media (max-width: 960px) {
	.hero {
		padding-top: 72px;
	}

	.hero__grid,
	.product-card {
		grid-template-columns: 1fr;
	}

	.hero__grid {
		gap: 70px;
	}

	.product-visual {
		width: min(720px, 92%);
		margin-inline: auto;
	}

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

	.intro-strip__item:nth-child(3) {
		padding-left: 0;
		border-left: 0;
		border-top: 1px solid var(--fl-line);
	}

	.intro-strip__item:nth-child(4) {
		border-top: 1px solid var(--fl-line);
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.product-card__visual {
		min-height: auto;
	}

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

	.footer-grid > div:last-child {
		grid-column: 2;
	}

	.page-hero__grid,
	.product-listing,
	.faq-layout {
		grid-template-columns: 1fr;
	}

	.page-hero__grid {
		gap: 32px;
	}

	.page-hero__grid .page-hero__lead {
		margin: 0;
	}

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

	.docs-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.docs-nav {
		position: static;
		grid-template-columns: repeat(2, 1fr);
	}

	.docs-nav strong {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.fl-container {
		width: min(calc(100% - 28px), var(--fl-container));
	}

	.site-header {
		padding: 15px 0;
	}

	.menu-toggle {
		display: block;
	}

	.menu-toggle[aria-expanded="true"] span:first-child {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded="true"] span:last-child {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-nav {
		position: absolute;
		top: 76px;
		right: 14px;
		left: 14px;
		display: none;
		align-items: stretch;
		flex-direction: column;
		padding: 24px;
		border: 1px solid var(--fl-line);
		border-radius: var(--fl-radius-md);
		background: var(--fl-white);
		box-shadow: var(--fl-shadow);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.site-nav li a {
		display: block;
		padding: 13px 4px;
	}

	.site-nav__cta {
		width: 100%;
	}

	.hero {
		padding: 68px 0 92px;
	}

	.hero h1 {
		font-size: clamp(48px, 15vw, 66px);
	}

	.product-visual {
		width: calc(100% - 12px);
		padding: 8px;
		border-radius: 24px;
	}

	.product-visual img {
		border-radius: 17px;
	}

	.product-visual__badge {
		bottom: 18px;
		left: -8px;
	}

	.intro-strip__inner,
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.intro-strip__item,
	.intro-strip__item:nth-child(3) {
		padding: 22px 0;
		border-top: 1px solid var(--fl-line);
		border-left: 0;
	}

	.intro-strip__item:first-child {
		border-top: 0;
	}

	.section {
		padding: 88px 0;
	}

	.section-heading {
		margin-bottom: 38px;
	}

	.feature-card {
		min-height: 0;
	}

	.feature-card__number {
		margin-bottom: 34px;
	}

	.product-card__content {
		padding: 44px 28px;
	}

	.cta-panel {
		align-items: flex-start;
		flex-direction: column;
		padding: 44px 28px;
	}

	.footer-grid,
	.split-layout,
	.trust-grid,
	.story-grid,
	.support-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		gap: 34px;
	}

	.footer-grid > div:last-child {
		grid-column: auto;
	}

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

	.page-hero,
	.newsletter-hero {
		padding: 76px 0 84px;
	}

	.page-hero h1,
	.newsletter-hero h1 {
		font-size: clamp(48px, 14vw, 66px);
	}

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

	.workflow-grid article {
		min-height: 0;
	}

	.workflow-grid h3 {
		margin-top: 42px;
	}

	.price-card {
		padding: 30px;
	}

	.checkout-note {
		flex-direction: column;
	}

	.docs-nav {
		grid-template-columns: 1fr;
	}

	.docs-nav strong {
		grid-column: auto;
	}

	.docs-content h2 {
		font-size: 36px;
	}

	.support-card {
		padding: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
