/* ── Fonts ────────────────────────────────────────────── */
@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/gothic-a1-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/gothic-a1-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/gothic-a1-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/gothic-a1-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/gothic-a1-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/gothic-a1-800-normal.woff2') format('woff2');
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--red:   oklch(62% 0.26 21);
	--dark:  oklch(8.5% 0.005 30);
	--dark2: oklch(10.8% 0.005 30);
	--dark3: oklch(15.3% 0.005 30);
	--grey:  oklch(47.8% 0.005 30);
	--light: oklch(80% 0.013 208);
	--white: oklch(99% 0.005 80);
	--font:  'Gothic A1', sans-serif;
}

html { scroll-behavior: smooth; }

body {
	font-family: var(--font);
	background: var(--dark);
	color: var(--white);
	overflow-x: hidden;
}

/* ── Navigation ───────────────────────────────────────── */
.sq-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	padding: 0 48px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(10,10,10,0.92);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 1px 0 rgba(255,255,255,0.06);
	transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.sq-nav.scrolled {
	background: rgba(10,10,10,0.96);
	box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.45);
}

.sq-nav-logo img {
	height: 32px;
	width: auto;
	display: block;
}

.sq-nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.sq-nav-links a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	transition: color 0.2s;
}

.sq-nav-links a:hover,
.sq-nav-links a.active { color: var(--white); }

.sq-nav-cta {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white) !important;
	background: var(--red);
	padding: 9px 20px;
	border-radius: 2px;
	transition: opacity 0.2s !important;
}

.sq-nav-cta:hover { opacity: 0.85; }

.sq-nav-lang {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sq-nav-lang img { width: 20px; height: auto; }

.sq-nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
}

.sq-nav-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	transition: transform 0.3s, opacity 0.3s;
}

.sq-nav.menu-open {
	background: rgba(10, 10, 10, 0.97);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.sq-nav.menu-open .sq-nav-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	position: absolute;
	top: 72px;
	left: 0; right: 0;
	background: rgba(10, 10, 10, 0.97);
	padding: 16px 24px 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.sq-nav.menu-open .sq-nav-links li {
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sq-nav.menu-open .sq-nav-links li:last-child {
	border-bottom: none;
	padding-top: 12px;
}

.sq-nav.menu-open .sq-nav-links a {
	display: block;
	padding: 14px 0;
	font-size: 14px;
}

.sq-nav.menu-open .sq-nav-links .sq-nav-cta {
	padding: 12px 24px;
}

/* ── Shared Buttons ───────────────────────────────────── */
.sq-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white);
	background: var(--red);
	padding: 14px 32px;
	border-radius: 2px;
	transition: opacity 0.2s, transform 0.2s;
}

.sq-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.sq-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white);
	background: transparent;
	border: 1.5px solid rgba(255,255,255,0.35);
	padding: 14px 32px;
	border-radius: 2px;
	transition: border-color 0.2s, transform 0.2s;
}

.sq-btn-ghost:hover { border-color: rgba(255,255,255,0.8); transform: translateY(-1px); }

/* ── Section Typography (shared) ─────────────────────── */
.sq-section-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 20px;
}

.sq-section-h2 {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 20px;
}

.sq-section-lead {
	font-size: 17px;
	font-weight: 300;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	max-width: 560px;
}

/* ── Signup / CTA Section (home + products) ───────────── */
.sq-signup-section {
	background: var(--dark3);
	text-align: center;
	padding: 120px 48px;
}

.sq-signup-inner {
	max-width: 620px;
	margin: 0 auto;
}

.sq-signup-inner .sq-section-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 20px;
}

.sq-signup-inner .sq-section-eyebrow::before,
.sq-signup-inner .sq-section-eyebrow::after {
	content: '';
	display: block;
	width: 24px;
	height: 2px;
	background: var(--red);
}

.sq-signup-inner .sq-section-h2 {
	text-align: center;
	margin-bottom: 14px;
}

.sq-signup-inner .sq-section-lead {
	text-align: center;
	margin: 0 auto 18px;
}

/* Form elements (kept for potential Klaviyo style overrides) */
.sq-signup-form { display: flex; flex-direction: column; gap: 10px; }

