/* HS Laptop Store Design System */

:root {
	--hs-bg: #f5f0e8;
	--hs-surface: #fff9f0;
	--hs-surface-strong: #ffffff;
	--hs-ink: #1c1814;
	--hs-muted: #62584d;
	--hs-subtle: #8a7d71;
	--hs-line: rgba(29, 26, 23, 0.1);
	--hs-line-strong: rgba(29, 26, 23, 0.18);
	--hs-accent: #cc5a2b;
	--hs-accent-hover: #b94b20;
	--hs-accent-strong: #8e3516;
	--hs-accent-soft: #f8e0cf;
	--hs-accent-glow: rgba(204, 90, 43, 0.18);
	--hs-gold: #c79b47;
	--hs-forest: #26413c;
	--hs-shadow-sm: 0 2px 8px rgba(38, 26, 15, 0.06);
	--hs-shadow: 0 8px 28px rgba(38, 26, 15, 0.09);
	--hs-shadow-lg: 0 20px 52px rgba(38, 26, 15, 0.13);
	--hs-radius-sm: 12px;
	--hs-radius: 20px;
	--hs-radius-lg: 28px;
	--hs-container: 1180px;
	--hs-font-ui: 'Inter', system-ui, -apple-system, sans-serif;
	--hs-font-display: 'Playfair Display', Georgia, serif;
	--hs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--hs-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	font-family: var(--hs-font-ui);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--hs-ink);
	background: #f5f0e8;
	background-image:
		radial-gradient(ellipse 80% 50% at 0% 0%, rgba(253, 232, 216, 0.82) 0%, transparent 60%),
		radial-gradient(ellipse 60% 40% at 100% 100%, rgba(38, 65, 60, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
	min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--hs-font-display);
	line-height: 1.08;
	color: var(--hs-ink);
	font-weight: 700;
}

h1 { font-size: clamp(2.8rem, 5.9vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { color: var(--hs-muted); line-height: 1.75; }

.hs-container {
	width: min(calc(100% - 2.5rem), var(--hs-container));
	margin: 0 auto;
}

@keyframes hs-pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.4); }
}

[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s var(--hs-ease-out), transform 0.65s var(--hs-ease-out);
}

[data-animate="fade"] { transform: none; }
[data-animate="scale"] { transform: scale(0.94); }
[data-animate="right"] { transform: translateX(-22px); }
[data-animate].hs-visible { opacity: 1; transform: none !important; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.4s; }
[data-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
	[data-animate] { opacity: 1; transform: none; transition: none; }
}

.hs-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--hs-line);
	backdrop-filter: blur(20px) saturate(1.4);
	-webkit-backdrop-filter: blur(20px) saturate(1.4);
	background: rgba(255, 249, 240, 0.8);
	transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.hs-site-header.hs-scrolled {
	box-shadow: var(--hs-shadow);
	background: rgba(255, 249, 240, 0.95);
}

.hs-header-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1rem 0;
	transition: padding 0.3s ease;
}

.hs-site-header.hs-scrolled .hs-header-shell { padding: 0.65rem 0; }

.hs-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	flex-shrink: 0;
}

.hs-brand-mark {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--hs-accent), var(--hs-accent-strong));
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	box-shadow: 0 12px 34px rgba(204, 90, 43, 0.28);
	flex-shrink: 0;
	transition: transform 0.2s var(--hs-ease-bounce), box-shadow 0.2s ease;
}

.hs-brand:hover .hs-brand-mark {
	transform: scale(1.08);
	box-shadow: 0 10px 32px rgba(204, 90, 43, 0.38);
}

.hs-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.hs-brand-text strong {
	font-family: var(--hs-font-display);
	font-size: 1.05rem;
	color: var(--hs-ink);
}

.hs-brand-text small {
	font-size: 0.72rem;
	color: var(--hs-muted);
	letter-spacing: 0.02em;
}

.hs-site-nav { flex: 1; display: flex; justify-content: center; }

.hs-nav-list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
}

.hs-nav-list a {
	display: block;
	padding: 0.5rem 0.875rem;
	border-radius: 999px;
	color: var(--hs-muted);
	font-size: 0.92rem;
	font-weight: 500;
	transition: color 0.2s ease, background 0.2s ease;
}

