/* ==========================================================================
   As 3 Estruturas do Fade — design tokens + reset
   ========================================================================== */
:root {
	--bg: #ffffff;
	--surface: #0a0a0a;
	--surface-2: #141414;
	--ink: #141414;
	--ink-muted: #5c5c5c;
	--ink-inverse: #ffffff;
	--ink-inverse-muted: rgba(255, 255, 255, 0.72);
	--accent: #f2691c;
	--accent-deep: #c14204;
	--accent-bright: #fa7628;
	--line: rgba(20, 20, 20, 0.1);
	--line-inverse: rgba(255, 255, 255, 0.14);

	--font-display: 'Archivo', 'Arial Narrow', sans-serif;
	--font-body: 'Archivo', Arial, sans-serif;

	--container-w: 1720px;
	--gutter: clamp(20px, 5vw, 100px);

	--space-sm: 8px;
	--space-md: 24px;
	--space-lg: 64px;
	--space-xl: 120px;

	--radius-sm: 8px;
	--radius-md: 24px;
	--radius-lg: 30px;
	--radius-pill: 999px;
}

:where(html) {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}
:where(*, *::before, *::after) {
	box-sizing: inherit;
}
:where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol) {
	margin: 0;
}
:where(ul, ol) {
	padding: 0;
	list-style: none;
}
:where(img, svg, video) {
	display: block;
	max-width: 100%;
}
:where(a) {
	color: inherit;
	text-decoration: none;
}
:where(button) {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}
:where(body, h1, h2, h3, h4, h5, h6, p, span, a, button, li) {
	font-family: var(--font-body);
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

.container {
	width: 100%;
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.fade-landing {
	overflow-x: clip;
}

.eyebrow {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.h-display {
	font-family: var(--font-display);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.94;
	letter-spacing: -0.01em;
}
.h-display .is-light {
	font-weight: 400;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	border-radius: var(--radius-pill);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 10px 10px 10px 32px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(97deg, #ffffff 27%, #d6d6d6 116%);
	flex-shrink: 0;
}
.btn__icon img {
	width: 18px;
	height: 18px;
	transform: rotate(90deg);
}
.btn--dark {
	color: var(--ink-inverse);
	background: linear-gradient(100deg, #2e0d05 0%, #932404 35%, #c93f00 55%, #ff9a4c 100%);
}

/* ==========================================================================
   Header / Hero
   ========================================================================== */
.hero {
	position: relative;
	background: #000 url('../img/hero/hero-bg.png') center top / cover no-repeat;
	color: var(--ink-inverse);
	overflow: clip;
}

.topbar {
	position: relative;
	background: linear-gradient(100deg, var(--accent-deep) 0%, var(--accent-bright) 45%, var(--accent-bright) 55%, var(--accent-deep) 100%);
	padding-block: 15px;
}
.topbar__inner {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.5vw, 32px);
}
.topbar__line {
	flex: 1 1 auto;
	height: 1px;
	min-width: 16px;
	background: rgba(255, 255, 255, 0.5);
}
.topbar__text {
	flex: 0 0 auto;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(12px, 1.4vw, 17px);
	letter-spacing: -0.01em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	white-space: nowrap;
}
.topbar__text strong {
	font-weight: 800;
}
.topbar__clock {
	font-weight: 700;
	font-size: clamp(22px, 2.6vw, 34px);
	font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
	.topbar__text {
		white-space: normal;
		justify-content: center;
	}
	.topbar__line {
		display: none;
	}
}

.hero__nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 28px;
	gap: 24px;
	flex-wrap: wrap;
}
.hero__logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.hero__logo img.mark {
	height: 34px;
	width: auto;
}
.hero__logo img.wordmark {
	height: 30px;
	width: auto;
}
.hero__links {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ink-inverse-muted);
}
.hero__links a {
	transition: color 0.15s ease;
}
.hero__links a:not(:last-child)::after {
	content: '|';
	margin-left: 10px;
	opacity: 0.4;
	pointer-events: none;
}
.hero__links a:hover {
	color: var(--ink-inverse);
}
.hero__nav-toggle {
	display: none;
}

.hero__deco {
	position: absolute;
	top: 6%;
	right: -8%;
	width: 46%;
	max-width: 620px;
	opacity: 0.6;
	pointer-events: none;
}

.hero__content {
	position: relative;
	padding-top: clamp(48px, 8vw, 96px);
	padding-bottom: clamp(64px, 10vw, 140px);
	text-align: center;
}
.hero__eyebrow {
	color: var(--ink-inverse-muted);
	margin-bottom: 18px;
}
.hero__title {
	font-size: clamp(34px, 5.4vw, 72px);
	max-width: clamp(320px, 78vw, 1130px);
	margin-inline: auto;
	background: linear-gradient(150deg, #ffffff 27%, #d6d6d6 116%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__media {
	position: relative;
	width: 59.2%;
	max-width: 1136px;
	margin: clamp(32px, 5vw, 56px) auto 0;
	aspect-ratio: 1136 / 639;
}
.hero__media-surface {
	position: absolute;
	inset: 0;
	border-radius: var(--radius-lg);
	background: linear-gradient(228deg, #3d3d3d 5%, #252525 41%, #000000 85%);
}
.hero__media-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 5.4%;
	aspect-ratio: 1;
	min-width: 36px;
}
.hero__media-play img {
	width: 100%;
	height: 100%;
}
.hero__scissors,
.hero__clipper {
	transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: transform;
}
.hero__scissors {
	position: absolute;
	left: -39%;
	top: 91%;
	width: 64%;
	height: 83%;
	object-fit: cover;
	object-position: center;
	transform: scaleX(-1) scale(1);
	transform-origin: 75% 20%;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.hero__clipper {
	position: absolute;
	left: 98.1%;
	top: 20.3%;
	width: 50.4%;
	height: 133%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transform-origin: 0% 30%;
}
.hero__media:hover .hero__scissors {
	transform: scaleX(-1) scale(1.07) translateY(-10px);
}
.hero__media:hover .hero__clipper {
	transform: scale(1.07) translateY(-10px);
}

.hero__lede {
	position: relative;
	max-width: 830px;
	margin: clamp(40px, 6vw, 72px) auto 0;
	font-size: clamp(16px, 1.6vw, 24px);
	line-height: 1.4;
	color: var(--ink-inverse-muted);
}
.hero__lede strong {
	color: var(--ink-inverse);
	font-weight: 700;
}

.hero__cta {
	position: relative;
	margin-top: clamp(32px, 5vw, 48px);
}
.hero__cta .btn {
	font-size: clamp(14px, 1.4vw, 18px);
}
.hero__note {
	margin-top: 20px;
	color: var(--ink-inverse-muted);
	font-size: clamp(14px, 1.4vw, 18px);
}

@media (max-width: 720px) {
	.hero__nav-toggle {
		display: inline-flex;
		align-items: center;
		font-family: var(--font-display);
		font-weight: 700;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 0.03em;
		border: 1px solid var(--line-inverse);
		border-radius: var(--radius-pill);
		padding: 8px 18px;
	}
	.hero__links {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		font-size: 14px;
		order: 3;
	}
	.hero__links.is-open {
		display: flex;
	}
	.hero__links a::after {
		display: none;
	}
	.hero__scissors,
	.hero__clipper {
		display: none;
	}
}
