/* Femasys design tokens — pulled directly from the live Figma file (v3, node 218:375)
   via get_design_context. This supersedes both the PDF export and the brand-identity-v2
   doc where they disagree — the live file is newer than both. */
:root {
	/* Color — Femasys purple family */
	--fem-purple: #763DC9;
	--fem-purple-dark: #2C0D55; /* dark section bg, e.g. Fertility Crisis / Patient Spotlight */
	--fem-purple-darker: #24073F; /* footer — darkened further than any Figma-confirmed value, not pulled directly */
	--fem-purple-pale: #C4A0ED; /* on-dark eyebrow/accent text */
	--fem-gray: #F9F9F9;
	--fem-lavender: #EDE4F8;
	--fem-ink: #1A1A2E;
	--fem-ink-soft: #5A5A72;
	--fem-ink-muted: #B8B3BF;
	--fem-white: #FFFFFF;
	--fem-decline: #CC3366; /* not a Figma color — this is Hello Elementor's reset.css default [type=button] red, currently leaking onto #fem-consent-decline; captured here so .fem-btn-decline matches it intentionally */

	/* Product accents (per Brand Identity System v2 — used on Infertility/Birth Control
	   product bars; the Homepage's own callout cards use a plain purple top-accent, not these) */
	--fem-seed: #59C2AE;
	--fem-bloc: #84CC26; /* live Figma value — brighter than the brand doc's #5C9E2A, which wins per project convention */
	--fem-bloc-dk: #3E6B1C; /* AA-safe on small CTAs per brand doc contrast note */
	--fem-vue: #8AC9E9;
	--fem-vue-dk: #1E6A96; /* use for text/buttons — the light tint fails contrast */
	--fem-cerv: #F3669E; /* on hold — not used on this site yet */

	/* Type */
	--fem-font-display: "berthold-baskerville-pro", "Baskerville Old Face", Georgia, serif;
	--fem-font-body: "din-2014", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* Spacing / shape */
	--fem-radius: 10px;
	--fem-radius-lg: 18px;
	--fem-container: 1200px;
	--fem-section-y: 96px;
}

* { box-sizing: border-box; }

body.femasys {
	font-family: var(--fem-font-body);
	color: var(--fem-ink);
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

.fem-container {
	max-width: var(--fem-container);
	margin: 0 auto;
	padding: 0 40px;
}

.fem-eyebrow {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fem-purple);
	margin-bottom: 18px;
}
.fem-eyebrow::before {
	content: "/ ";
}
.fem-eyebrow.on-dark { color: var(--fem-purple-pale); }

h1.fem-h1, h2.fem-h2, h3.fem-h3 {
	font-family: var(--fem-font-display);
	font-weight: 400;
	line-height: 1.06;
	margin: 0 0 20px;
	color: var(--fem-ink);
}
h1.fem-h1 { font-size: 84px; }
h2.fem-h2 { font-size: 48px; }
h3.fem-h3 { font-size: 24px; }
.fem-accent { font-style: italic; color: var(--fem-purple); }
.on-dark h1.fem-h1, .on-dark h2.fem-h2, .on-dark h3.fem-h3 { color: var(--fem-white); }
.on-dark .fem-accent { color: var(--fem-purple-pale); }

p.fem-body { font-size: 18px; font-weight: 300; line-height: 1.56; color: var(--fem-ink-soft); margin: 0 0 28px; max-width: 46ch; }
.on-dark p.fem-body { color: #D6CFE8; }

/* Button states, from Figma "buttons" component (node 247:1688):
   default = solid purple, active = white/purple-outline, hover = light lavender, disabled = gray */
.fem-btn,
button.fem-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--fem-purple);
	color: var(--fem-white);
	font-size: 14px;
	font-weight: 500;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fem-btn:hover, button.fem-btn:hover { background: var(--fem-purple-pale); color: var(--fem-white); }
.fem-btn:active, button.fem-btn:active { background: var(--fem-white); color: var(--fem-purple); border-color: var(--fem-purple); }
.fem-btn:disabled, button.fem-btn:disabled,
.fem-btn.disabled, button.fem-btn.disabled { background: var(--fem-ink-muted); color: var(--fem-ink-soft); border-color: transparent; cursor: not-allowed; pointer-events: none; }

/* Secondary button: rests in the button component's "active" (white/purple-outline) treatment */
.fem-btn-secondary,
button.fem-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--fem-white);
	color: var(--fem-purple);
	font-size: 14px;
	font-weight: 500;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	border: 1.5px solid var(--fem-purple);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fem-btn-secondary:hover, button.fem-btn-secondary:hover { background: var(--fem-purple-pale); color: var(--fem-white); border-color: transparent; }