.hs-nav-list a:hover,
.hs-nav-list .current-menu-item > a {
	color: var(--hs-ink);
	background: rgba(29, 26, 23, 0.06);
}

.hs-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	border-radius: 10px;
	transition: background 0.2s ease;
}

.hs-menu-toggle:hover { background: rgba(29, 26, 23, 0.06); }
.hs-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--hs-ink);
	border-radius: 2px;
	transition: transform 0.3s var(--hs-ease-out), opacity 0.3s ease;
	transform-origin: center;
}

.hs-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hs-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hs-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hs-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.95rem 1.55rem;
	border-radius: 999px;
	background: var(--hs-accent);
	color: #fff;
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.01em;
	box-shadow: 0 12px 34px rgba(204, 90, 43, 0.28);
	transition: background 0.2s ease, transform 0.15s var(--hs-ease-bounce), box-shadow 0.2s ease;
	white-space: nowrap;
}

.hs-button:hover {
	background: var(--hs-accent-hover);
	transform: translateY(-1px);
	box-shadow: 0 12px 36px rgba(204, 90, 43, 0.36);
}

.hs-button:active { transform: translateY(1px); box-shadow: none; }

.hs-button--ghost {
	background: transparent;
	color: var(--hs-ink);
	border: 1.5px solid var(--hs-line-strong);
	box-shadow: none;
}

.hs-button--ghost:hover {
	background: rgba(29, 26, 23, 0.05);
	border-color: var(--hs-muted);
	box-shadow: none;
}

.hs-button--light {
	background: #fff;
	color: var(--hs-accent-strong);
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.hs-button--light:hover {
	background: var(--hs-accent-soft);
	color: var(--hs-accent-strong);
}

.hs-eyebrow {
	display: inline-block;
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--hs-accent);
}

.hs-hero-panel, .hs-info-card, .hs-content-card, .hs-metric-card {
	padding: 1.5rem;
	border-radius: var(--hs-radius);
	background: var(--hs-surface-strong);
	border: 1px solid rgba(255, 255, 255, 0.78);
	box-shadow: var(--hs-shadow);
}

.hs-metric-card {
	background: linear-gradient(160deg, rgba(255,255,255,0.98), rgba(248, 224, 207, 0.56));
	border: 1px solid rgba(204, 90, 43, 0.12);
}

.hs-metric-card span {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--hs-accent);
}

.hs-metric-card strong {
	display: block;
	margin: 0.4rem 0 0.3rem;
	font-family: var(--hs-font-display);
	font-size: 1.5rem;
	color: var(--hs-ink);
}

.hs-metric-card p { font-size: 0.88rem; margin: 0; }

.hs-metric-band {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.hs-command-card {
	padding: 1.35rem;
	border-radius: 26px;
	background: linear-gradient(160deg, rgba(19, 31, 29, 0.96), rgba(38, 65, 60, 0.92));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--hs-shadow-lg);
	color: #fff;
}

.hs-command-card__top {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.hs-command-dot {
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 999px;
	background: #3bd671;
	box-shadow: 0 0 0 6px rgba(59, 214, 113, 0.15);
	animation: hs-pulse-dot 1.8s ease-in-out infinite;
}

.hs-command-list { display: grid; gap: 0.85rem; }

.hs-command-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.hs-command-row strong {
	font-family: var(--hs-font-ui);
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
}

.hs-command-row span {
	max-width: 14rem;
	font-size: 0.88rem;
	text-align: right;
	color: rgba(255, 255, 255, 0.72);
}

.hs-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: var(--hs-accent-soft);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--hs-accent-strong);
}

.hs-chip--muted {
	background: rgba(29, 26, 23, 0.05);
	color: var(--hs-muted);
}

.hs-hero, .hs-section, .hs-page-hero { padding: 5rem 0; }

.hs-hero {
	position: relative;
	overflow: hidden;
	padding-top: 5.5rem;
}

.hs-hero::before,
.hs-hero::after {
	content: '';
	position: absolute;
	border-radius: 999px;
	filter: blur(12px);
	pointer-events: none;
}

