/* ── Home Page: Nav Override (starts transparent, frosts on scroll) ── */
.sq-nav {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
}

.sq-nav.scrolled {
	background: rgba(10, 10, 10, 0.94);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.45);
}

/* ── Hero ─────────────────────────────────────────────── */
.sq-hero {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-top: 72px;
}

#three-container {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.sq-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		95deg,
		rgba(10,10,10,0.93) 0%,
		rgba(10,10,10,0.75) 45%,
		rgba(10,10,10,0.15) 75%,
		rgba(10,10,10,0.0)  100%
	);
}

.sq-hero-content {
	position: relative;
	z-index: 2;
	padding: 0 48px;
	max-width: 680px;
}

.sq-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.sq-hero-eyebrow::before {
	content: '';
	display: block;
	width: 32px;
	height: 2px;
	background: var(--red);
	flex-shrink: 0;
}

.sq-hero-eyebrow span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
}

.sq-hero-h1 {
	font-size: clamp(48px, 6.5vw, 92px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 24px;
}

.sq-hero-h1 em { font-style: normal; color: var(--red); }

.sq-hero-sub {
	font-size: clamp(16px, 1.4vw, 19px);
	font-weight: 300;
	color: rgba(255,255,255,0.65);
	line-height: 1.65;
	margin-bottom: 44px;
	max-width: 440px;
}

/* ── Hero Inline Email Form ───────────────────────────── */
.sq-hero-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.sq-hero-form {
	display: flex;
	width: 100%;
	max-width: 480px;
}

.sq-hero-email-input {
	flex: 1;
	min-width: 0;
	padding: 0 18px;
	height: 50px;
	background: rgba(255,255,255,0.06);
	border: 1.5px solid rgba(255,255,255,0.18);
	border-right: none;
	border-radius: 2px 0 0 2px;
	outline: none;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	transition: border-color 0.2s, background 0.2s;
}

.sq-hero-email-input::placeholder { color: rgba(255,255,255,0.3); }

.sq-hero-email-input:focus {
	background: rgba(255,255,255,0.09);
	border-color: rgba(255,255,255,0.4);
}

.sq-hero-email-input.sq-input-error { border-color: var(--red); }

.sq-hero-form .sq-btn-primary {
	border-radius: 0 2px 2px 0;
	height: 50px;
	white-space: nowrap;
	flex-shrink: 0;
}

.sq-hero-form-secondary {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	text-decoration: none;
	transition: color 0.2s;
}

.sq-hero-form-secondary:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 520px) {
	.sq-hero-form { flex-direction: column; max-width: 100%; }

	.sq-hero-email-input {
		border-right: 1.5px solid rgba(255,255,255,0.18);
		border-bottom: none;
		border-radius: 2px 2px 0 0;
		height: 52px;
	}

	.sq-hero-form .sq-btn-primary {
		border-radius: 0 0 2px 2px;
		height: auto;
		width: 100%;
		justify-content: center;
	}
}

/* ── Scroll Hint ──────────────────────────────────────── */
.sq-scroll-hint {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.45;
}

.sq-scroll-hint span {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.sq-scroll-mouse {
	width: 20px;
	height: 32px;
	border: 1.5px solid var(--white);
	border-radius: 10px;
	position: relative;
}

.sq-scroll-mouse::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 6px;
	background: var(--white);
	border-radius: 2px;
	animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
	0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
	80%  { opacity: 0; transform: translateX(-50%) translateY(10px); }
	100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ── Hero Text Entrance ───────────────────────────────── */
.hero-fade {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-fade.ready { opacity: 1; transform: translateY(0); }

.hero-fade.d1 { transition-delay: 0.2s; }
.hero-fade.d2 { transition-delay: 0.38s; }
.hero-fade.d3 { transition-delay: 0.56s; }
.hero-fade.d4 { transition-delay: 0.74s; }

/* ── Marquee Strip ────────────────────────────────────── */
.sq-marquee-wrap {
	background: var(--red);
	overflow: hidden;
	padding: 14px 0;
	user-select: none;
}

.sq-marquee-track {
	display: flex;
	white-space: nowrap;
	animation: marquee 28s linear infinite;
}

.sq-marquee-track span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--white);
	padding: 0 40px;
}

