/* PRYD Stitch responsive homepage — scoped to avoid affecting other Astra pages. */

body.pryd-stitch-page {
	margin: 0 !important;
	background: #fbf9fb;
	color: #1b1b1d;
	overflow-x: hidden;
}

body.pryd-menu-open {
	overflow: hidden;
}

body.pryd-stitch-page #page,
body.pryd-stitch-page .site-content {
	max-width: none;
	padding: 0;
}

.pryd-stitch {
	--pryd-surface: #fbf9fb;
	--pryd-surface-low: #f5f3f5;
	--pryd-surface-high: #eae7ea;
	--pryd-white: #ffffff;
	--pryd-ink: #1b1b1d;
	--pryd-muted: #44474d;
	--pryd-outline: #c5c6ce;
	--pryd-navy: #0b1c34;
	--pryd-gold: #775a19;
	--pryd-gold-light: #e9c176;
	--pryd-gold-pale: #fed488;
	--pryd-page-pad: clamp(20px, 5.2vw, 80px);
	--pryd-section-pad: clamp(64px, 8vw, 128px);
	--pryd-shadow: 0 24px 60px rgba(11, 28, 52, 0.06);
	min-width: 0;
	background: var(--pryd-surface);
	color: var(--pryd-ink);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

.pryd-stitch img,
.pryd-stitch svg {
	display: block;
	max-width: 100%;
}

.pryd-stitch button,
.pryd-stitch input {
	font: inherit;
}

.pryd-stitch button,
.pryd-stitch a {
	-webkit-tap-highlight-color: transparent;
}

.pryd-stitch a {
	color: inherit;
	text-decoration: none;
}

.pryd-stitch p,
.pryd-stitch h1,
.pryd-stitch h2,
.pryd-stitch h3,
.pryd-stitch blockquote,
.pryd-stitch figure,
.pryd-stitch ul {
	margin: 0;
}

.pryd-stitch ul {
	padding: 0;
}

.pryd-stitch h1,
.pryd-stitch h2,
.pryd-stitch h3,
.pryd-stitch blockquote {
	font-family: "Playfair Display", Georgia, serif;
}

.pryd-stitch :focus-visible {
	outline: 3px solid var(--pryd-gold-light);
	outline-offset: 4px;
}

.pryd-container {
	width: calc(100% - var(--pryd-page-pad) - var(--pryd-page-pad));
	max-width: 1280px;
	margin-inline: auto;
}

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

.pryd-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100000;
	padding: 12px 18px;
	background: var(--pryd-navy);
	color: #fff;
	font-weight: 600;
	transform: translateY(-160%);
	transition: transform 0.2s ease;
}

.pryd-skip-link:focus {
	transform: translateY(0);
}

/* Header */
.pryd-site-header {
	position: sticky;
	top: 0;
	z-index: 9999;
	border-bottom: 1px solid rgba(197, 198, 206, 0.35);
	background: rgba(251, 249, 251, 0.94);
	box-shadow: 0 5px 20px rgba(11, 28, 52, 0.04);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

body.admin-bar .pryd-site-header {
	top: 32px;
}

.pryd-header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: clamp(76px, 6.6vw, 96px);
	gap: clamp(18px, 3vw, 42px);
}

.pryd-logo {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	min-width: 84px;
}

.pryd-logo-image {
	width: auto;
	height: clamp(42px, 4vw, 56px);
	object-fit: contain;
}

.pryd-wordmark {
	color: var(--pryd-navy);
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 700;
	letter-spacing: -0.04em;
}

.pryd-primary-navigation {
	margin-left: auto;
}

.pryd-primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.4vw, 38px);
	list-style: none;
}

.pryd-primary-menu li {
	position: relative;
	margin: 0;
}

.pryd-primary-menu a {
	display: inline-block;
	padding: 10px 0;
	color: var(--pryd-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.pryd-primary-menu a:hover,
.pryd-primary-menu .current-menu-item > a {
	color: var(--pryd-gold);
}

.pryd-primary-menu .current-menu-item > a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 2px;
	background: var(--pryd-gold);
	content: "";
}

.pryd-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -20px;
	min-width: 210px;
	padding: 12px 20px;
	border: 1px solid rgba(197, 198, 206, 0.4);
	background: #fff;
	box-shadow: var(--pryd-shadow);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 0.2s ease;
}