.hs-hero::before {
	top: 2rem;
	right: -5rem;
	width: 18rem;
	height: 18rem;
	background: radial-gradient(circle, rgba(199, 155, 71, 0.18), transparent 70%);
}

.hs-hero::after {
	left: -6rem;
	bottom: -4rem;
	width: 20rem;
	height: 20rem;
	background: radial-gradient(circle, rgba(204, 90, 43, 0.12), transparent 70%);
}

.hs-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	align-items: center;
	gap: 3rem;
}

.hs-hero-copy,
.hs-hero-panel {
	position: relative;
	z-index: 1;
}

.hs-hero h1 {
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
	max-width: 12ch;
}

.hs-hero-summary {
	font-size: 1.1rem;
	line-height: 1.75;
	max-width: 58ch;
	margin: 0 0 2rem;
}

.hs-proof-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0 0 1.35rem;
}

.hs-proof-strip span {
	padding: 0.6rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(29, 26, 23, 0.08);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--hs-ink);
}

.hs-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	margin-bottom: 2rem;
}

.hs-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	list-style: none;
}

.hs-hero-points li {
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid var(--hs-line);
	font-size: 0.88rem;
	color: var(--hs-muted);
	font-weight: 500;
	backdrop-filter: blur(8px);
}

.hs-hero-panel { display: grid; gap: 1rem; }

.hs-section-heading { margin-bottom: 2.5rem; }
.hs-section-heading h2 { margin: 0; letter-spacing: -0.02em; }
.hs-section-heading p { max-width: 58ch; margin: 0.875rem 0 0; }

.hs-section--soft { background: rgba(255, 255, 255, 0.5); }

.hs-section--contrast {
	background:
		linear-gradient(180deg, rgba(248, 224, 207, 0.22), rgba(255, 255, 255, 0)),
		linear-gradient(135deg, rgba(38, 65, 60, 0.04), rgba(199, 155, 71, 0.08));
}

.hs-section--accent {
	background: linear-gradient(135deg, var(--hs-forest), #162622);
	color: #fff;
}

.hs-section--accent .hs-eyebrow { color: rgba(253, 232, 216, 0.8); }
.hs-section--accent h2, .hs-section--accent p { color: rgba(255,255,255,0.92); }
.hs-section--accent p { color: rgba(255,255,255,0.72); }

.hs-three-col {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.hs-cta-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 2rem;
}

.hs-info-card {
	border: 1px solid var(--hs-line);
	box-shadow: var(--hs-shadow-sm);
	transition: transform 0.25s var(--hs-ease-out), box-shadow 0.25s ease;
	padding-top: 1.25rem;
}

.hs-info-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hs-shadow);
}

.hs-info-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.hs-info-card p { font-size: 0.95rem; margin: 0; }

.hs-info-icon {
	display: inline-grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--hs-accent-soft), rgba(255, 255, 255, 0.95));
	border: 1px solid rgba(204, 90, 43, 0.14);
	color: var(--hs-accent-strong);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.hs-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.hs-tool-card {
	position: relative;
	padding: 1.5rem;
	border-radius: var(--hs-radius);
	background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
	border: 1px solid var(--hs-line);
	box-shadow: var(--hs-shadow-sm);
	overflow: hidden;
	transition: transform 0.25s var(--hs-ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}

.hs-tool-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--hs-accent), var(--hs-gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--hs-ease-out);
}

.hs-tool-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--hs-shadow-lg);
	border-color: var(--hs-accent-soft);
}

.hs-tool-card:hover::before { transform: scaleX(1); }

.hs-tool-card__icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(204, 90, 43, 0.14), rgba(199, 155, 71, 0.15));
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--hs-accent-strong);
	transition: transform 0.25s var(--hs-ease-bounce);
}

.hs-tool-card:hover .hs-tool-card__icon { transform: scale(1.08) rotate(-4deg); }

.hs-tool-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-family: var(--hs-font-ui);
	font-weight: 600;
}

.hs-tool-card p { margin: 0; font-size: 0.9rem; line-height: 1.65; }