.fem-btn-secondary:active, button.fem-btn-secondary:active { background: var(--fem-purple); color: var(--fem-white); border-color: transparent; }
.fem-btn-secondary:disabled, button.fem-btn-secondary:disabled,
.fem-btn-secondary.disabled, button.fem-btn-secondary.disabled { background: var(--fem-ink-muted); color: var(--fem-ink-soft); border-color: transparent; cursor: not-allowed; pointer-events: none; }

/* Decline button: same shape/treatment as .fem-btn-secondary, accent swapped to --fem-decline */
.fem-btn-decline,
button.fem-btn-decline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--fem-white);
	color: var(--fem-decline);
	font-size: 14px;
	font-weight: 500;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	border: 1.5px solid var(--fem-decline);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fem-btn-decline:hover, button.fem-btn-decline:hover { background: color-mix(in srgb, var(--fem-decline) 75%, white); color: var(--fem-white); border-color: transparent; }
.fem-btn-decline:active, button.fem-btn-decline:active { background: var(--fem-decline); color: var(--fem-white); border-color: transparent; }
.fem-btn-decline:disabled, button.fem-btn-decline:disabled,
.fem-btn-decline.disabled, button.fem-btn-decline.disabled { background: var(--fem-ink-muted); color: var(--fem-ink-soft); border-color: transparent; cursor: not-allowed; pointer-events: none; }

.fem-link {
	position: relative;
	color: var(--fem-purple);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
/* Underline hover-swipe, per Figma annotation: hidden flush right at rest, wipes in from the left on hover. */
.fem-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s;
	transition-behavior: normal;
	transition-duration: 0.3s;
	transition-timing-function: ease;
	transition-delay: 0s;
	transition-property: transform;
}
.fem-link:hover::after { transform-origin: 0 50%; transform: scale3d(1, 1, 1); }
.on-dark .fem-link { color: var(--fem-white); }
/* The homepage hero's inline CTA is the one confirmed exception to the uppercase/tracked treatment */
.fem-link.plain-case { text-transform: none; letter-spacing: normal; }

/* Sections */
.fem-section { padding: var(--fem-section-y) 0; }
.fem-section.bg-gray { background: var(--fem-gray); }
.fem-section.bg-purple { background: var(--fem-purple-dark); }
.fem-section.bg-white { background: var(--fem-white); }

.fem-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.fem-media-frame {
	position: relative;
}
.fem-media-frame .fem-swatch {
	position: absolute;
	top: 24px;
	right: -24px;
	width: 70%;
	height: 70%;
	background: var(--fem-lavender);
	border-radius: var(--fem-radius-lg);
	z-index: 0;
	transition: transform 0.4s ease;
}
.fem-media-frame img {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: var(--fem-radius-lg);
	display: block;
	border: 4px solid var(--fem-white);
	box-shadow: 0 20px 40px rgba(30, 10, 66, 0.12);
	transition: transform 0.4s ease;
}
/* Parallax hover: image and the purple rectangle behind it drift apart slightly, giving a sense of depth. */
.fem-media-frame:hover img { transform: translate3d(-6px, -6px, 0); }
.fem-media-frame:hover .fem-swatch { transform: translate3d(8px, 8px, 0); }

/* Floating overlap: a photo and a quote card stacked with an offset, one on top of
   the other. --img-top puts the photo above the quote card (Fertility Crisis);
   --card-top puts the quote card above the photo (Empowering OB/GYNs). */
.fem-overlap { position: relative; }
.fem-overlap .fem-media-frame { width: 84%; }
.fem-overlap .fem-media-frame .fem-swatch { display: none; }
.fem-overlap .fem-quote-card { width: 84%; margin: 0; }

.fem-overlap.fem-overlap--img-top .fem-media-frame { position: relative; z-index: 2; margin-left: auto; }
.fem-overlap.fem-overlap--img-top .fem-quote-card { position: relative; z-index: 1; margin-top: -56px; padding-top: 88px; }

.fem-overlap.fem-overlap--card-top .fem-media-frame { position: relative; z-index: 1; width: 100%; }
.fem-overlap.fem-overlap--card-top .fem-quote-card { position: relative; z-index: 2; margin-top: -64px; margin-left: auto; }

