/* Framecraft landing — scoped so parent Twenty Twenty-Five pages are untouched */
body:has(.fc-landing) {
	background: #fff !important;
}
body:has(.fc-landing) .wp-site-blocks {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
}
.wp-block-template-part:has(.fc-landing) {
	margin: 0;
}

.fc-landing {
	--red: #ef233c;
	--red2: #d90429;
	--ink: #101828;
	--muted: #667085;
	--line: #eaecf0;
	color: var(--ink);
	background: #fff;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: clip;
}
.fc-landing,
.fc-landing * {
	box-sizing: border-box;
}
.fc-landing a {
	text-decoration: none;
	color: inherit;
}
.fc-landing .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;
}
.fc-landing img,
.fc-landing svg {
	max-width: 100%;
	height: auto;
}
.fc-landing .container {
	width: min(1180px, calc(100% - 40px));
	margin: auto;
}

/* Header */
.fc-landing header {
	min-height: 76px;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
	position: sticky;
	top: 0;
	z-index: 20;
}
.fc-landing .nav {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.fc-landing .logo {
	font-weight: 800;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 9px;
	flex-shrink: 1;
	min-width: 0;
	white-space: nowrap;
}
.fc-landing .logo-mark {
	width: 36px;
	height: 27px;
	border-radius: 8px;
	background: var(--red);
	position: relative;
	flex-shrink: 0;
}
.fc-landing .logo-mark:after {
	content: "";
	position: absolute;
	left: 14px;
	top: 7px;
	border-left: 9px solid white;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
.fc-landing .logo-red {
	color: var(--red);
}
.fc-landing .fc-nav-checkbox {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.fc-landing nav {
	display: flex;
	gap: 30px;
	color: #344054;
	font-size: 14px;
}
.fc-landing nav a:hover {
	color: var(--red);
}
.fc-landing .nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: #fff;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	flex-shrink: 0;
}
.fc-landing .nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
}

/* Buttons */
.fc-landing .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 21px;
	border-radius: 9px;
	font-weight: 750;
	font-size: 14px;
	font-family: inherit;
	line-height: 1.2;
	border: 1px solid transparent;
	cursor: pointer;
	appearance: none;
	background: none;
	white-space: nowrap;
}
.fc-landing .primary {
	background: var(--red);
	color: #fff;
	box-shadow: 0 8px 20px rgba(239, 35, 60, 0.16);
}
.fc-landing .secondary {
	background: #fff;
	border-color: #d0d5dd;
}
.fc-landing .primary:hover {
	background: var(--red2);
}

/* Hero */
.fc-landing .hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 35%, rgba(239, 35, 60, 0.13), transparent 34%),
		linear-gradient(180deg, #fff 0, #fff7f8 100%);
}
.fc-landing .hero-inner {
	min-height: 620px;
	display: grid;
	grid-template-columns: minmax(0, 39%) minmax(0, 61%);
	align-items: center;
}
.fc-landing .copy {
	padding: 55px 0;
	min-width: 0;
}
.fc-landing .badge {
	display: inline-block;
	padding: 7px 13px;
	border-radius: 99px;
	background: #ffe8eb;
	color: var(--red2);
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 20px;
}
.fc-landing h1 {
	font-size: clamp(32px, 4.4vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.04em;
	margin: 0;
	max-width: 510px;
}
.fc-landing h1 span {
	color: var(--red);
}
.fc-landing .lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	max-width: 475px;
	margin: 22px 0 28px;
}
.fc-landing .actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.fc-landing .art-wrap {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-height: 0;
	min-width: 0;
}
.fc-landing .hero-art {
	width: min(100%, 900px);
	aspect-ratio: 910 / 550;
	background: url(images/hero-devices.png) center / contain no-repeat;
	filter: drop-shadow(0 24px 35px rgba(16, 24, 40, 0.10));
	margin-right: -40px;
}
.fc-landing .hero-art-img {
	aspect-ratio: auto;
	background: none;
	height: auto;
}