.hs-tool-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.hs-tool-card__actions { margin-top: 1.25rem; }

.hs-tool-card__actions a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.6rem 1.1rem;
	border-radius: 999px;
	background: var(--hs-accent);
	color: #fff;
	font-size: 0.84rem;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.15s var(--hs-ease-bounce);
}

.hs-tool-card__actions a:hover {
	background: var(--hs-accent-hover);
	transform: translateX(2px);
}

.hs-page-hero {
	background: linear-gradient(160deg, rgba(253, 232, 216, 0.4) 0%, transparent 60%);
	border-bottom: 1px solid var(--hs-line);
}

.hs-page-hero h1 { margin-bottom: 0.75rem; }
.hs-page-summary { font-size: 1.08rem; max-width: 58ch; margin: 0; }

.hs-journey-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.hs-journey-step {
	position: relative;
	padding: 1.5rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(29, 26, 23, 0.08);
	box-shadow: var(--hs-shadow-sm);
}

.hs-journey-step__number {
	display: inline-grid;
	place-items: center;
	width: 2.4rem;
	height: 2.4rem;
	margin-bottom: 1rem;
	border-radius: 999px;
	background: var(--hs-forest);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 800;
}

.hs-journey-step h3 {
	margin-bottom: 0.6rem;
	font-family: var(--hs-font-ui);
	font-size: 1.05rem;
	font-weight: 700;
}

.hs-journey-step p { margin: 0; font-size: 0.94rem; }

.hs-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	padding: 4rem 0 2.5rem;
}

.hs-site-footer {
	border-top: 1px solid var(--hs-line);
	background: rgba(255, 249, 240, 0.85);
}

.hs-footer-brand p {
	font-size: 0.92rem;
	line-height: 1.7;
	max-width: 38ch;
	margin-bottom: 1.25rem;
}

.hs-footer-col h3 {
	font-family: var(--hs-font-ui);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--hs-ink);
	margin-bottom: 1rem;
}

.hs-footer-links {
	list-style: none;
	display: grid;
	gap: 0.625rem;
}

.hs-footer-links a {
	font-size: 0.92rem;
	color: var(--hs-muted);
	transition: color 0.2s ease;
}

.hs-footer-links a:hover { color: var(--hs-accent); }

.hs-footer-bottom {
	border-top: 1px solid var(--hs-line);
	padding: 1.25rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.hs-footer-bottom p {
	font-size: 0.82rem;
	margin: 0;
}

.hs-wa-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.125rem;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.15s var(--hs-ease-bounce);
}

.hs-wa-badge:hover { background: #1eb358; transform: translateY(-1px); }

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

@media (max-width: 1024px) {
	.hs-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.hs-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	.hs-hero-grid,
	.hs-three-col,
	.hs-card-grid,
	.hs-cta-shell,
	.hs-journey-grid,
	.hs-metric-band {
		grid-template-columns: 1fr;
	}

	.hs-hero-grid { gap: 2.5rem; }
	.hs-command-row { flex-direction: column; }
	.hs-command-row span { text-align: left; max-width: none; }

	.hs-site-nav { display: none; }
	.hs-site-nav.hs-nav-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(255, 249, 240, 0.98);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--hs-line);
		box-shadow: var(--hs-shadow);
		padding: 1rem 0;
	}

	.hs-site-nav.hs-nav-open .hs-nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0 1.25rem;
	}

	.hs-site-nav.hs-nav-open .hs-nav-list a {
		padding: 0.875rem 1rem;
		border-radius: var(--hs-radius-sm);
	}

	.hs-menu-toggle { display: flex; }
	.hs-cta-shell { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 640px) {
	.hs-hero, .hs-section, .hs-page-hero { padding: 3.5rem 0; }
	.hs-footer-grid { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.5rem 0 1.5rem; }
	.hs-footer-bottom { justify-content: center; text-align: center; }
	.hs-button { width: 100%; justify-content: center; }
	.hs-hero-actions .hs-button { width: auto; }
	.hs-proof-strip { gap: 0.55rem; }
	.hs-proof-strip span,
	.hs-hero-points li { width: 100%; }
}