.fem-card {
	background: var(--fem-white);
	border: 1px solid var(--fem-lavender);
	border-radius: var(--fem-radius);
	padding: 28px;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1), box-shadow 0.3s ease;
}
.fem-card.accent-top { border-top: 6px solid var(--fem-purple); }
/* Per Figma annotation: lift on hover, plus a soft shadow easing in (not in the original spec, added per request). */
.fem-card:hover { transform: translate3d(-4px, -4px, 0); box-shadow: 0 12px 24px rgba(30, 10, 66, 0.12); }

.fem-quote-card {
	background: var(--fem-lavender);
	border: 4px solid var(--fem-white); /* per Figma annotation "Add stroke" — matches the photo's own white border treatment */
	border-radius: var(--fem-radius-lg);
	padding: 32px;
	font-family: var(--fem-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	color: var(--fem-ink-soft);
}
.fem-quote-card cite { display: block; margin-top: 20px; font-style: normal; font-family: var(--fem-font-body); font-weight: 300; font-size: 18px; color: var(--fem-ink-soft); }
.fem-quote-card cite span { display: block; font-weight: 300; color: var(--fem-ink-soft); text-transform: uppercase; letter-spacing: 0.02em; font-size: 12px; margin-top: 2px; }

.fem-testimonial-quote { display: flex; gap: 24px; align-items: stretch; margin: 24px 0; }
.fem-testimonial-quote .rule { width: 3px; flex-shrink: 0; background: var(--fem-purple-pale); border-radius: 2px; }
.fem-testimonial-quote blockquote { margin: 0; font-family: var(--fem-font-display); font-style: italic; font-size: 20px; line-height: 1.6; color: #EDE6F7; }
.fem-testimonial-quote .attribution { font-size: 12px; color: #C9BEDD; margin: 12px 0 0; }

.fem-stat-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 20px; }
.fem-stat-list li { display: flex; gap: 14px; align-items: flex-start; }
.fem-stat-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fem-purple); margin-top: 8px; flex-shrink: 0; }
.fem-stat-list strong { display: block; font-weight: 300; font-size: 18px; color: var(--fem-ink-soft); margin-bottom: 4px; }
.fem-stat-list span { font-size: 16px; color: var(--fem-ink-soft); }

.fem-stat-box {
	background: rgba(255,255,255,0.06);
	border-radius: var(--fem-radius);
	padding: 24px;
}
.fem-stat-box .num { font-family: var(--fem-font-display); font-size: 64px; font-weight: 400; color: var(--fem-white); line-height: 1; }
.fem-stat-box .num .unit { color: var(--fem-purple-pale); }
.fem-stat-box .label { font-size: 18px; font-weight: 300; color: var(--fem-lavender); margin-top: 8px; line-height: 1.4; }

.fem-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fem-card-grid .fem-card { display: flex; flex-direction: column; gap: 12px; }

/* Header */
.fem-utility-bar { background: var(--fem-ink); color: #C9C6D6; font-size: 12px; }
.fem-utility-bar .fem-container { display: flex; justify-content: flex-end; gap: 24px; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.fem-utility-bar a { position: relative; color: rgba(255,255,255,0.5); text-decoration: none; }
/* Text line hover-swipe, matching .fem-link's treatment. */
.fem-utility-bar a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s;
	transition-behavior: normal;
	transition-duration: 0.3s;
	transition-timing-function: ease;
	transition-delay: 0s;
	transition-property: transform;
}
.fem-utility-bar a:hover::after { transform-origin: 0 50%; transform: scale3d(1, 1, 1); }
.fem-utility-bar a:hover { color: var(--fem-white); }
.fem-utility-bar a.is-current { color: var(--fem-white); font-weight: 700; }
.fem-utility-bar input[type="search"] { width: 200px; flex: none; background: rgba(255,255,255,0.08); border: none; border-radius: 4px; padding: 5px 10px; color: var(--fem-white); font-size: 12px; }
.fem-utility-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.1); display: inline-block; }

.fem-main-nav { background: var(--fem-white); border-bottom: 1px solid var(--fem-lavender); position: relative; z-index: 20; }
.fem-main-nav .fem-container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.fem-logo { display: flex; align-items: center; gap: 8px; font-family: var(--fem-font-display); font-style: italic; font-size: 22px; color: var(--fem-purple); text-decoration: none; }
.fem-logo img { height: 30px; width: auto; display: block; }