.pryd-primary-menu li:hover > .sub-menu,
.pryd-primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pryd-header-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;
}

.pryd-icon-link {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	color: var(--pryd-navy);
	transition: color 0.2s ease, opacity 0.2s ease;
}

.pryd-icon-link:hover {
	color: var(--pryd-gold);
}

.pryd-icon-link svg,
.pryd-feature-icon svg,
.pryd-check-icon svg,
.pryd-quote-icon svg,
.pryd-social-links svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pryd-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 9px;
	border: 1px solid rgba(197, 198, 206, 0.65);
	border-radius: 4px;
	background: transparent;
	cursor: pointer;
}

.pryd-menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--pryd-navy);
	transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

/* Hero */
.pryd-hero {
	position: relative;
	height: clamp(400px, 65svh, 720px);
	min-height: 400px;
	overflow: hidden;
	background: var(--pryd-navy);
}

.pryd-hero-track {
	display: flex;
	height: 100%;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.pryd-hero-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.pryd-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pryd-hero.is-static .pryd-hero-track {
	transform: none !important;
}

.pryd-slider-dots {
	position: absolute;
	left: 50%;
	bottom: clamp(22px, 3vw, 36px);
	z-index: 2;
	display: flex;
	gap: 12px;
	transform: translateX(-50%);
}

.pryd-slider-dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.pryd-slider-dot:hover {
	transform: scale(1.15);
	background: rgba(255, 255, 255, 0.55);
}

.pryd-slider-dot.is-active {
	border-color: var(--pryd-gold-light);
	background: var(--pryd-gold-light);
}

/* Shared sections */
.pryd-section {
	padding-block: var(--pryd-section-pad);
}

.pryd-section-header {
	margin-bottom: clamp(44px, 5vw, 68px);
	text-align: center;
}

.pryd-section-header h2,
.pryd-science h2 {
	color: var(--pryd-navy);
	font-size: clamp(32px, 3.2vw, 44px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.pryd-gold-rule {
	display: block;
	width: 64px;
	height: 1px;
	margin: 18px auto 0;
	background: var(--pryd-gold);
}

.pryd-eyebrow {
	margin-bottom: 8px !important;
	color: var(--pryd-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

/* Products */
.pryd-collection {
	border-top: 1px solid rgba(197, 198, 206, 0.25);
	background: var(--pryd-surface-low);
}

.pryd-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 3.5vw, 48px);
}

.pryd-product-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid rgba(197, 198, 206, 0.35);
	border-radius: 16px;
	background: var(--pryd-white);
	box-shadow: 0 8px 30px rgba(11, 28, 52, 0.035);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pryd-product-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--pryd-shadow);
}

.pryd-product-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: #e3e3e3;
}

.pryd-product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pryd-product-card:hover .pryd-product-image {
	transform: scale(1.035);
}

.pryd-favorite {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--pryd-gold);
	box-shadow: 0 3px 12px rgba(11, 28, 52, 0.08);
	backdrop-filter: blur(5px);
}

.pryd-favorite svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.pryd-product-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 3vw, 36px);
}

.pryd-product-content h3 {
	margin-bottom: 16px;
	color: var(--pryd-navy);
	font-size: clamp(22px, 2vw, 26px);
	font-weight: 600;
	line-height: 1.3;
}

.pryd-benefit-list {
	margin-bottom: 30px !important;
	color: rgba(68, 71, 77, 0.84);
	font-size: 15px;
	list-style: none;
}

.pryd-benefit-list li {
	position: relative;
	padding-left: 18px;
}

.pryd-benefit-list li + li {
	margin-top: 7px;
}

.pryd-benefit-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "•";
}

.pryd-product-buying {
	margin-top: auto;
}

