/* =========================================================================
   FamilyTree MVP: shared components and marketing pages
   ========================================================================= */

.ft-wrap { width: min(100% - 48px, var(--ft-wrap)); margin-inline: auto; }
.ft-wrap--narrow { width: min(100% - 48px, 780px); }
.ft-icon { flex: none; }
.ft-muted { color: var(--ft-muted); }
.ft-lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--ft-ink-soft); max-width: 34em; }
.ft-hint { font-size: 0.875rem; color: var(--ft-muted); margin: 12px 0 0; }
.ft-hide-xs, .ft-hide-sm { }

/* ---------- Buttons ---------- */
.ft-btn {
	--btn-bg: transparent; --btn-fg: var(--ft-ink); --btn-bd: transparent;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 0 22px;
	font: 600 0.9375rem/1 var(--ft-font-sans); letter-spacing: 0.005em;
	background: var(--btn-bg); color: var(--btn-fg);
	border: 1.5px solid var(--btn-bd); border-radius: var(--ft-r-md);
	text-decoration: none; cursor: pointer; white-space: nowrap;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.ft-btn:hover { transform: translateY(-1px); }
.ft-btn:active { transform: translateY(0); }
.ft-btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
.ft-btn--primary { --btn-bg: var(--ft-ink); --btn-fg: #fff; }
.ft-btn--primary:hover { box-shadow: 0 8px 22px rgba(36, 27, 59, 0.28); }
.ft-btn--thread { --btn-bg: var(--ft-thread); --btn-fg: var(--ft-ink-deep); }
.ft-btn--thread:hover { box-shadow: 0 8px 22px rgba(242, 179, 0, 0.45); --btn-bg: #ffc21a; }
.ft-btn--ghost { --btn-bd: var(--ft-line-strong); --btn-fg: var(--ft-ink); background: transparent; }
.ft-btn--ghost:hover { border-color: var(--ft-ink); background: rgba(255, 255, 255, 0.6); }
.ft-btn--quiet { --btn-fg: var(--ft-ink-soft); padding-inline: 12px; }
.ft-btn--quiet:hover { background: var(--ft-lilac); }
.ft-btn--danger { --btn-bg: var(--ft-danger); --btn-fg: #fff; }
.ft-btn--outline-light { --btn-bd: rgba(255, 255, 255, 0.4); --btn-fg: #fff; }
.ft-btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.ft-btn--sm { min-height: 38px; padding: 0 14px; font-size: 0.875rem; border-radius: 10px; }
.ft-btn--lg { min-height: 58px; padding: 0 30px; font-size: 1rem; }
.ft-btn--block { width: 100%; }
.ft-btn.is-danger { color: var(--ft-danger); }
.ft-link-quiet { font-weight: 600; font-size: 0.9375rem; text-decoration: none; padding: 8px 12px; border-radius: 10px; }
.ft-link-quiet:hover { background: var(--ft-lilac); }
.ft-linkbtn { background: none; border: 0; padding: 4px 0; font: inherit; font-size: 0.875rem; font-weight: 600; color: var(--ft-ink-soft); text-decoration: underline; text-decoration-color: var(--ft-thread); text-decoration-thickness: 2px; text-underline-offset: 3px; cursor: pointer; }
.ft-linkbtn:hover { color: var(--ft-ink); }
.ft-icon-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 0; background: transparent; border-radius: 10px; color: var(--ft-ink-soft); cursor: pointer; }
.ft-icon-btn:hover { background: var(--ft-lilac); color: var(--ft-ink); }

/* ---------- Header ---------- */
.ft-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(246, 244, 250, 0.9);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.ft-header.is-scrolled, .ft-header--app { border-bottom-color: var(--ft-line); }
.ft-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--ft-header-h); }
.ft-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ft-ink); }
.ft-brand-name { font-family: var(--ft-font-display); font-size: 1.65rem; letter-spacing: -0.01em; line-height: 1; }
.ft-brand--light { color: #fff; }
.ft-brand-logo { max-height: 42px; width: auto; }
.ft-nav { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: flex-end; }
.ft-nav-list { display: flex; gap: 6px; list-style: none; margin: 0 auto 0 0; padding: 0; }
.ft-nav-list a { display: block; padding: 8px 14px; border-radius: 10px; font-weight: 550; font-size: 0.9375rem; text-decoration: none; color: var(--ft-ink-soft); }
.ft-nav-list a:hover, .ft-nav-list a[aria-current="page"] { color: var(--ft-ink); background: var(--ft-lilac); }
.ft-nav-actions { display: flex; align-items: center; gap: 8px; }
.ft-nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 12px; cursor: pointer; place-items: center; color: var(--ft-ink); }
.ft-nav-toggle .ft-nav-close { display: none; }
.ft-header.is-open .ft-nav-toggle .ft-nav-open { display: none; }
.ft-header.is-open .ft-nav-toggle .ft-nav-close { display: block; }

.ft-usermenu { position: relative; }
.ft-usermenu summary { list-style: none; display: flex; align-items: center; gap: 8px; padding: 4px 10px 4px 4px; border: 1.5px solid var(--ft-line); border-radius: 999px; cursor: pointer; font-weight: 600; font-size: 0.9rem; background: #fff; }
.ft-usermenu summary::-webkit-details-marker { display: none; }
.ft-usermenu summary:hover { border-color: var(--ft-line-strong); }
.ft-usermenu-panel { position: absolute; right: 0; top: calc(100% + 8px); min-width: 220px; background: #fff; border: 1px solid var(--ft-line); border-radius: 16px; padding: 8px; box-shadow: var(--ft-shadow-md); }
.ft-usermenu-panel a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; text-decoration: none; font-weight: 550; font-size: 0.9375rem; }
.ft-usermenu-panel a:hover { background: var(--ft-lilac); }
.ft-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; display: inline-grid; place-items: center; background: var(--ft-thread); color: var(--ft-ink-deep); font-weight: 700; }