.fem-main-nav .fem-nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: stretch; gap: 5px; width: 36px; height: 36px; padding: 0; background: none; border: none; cursor: pointer; }
.fem-main-nav .fem-nav-toggle:hover,
.fem-main-nav .fem-nav-toggle:focus { background: none; }
.fem-main-nav .fem-nav-toggle span { display: block; width: 100%; height: 2px; background: var(--fem-ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.fem-main-nav .fem-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fem-main-nav .fem-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fem-main-nav .fem-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav with hover-revealed dropdowns (from Figma "nav menus", node 250:676) */
.fem-nav-links { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.fem-nav-links > li { position: relative; }
.fem-nav-links a.nav-trigger { display: block; color: var(--fem-ink-soft); text-decoration: none; font-size: 14px; font-weight: 400; padding: 10px 16px; border-radius: 20px; border: 1px solid transparent; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.fem-nav-links li.has-dropdown:hover > a.nav-trigger,
.fem-nav-links li.has-dropdown:focus-within > a.nav-trigger { background: var(--fem-white); color: var(--fem-purple); border-color: var(--fem-purple); }
.fem-nav-links a.nav-trigger.is-current { background: var(--fem-purple); color: var(--fem-white); border-color: transparent; }

.fem-dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--fem-white); list-style: none; margin: 0; padding: 12px 0; border-radius: 8px; box-shadow: 0 4px 4px rgba(0,0,0,0.25); z-index: 30; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
/* Sits flush at top:100% (no margin gap) and is revealed via opacity/transform rather than
   display, so it stays hoverable the whole time — no dead zone between trigger and menu. */
.fem-nav-links li.has-dropdown:hover .fem-dropdown,
.fem-nav-links li.has-dropdown:focus-within .fem-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fem-dropdown a { display: block; padding: 12px 24px; color: var(--fem-ink); font-size: 14px; font-weight: 400; text-decoration: none; white-space: nowrap; }
.fem-dropdown a:hover { background: var(--fem-purple); color: var(--fem-white); }
.fem-dropdown a.is-current { color: var(--fem-purple); font-weight: 700; }
.fem-dropdown a.is-current:hover,
.fem-dropdown a.is-current:focus { background: var(--fem-purple); color: var(--fem-white); }

.fem-main-nav .fem-dropdown-toggle { display: none; }
.fem-mobile-utility { display: none; }

.fem-ticker { background: var(--fem-lavender); color: var(--fem-purple); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px; text-decoration: none; cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
.fem-ticker:hover { background: var(--fem-purple); color: var(--fem-white); }

/* Hero */
.fem-hero { position: relative; color: var(--fem-white); overflow: hidden; }
.fem-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.fem-hero-overlay { position: absolute; inset: 0; background: radial-gradient(216.88% 100% at 0% 50%, rgba(21,6,40,0.88) 0%, rgba(71,34,124,0.88) 100%); }
.fem-hero-content { position: relative; padding-top: 120px; padding-bottom: 100px; }
.fem-hero-content > .fem-hero-inner { max-width: 620px; }
.fem-hero h1.fem-h1 { color: var(--fem-white); }
.fem-hero .fem-accent { color: var(--fem-purple-pale); }
.fem-hero .fem-actions { display: flex; gap: 20px; align-items: center; margin-top: 8px; }
.fem-hero .fem-link { color: var(--fem-white); }

.fem-actions { display: flex; gap: 20px; align-items: center; }

/* Footer */
.fem-footer { background: var(--fem-purple-darker); color: var(--fem-purple-pale); padding: 72px 0 0; }
.fem-footer .fem-container { display: grid; grid-template-columns: 1fr auto auto auto auto; gap: 24px; padding-bottom: 56px; }
.fem-footer .fem-logo { color: var(--fem-white); }
.fem-footer p { font-size: 14px; font-weight: 300; line-height: 1.5; color: var(--fem-white); margin-top: 16px; }
.fem-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.fem-footer a { color: var(--fem-purple-pale); text-decoration: none; font-size: 14px; font-weight: 300; line-height: 32px; }
.fem-footer a:hover { color: var(--fem-white); text-decoration: underline; }
.fem-footer a.is-current { color: var(--fem-white); }
.fem-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; font-size: 12px; font-weight: 300; color: var(--fem-purple-pale); }
.fem-footer-bottom .fem-container { display: flex; justify-content: space-between; align-items: center; padding: 0; grid-template-columns: none; }
.fem-footer-bottom .fem-legal-links { display: flex; gap: 20px; }
.fem-footer-bottom a { color: var(--fem-purple-pale); font-weight: 300; line-height: 1.6; }
.fem-badge { display: inline-block; border: 1px solid var(--fem-purple-pale); border-radius: 999px; padding: 6px 14px; font-size: 12px; color: var(--fem-lavender); margin-top: 20px; text-decoration: none; cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
/* Hover matches .fem-btn's default hover treatment, per Figma annotation. */
.fem-badge:hover { background: var(--fem-purple-pale); color: var(--fem-white); border-color: transparent; }
.fem-social-links { display: flex; gap: 12px; margin-top: 24px; }
.fem-social-links a { display: flex; }
.fem-social-links img { width: 32px; height: 32px; opacity: 0.85; transition: opacity 0.15s ease; }
.fem-social-links a:hover img { opacity: 1; }

/* Product / portfolio pages */
.fem-notice-bar { background: var(--fem-purple); color: var(--fem-white); font-size: 14px; font-weight: 400; text-align: center; padding: 12px 20px; }

.fem-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fem-stat-grid .fem-stat-box:first-child { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.fem-stat-grid .fem-stat-box:not(:first-child) { text-align: center; }

.fem-product-bar { position: relative; display: flex; align-items: center; gap: 24px; background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 30px 28px; margin-bottom: 16px; box-shadow: 0 4px 16px rgba(30, 10, 66, 0.06); }
/* Figma renders the accent as a rounded pill overhanging the left edge, not a top border. */
.fem-product-bar::before { content: ""; position: absolute; left: -1px; top: -6px; bottom: -6px; width: 6px; border-radius: 999px; background: var(--fem-purple); }
.fem-product-bar.accent-blue::before { background: var(--fem-vue); } /* FemVue / SpermVue */
.fem-product-bar.accent-teal::before { background: var(--fem-seed); } /* FemaSeed / FemSperm */
.fem-product-bar.accent-green::before { background: var(--fem-bloc); } /* FemBloc */
.fem-product-bar .fem-product-name { min-width: 220px; }
.fem-product-bar .fem-product-name img { display: block; height: 32px; width: auto; }
.fem-product-bar .fem-product-label { font-size: 16px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fem-ink-soft); }

.fem-section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }

.fem-footnotes { list-style: none; margin: 40px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 10px; line-height: 1.8; color: var(--fem-purple-pale); }
.fem-footnotes.on-light { border-top-color: var(--fem-lavender); color: var(--fem-ink-soft); }

.fem-evidence-callout { display: flex; align-items: center; gap: 16px; background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 18px 24px; margin-top: 24px; }
.fem-evidence-callout .icon { width: 45px; height: 45px; border-radius: 50%; background: var(--fem-purple); color: var(--fem-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.fem-evidence-callout .headline { font-family: var(--fem-font-display); font-size: 28px; line-height: 1.3; color: var(--fem-ink); }
.fem-evidence-callout .headline em { font-style: italic; font-weight: 500; color: var(--fem-purple); }

.fem-bar-chart { background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 24px; }
.fem-bar-chart .chart-title { font-size: 14px; font-weight: 300; color: var(--fem-ink); margin-bottom: 20px; }
.fem-bar-chart .bars { display: flex; align-items: flex-end; gap: 32px; }
.fem-bar-chart .bar-col { display: flex; flex-direction: column; align-items: center; }
.fem-bar-chart .bar-value { font-family: var(--fem-font-display); font-weight: 500; font-size: 26px; margin-bottom: 8px; }
.fem-bar-chart .bar-col.primary .bar-value { color: var(--fem-white); }
.fem-bar-chart .bar-col.control .bar-value { color: var(--fem-purple); }
.fem-bar-chart .bar { width: 220px; border-radius: 10px 10px 0 0; }
.fem-bar-chart .bar.primary { background: var(--fem-purple); height: 113px; }
.fem-bar-chart .bar.control { background: var(--fem-lavender); height: 52px; }
.fem-bar-chart .bar-label { font-size: 14px; font-weight: 300; color: var(--fem-ink-soft); margin-top: 10px; text-align: center; }

.fem-trial-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.fem-trial-cta .label { font-size: 14px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fem-ink-soft); margin-bottom: 8px; }

/* Leadership */
/* Leadership bio-card, per Figma component (node 253:802): whole card links to the bio
   page and lifts with a soft shadow on hover — same treatment as .fem-card. */
.fem-people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fem-person-card {
	display: flex;
	flex-direction: column;
	background: var(--fem-white);
	border: 1px solid var(--fem-lavender);
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1), box-shadow 0.3s ease;
}
.fem-person-card:hover { transform: translate3d(-4px, -4px, 0); box-shadow: 0 12px 24px rgba(30, 10, 66, 0.12); }
.fem-people-grid .fem-person-card .photo { width: 100%; aspect-ratio: 300 / 312; object-fit: cover; display: block; }
.fem-people-grid .fem-person-card .body { padding: 24px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.fem-people-grid .fem-person-card .name { font-family: var(--fem-font-display); color: var(--fem-ink); font-weight: 400; font-size: 26px; margin-bottom: 12px; }
.fem-people-grid .fem-person-card .title { font-size: 18px; font-weight: 300; line-height: 28px; color: var(--fem-ink-soft); flex: 1; }
.fem-people-grid .fem-person-card .view-bio { align-self: flex-end; font-family: var(--fem-font-body); font-weight: 600; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fem-purple); margin-top: 16px; }

.fem-board-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 40px; }
.fem-board-list .name { position: relative; font-family: var(--fem-font-display); color: var(--fem-purple); font-weight: 500; font-size: 26px; display: block; width: fit-content; margin-bottom: 4px; }
.fem-board-list span.name { color: var(--fem-ink); } /* no bio page to link to — Figma shows these unlinked in plain ink, e.g. board chair without a public profile */
/* Text line hover-swipe, matching .fem-link's treatment. */
.fem-board-list a.name::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s;
	transition-behavior: normal;
	transition-duration: 0.3s;
	transition-timing-function: ease;
	transition-delay: 0s;
	transition-property: transform;
}
.fem-board-list a.name:hover::after { transform-origin: 0 50%; transform: scale3d(1, 1, 1); }
.fem-board-list .role { font-size: 18px; font-weight: 300; color: var(--fem-ink-soft); }

.fem-bio-detail { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.fem-bio-detail img { width: 100%; border-radius: var(--fem-radius-lg); display: block; }

/* Media hub */
.fem-tab-nav { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.fem-tab-nav a { padding: 10px 18px; border-radius: 10px; font-size: 16px; font-weight: 300; text-decoration: none; color: var(--fem-ink-soft); transition: background 0.15s ease, color 0.15s ease; }
/* Same state pattern as the global button component (.fem-btn), per Figma annotation. */
.fem-tab-nav a:hover { background: var(--fem-lavender); color: var(--fem-purple); }
.fem-tab-nav a.active { background: var(--fem-purple); color: var(--fem-white); }
.fem-tab-nav a.active:hover { background: var(--fem-purple-pale); color: var(--fem-white); }
.fem-tab-nav .fem-tab-search { margin-left: auto; }
.fem-tab-nav input { border: 1px solid var(--fem-lavender); background: #F9F7FD; border-radius: 10px; padding: 8px 16px; font-size: 14px; width: 200px; }

.fem-featured-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 24px; margin-bottom: 40px; }
.fem-featured-card.no-image { grid-template-columns: 1fr; }
.fem-featured-card img { width: 100%; border-radius: var(--fem-radius); display: block; aspect-ratio: 4/3; object-fit: cover; }
.fem-featured-card h3 { font-family: var(--fem-font-display); font-size: 48px; font-weight: 400; line-height: 1.1; margin: 8px 0; }

.fem-tag { display: inline-flex; align-items: center; font-size: 14px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; border-radius: 40px; margin-bottom: 12px; }
.fem-tag.tag-news { background: #EDFAD3; color: #5E9318; }
.fem-tag.tag-video { background: #FDE9F2; color: #C94078; }
.fem-tag.tag-podcast { background: #EAFFFB; color: var(--fem-seed); }
.fem-tag.tag-webinar { background: var(--fem-lavender); color: var(--fem-purple); }
.fem-tag.tag-post, .fem-tag.tag-blog { background: #FFF7EC; color: #FFA227; }

.fem-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.fem-media-card { background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); overflow: hidden; transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1), box-shadow 0.3s ease; }
.fem-media-card:hover { transform: translate3d(-4px, -4px, 0); box-shadow: 0 12px 24px rgba(30, 10, 66, 0.12); }
.fem-media-card img { width: 100%; height: 182px; object-fit: cover; display: block; }
.fem-media-card .body { padding: 20px; }
.fem-media-card .source { font-size: 14px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fem-ink-soft); margin-bottom: 12px; display: block; }
.fem-media-card .title { font-size: 18px; font-weight: 500; color: var(--fem-ink-soft); line-height: 1.3; margin-bottom: 20px; min-height: 47px; }
.fem-media-card .foot { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--fem-lavender); font-size: 14px; }
.fem-media-card .foot .date { color: var(--fem-ink-soft); }

.fem-media-row { display: flex; align-items: center; gap: 24px; background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 24px; margin-bottom: 16px; }
.fem-media-row .row-tag { width: 83px; text-align: center; flex-shrink: 0; }
.fem-media-row .row-tag .fem-tag { display: block; margin-bottom: 0; }
.fem-media-row .body { flex: 1; }
.fem-media-row .source { font-size: 14px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fem-ink-soft); display: block; margin-bottom: 4px; }
.fem-media-row .title { font-size: 18px; font-weight: 500; color: var(--fem-ink-soft); }
.fem-media-row .date { font-size: 14px; color: var(--fem-ink-soft); min-width: 100px; }

.fem-press-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.fem-press-item { display: flex; align-items: center; gap: 16px; background: rgba(237,228,248,0.1); border-radius: var(--fem-radius-lg); padding: 20px 24px; margin-bottom: 16px; }
.fem-press-item .dot { width: 45px; height: 45px; border-radius: 50%; background: var(--fem-purple-pale); flex-shrink: 0; }
.fem-press-item img.dot { background: none; display: block; }
.fem-press-item .label { font-size: 18px; font-weight: 300; color: var(--fem-white); }
.fem-press-item .sub { font-size: 14px; font-weight: 500; color: var(--fem-purple-pale); margin-top: 2px; }
.fem-press-contact { background: rgba(237,228,248,0.1); border-radius: var(--fem-radius-lg); padding: 24px; margin-bottom: 16px; }
.fem-press-contact .label { font-size: 14px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fem-purple-pale); margin-bottom: 8px; }
.fem-press-contact .email { font-family: var(--fem-font-display); font-weight: 500; font-size: 32px; color: var(--fem-white); }
.fem-press-contact .sub { font-size: 14px; font-weight: 500; color: var(--fem-purple-pale); margin-top: 8px; }

.fem-load-more { text-align: left; margin-top: 8px; }

/* Contact */
.fem-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.fem-field label { display: block; font-size: 18px; font-weight: 600; color: var(--fem-ink-soft); margin-bottom: 8px; }
.fem-field input, .fem-field select, .fem-field textarea { width: 100%; border: 1px solid var(--fem-lavender); border-radius: 10px; padding: 14px; font-size: 16px; font-weight: 300; font-family: var(--fem-font-body); color: var(--fem-ink-soft); }
.fem-field textarea { min-height: 120px; resize: vertical; }
.fem-checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; font-weight: 500; color: var(--fem-ink-soft); margin: 20px 0; }
.fem-checkbox-row input { margin-top: 3px; }
.fem-checkbox-row a { color: var(--fem-purple); }