/* Hero icon features */
.fc-landing .hero-feats {
	display: flex;
	gap: 10px 22px;
	margin-top: 32px;
	flex-wrap: wrap;
}
.fc-landing .hfeat {
	width: 112px;
	text-align: center;
}
.fc-landing .hfeat .ic {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	color: #ef233c;
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.10);
	display: grid;
	place-items: center;
	margin: 0 auto 10px;
}
.fc-landing .hfeat b {
	display: block;
	font-size: 13.5px;
	color: #101828;
	line-height: 1.25;
	margin-bottom: 3px;
}
.fc-landing .hfeat small {
	display: block;
	font-size: 11px;
	color: #667085;
	line-height: 1.4;
}

/* Sections */
.fc-landing .section {
	padding: 90px 0;
}
.fc-landing .soft {
	background: #fafafa;
}
.fc-landing .center {
	text-align: center;
}
.fc-landing .eyebrow {
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 1px;
	color: var(--red);
	text-transform: uppercase;
}
.fc-landing h2 {
	font-size: clamp(28px, 3.4vw, 40px);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 9px 0 13px;
}
.fc-landing .intro {
	max-width: 650px;
	margin: auto;
	color: var(--muted);
	line-height: 1.6;
}
.fc-landing .cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 44px;
}
.fc-landing .card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 8px 26px rgba(16, 24, 40, 0.04);
	text-align: left;
}
.fc-landing .icon {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: #ffe8eb;
	color: var(--red);
	display: grid;
	place-items: center;
	font-size: 20px;
	margin-bottom: 17px;
}
.fc-landing .card h3 {
	margin: 0 0 7px;
	font-size: 18px;
}
.fc-landing .card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}
.fc-landing .steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 35px;
	margin-top: 45px;
}
.fc-landing .step {
	text-align: center;
}
.fc-landing .num {
	width: 43px;
	height: 43px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--red);
	color: #fff;
	font-weight: 800;
	margin: 0 auto 15px;
}
.fc-landing .step h3 {
	margin: 0 0 7px;
}
.fc-landing .step p {
	color: var(--muted);
	font-size: 14px;
}

/* Pricing */
.fc-landing .pricing-card {
	width: min(720px, 100%);
	margin: 42px auto 0;
	padding: 38px;
	background: #fff;
	border: 2px solid #ef233c;
	border-radius: 22px;
	text-align: left;
	box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}
.fc-landing .pricing-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.fc-landing .pricing-name {
	font-size: 25px;
	font-weight: 800;
}
.fc-landing .pricing-description {
	color: #667085;
	font-size: 14px;
	line-height: 1.55;
	max-width: 390px;
	margin: 7px 0 0;
}
.fc-landing .price {
	white-space: nowrap;
	color: #101828;
	display: flex;
	align-items: baseline;
	flex-shrink: 0;
}
.fc-landing .currency {
	font-size: 21px;
	font-weight: 750;
	margin-right: 4px;
}
.fc-landing .amount {
	font-size: 45px;
	font-weight: 850;
	letter-spacing: -2px;
}
.fc-landing .period {
	font-size: 14px;
	color: #667085;
	margin-left: 4px;
}
.fc-landing .pricing-divider {
	height: 1px;
	background: #eaecf0;
	margin: 28px 0;
}
.fc-landing .pricing-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px 30px;
	color: #344054;
	font-size: 14px;
	font-weight: 600;
}
.fc-landing .pricing-features div::first-letter {
	color: #ef233c;
}
.fc-landing .pricing-btn {
	width: 100%;
	margin-top: 30px;
	text-align: center;
}
.fc-landing .pricing-note {
	text-align: center;
	color: #98a2b3;
	font-size: 12px;
	margin-top: 12px;
}