.pryd-weight-selector {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

.pryd-weight-selector legend {
	margin-bottom: 12px;
	color: var(--pryd-muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pryd-weight-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pryd-weight-button {
	min-width: 60px;
	padding: 9px 13px;
	border: 1px solid var(--pryd-outline);
	border-radius: 2px;
	background: #fff;
	color: var(--pryd-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: 0.2s ease;
}

.pryd-weight-button:hover,
.pryd-weight-button.is-active {
	border-color: var(--pryd-gold);
	background: var(--pryd-gold);
	color: #fff;
}

.pryd-shipping-note {
	margin-top: 10px !important;
	color: rgba(68, 71, 77, 0.62);
	font-size: 11px;
	font-style: italic;
}

.pryd-purchase-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(197, 198, 206, 0.3);
}

.pryd-product-price {
	color: var(--pryd-navy);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 26px;
	font-weight: 600;
	white-space: nowrap;
}

.pryd-button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 13px clamp(18px, 2.2vw, 30px);
	border: 1px solid var(--pryd-navy);
	border-radius: 2px;
	background: var(--pryd-navy);
	color: #fff !important;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	transition: 0.2s ease;
}

.pryd-button:hover {
	border-color: var(--pryd-gold);
	background: var(--pryd-gold);
}

.pryd-button.is-disabled {
	cursor: not-allowed;
	opacity: 0.62;
}

/* PRYD Difference */
.pryd-difference {
	border-top: 1px solid rgba(197, 198, 206, 0.25);
	background-color: var(--pryd-surface);
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.015' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

.pryd-difference-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(30px, 5vw, 68px);
}

.pryd-difference-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.pryd-feature-icon {
	display: grid;
	width: 80px;
	height: 80px;
	margin-bottom: 24px;
	place-items: center;
	border: 1px solid rgba(119, 90, 25, 0.35);
	border-radius: 50%;
	color: var(--pryd-gold);
	transition: background 0.25s ease;
}

.pryd-difference-item:hover .pryd-feature-icon {
	background: rgba(119, 90, 25, 0.05);
}

.pryd-feature-icon svg {
	width: 34px;
	height: 34px;
}

.pryd-difference-item h3 {
	margin-bottom: 14px;
	color: var(--pryd-navy);
	font-size: clamp(21px, 2vw, 25px);
	font-weight: 600;
	line-height: 1.3;
}

.pryd-difference-item p {
	max-width: 360px;
	color: var(--pryd-muted);
	font-size: 15px;
}

/* Science */
.pryd-science {
	position: relative;
	overflow: hidden;
	background: var(--pryd-navy);
	color: #fff;
}

.pryd-science-glow {
	position: absolute;
	top: 50%;
	left: 68%;
	width: min(780px, 85vw);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.pryd-science-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(50px, 6vw, 82px);
	align-items: center;
}

.pryd-eyebrow-light {
	margin-bottom: 14px !important;
	color: var(--pryd-gold-pale);
}

.pryd-science h2 {
	margin-bottom: 24px;
	color: #fff;
}

.pryd-science-intro {
	max-width: 650px;
	margin-bottom: 34px !important;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(16px, 1.5vw, 18px);
}

.pryd-science-points {
	display: grid;
	gap: 24px;
	list-style: none;
}

.pryd-science-points li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 14px;
	align-items: start;
}

.pryd-check-icon {
	color: var(--pryd-gold-pale);
}

.pryd-check-icon svg {
	width: 23px;
	height: 23px;
}

.pryd-science-points h3 {
	margin-bottom: 4px;
	color: #fff;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 19px;
	font-weight: 600;
}

.pryd-science-points p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.pryd-chart-card {
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(8px);
}

.pryd-chart-card figcaption {
	margin-bottom: 34px;
	text-align: center;
}

.pryd-chart-card figcaption h3 {
	margin-bottom: 6px;
	color: var(--pryd-gold-pale);
	font-size: clamp(21px, 2.2vw, 27px);
	font-weight: 600;
}

.pryd-chart-card figcaption p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.pryd-chart {
	position: relative;
	height: clamp(250px, 28vw, 330px);
	margin-bottom: 24px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.18);
	border-left: 2px solid rgba(255, 255, 255, 0.18);
}