.fem-contact-card { background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 8px; }
.fem-contact-card h3 { font-size: 18px; font-weight: 600; padding: 20px 20px 0; margin: 0; }
.fem-contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; border-bottom: 1px solid var(--fem-lavender); }
.fem-contact-item:last-child { border-bottom: none; }
.fem-contact-item .swatch { width: 35px; height: 35px; border-radius: 50%; background: var(--fem-lavender); flex-shrink: 0; }
.fem-contact-item .label { font-size: 14px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fem-ink-soft); margin-bottom: 4px; }
.fem-contact-item a { color: var(--fem-purple); font-weight: 500; font-size: 14px; text-decoration: none; }

.fem-faq-item { border-bottom: 1px solid var(--fem-lavender); padding: 22px 0; }
/* .fem-faq-item .fem-faq-question (not just .fem-faq-question) so this beats the parent
   theme's reset.css `[type="button"], button { ... }` rule at equal specificity. */
.fem-faq-item .fem-faq-question { display: flex; justify-content: space-between; align-items: center; gap: 24px; width: 100%; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; font-size: 18px; font-weight: 600; color: var(--fem-ink-soft); text-align: left; }
.fem-faq-question .chev { width: 32px; height: 32px; border-radius: 50%; background: var(--fem-lavender); color: var(--fem-purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.35s ease-in; }
/* Vertically-inverted (rotated) chevron on expand — same rotate-180 technique as the mobile nav's dropdown toggle. */
.fem-faq-item.is-open .fem-faq-question .chev { transform: rotate(180deg); }
.fem-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease-in; }
.fem-faq-item.is-open .fem-faq-answer { grid-template-rows: 1fr; }
.fem-faq-answer-inner { overflow: hidden; }
.fem-faq-answer p { font-size: 14px; color: var(--fem-ink-soft); margin: 12px 0 0; }
.fem-faq-answer .fem-link { margin-top: 12px; }