/* ---------- Hero ---------- */
.ft-hero { padding: clamp(40px, 6vw, 88px) 0 clamp(64px, 8vw, 120px); overflow: hidden; }
.ft-hero-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; gap: clamp(32px, 5vw, 80px); }
.ft-hero-brand { margin: 0 0 12px; color: var(--ft-meadow); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.ft-hero h1 { font-size: clamp(3.4rem, 7vw, 6.4rem); line-height: 0.98; letter-spacing: -0.025em; margin-bottom: 0.3em; }
.ft-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.ft-hero-facts { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 0.9375rem; font-weight: 550; color: var(--ft-ink-soft); }
.ft-hero-facts li { display: inline-flex; align-items: center; gap: 8px; }
.ft-hero-facts .ft-icon { color: var(--ft-meadow); width: 18px; height: 18px; stroke-width: 2.4; }

.ft-hero-visual { position: relative; padding: 0 0 44px 28px; }
.ft-hero-visual::before {
	content: ""; position: absolute; inset: 34px 0 0 60px; background: var(--ft-thread); border-radius: var(--ft-r-xl);
	transform: rotate(1.6deg);
}
.ft-window { position: relative; background: #fff; border: 1px solid var(--ft-line); border-radius: 22px; box-shadow: var(--ft-shadow-lg); overflow: hidden; transform: rotate(-0.8deg); }
.ft-window-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--ft-line); background: #fff; }
.ft-window-dots { display: inline-flex; gap: 6px; }
.ft-window-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--ft-mist); }
.ft-window-title { font-weight: 650; font-size: 0.875rem; }
.ft-window-saved { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 600; color: var(--ft-meadow); background: var(--ft-meadow-soft); padding: 4px 10px; border-radius: 999px; }
.ft-window-saved .ft-icon { width: 14px; height: 14px; stroke-width: 2.6; }
.ft-window-body { background-color: #f1eef8; background-image: radial-gradient(rgba(36, 27, 59, 0.16) 1px, transparent 1.2px); background-size: 22px 22px; padding: 20px 14px 34px; }
.ft-hero-note { position: absolute; left: 0; bottom: 6px; display: flex; align-items: center; gap: 12px; background: var(--ft-ink); color: #fff; padding: 12px 18px 12px 12px; border-radius: 16px; font-size: 0.8125rem; line-height: 1.35; box-shadow: var(--ft-shadow-md); }
.ft-hero-note strong { font-size: 0.875rem; }
.ft-hero-note span { opacity: 0.8; }
.ft-hero-note strong { opacity: 1; }
.ft-hero-note-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, 0.12); opacity: 1 !important; }
.ft-hero-note-mark .ft-icon { color: var(--ft-thread); }