.pryd-chart > svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

.pryd-chart-standard {
	fill: none;
	stroke: rgba(255, 255, 255, 0.42);
	stroke-width: 2;
	stroke-dasharray: 4;
	vector-effect: non-scaling-stroke;
}

.pryd-chart-fill {
	fill: url(#pryd-chart-fill);
	opacity: 0.7;
}

.pryd-chart-line {
	fill: none;
	stroke: var(--pryd-gold-light);
	stroke-width: 3;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
}

.pryd-chart-legend {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	gap: 9px;
	max-width: min(210px, 74%);
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	background: rgba(11, 28, 52, 0.88);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.pryd-chart-legend span {
	display: flex;
	align-items: center;
	gap: 9px;
}

.pryd-chart-legend i {
	display: block;
	width: 18px;
	height: 2px;
	flex: 0 0 18px;
}

.pryd-legend-standard {
	border-top: 1px dashed rgba(255, 255, 255, 0.65);
}

.pryd-legend-pryd {
	background: var(--pryd-gold-light);
}

.pryd-chart-axis {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -28px;
	display: flex;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.45);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Founder */
.pryd-founder {
	background: var(--pryd-surface);
}

.pryd-founder-card {
	display: grid;
	align-items: stretch;
	overflow: hidden;
	grid-template-columns: 1fr;
	border: 1px solid rgba(197, 198, 206, 0.35);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 35px rgba(11, 28, 52, 0.04);
}

.pryd-founder-media {
	position: relative;
	min-height: 0;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #e3e3e3;
}

.pryd-stitch .pryd-founder-card .pryd-founder-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	max-height: none !important;
	min-height: 100%;
	object-fit: cover;
	object-position: center top;
}

.pryd-founder-copy {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: clamp(34px, 5vw, 68px);
}

.pryd-quote-icon {
	margin-bottom: 24px;
	color: var(--pryd-gold);
}

.pryd-quote-icon svg {
	width: 40px;
	height: 40px;
	fill: currentColor;
	stroke: none;
}

.pryd-founder-copy blockquote {
	margin-bottom: 28px;
	color: var(--pryd-navy);
	font-size: clamp(21px, 2.1vw, 27px);
	font-style: italic;
	font-weight: 600;
	line-height: 1.52;
}

.pryd-founder-name {
	color: var(--pryd-navy);
	font-weight: 600;
}

.pryd-founder-role {
	margin-top: 3px !important;
	color: var(--pryd-muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pryd-stitch .pryd-founder-signature {
	width: 180px;
	max-width: 42%;
	height: auto;
	max-height: 64px;
	margin-top: 18px;
	object-fit: contain;
	object-position: left center;
}

/* Testimonials */
.pryd-testimonials {
	border-top: 1px solid rgba(197, 198, 206, 0.25);
	background: var(--pryd-surface-low);
}

.pryd-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
	gap: clamp(20px, 2.6vw, 34px);
}

.pryd-testimonial-card {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: clamp(28px, 3vw, 38px);
	border: 1px solid rgba(197, 198, 206, 0.25);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(11, 28, 52, 0.03);
	text-align: center;
}

.pryd-stars {
	display: flex;
	gap: 5px;
	margin-bottom: 22px;
}

.pryd-stars span {
	color: #d8d8d8;
}

.pryd-stars span.is-filled {
	color: var(--pryd-gold);
}

.pryd-stars svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1;
}

.pryd-testimonial-card blockquote {
	margin-bottom: 28px;
	color: var(--pryd-muted);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-style: italic;
	line-height: 1.65;
}

.pryd-testimonial-person {
	margin-top: auto;
}

.pryd-testimonial-person h3 {
	color: var(--pryd-navy);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pryd-testimonial-person p {
	margin-top: 4px !important;
	color: var(--pryd-gold);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Footer */
.pryd-site-footer {
	border-top: 1px solid rgba(197, 198, 206, 0.3);
	background: #fff;
}

.pryd-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 46px;
	padding-block: clamp(60px, 7vw, 88px);
}

.pryd-footer-logo {
	margin-bottom: 22px;
}

.pryd-footer-brand > p,
.pryd-footer-newsletter > p {
	max-width: 380px;
	color: var(--pryd-muted);
	font-size: 14px;
}

.pryd-social-links {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.pryd-social-links a {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid var(--pryd-outline);
	border-radius: 50%;
	color: var(--pryd-muted);
	transition: 0.2s ease;
}

.pryd-social-links a:hover {
	border-color: var(--pryd-navy);
	background: var(--pryd-navy);
	color: #fff;
}

.pryd-social-links svg {
	width: 18px;
	height: 18px;
}

.pryd-footer-column h2,
.pryd-footer-newsletter h2 {
	margin-bottom: 20px;
	color: var(--pryd-navy);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pryd-footer-menu,
.pryd-legal-menu {
	list-style: none;
}

.pryd-footer-menu {
	display: grid;
	gap: 11px;
}

.pryd-footer-menu li,
.pryd-legal-menu li {
	margin: 0;
}

.pryd-footer-menu a {
	color: var(--pryd-muted);
	font-size: 14px;
	transition: color 0.2s ease;
}

.pryd-footer-menu a:hover,
.pryd-legal-menu a:hover {
	color: var(--pryd-gold);
}

.pryd-footer-newsletter > p {
	margin-bottom: 18px !important;
}

.pryd-newsletter-placeholder,
.pryd-newsletter-form form {
	display: flex;
	width: 100%;
	max-width: 460px;
}

.pryd-newsletter-placeholder input,
.pryd-newsletter-form input[type="email"] {
	min-width: 0;
	min-height: 48px;
	flex: 1;
	padding: 12px 14px;
	border: 1px solid var(--pryd-outline);
	border-right: 0;
	border-radius: 0;
	background: var(--pryd-surface);
	color: var(--pryd-ink);
}

.pryd-newsletter-placeholder button,
.pryd-newsletter-form button,
.pryd-newsletter-form input[type="submit"] {
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid var(--pryd-navy);
	border-radius: 0;
	background: var(--pryd-navy);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pryd-newsletter-placeholder [disabled] {
	cursor: not-allowed;
	opacity: 0.72;
}

.pryd-footer-bottom {
	border-top: 1px solid rgba(197, 198, 206, 0.3);
	background: var(--pryd-surface);
}

.pryd-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding-block: 22px;
	color: var(--pryd-muted);
	font-size: 11px;
}

.pryd-legal-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 20px;
}

/* Tablet */
@media (min-width: 720px) {
	.pryd-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pryd-founder-card {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.pryd-founder-media {
		min-height: clamp(480px, 65vw, 620px);
		aspect-ratio: auto;
	}

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

/* Desktop science and footer layout */
@media (min-width: 960px) {
	.pryd-science-grid {
		grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
	}
}

@media (min-width: 1040px) {
	.pryd-footer-grid {
		grid-template-columns: minmax(260px, 4fr) minmax(130px, 2fr) minmax(130px, 2fr) minmax(280px, 4fr);
	}
}

/* Tablet and mobile navigation */
@media (max-width: 1023px) {
	.pryd-hero-slide.pryd-focus-left .pryd-hero-image {
		object-position: 28% center;
	}

	.pryd-hero-slide.pryd-focus-center .pryd-hero-image {
		object-position: 50% center;
	}

	.pryd-hero-slide.pryd-focus-right .pryd-hero-image {
		object-position: 72% center;
	}

	.pryd-menu-toggle {
		display: block;
	}

	.pryd-primary-navigation {
		position: absolute;
		top: 100%;
		left: calc(0px - var(--pryd-page-pad));
		right: calc(0px - var(--pryd-page-pad));
		max-height: 0;
		margin: 0;
		overflow: hidden;
		border-bottom: 1px solid rgba(197, 198, 206, 0.45);
		background: rgba(255, 255, 255, 0.985);
		box-shadow: 0 16px 30px rgba(11, 28, 52, 0.08);
		opacity: 0;
		visibility: hidden;
		transition: max-height 0.35s ease, opacity 0.2s ease, visibility 0.2s ease;
	}

	.pryd-primary-navigation.is-open {
		max-height: calc(100vh - 76px);
		overflow-y: auto;
		opacity: 1;
		visibility: visible;
	}

	.pryd-primary-menu {
		display: grid;
		width: calc(100% - var(--pryd-page-pad) - var(--pryd-page-pad));
		max-width: 1280px;
		margin-inline: auto !important;
		padding-block: 20px !important;
		gap: 0;
	}

	.pryd-primary-menu a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid rgba(197, 198, 206, 0.28);
	}

	.pryd-primary-menu .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0 0 0 18px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}
}

@media (max-width: 782px) {
	body.admin-bar .pryd-site-header {
		top: 46px;
	}
}

@media (max-width: 719px) {
	.pryd-hero {
		height: clamp(340px, 54svh, 520px);
		min-height: 340px;
	}

	.pryd-difference-grid {
		grid-template-columns: 1fr;
	}

	.pryd-difference-item + .pryd-difference-item {
		padding-top: 12px;
	}

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

	.pryd-legal-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 460px) {
	.pryd-header-actions {
		gap: 7px;
	}

	.pryd-logo {
		min-width: 72px;
	}

	.pryd-icon-link {
		width: 29px;
	}

	.pryd-menu-toggle {
		width: 40px;
		height: 40px;
	}

	.pryd-product-content {
		padding: 22px;
	}

	.pryd-purchase-row {
		align-items: stretch;
		flex-direction: column;
	}

	.pryd-product-price {
		font-size: 25px;
	}

	.pryd-button {
		width: 100%;
	}

	.pryd-chart-card {
		padding: 22px 18px 28px;
	}

	.pryd-chart {
		height: 230px;
	}

	.pryd-chart-legend {
		font-size: 8px;
	}

	.pryd-newsletter-placeholder,
	.pryd-newsletter-form form {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}

	.pryd-newsletter-placeholder input,
	.pryd-newsletter-form input[type="email"] {
		border-right: 1px solid var(--pryd-outline);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pryd-stitch *,
	.pryd-stitch *::before,
	.pryd-stitch *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Version 2.0: configurable, editor-safe homepage components. */
.pryd-stitch .is-hidden {
	display: none !important;
}

.pryd-hero-image-link {
	position: absolute;
	inset: 0;
	display: block;
}

.pryd-hero.pryd-image-mode-contain {
	height: clamp(230px, 56.25vw, 900px);
	min-height: 0;
	background: var(--pryd-hero-bg, var(--pryd-navy));
}

.pryd-image-mode-contain .pryd-hero-image {
	object-fit: contain;
	object-position: center;
	background: var(--pryd-hero-bg, var(--pryd-navy));
}

.pryd-hero.pryd-image-mode-cover {
	height: clamp(400px, 65svh, 720px);
	min-height: 400px;
}

.pryd-image-mode-cover .pryd-hero-image {
	object-fit: cover;
}

.pryd-hero-copy {
	position: absolute;
	pointer-events: none;
	z-index: 2;
	width: min(520px, calc(100% - 40px));
	max-width: calc(100% - 40px);
	padding: clamp(18px, 3vw, 34px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	background: rgba(11, 28, 52, 0.58);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
	color: #fff;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(5px);
}

.pryd-hero-copy h2 {
	margin: 0 0 12px;
	color: inherit;
	line-height: 1.12;
}

.pryd-hero-copy p {
	margin: 0 0 20px !important;
	color: inherit;
}

.pryd-hero-copy .pryd-button {
	pointer-events: auto;
	width: auto;
	text-shadow: none;
}

.pryd-position-top-left {
	top: 8%;
	left: 6%;
}

.pryd-position-top-center {
	top: 8%;
	left: 50%;
	transform: translateX(-50%);
}

.pryd-position-top-right {
	top: 8%;
	right: 6%;
	left: auto;
}

.pryd-position-middle-left {
	top: 50%;
	left: 6%;
	transform: translateY(-50%);
}

.pryd-position-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pryd-position-middle-right {
	top: 50%;
	right: 6%;
	left: auto;
	transform: translateY(-50%);
}

.pryd-position-bottom-left {
	bottom: 8%;
	left: 6%;
}

.pryd-position-bottom-center {
	bottom: 8%;
	left: 50%;
	transform: translateX(-50%);
}

.pryd-position-bottom-right {
	right: 6%;
	bottom: 8%;
	left: auto;
}

.pryd-position-custom {
	transform: translate(-50%, -50%);
}

.pryd-section-header > p {
	max-width: 760px;
	margin: 20px auto 0 !important;
	color: var(--pryd-muted);
}

.pryd-product-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--pryd-navy);
}

.pryd-sale-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	display: grid;
	min-width: 58px;
	min-height: 34px;
	place-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	background: var(--pryd-gold);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 5px 18px rgba(11, 28, 52, 0.16);
}

.pryd-sale-badge:has(img) {
	min-width: 0;
	min-height: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.pryd-sale-badge img {
	display: block;
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.pryd-product-content h3 a {
	color: inherit;
}

.pryd-product-status {
	min-height: 1.4em;
	margin-top: 9px !important;
	color: var(--pryd-muted);
	font-size: 12px;
}

.pryd-product-status:empty {
	min-height: 0;
	margin: 0 !important;
}

.pryd-product-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.pryd-waitlist-button {
	border-color: var(--pryd-navy);
	background: var(--pryd-navy);
	color: #fff;
}

.pryd-waitlist-button:hover {
	background: var(--pryd-gold);
	color: #fff;
}

.pryd-difference-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.pryd-feature-icon img {
	display: block;
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.pryd-chart-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: contain;
}

.pryd-chart-card figcaption {
	margin: 22px 0 0;
	text-align: center;
}

.pryd-testimonial-viewport {
	overflow: hidden;
	padding: 4px;
}

.pryd-testimonial-track {
	display: flex;
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.pryd-testimonial-card {
	width: 100%;
	min-height: 320px;
	flex: 0 0 100%;
}

.pryd-testimonial-person {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
}

.pryd-avatar-above {
	flex-direction: column;
}

.pryd-avatar-bottom-left {
	flex-direction: row;
}

.pryd-testimonial-avatar {
	display: block;
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
	border: 2px solid rgba(119, 90, 25, 0.22);
	border-radius: 50%;
	object-fit: cover;
}

.pryd-testimonial-dots {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.pryd-testimonial-dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 1px solid rgba(11, 28, 52, 0.28);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.pryd-testimonial-dot:hover,
.pryd-testimonial-dot.is-active {
	border-color: var(--pryd-gold);
	background: var(--pryd-gold);
}

.pryd-social-heading {
	margin-top: 26px;
	color: var(--pryd-navy);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pryd-social-links {
	flex-wrap: wrap;
}

.pryd-social-links img {
	display: block;
	width: 19px;
	height: 19px;
	object-fit: contain;
}

.pryd-footer-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.pryd-footer-brand,
.pryd-footer-newsletter {
	min-width: 0;
}

.pryd-additional-content {
	background: #fff;
}

@media (max-width: 719px) {
	.pryd-hero.pryd-image-mode-contain {
		height: clamp(230px, 56.25vw, 320px);
		min-height: 0;
	}

	.pryd-hero-copy {
		width: min(430px, calc(100% - 24px));
		max-width: calc(100% - 24px);
		padding: 15px;
		background: rgba(11, 28, 52, 0.7);
	}

	.pryd-hero-copy p {
		margin-bottom: 12px !important;
	}

	.pryd-slider-dots {
		bottom: 12px;
		gap: 9px;
	}

	.pryd-slider-dot {
		width: 10px;
		height: 10px;
	}

	.pryd-product-actions {
		width: 100%;
		justify-content: stretch;
	}

	.pryd-product-actions .pryd-button {
		width: 100%;
		flex: 1 1 100%;
	}

	.pryd-footer-grid {
		grid-template-columns: 1fr;
	}
}