/* Careers */
.fem-job-row { display: flex; align-items: center; gap: 20px; background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 28px; margin-bottom: 16px; }
.fem-job-row .dot { width: 15px; height: 15px; border-radius: 50%; background: var(--fem-purple); flex-shrink: 0; }
.fem-job-row .job-title { font-size: 18px; font-weight: 600; color: var(--fem-ink-soft); margin-bottom: 8px; }
.fem-job-row .job-meta { font-size: 14px; font-weight: 500; color: var(--fem-ink-soft); display: flex; gap: 24px; }

.fem-paycor-embed { background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); padding: 28px; min-height: 200px; }
.fem-job-row .apply { margin-left: auto; }

/* Cookie-consent banner */
.fem-consent-banner { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 100; background: var(--fem-white); border: 1px solid var(--fem-lavender); border-radius: var(--fem-radius-lg); box-shadow: 0 8px 24px rgba(0,0,0,0.15); padding: 32px 24px 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }
.fem-consent-banner[hidden] { display: none; }
.fem-consent-text { font-size: 14px; color: var(--fem-ink-soft); line-height: 1.5; }
.fem-consent-text a { color: var(--fem-purple); }
.fem-consent-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.fem-consent-banner .fem-consent-close { position: absolute; top: 12px; right: 16px; background: none; border: none; padding: 4px; margin: 0; font-size: 24px; line-height: 1; color: var(--fem-ink-soft); letter-spacing: normal; }
.fem-consent-banner .fem-consent-close:hover,
.fem-consent-banner .fem-consent-close:focus { background: none; color: var(--fem-ink); text-decoration: none; }