.ft-hero-tree { width: 100%; height: auto; overflow: visible; }
.ft-hero-threads path { stroke: var(--ft-thread-deep); stroke-width: 3; stroke-dasharray: 1; stroke-dashoffset: 1; animation: ft-draw 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards; }
.ft-hero-threads path:nth-child(1) { animation-delay: 0.7s; }
.ft-hero-threads path:nth-child(2) { animation-delay: 0.85s; }
.ft-hero-threads path:nth-child(3) { animation-delay: 1.3s; }
.ft-hero-threads path:nth-child(4) { animation-delay: 1.45s; }
.ft-hero-threads path:nth-child(5) { animation-delay: 1.1s; }
.ft-hero-spouse path { stroke: var(--ft-ink); stroke-opacity: 0.55; stroke-width: 3; }
.ft-hero-ring { fill: #f1eef8; stroke: var(--ft-ink); stroke-opacity: 0.7; stroke-width: 2; }
.ft-hero-card { opacity: 0; animation: ft-rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; animation-delay: calc(var(--i) * 0.11s + 0.15s); }
.ft-hero-card-shadow { fill: var(--ft-ink); opacity: 0.1; }
.ft-hero-card-bg { fill: #fff; stroke: var(--ft-mist); stroke-width: 1.5; }
.ft-hero-name { font-family: var(--ft-font-sans); font-size: 12.5px; font-weight: 650; fill: var(--ft-ink); }
.ft-hero-dates { font-family: var(--ft-font-sans); font-size: 11px; fill: var(--ft-muted); }
.ft-hero-initials { font-family: var(--ft-font-sans); font-size: 11.5px; font-weight: 700; }
@keyframes ft-draw { to { stroke-dashoffset: 0; } }
@keyframes ft-rise { from { opacity: 0; transform: translate(var(--tx, 0), 10px); } to { opacity: 1; } }

/* ---------- Sections ---------- */
.ft-section { padding: clamp(72px, 9vw, 140px) 0; }
.ft-section--tight { padding: clamp(32px, 5vw, 64px) 0 clamp(64px, 8vw, 110px); }
.ft-section-head { max-width: 46rem; margin-bottom: clamp(36px, 5vw, 64px); }
.ft-section-head p { font-size: 1.15rem; color: var(--ft-ink-soft); margin-top: -0.2em; }
.ft-section-head--center { margin-inline: auto; text-align: center; }
.ft-section-head--center .ft-lede { margin-inline: auto; }

/* How it works */
.ft-how { background: #fff; border-block: 1px solid var(--ft-line); }
.ft-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 64px); position: relative; counter-reset: step; }
.ft-steps::before { content: ""; position: absolute; left: 28px; right: calc(33.3% - 28px); top: 28px; height: 3px; background: repeating-linear-gradient(90deg, var(--ft-thread) 0 10px, transparent 10px 18px); }
.ft-step { position: relative; }
.ft-step-node { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ft-ink); color: var(--ft-thread); font-family: var(--ft-font-display); font-size: 1.7rem; line-height: 1; margin-bottom: 24px; position: relative; box-shadow: 0 0 0 8px #fff; }
.ft-step h3 { font-size: 2.1rem; margin-bottom: 0.3em; }
.ft-step p { color: var(--ft-ink-soft); margin: 0; max-width: 22em; }

/* Features */
.ft-features-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.ft-features-intro { position: sticky; top: calc(var(--ft-header-h) + 32px); }
.ft-features-intro p { color: var(--ft-ink-soft); font-size: 1.1rem; margin-bottom: 1.6em; }
.ft-ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ft-line-strong); }
.ft-ledger-row { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--ft-line); }
.ft-ledger-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--ft-lilac); color: var(--ft-ink); }
.ft-ledger-icon .ft-icon { width: 24px; height: 24px; }
.ft-ledger-row:nth-child(even) .ft-ledger-icon { background: #fdefc4; }
.ft-ledger-row h3 { font-size: 1.75rem; margin: 2px 0 0.25em; }
.ft-ledger-row p { margin: 0; color: var(--ft-ink-soft); max-width: 36em; }

/* Owned / Drive */
.ft-owned { background: var(--ft-ink); color: #fff; position: relative; overflow: hidden; }
.ft-owned::before { content: ""; position: absolute; inset: 0; background-image: var(--ft-noise); pointer-events: none; }
.ft-owned > .ft-wrap { position: relative; }
.ft-owned h2 { color: #fff; }
.ft-owned-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.ft-owned-copy p { color: rgba(255, 255, 255, 0.78); font-size: 1.1rem; max-width: 30em; }
.ft-drive-panel { background: var(--ft-ink-deep); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 24px; padding: 22px; }
.ft-drive-path { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.ft-drive-path span { display: inline-flex; align-items: center; gap: 8px; }
.ft-drive-path .ft-icon { color: var(--ft-thread); width: 18px; height: 18px; }
.ft-drive-path-sep { opacity: 0.4; }
.ft-drive-file { display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.06); border-radius: 16px; padding: 14px 16px; margin: 18px 0; }
.ft-drive-file-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--ft-thread); color: var(--ft-ink-deep); }
.ft-drive-file strong { display: block; font-size: 1rem; }
.ft-drive-file small { color: rgba(255, 255, 255, 0.6); font-size: 0.8125rem; }
.ft-drive-file-ok { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 700; color: #7fe0b7; }
.ft-drive-file-ok .ft-icon { width: 16px; height: 16px; stroke-width: 2.6; }
.ft-drive-code { margin: 0; padding: 18px; border-radius: 14px; background: rgba(0, 0, 0, 0.3); color: #cbc3e6; font: 0.8125rem/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; overflow-x: auto; }

/* Pricing (home) */
.ft-plans { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 24px; align-items: stretch; }
.ft-plan { background: #fff; border: 1px solid var(--ft-line); border-radius: 28px; padding: clamp(24px, 3.5vw, 44px); display: flex; flex-direction: column; }
.ft-plan h3 { font-size: 1.6rem; margin-bottom: 0.2em; }
.ft-plan-price { font-family: var(--ft-font-display); font-size: clamp(3.5rem, 7vw, 6rem); line-height: 1; margin: 0.1em 0 0.15em; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 12px; }
.ft-plan-price small { font: 600 0.9375rem var(--ft-font-sans); letter-spacing: 0; opacity: 0.7; }
.ft-plan-sub { margin: 0 0 1.4em; opacity: 0.8; }
.ft-plan .ft-btn { margin-top: auto; }
.ft-plan--main { background: var(--ft-ink); color: #fff; border-color: var(--ft-ink); position: relative; box-shadow: 0 20px 60px rgba(36, 27, 59, 0.28); }
.ft-plan--main::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(242, 179, 0, 0.7), rgba(242, 179, 0, 0) 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.ft-plan--main h3, .ft-plan--main .ft-plan-price { color: #fff; }
.ft-plan--main .ft-plan-price span { color: var(--ft-thread); }
.ft-checklist { list-style: none; margin: 8px 0 32px; padding: 0; display: grid; gap: 12px; }
.ft-checklist li { display: flex; align-items: center; gap: 12px; font-weight: 550; }
.ft-checklist .ft-icon { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--ft-meadow-soft); color: var(--ft-meadow); stroke-width: 3; }
.ft-plan--main .ft-checklist .ft-icon { background: var(--ft-thread); color: var(--ft-ink-deep); }
.ft-checklist--two { grid-template-columns: 1fr 1fr; gap: 12px 24px; }

/* Voices */
.ft-voices { background: #fff; border-block: 1px solid var(--ft-line); }
.ft-voices-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 24px clamp(32px, 6vw, 96px); }
.ft-voice { margin: 0; }
.ft-voice blockquote { margin: 0 0 16px; }
.ft-voice blockquote p { font-family: var(--ft-font-display); font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.25; margin: 0; }
.ft-voice figcaption { font-size: 0.9rem; color: var(--ft-muted); }
.ft-voice figcaption strong { color: var(--ft-ink); }
.ft-voice--lead { grid-row: 1 / span 2; padding-right: 8px; }
.ft-voice--lead blockquote p { font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.12; font-style: italic; }
.ft-voice:not(.ft-voice--lead) { padding-top: 22px; border-top: 3px solid var(--ft-thread); }
.ft-voices-note { margin: 48px 0 0; font-size: 0.8125rem; color: var(--ft-muted); }

/* FAQ */
.ft-faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); }
.ft-faq-item { border-bottom: 1px solid var(--ft-line); }
.ft-faq-item:first-child { border-top: 1px solid var(--ft-line-strong); }
.ft-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-weight: 650; font-size: 1.125rem; }
.ft-faq-item summary::-webkit-details-marker { display: none; }
.ft-faq-item summary .ft-icon { width: 26px; height: 26px; padding: 4px; border-radius: 50%; background: var(--ft-lilac); transition: transform 0.25s ease, background 0.25s ease; }
.ft-faq-item[open] summary .ft-icon { transform: rotate(45deg); background: var(--ft-thread); }
.ft-faq-item p { margin: 0 0 24px; color: var(--ft-ink-soft); max-width: 38em; }

/* CTA */
.ft-cta { padding: 0 0 clamp(64px, 8vw, 120px); }
.ft-cta-inner { background: var(--ft-ink); color: #fff; border-radius: var(--ft-r-xl); padding: clamp(40px, 7vw, 96px); position: relative; overflow: hidden; }
.ft-cta-inner::before { content: ""; position: absolute; inset: 0; background-image: var(--ft-noise); pointer-events: none; }
.ft-cta-inner::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, rgba(242, 179, 0, 0.55), rgba(242, 179, 0, 0) 70%); filter: blur(2px); }
.ft-cta h2 { color: #fff; font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 0.15em; position: relative; }
.ft-cta p { color: rgba(255, 255, 255, 0.78); font-size: 1.2rem; position: relative; }
.ft-cta .ft-hero-actions { position: relative; }

/* ---------- Footer ---------- */
.ft-footer { background: var(--ft-ink-deep); color: rgba(255, 255, 255, 0.72); padding: clamp(48px, 6vw, 88px) 0 32px; }
.ft-footer h4 { font: 700 0.8125rem var(--ft-font-sans); letter-spacing: 0.02em; color: #fff; margin: 0 0 16px; }
.ft-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ft-footer a { text-decoration: none; }
.ft-footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--ft-thread); }
.ft-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.ft-footer-brand p { margin-top: 16px; max-width: 22em; }
.ft-brand--footer { display: inline-flex; align-items: center; max-width: 100%; }
.ft-footer-brand-logo { display: block; width: auto; height: auto; max-width: min(360px, 100%); max-height: 92px; object-fit: contain; object-position: left center; }
@media (max-width: 640px) { .ft-footer-brand-logo { max-width: 280px; max-height: 76px; } }

.ft-footer-base { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.875rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ft-footer--slim { background: transparent; color: var(--ft-muted); padding: 24px 0; border-top: 1px solid var(--ft-line); }
.ft-footer-slim-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.875rem; }
.ft-footer-links { display: flex; align-items: center; gap: 20px; }
.ft-footer--slim a:hover { color: var(--ft-ink); }

.ft-powered-full { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; opacity: 0.9; transition: opacity 0.15s ease; }
.ft-powered-full:hover { opacity: 1; }
.ft-powered-full-text { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); font-weight: 600; }
.ft-powered-full img { height: 42px; width: auto; display: block; }