.sq-marquee-track span::before {
	content: '✦';
	margin-right: 40px;
	opacity: 0.6;
}

@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ── Stats Row ────────────────────────────────────────── */
.sq-stats {
	background: var(--dark2);
	padding: 64px 48px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	border-top: 1px solid rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sq-stat {
	padding: 32px 40px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
}

.sq-stat + .sq-stat::before {
	content: '';
	position: absolute;
	left: 0; top: 20%; bottom: 20%;
	width: 1px;
	background: rgba(255,255,255,0.08);
}

.sq-stat-value {
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--white);
	line-height: 1;
}

.sq-stat-value em { font-style: normal; color: var(--red); }

.sq-stat-label {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--grey);
	text-transform: uppercase;
}

.sq-stat-desc {
	font-size: 14px;
	font-weight: 300;
	color: rgba(255,255,255,0.45);
	line-height: 1.5;
	margin-top: 4px;
}

/* ── Section Wrappers (home only) ────────────────────── */
.sq-section { padding: 120px 48px; }
.sq-section-inner { max-width: 1240px; margin: 0 auto; }

/* ── Products Teaser ──────────────────────────────────── */
.sq-products-section { background: var(--dark3); }

.sq-products-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 64px;
	gap: 24px;
	flex-wrap: wrap;
}

/* ── Product Grid: Asymmetric Bento ──────────────────── */
.sq-products-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: 1fr 1fr;
	min-height: 640px;
	gap: 3px;
}

/* ── Product Card Base ───────────────────────────────── */
.sq-product-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background: var(--dark2);
	border: 1px solid rgba(255,255,255,0.06);
	transition: border-color 0.6s cubic-bezier(0.32,0.72,0,1);
}

.sq-product-card:hover { border-color: rgba(255,0,60,0.3); }

/* Feature card: spans both rows of column 1 */
.sq-product-card--feature { grid-column: 1; grid-row: 1 / span 2; }
.sq-product-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.sq-product-card:nth-child(3) { grid-column: 2; grid-row: 2; }

/* ── Media (image container) ─────────────────────────── */
.sqpc-media {
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.sq-product-card--feature .sqpc-media { flex: 1; min-height: 380px; }
.sq-product-card:not(.sq-product-card--feature) .sqpc-media { aspect-ratio: 3 / 2; }

.sqpc-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(18%) brightness(0.88);
	transition: transform 0.9s cubic-bezier(0.32,0.72,0,1), filter 0.5s;
}

.sq-product-card:hover .sqpc-media img {
	transform: scale(1.06);
	filter: grayscale(0%) brightness(1.0);
}

.sqpc-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.9) 100%);
	pointer-events: none;
}

/* ── Body Content ────────────────────────────────────── */
.sqpc-body {
	padding: 22px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.sq-product-card--feature .sqpc-body { padding: 24px 32px 32px; }

/* ── Number Eyebrow ──────────────────────────────────── */
.sqpc-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--red);
}

/* ── Product Name ────────────────────────────────────── */
.sqpc-name {
	font-size: clamp(20px, 1.8vw, 28px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: var(--white);
	margin: 0;
}

.sq-product-card--feature .sqpc-name { font-size: clamp(26px, 2.8vw, 44px); }

/* ── Description ─────────────────────────────────────── */
.sqpc-desc {
	font-size: 14px;
	font-weight: 300;
	color: rgba(255,255,255,0.5);
	line-height: 1.65;
	margin: 0;
}

/* ── Spec Chips ──────────────────────────────────────── */
.sqpc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}

.sqpc-chip {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.35);
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 4px 9px;
	border-radius: 2px;
	transition: color 0.3s, border-color 0.3s;
}

.sq-product-card:hover .sqpc-chip {
	color: rgba(255,255,255,0.5);
	border-color: rgba(255,255,255,0.13);
}

/* ── CTA (Button-in-Button pattern) ─────────────────── */
.sqpc-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.sqpc-cta-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red);
	transition: opacity 0.3s;
}