@media (max-width: 960px) {
	.fem-featured-card, .fem-form-grid { grid-template-columns: 1fr; }
	.fem-media-row { flex-wrap: wrap; }
	.fem-people-grid { grid-template-columns: repeat(2, 1fr); }
	.fem-board-list { grid-template-columns: 1fr 1fr; }
	.fem-bio-detail { grid-template-columns: 1fr; }
	.fem-stat-grid, .fem-trial-cta { grid-template-columns: 1fr; }
	.fem-product-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
	.fem-grid-2 { grid-template-columns: 1fr; gap: 40px; }
	.fem-card-grid { grid-template-columns: repeat(2, 1fr); }
	.fem-footer .fem-container { grid-template-columns: 1fr 1fr; }
	h1.fem-h1 { font-size: 38px; }
	.fem-consent-banner { flex-direction: column; align-items: stretch; left: 16px; right: 16px; bottom: 16px; }
	.fem-consent-actions { justify-content: center; }
	.fem-ticker { display: none; }

	/* Mobile nav: hamburger-triggered panel replacing the hover-dropdown desktop nav */
	.fem-utility-bar { display: none; }
	.fem-main-nav .fem-nav-toggle { display: flex; }

	.fem-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--fem-white); box-shadow: 0 8px 16px rgba(0,0,0,0.12); max-height: calc(100vh - 100%); overflow-y: auto; }
	.fem-nav-links.is-menu-open { display: flex; }
	.fem-nav-links > li { width: 100%; border-top: 1px solid var(--fem-lavender); display: flex; flex-wrap: wrap; align-items: center; }
	.fem-nav-links a.nav-trigger { flex: 1; border-radius: 0; padding: 14px 24px; }
	.fem-nav-links li.has-dropdown:hover > a.nav-trigger,
	.fem-nav-links li.has-dropdown:focus-within > a.nav-trigger { background: none; color: var(--fem-ink-soft); }

	.fem-main-nav .fem-dropdown-toggle { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; flex: none; background: none; border: none; cursor: pointer; color: var(--fem-ink-soft); font-size: 14px; transition: transform 0.2s ease; }
	.fem-main-nav .fem-dropdown-toggle[aria-expanded="true"] { transform: rotate(180deg); }
	.fem-main-nav .fem-dropdown-toggle:hover,
	.fem-main-nav .fem-dropdown-toggle:focus { background: none; color: var(--fem-ink-soft); }

	.fem-dropdown { position: static; display: none; width: 100%; box-shadow: none; border-radius: 0; margin: 0; padding: 0 0 8px; background: var(--fem-lavender); opacity: 1; transform: none; pointer-events: auto; transition: none; }
	.fem-nav-links li.has-dropdown:hover .fem-dropdown,
	.fem-nav-links li.has-dropdown:focus-within .fem-dropdown { display: none; }
	.fem-nav-links li.has-dropdown.is-open > .fem-dropdown { display: block; }
	.fem-dropdown a { padding: 10px 24px 10px 40px; }

	.fem-mobile-utility { display: flex; flex-direction: column; width: 100%; padding: 16px 24px 20px; }
	.fem-mobile-utility a { padding: 10px 0; color: var(--fem-ink-soft); text-decoration: none; font-size: 14px; border-bottom: 1px solid var(--fem-lavender); }
	.fem-mobile-utility a:last-child { border-bottom: none; }

	body.fem-nav-open { overflow: hidden; }
}