.ft-powered-light { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; opacity: 0.85; transition: opacity 0.15s ease; }
.ft-powered-light:hover { opacity: 1; }
.ft-powered-light-text { font-size: 0.75rem; color: var(--ft-muted); font-weight: 600; }
.ft-powered-light img { height: 42px; width: auto; display: block; }

/* ---------- Generic pages ---------- */
.ft-page-head { padding: clamp(48px, 7vw, 96px) 0 clamp(16px, 3vw, 32px); }
.ft-page-head--center { text-align: center; }
.ft-page-head--center .ft-lede { margin-inline: auto; }
.ft-page-head time { font-size: 0.875rem; color: var(--ft-muted); font-weight: 600; }
.ft-post-list { display: grid; gap: 0; }
.ft-post-item { padding: 32px 0; border-top: 1px solid var(--ft-line); }
.ft-post-item h2 { font-size: 2rem; margin: 6px 0 0.3em; }
.ft-post-item h2 a { text-decoration: none; }
.ft-post-item h2 a:hover { text-decoration: underline; text-decoration-color: var(--ft-thread); text-decoration-thickness: 3px; }
.ft-post-item time { font-size: 0.8125rem; color: var(--ft-muted); font-weight: 600; }
.ft-post-item p { color: var(--ft-ink-soft); margin: 0; }
.ft-prose { font-size: 1.125rem; line-height: 1.75; }
.ft-prose h2 { font-size: 2rem; margin: 1.6em 0 0.4em; }
.ft-prose a { color: var(--ft-ink); }
.ft-prose ul, .ft-prose ol { padding-left: 1.3em; }
.ft-prose li { margin-bottom: 0.4em; }
.ft-article-back { margin-top: 3em; padding-top: 1.5em; border-top: 1px solid var(--ft-line); font-size: 0.9375rem; }