/* CTA */
.fc-landing .cta {
	padding: 85px 0;
	text-align: center;
	background: linear-gradient(135deg, #fff0f2, #fff);
	border-top: 1px solid #fee2e5;
}
.fc-landing .cta h2 {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.fc-landing .cta .intro {
	margin-bottom: 26px;
}
.fc-landing .cta-form {
	display: flex;
	gap: 10px;
	max-width: 560px;
	margin: 0 auto;
	align-items: stretch;
}
.fc-landing .cta-form input {
	flex: 1;
	min-width: 0;
	height: 50px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: 9px;
	font-size: 16px;
	font-family: inherit;
	color: var(--ink);
	background: #fff;
}
.fc-landing .cta-form input::placeholder {
	color: #98a2b3;
}
.fc-landing .cta-form input:focus {
	outline: 2px solid rgba(239, 35, 60, 0.35);
	border-color: var(--red);
}
.fc-landing .cta-form .btn {
	height: 50px;
	padding: 0 22px;
	flex-shrink: 0;
}

/* Footer */
.fc-landing footer {
	border-top: 1px solid var(--line);
	padding: 28px 0;
	color: #98a2b3;
	font-size: 12px;
}
.fc-landing .foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

/* Tablet */
@media (max-width: 960px) {
	.fc-landing .nav-toggle {
		display: flex;
	}
	.fc-landing nav {
		display: none;
		flex-basis: 100%;
		flex-direction: column;
		gap: 0;
		order: 5;
		padding: 4px 0 12px;
	}
	.fc-landing .fc-nav-checkbox:checked ~ nav {
		display: flex;
	}
	.fc-landing nav a {
		padding: 14px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
	}
	.fc-landing .logo {
		order: 1;
		margin-right: auto;
	}
	.fc-landing .header-login {
		order: 2;
	}
	.fc-landing .nav-toggle {
		order: 3;
	}
	.fc-landing .hero-inner {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 12px 0 36px;
	}
	.fc-landing .copy {
		text-align: center;
		padding: 28px 0 8px;
	}
	.fc-landing h1,
	.fc-landing .lead {
		margin-left: auto;
		margin-right: auto;
		max-width: none;
	}
	.fc-landing .actions {
		justify-content: center;
	}
	.fc-landing .hero-feats {
		justify-content: center;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 12px;
		max-width: 380px;
		margin-left: auto;
		margin-right: auto;
	}
	.fc-landing .hfeat {
		width: auto;
	}
	.fc-landing .art-wrap {
		justify-content: center;
	}
	.fc-landing .hero-art {
		width: min(100%, 560px);
		margin: 0 auto;
	}
	.fc-landing .cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.fc-landing .steps {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 650px) {
	.fc-landing .container {
		width: calc(100% - 28px);
	}
	.fc-landing header,
	.fc-landing .nav {
		min-height: 64px;
	}
	.fc-landing .logo {
		font-size: 16px;
		gap: 7px;
	}
	.fc-landing .logo-mark {
		width: 30px;
		height: 22px;
	}
	.fc-landing .logo-mark:after {
		left: 11px;
		top: 5px;
		border-left-width: 8px;
		border-top-width: 5px;
		border-bottom-width: 5px;
	}
	.fc-landing .header-login {
		padding: 10px 14px;
		font-size: 13px;
	}
	.fc-landing .lead {
		font-size: 16px;
	}
	.fc-landing .actions {
		flex-direction: column;
	}
	.fc-landing .actions .btn {
		width: 100%;
	}
	.fc-landing .section {
		padding: 56px 0;
	}
	.fc-landing .cards {
		grid-template-columns: 1fr;
	}
	.fc-landing .card {
		padding: 22px;
	}
	.fc-landing .pricing-card {
		padding: 24px 18px;
	}
	.fc-landing .pricing-top {
		display: block;
	}
	.fc-landing .price {
		margin-top: 16px;
	}
	.fc-landing .pricing-features {
		grid-template-columns: 1fr;
	}
	.fc-landing .amount {
		font-size: 36px;
		letter-spacing: -1px;
	}
	.fc-landing .cta {
		padding: 56px 0;
	}
	.fc-landing .cta-form {
		flex-direction: column;
	}
	.fc-landing .cta-form .btn {
		width: 100%;
	}
	.fc-landing .foot {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 400px) {
	.fc-landing .logo {
		font-size: 14px;
	}
	.fc-landing .header-login {
		padding: 9px 10px;
	}
	.fc-landing .hero-feats {
		grid-template-columns: 1fr 1fr;
		max-width: none;
	}
	.fc-landing .hfeat .ic {
		width: 48px;
		height: 48px;
	}
}