.sq-product-card:hover .sqpc-cta-label { opacity: 0.75; }

.sqpc-cta-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255,0,60,0.08);
	border: 1px solid rgba(255,0,60,0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	flex-shrink: 0;
	transition: transform 0.6s cubic-bezier(0.32,0.72,0,1), background 0.3s, border-color 0.3s;
}

.sq-product-card:hover .sqpc-cta-icon {
	transform: translate(3px, -2px);
	background: rgba(255,0,60,0.16);
	border-color: rgba(255,0,60,0.3);
}

/* ── Info Banner ──────────────────────────────────────── */
.sq-banner { width: 100%; line-height: 0; }
.sq-banner img { width: 100%; height: auto; display: block; }

/* ── About Section ────────────────────────────────────── */
.sq-about-section {
	background: oklch(91% 0.015 55);
	overflow: hidden;
}

.sq-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 600px;
}

.sq-about-text {
	padding: 96px 56px 96px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sq-about-text .sq-section-eyebrow { color: var(--dark3); }

.sq-about-text .sq-section-h2 {
	font-size: clamp(52px, 6vw, 96px);
	color: oklch(12% 0.008 30);
	line-height: 1.0;
	letter-spacing: -0.03em;
	margin-bottom: 28px;
}

.sq-about-text .sq-section-h2 em {
	font-style: normal;
	color: var(--red);
}

.sq-about-text .sq-section-lead {
	color: oklch(30% 0.006 30);
	margin-bottom: 48px;
}

/* ── Numbered spec list ───────────────────────────────── */
.sq-about-specs {
	border-top: 1px solid oklch(72% 0.01 55);
}

.sq-about-spec {
	display: flex;
	align-items: baseline;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid oklch(72% 0.01 55);
}

.sq-about-spec-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--red);
	flex-shrink: 0;
	min-width: 24px;
}

.sq-about-spec-label {
	font-size: 14px;
	font-weight: 600;
	color: oklch(12% 0.008 30);
	letter-spacing: 0.04em;
}

/* ── About image (full-bleed fill) ────────────────────── */
.sq-about-image {
	position: relative;
	overflow: hidden;
}

.sq-about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: sepia(0.05) saturate(1.1) contrast(1.02);
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 991px) {
	.sq-hero-content { padding: 0 24px; }
	.sq-scroll-hint { display: none; }

	.sq-stats { grid-template-columns: 1fr; padding: 40px 24px; }
	.sq-stat + .sq-stat::before { display: none; }
	.sq-stat { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); }

	.sq-section { padding: 80px 24px; }

	.sq-products-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
	.sq-product-card--feature, .sq-product-card:nth-child(2), .sq-product-card:nth-child(3) { grid-column: 1; grid-row: auto; }
	.sq-product-card--feature .sqpc-media { min-height: auto; aspect-ratio: 4 / 3; }
	.sq-products-header { flex-direction: column; align-items: flex-start; }

	.sq-about-grid { grid-template-columns: 1fr; }
	.sq-about-image { min-height: 280px; }
}

@media (max-width: 767px) {
	.sq-hero-h1 { font-size: clamp(40px, 11vw, 60px); }
}

/* ── FAQ ──────────────────────────────────────────────── */
.sq-faq-section { background: var(--dark2); }

.sq-faq-header { margin-bottom: 48px; }

.sq-faq-list { max-width: 760px; }

.sq-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }

.sq-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.sq-faq-q {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 24px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	text-align: left;
	line-height: 1.4;
}

.sq-faq-q:hover { color: rgba(255,255,255,0.8); }

.sq-faq-chevron {
	flex-shrink: 0;
	color: var(--red);
	transition: transform 0.25s ease;
}

.sq-faq-item.open .sq-faq-chevron { transform: rotate(180deg); }

.sq-faq-a {
	font-size: 15px;
	font-weight: 300;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding-bottom 0.35s ease;
	padding-bottom: 0;
}

.sq-faq-item.open .sq-faq-a {
	max-height: 200px;
	padding-bottom: 24px;
}