/* ---------- Alerts, pills ---------- */
.ft-alert { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; border-radius: 14px; margin: 0 0 24px; font-size: 0.9375rem; background: var(--ft-lilac); border: 1px solid var(--ft-mist); }
.ft-alert .ft-icon { margin-top: 2px; }
.ft-alert--ok { background: var(--ft-meadow-soft); border-color: #b4e0cd; color: #164c39; }
.ft-alert--error { background: var(--ft-danger-soft); border-color: #f1bdb6; color: #7a1f16; }
.ft-alert--warn { background: #fff4cf; border-color: #f2d98a; color: #6b4b00; }
.ft-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px; background: var(--ft-lilac); font-size: 0.8125rem; font-weight: 600; color: var(--ft-ink-soft); }
.ft-pill .ft-icon { width: 14px; height: 14px; stroke-width: 2.6; }
.ft-pill--ok { background: var(--ft-meadow-soft); color: #1b5c44; }
.ft-pill--warn { background: #fff0c2; color: #6b4b00; }
.ft-pill--light { background: rgba(255, 255, 255, 0.14); color: #fff; }
.ft-ok { color: var(--ft-meadow); display: inline-flex; align-items: center; gap: 6px; }
.ft-warn { color: #a25f00; }
.ft-unlocked { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ft-meadow); background: var(--ft-meadow-soft); padding: 8px 14px; border-radius: 12px; margin: 0 0 18px; }
.ft-unlocked .ft-icon { stroke-width: 2.8; }

/* ---------- Forms ---------- */
.ft-field { display: grid; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--ft-ink-soft); }
[hidden] { display: none !important; }
.ft-field em { color: var(--ft-danger); font-style: normal; }
.ft-field input, .ft-field select, .ft-field textarea {
	width: 100%; min-height: 46px; padding: 10px 14px; font: 500 1rem var(--ft-font-sans); color: var(--ft-ink);
	background: #fff; border: 1.5px solid var(--ft-line-strong); border-radius: 12px; transition: border-color 0.15s, box-shadow 0.15s;
}
.ft-field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.ft-field input:focus, .ft-field select:focus, .ft-field textarea:focus { outline: none; border-color: var(--ft-ink); box-shadow: 0 0 0 4px rgba(242, 179, 0, 0.35); }
.ft-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ft-field-note { margin: -4px 0 0; font-size: 0.8125rem; color: var(--ft-muted); }
.ft-check { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; cursor: pointer; }
.ft-check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--ft-ink); flex: none; }
.ft-check small { color: var(--ft-muted); }
.ft-form-error { color: var(--ft-danger); font-weight: 600; font-size: 0.9rem; margin: 0; }
.ft-switch { display: flex; align-items: center; gap: 14px; font-weight: 650; cursor: pointer; }
.ft-switch input { position: absolute; opacity: 0; }
.ft-switch-track { position: relative; width: 48px; height: 28px; border-radius: 999px; background: var(--ft-mist); transition: background 0.2s; flex: none; }
.ft-switch-track::after { content: ""; position: absolute; left: 3px; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); transition: transform 0.2s; }
.ft-switch input:checked + .ft-switch-track { background: var(--ft-meadow); }
.ft-switch input:checked + .ft-switch-track::after { transform: translateX(20px); }
.ft-switch input:focus-visible + .ft-switch-track { outline: 3px solid var(--ft-thread); outline-offset: 2px; }

/* ---------- Dialogs ---------- */
.ft-dialog { width: min(100% - 32px, 480px); max-height: min(92vh, 860px); padding: 0; border: 0; border-radius: 24px; background: #fff; color: var(--ft-ink); box-shadow: var(--ft-shadow-lg); overflow: auto; }
.ft-dialog--wide { width: min(100% - 32px, 680px); }
.ft-dialog::backdrop { background: rgba(23, 15, 42, 0.55); backdrop-filter: blur(3px); }
.ft-dialog[open] { animation: ft-pop 0.22s cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes ft-pop { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
.ft-dialog-form { display: grid; gap: 18px; padding: clamp(22px, 4vw, 32px); }
.ft-dialog-form h2 { font-size: 2rem; margin: 0; }
.ft-dialog-form p { margin: 0; color: var(--ft-ink-soft); }
.ft-dialog-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.ft-dialog-sub { font-size: 0.9375rem; margin-top: 4px !important; }
.ft-dialog-actions { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.ft-upgrade-mark { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: #fdefc4; color: var(--ft-ink); }

/* ---------- Toasts / spinner ---------- */
.ft-toasts { position: fixed; left: 20px; bottom: 76px; z-index: 100000; display: grid; gap: 8px; pointer-events: none; }
.ft-toast { background: var(--ft-ink); color: #fff; padding: 12px 18px; border-radius: 12px; font-size: 0.9rem; font-weight: 550; box-shadow: var(--ft-shadow-md); opacity: 0; transform: translateY(8px); transition: opacity 0.25s, transform 0.25s; max-width: min(90vw, 380px); }
.ft-toast.is-in { opacity: 1; transform: none; }
.ft-toast--ok { background: #1b5c44; }
.ft-toast--error { background: #8f2a1f; }
.ft-spinner { width: 20px; height: 20px; border-radius: 50%; border: 3px solid var(--ft-mist); border-top-color: var(--ft-ink); animation: ft-spin 0.8s linear infinite; }
@keyframes ft-spin { to { transform: rotate(360deg); } }

/* ---------- Reveal on scroll (only when JS is running) ---------- */
.ft-js-reveal [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.ft-js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }
.ft-steps .ft-step:nth-child(2) { transition-delay: 0.1s; }
.ft-steps .ft-step:nth-child(3) { transition-delay: 0.2s; }

/* -------------------------------------------------------------------------
   Modern visual layer
   IMPORTANT: all selectors below are scoped to the theme's presentation
   components. Family-tree/editor drawing classes are intentionally untouched.
   ------------------------------------------------------------------------- */

/* Glass header */
.ft-header {
	background: rgba(246, 244, 250, 0.72);
	backdrop-filter: saturate(155%) blur(16px);
	-webkit-backdrop-filter: saturate(155%) blur(16px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 32px rgba(36, 27, 59, 0.05);
}
.ft-header.is-scrolled,
.ft-header--app {
	background: rgba(246, 244, 250, 0.86);
	box-shadow: 0 1px 0 var(--ft-line), 0 12px 34px rgba(36, 27, 59, 0.07);
}
.ft-brand { position: relative; z-index: 1; }

/* Animated navigation underline — presentation only, no tree/editor selectors. */
.ft-nav-list a {
	position: relative;
	background: transparent;
	transition: color 0.2s ease, background 0.2s ease;
}
.ft-nav-list a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 3px;
	height: 2px;
	border-radius: 999px;
	background: var(--ft-thread);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.22s ease;
}
.ft-nav-list a:hover::after,
.ft-nav-list a[aria-current="page"]::after {
	transform: scaleX(1);
}
.ft-nav-list a:hover,
.ft-nav-list a[aria-current="page"] {
	background: rgba(236, 232, 246, 0.62);
}

/* More polished CTAs. Keep enhancement styling token-driven so contextual
   overrides (dark panels, editor header, pricing cards) remain visible. */
.ft-btn {
	position: relative;
	isolation: isolate;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.ft-btn--primary {
	--btn-bg: linear-gradient(135deg, var(--ft-ink) 0%, #30234d 100%);
	--btn-fg: #fff;
	box-shadow: 0 8px 22px rgba(36, 27, 59, 0.18), 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}
.ft-btn--primary:hover {
	box-shadow: 0 12px 28px rgba(36, 27, 59, 0.28), 0 1px 0 rgba(255, 255, 255, 0.16) inset;
}
.ft-btn--thread {
	--btn-bg: linear-gradient(135deg, var(--ft-thread) 0%, #ffc72c 100%);
	--btn-fg: var(--ft-ink-deep);
	box-shadow: 0 8px 22px rgba(242, 179, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.42) inset;
}
.ft-btn--thread:hover {
	--btn-bg: linear-gradient(135deg, #ffc21a 0%, #ffd34f 100%);
	box-shadow: 0 12px 28px rgba(242, 179, 0, 0.34), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

/* Ambient page treatment */
.ft-main {
	position: relative;
	isolation: isolate;
	overflow-x: clip;
}
.ft-main::before,
.ft-main::after {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(18px);
}
.ft-main::before {
	width: 420px;
	height: 420px;
	top: 70px;
	left: -250px;
	background: radial-gradient(circle, rgba(242, 179, 0, 0.12) 0%, rgba(242, 179, 0, 0) 70%);
}
.ft-main::after {
	width: 520px;
	height: 520px;
	top: 520px;
	right: -330px;
	background: radial-gradient(circle, rgba(115, 91, 170, 0.12) 0%, rgba(115, 91, 170, 0) 70%);
}

/* Hero depth */
.ft-hero {
	position: relative;
}
.ft-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 82% 20%, rgba(242, 179, 0, 0.13), transparent 28%),
		radial-gradient(circle at 55% 72%, rgba(115, 91, 170, 0.10), transparent 32%);
}
.ft-hero-grid,
.ft-hero > .ft-wrap {
	position: relative;
}
.ft-hero-visual {
	filter: drop-shadow(0 24px 42px rgba(36, 27, 59, 0.10));
}

/* Interactive feature rows */
.ft-ledger-row {
	position: relative;
	padding: 30px 18px 30px 0;
	border-radius: 18px;
	transition: background 0.22s ease, transform 0.22s ease, padding-left 0.22s ease;
}
.ft-ledger-row:hover {
	background: rgba(255, 255, 255, 0.68);
	transform: translateX(5px);
	padding-left: 14px;
}
.ft-ledger-icon {
	box-shadow: 0 8px 18px rgba(36, 27, 59, 0.07);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ft-ledger-row:hover .ft-ledger-icon {
	transform: translateY(-3px) rotate(-2deg);
	box-shadow: 0 12px 24px rgba(36, 27, 59, 0.12);
}

/* Cards / panels gain restrained depth */
.ft-plan,
.ft-drive-panel {
	box-shadow: var(--ft-shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.ft-plan:hover {
	transform: translateY(-4px);
	box-shadow: var(--ft-shadow-md);
}
.ft-drive-panel:hover {
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

/* Deeper account menu */
.ft-usermenu summary {
	box-shadow: 0 4px 14px rgba(36, 27, 59, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ft-usermenu summary:hover {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 7px 18px rgba(36, 27, 59, 0.10);
}
.ft-usermenu-panel {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	box-shadow: 0 18px 48px rgba(23, 15, 42, 0.16), 0 3px 10px rgba(23, 15, 42, 0.08);
}

/* CTA gradient depth */
.ft-cta-inner {
	background:
		radial-gradient(circle at 86% 18%, rgba(242, 179, 0, 0.22), transparent 24%),
		radial-gradient(circle at 12% 100%, rgba(116, 88, 173, 0.30), transparent 32%),
		linear-gradient(135deg, #170f2a 0%, #2b2047 58%, #241b3b 100%);
	box-shadow: 0 24px 70px rgba(36, 27, 59, 0.20);
}
.ft-cta-inner::after {
	width: 340px;
	height: 340px;
	background: radial-gradient(circle at 40% 35%, rgba(242, 179, 0, 0.58), rgba(242, 179, 0, 0) 70%);
}

/* More dimensional footer — scoped to the full marketing footer so the slim/app footer stays intact. */
.ft-footer:not(.ft-footer--slim) {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 10%, rgba(242, 179, 0, 0.10), transparent 24%),
		linear-gradient(145deg, #170f2a 0%, #201737 55%, #120b20 100%);
}
.ft-footer:not(.ft-footer--slim)::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 18% 30%, rgba(255,255,255,.045) 0 1px, transparent 1.5px);
	background-size: 22px 22px;
	opacity: .45;
}
.ft-footer:not(.ft-footer--slim) > .ft-wrap {
	position: relative;
	z-index: 1;
}
.ft-footer-grid > div { position: relative; }
.ft-footer h4 { letter-spacing: 0.07em; text-transform: uppercase; }
.ft-footer-base { border-top-color: rgba(255, 255, 255, 0.16); }
.ft-powered-full img { height: 42px; width: auto; display: block; }

/* Improved forms */
.ft-field input,
.ft-field select,
.ft-field textarea {
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 2px 8px rgba(36, 27, 59, 0.04) inset, 0 1px 2px rgba(36, 27, 59, 0.03);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.ft-field input:hover,
.ft-field select:hover,
.ft-field textarea:hover {
	border-color: rgba(36, 27, 59, 0.34);
	background: #fff;
}
.ft-field input:focus,
.ft-field select:focus,
.ft-field textarea:focus {
	background: #fff;
	box-shadow: 0 0 0 4px rgba(242, 179, 0, 0.22), 0 8px 24px rgba(36, 27, 59, 0.07);
	transform: translateY(-1px);
}

/* Dialog depth */
.ft-dialog {
	border: 1px solid rgba(36, 27, 59, 0.10);
	box-shadow: 0 30px 90px rgba(23, 15, 42, 0.28), 0 8px 28px rgba(23, 15, 42, 0.12);
}
.ft-dialog::backdrop {
	background: rgba(23, 15, 42, 0.62);
	backdrop-filter: blur(6px) saturate(115%);
	-webkit-backdrop-filter: blur(6px) saturate(115%);
}

/* -------------------------------------------------------------------------
   Reduced-motion safety for the enhanced presentation layer.
   This is deliberately scoped to visual effects and does not affect
   family-tree interaction logic.
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.ft-ledger-row,
	.ft-ledger-icon,
	.ft-plan,
	.ft-drive-panel,
	.ft-usermenu summary,
	.ft-field input,
	.ft-field select,
	.ft-field textarea,
	.ft-btn,
	.ft-nav-list a,
	.ft-nav-list a::after {
		transition: none !important;
		transform: none !important;
	}
	.ft-hero-visual {
		filter: none;
	}
}

/* Testimonial rotation */
.ft-voice { transition: opacity .28s ease, transform .28s ease; }
.ft-voices-grid.is-rotating .ft-voice { opacity: .2; transform: translateY(8px) scale(.985); }
.ft-voices-controls { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:48px; }
.ft-voices-controls .ft-voices-note { margin:0; }
.ft-voices-toggle { appearance:none; border:0; background:transparent; color:var(--ft-ink-soft); font:600 .8125rem var(--ft-font-sans); text-decoration:underline; text-underline-offset:3px; cursor:pointer; padding:8px 0; }
.ft-voices-toggle:hover, .ft-voices-toggle:focus-visible { color:var(--ft-ink); }
@media (prefers-reduced-motion: reduce) {
	.ft-voice { transition:none; }
	.ft-voices-grid.is-rotating .ft-voice { opacity:1; transform:none; }
}

/* ---------- About My Lineage Tree ---------- */
.ft-about-hero { padding: clamp(54px, 7vw, 104px) 0 clamp(70px, 9vw, 132px); overflow: hidden; }
.ft-about-hero-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(420px, 6fr); gap: clamp(42px, 7vw, 112px); align-items: center; }
.ft-about-hero-copy h1 { font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: .98; letter-spacing: -.032em; max-width: 9.5ch; margin: .2em 0 .3em; }
.ft-about-lede { font-size: clamp(1.1rem, 1.55vw, 1.3rem); line-height: 1.7; color: var(--ft-ink-soft); max-width: 39em; }
.ft-about-story-map { position: relative; min-height: 500px; border: 1px solid var(--ft-line); border-radius: 34px; background: linear-gradient(145deg,#fff 0%,#f8f4ff 55%,#fff7df 100%); box-shadow: var(--ft-shadow-lg); overflow: hidden; isolation: isolate; }
.ft-about-story-map::before { content:""; position:absolute; inset:0; background-image:radial-gradient(rgba(36,27,59,.12) 1px,transparent 1.25px); background-size:24px 24px; opacity:.55; z-index:-2; }
.ft-about-story-map::after { content:""; position:absolute; width:300px; height:300px; border-radius:50%; right:-110px; top:-120px; background:radial-gradient(circle,rgba(242,179,0,.28),rgba(242,179,0,0) 70%); z-index:-1; }
.ft-about-story-thread { position:absolute; left:50%; top:50%; width:56%; height:56%; transform:translate(-50%,-50%) rotate(45deg); border:3px solid rgba(242,179,0,.75); border-radius:38%; }
.ft-about-story-thread::before,.ft-about-story-thread::after { content:""; position:absolute; background:rgba(242,179,0,.75); border-radius:999px; }
.ft-about-story-thread::before { width:3px; height:160%; left:50%; top:-30%; }
.ft-about-story-thread::after { height:3px; width:160%; top:50%; left:-30%; }
.ft-about-story-center { position:absolute; inset:50% auto auto 50%; transform:translate(-50%,-50%); width:190px; height:190px; border-radius:50%; background:var(--ft-ink); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:8px; box-shadow:0 18px 50px rgba(36,27,59,.3); z-index:3; }
.ft-about-story-center.has-primary-logo { width:210px; height:210px; padding:24px; background:#fff; color:var(--ft-ink); border:1px solid var(--ft-line); }
.ft-about-story-logo { display:block; width:min(150px,100%); max-height:126px; object-fit:contain; }
.ft-about-story-center strong { font-family:var(--ft-font-display); font-size:1.35rem; }
.ft-about-story-center small { color:rgba(255,255,255,.66); max-width:12em; }
.ft-about-story-center.has-primary-logo small { color:var(--ft-muted); }
.ft-about-story-node { position:absolute; width:132px; min-height:112px; padding:16px; background:#fff; border:1px solid var(--ft-line); border-radius:22px; display:grid; place-items:center; align-content:center; gap:8px; text-align:center; box-shadow:var(--ft-shadow-md); z-index:2; }
.ft-about-story-node span { display:grid; place-items:center; width:42px; height:42px; border-radius:13px; background:var(--ft-lilac); color:var(--ft-ink); }
.ft-about-story-node--one { left:8%; top:10%; transform:rotate(-2deg); }
.ft-about-story-node--two { right:8%; top:12%; transform:rotate(2deg); }
.ft-about-story-node--three { left:10%; bottom:9%; transform:rotate(1.5deg); }
.ft-about-story-node--four { right:9%; bottom:10%; transform:rotate(-1.5deg); }
.ft-about-section-head { max-width:52rem; }
.ft-about-feature-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.ft-about-feature-card { background:#fff; border:1px solid var(--ft-line); border-radius:24px; padding:28px; min-height:260px; }
.ft-about-feature-card:nth-child(2),.ft-about-feature-card:nth-child(4) { transform:translateY(18px); }
.ft-about-feature-icon { display:grid; place-items:center; width:50px; height:50px; border-radius:15px; background:var(--ft-thread); color:var(--ft-ink-deep); margin-bottom:24px; }
.ft-about-feature-card h3 { font-size:1.7rem; margin:.1em 0 .45em; }
.ft-about-feature-card p { color:var(--ft-ink-soft); margin:0; }
.ft-about-google { background:var(--ft-ink); color:#fff; position:relative; overflow:hidden; }
.ft-about-google::before { content:""; position:absolute; inset:0; background-image:var(--ft-noise); opacity:.65; pointer-events:none; }
.ft-about-google-grid { position:relative; display:grid; grid-template-columns:minmax(0,5fr) minmax(0,6fr); gap:clamp(40px,7vw,110px); align-items:start; }
.ft-about-google-copy h2 { color:#fff; font-size:clamp(2.8rem,5vw,4.9rem); line-height:1.02; max-width:10ch; margin:.3em 0; }
.ft-about-google-copy p { color:rgba(255,255,255,.78); max-width:38em; font-size:1.08rem; }
.ft-about-google-copy p strong { color:#fff; }
.ft-about-google-badge { display:inline-flex; align-items:center; gap:10px; padding:8px 12px; background:#fff; color:var(--ft-ink); border-radius:999px; font-size:.82rem; font-weight:750; }
.ft-about-google-badge .ft-google-g { width:20px; height:20px; }
.ft-about-google-cards { display:grid; gap:14px; }
.ft-about-google-cards article { display:grid; grid-template-columns:58px 1fr; gap:0 18px; padding:24px; border:1px solid rgba(255,255,255,.14); border-radius:22px; background:rgba(255,255,255,.055); }
.ft-about-google-cards h3 { color:#fff; margin:2px 0 8px; }
.ft-about-google-cards p { grid-column:2; color:rgba(255,255,255,.7); margin:0; }
.ft-about-number { grid-row:1 / span 2; display:grid; place-items:center; width:50px; height:50px; border-radius:15px; background:var(--ft-thread); color:var(--ft-ink-deep); font-weight:850; }
.ft-about-control-head { max-width:52rem; }
.ft-about-control-head p { color:var(--ft-ink-soft); font-size:1.12rem; }
.ft-about-control-flow { margin-top:52px; display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:18px; align-items:center; }
.ft-about-control-step { min-height:190px; border:1px solid var(--ft-line); border-radius:24px; padding:26px; background:#fff; display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.ft-about-control-step > span { display:grid; place-items:center; width:48px; height:48px; border-radius:14px; background:var(--ft-lilac); color:var(--ft-ink); }
.ft-about-control-step strong { font-family:var(--ft-font-display); font-size:1.55rem; }
.ft-about-control-step small { color:var(--ft-ink-soft); font-size:.95rem; line-height:1.55; }
.ft-about-control-arrow { color:var(--ft-thread-deep); }
.ft-about-control-arrow .ft-icon { width:28px; height:28px; }
.ft-about-trust { background:#fff; border-block:1px solid var(--ft-line); }
.ft-about-trust-grid { display:grid; grid-template-columns:minmax(0,4fr) minmax(0,7fr); gap:clamp(34px,6vw,92px); align-items:start; }
.ft-about-trust-grid h2 { font-size:clamp(2.7rem,5vw,4.7rem); max-width:8ch; }
.ft-about-trust-grid p { color:var(--ft-ink-soft); max-width:32em; }
.ft-about-link-cards { display:grid; gap:12px; }
.ft-about-link-cards a { display:grid; grid-template-columns:50px 1fr; gap:2px 16px; align-items:center; padding:20px 22px; border:1px solid var(--ft-line); border-radius:18px; text-decoration:none; background:var(--ft-paper); transition:transform .18s ease,border-color .18s ease,background .18s ease; }
.ft-about-link-cards a:hover { transform:translateY(-2px); border-color:var(--ft-line-strong); background:#fff; }
.ft-about-link-cards a > span { grid-row:1 / span 2; display:grid; place-items:center; width:46px; height:46px; border-radius:14px; background:var(--ft-thread); color:var(--ft-ink-deep); }
.ft-about-link-cards strong { color:var(--ft-ink); }
.ft-about-link-cards small { color:var(--ft-muted); line-height:1.45; }
.ft-about-cta { padding-top:clamp(72px,9vw,120px); }