.sq-signup-input {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 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-signup-input::placeholder { color: rgba(255,255,255,0.28); }
.sq-signup-input:focus { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.35); }

.sq-signup-submit {
	width: 100%;
	padding: 16px 28px;
	background: var(--red);
	border: none;
	border-radius: 2px;
	cursor: pointer;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
	transition: opacity 0.2s, transform 0.2s;
	margin-top: 4px;
}

.sq-signup-submit:hover { opacity: 0.85; transform: translateY(-1px); }

.sq-form-note {
	margin-top: 16px;
	font-size: 13px;
	font-weight: 300;
	color: rgba(255,255,255,0.35);
}

.sq-form-note a { color: rgba(255,255,255,0.55); text-decoration: underline; }

.sq-form-gdpr {
	margin-top: 10px;
	font-size: 12px;
	font-weight: 300;
	color: rgba(255,255,255,0.28);
	line-height: 1.6;
}

.sq-form-gdpr a { color: rgba(255,255,255,0.42); text-decoration: underline; }

/* ── Scroll Animations ────────────────────────────────── */
.sq-animate {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sq-animate.sq-visible { opacity: 1; transform: translateY(0); }

.sq-animate.d1 { transition-delay: 0.1s; }
.sq-animate.d2 { transition-delay: 0.2s; }
.sq-animate.d3 { transition-delay: 0.3s; }
.sq-animate.d4 { transition-delay: 0.4s; }

/* ── Footer ───────────────────────────────────────────── */
.sq-footer {
	background: var(--dark);
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 64px 48px 40px;
}

.sq-footer-inner { max-width: 1240px; margin: 0 auto; }

.sq-footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	flex-wrap: wrap;
}

.sq-footer-brand img { height: 28px; width: auto; display: block; margin-bottom: 16px; }

.sq-footer-brand p {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255,255,255,0.4);
	max-width: 280px;
	line-height: 1.7;
}

.sq-footer-nav-group { display: flex; flex-direction: column; gap: 12px; }

.sq-footer-nav-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.35);
	margin-bottom: 4px;
}

.sq-footer-nav-group a {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.sq-footer-nav-group a:hover { color: var(--white); }

.sq-footer-bottom {
	padding-top: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.sq-footer-copy { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.25); }

.sq-footer-social { display: flex; gap: 20px; }

.sq-footer-social a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.35);
	text-decoration: none;
	transition: color 0.2s;
}

.sq-footer-social a:hover { color: var(--white); }

/* ── Cookie Consent Banner ────────────────────────────── */
.sq-cookie-banner {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 5000;
	background: #111111;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 18px 48px;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.sq-cookie-banner.sq-cookie-visible { display: flex; }

.sq-cookie-text {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
	flex: 1;
	min-width: 220px;
}

.sq-cookie-text a { color: rgba(255,255,255,0.85); text-decoration: underline; }

.sq-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.sq-cookie-btn {
	font-family: var(--font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 10px 22px;
	border-radius: 2px;
	cursor: pointer;
	transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}

.sq-cookie-decline {
	background: transparent;
	border: 1.5px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.5);
}

.sq-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.sq-cookie-accept {
	background: var(--red);
	border: 1.5px solid var(--red);
	color: var(--white);
}

.sq-cookie-accept:hover { opacity: 0.85; }

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 991px) {
	.sq-nav { padding: 0 24px; }
	.sq-nav-links { display: none; }
	.sq-nav-hamburger { display: flex; }

	.sq-signup-section { padding: 80px 24px; }
	.sq-signup-submit { padding: 15px 20px; }

	.sq-footer { padding: 48px 24px 32px; }
	.sq-footer-top { flex-direction: column; }
}

@media (max-width: 767px) {
	.sq-cookie-banner { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
	.sq-cookie-actions { width: 100%; }
	.sq-cookie-btn { flex: 1; text-align: center; }
}

/* ── Reduced Motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.sq-marquee-track { animation: none; }
	.sq-scroll-mouse::after { animation: none; }
	.hero-fade,
	.hero-fade.ready { transition: none; }
	.sq-animate,
	.sq-animate.sq-visible { transition: none; }
}
