/**
 * Forged Warrior — main.css
 * Base styles + CSS variables. NO @media queries (those live in responsive.css per Rule 11).
 *
 * Structure: variables → reset → typography → buttons → layout → sections (BEM) → utilities.
 */

/* ============ ROOT VARIABLES ============ */
:root {
	/* Colors (Rule 6) */
	--blood:      #8B0000;
	--alert:      #CC0000;
	--alert-glow: rgba(204, 0, 0, 0.45);
	--bone:       #F2F2F2;
	--void:       #0D0D0D;
	--charcoal:   #1A1A1A;
	--steel:      #2A2A2A;
	--ash:        #6f6f6f;
	--medal:      #C9A84C;

	/* Aliases — overridable via Customizer */
	--primary-color:   var(--alert);
	--secondary-color: var(--blood);
	--accent-color:    var(--medal);
	--text-color:      var(--bone);
	--bg-color:        var(--void);
	--border-color:    var(--steel);

	/* Fonts (Rule 7) */
	--font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
	--font-cond:    'Barlow Condensed', sans-serif;
	--font-body:    'Barlow', sans-serif;
	--font-mono:    'JetBrains Mono', 'Courier New', monospace;

	/* Type scale — fluid clamp() for h1-h3 (Rule 7) */
	--h1-size: clamp(2.3125rem, 5.25vw, 4.75rem);
	--h2-size: clamp(1.75rem, 4.2vw, 3.6875rem);
	--h3-size: clamp(1.5rem, 3vw, 2.5rem);
	--h4-size: 1.5rem;
	--body-size: 1rem;
	--small-size: 0.75rem;

	/* Spacing (Rule 8 — clamp on padding) */
	--section-padding:    clamp(3rem, 6vw, 7.5rem);
	--container-max-width: 1280px;
	--container-padding:   clamp(1.25rem, 3vw, 2rem);

	/* Gap scale (Rule 9) */
	--gap-sm: 0.5rem;
	--gap-md: 1rem;
	--gap-lg: 2rem;
	--gap-xl: 3rem;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-body);
	background: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Film grain overlay */
body.fw::before {
	content: '';
	position: fixed; inset: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
	pointer-events: none;
	z-index: 999;
	opacity: 0.35;
	mix-blend-mode: overlay;
}

/* ============ SHARED TYPOGRAPHY ============ */
.section-tag {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--alert);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.section-tag::before {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: var(--alert);
}
.section-title {
	font-family: var(--font-display);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.92;
	letter-spacing: -0.01em;
	color: var(--bone);
	font-size: var(--h2-size);
	margin-bottom: 2rem;
}
.section-title__accent { color: var(--alert); }
.body-text {
	font-size: 1.125rem;
	color: #d8d8d8;
	max-width: 720px;
	margin-bottom: 1.25rem;
}
.body-text strong { color: var(--bone); }

/* ============ BUTTON ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}
.btn--primary {
	background: var(--primary-color);
	color: var(--bone);
	padding: 1.375rem 1.75rem;
	font-size: 1.375rem;
	box-shadow: 0 0 0 0 var(--alert-glow);
}
.btn--primary:hover {
	background: var(--secondary-color);
	box-shadow: 0 0 32px var(--alert-glow);
	transform: translateY(-2px);
}
.btn--primary::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}
.btn--primary:hover::before { transform: translateX(100%); }

/* ============ TOPBAR ============ */
.topbar {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(13, 13, 13, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--steel);
	padding: 0.875rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topbar__brand {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.375rem;
	letter-spacing: 0.08em;
	color: var(--bone);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.topbar__brand-star { color: var(--alert); font-size: 1rem; }
.topbar__brand-sub {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: var(--ash);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.topbar__cta {
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* ============ MAIN LAYOUT ============ */
.site__main { min-height: 100vh; }
section { position: relative; }

/* ============ HERO ============ */
.hero {
	min-height: 100vh;
	background: var(--bg-color);
	padding: 7.5rem 0 3.75rem;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.hero::after {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(circle at 75% 50%, rgba(139, 0, 0, 0.18), transparent 60%);
	pointer-events: none;
}
.hero__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	position: relative;
	z-index: 2;
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
.hero__meta {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}
.hero__meta-dot { color: var(--alert); }
.hero__title {
	font-family: var(--font-display);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.88;
	letter-spacing: -0.015em;
	font-size: var(--h1-size);
	margin-bottom: 0.875rem;
}
.hero__title-accent { color: var(--alert); }
.hero__sub {
	font-family: var(--font-cond);
	font-weight: 500;
	font-size: clamp(1.125rem, 1.6vw, 1.375rem);
	color: #c8c8c8;
	max-width: 560px;
	margin-bottom: 2rem;
	line-height: 1.5;
}
.hero__sub > p { margin: 0; }
.hero__sub > p + p { margin-top: 0.75em; }
.hero__sub strong { color: var(--medal); font-weight: 700; }
.hero__cta-block { display: flex; flex-direction: column; gap: 1rem; max-width: 480px; }
.hero__cta-price {
	font-size: 1.125rem;
	background: rgba(0,0,0,0.25);
	padding: 0.375rem 0.875rem;
	border: 1px solid rgba(255,255,255,0.25);
}
.hero__fineprint {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.1em;
	line-height: 1.7;
}
.hero__visual {
	position: relative;
	aspect-ratio: 3/4;
	max-width: 520px;
	justify-self: end;
}
.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	border: 1px solid var(--steel);
	filter: contrast(1.08) saturate(0.95);
}
.hero__visual::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, var(--void));
	z-index: 2;
	pointer-events: none;
}
.hero__stats {
	position: absolute;
	bottom: 1.5rem; left: 1.5rem;
	z-index: 3;
	display: flex;
	gap: 1.25rem;
	background: rgba(13,13,13,0.85);
	padding: 0.875rem 1.25rem;
	border-left: 3px solid var(--alert);
}
.hero__stat-num {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.875rem;
	line-height: 1;
	color: var(--bone);
}
.hero__stat-unit { color: var(--alert); font-size: 0.5em; margin-left: 0.25rem; }
.hero__stat-label {
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	color: var(--ash);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-top: 0.375rem;
}

/* ============ CREDIBILITY MARQUEE ============ */
.creds {
	background: var(--charcoal);
	padding: 1.25rem 0;
	overflow: hidden;
	border-top: 1px solid var(--steel);
	border-bottom: 1px solid var(--steel);
}
.creds__track {
	display: flex;
	gap: 3.75rem;
	width: max-content;
	animation: cred-marquee 40s linear infinite;
}
.creds__item {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1rem;
	color: var(--bone);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	white-space: nowrap;
}
.creds__item::after {
	content: '●';
	color: var(--alert);
	margin-left: 3.75rem;
	font-size: 0.5em;
}
.creds__badge { color: var(--medal); font-size: 1.125rem; }
@keyframes cred-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ============ PROBLEM ============ */
.problem {
	background: var(--bg-color);
	padding: var(--section-padding) 0;
}
.problem::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--steel), transparent);
}
.problem__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.problem__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 4rem;
	align-items: center;
}
.problem__content { max-width: 720px; }
.problem .body-text { font-size: 1.1875rem; line-height: 1.7; }
.problem__pull {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.75rem;
	color: var(--alert);
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0.01em;
	border-left: 4px solid var(--alert);
	padding-left: 1.5rem;
	margin: 2rem 0;
	max-width: 600px;
}
.problem__photo {
	position: relative;
	max-width: 380px;
	justify-self: end;
}
.problem__photo-img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid var(--steel);
}
.problem__photo::after {
	content: '';
	position: absolute;
	bottom: -1rem; left: -1rem;
	width: 100px; height: 100px;
	border: 1px solid var(--alert);
	z-index: -1;
}

/* ============ ABOUT ============ */
.about {
	background: var(--charcoal);
	padding: var(--section-padding) 0;
	overflow: hidden;
}
.about::before {
	content: 'NR';
	position: absolute;
	top: 50%; right: -2.5rem;
	transform: translateY(-50%);
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 30rem;
	color: var(--steel);
	line-height: 0.8;
	opacity: 0.35;
	pointer-events: none;
	letter-spacing: -0.05em;
}
.about__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	position: relative;
	z-index: 2;
}
.about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about__photo {
	position: relative;
	aspect-ratio: 3/4;
	max-width: 480px;
}
.about__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.about__photo::after {
	content: '';
	position: absolute;
	bottom: -1rem; right: -1rem;
	width: 120px; height: 120px;
	border: 1px solid var(--medal);
	z-index: -1;
}

/* About photo carousel */
.about__photo--carousel { overflow: hidden; }
.about__photo-track {
	position: relative;
	width: 100%;
	height: 100%;
}
.about__photo-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}
.about__photo-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}
.about__photo-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 40px;
	height: 40px;
	background: rgba(13, 13, 13, 0.7);
	border: 1px solid var(--steel);
	color: var(--bone);
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about__photo-nav:hover {
	background: var(--alert);
	border-color: var(--alert);
}
.about__photo-nav--prev { left: 0.5rem; }
.about__photo-nav--next { right: 0.5rem; }
.about__photo-dots {
	position: absolute;
	bottom: 0.75rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 0.5rem;
	background: rgba(13, 13, 13, 0.6);
	padding: 0.375rem 0.625rem;
	border: 1px solid var(--steel);
}
.about__photo-dot {
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,0.35);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
}
.about__photo-dot.is-active { background: var(--alert); }
.about__photo-dot:hover { background: var(--bone); }
.about__caption {
	margin-top: 1.125rem;
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	line-height: 1.6;
}
.about__caption strong { color: var(--medal); }
.about__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 2.25rem;
	padding-top: 2.25rem;
	border-top: 1px solid var(--steel);
}
.about__stat-value {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	line-height: 1;
	color: var(--bone);
}
.about__stat-unit { color: var(--alert); font-size: 0.5em; margin-left: 0.25rem; }
.about__stat-label {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: var(--ash);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-top: 0.5rem;
}

/* ============ PROOF / BEFORE-AFTER ============ */
.proof {
	background: var(--bg-color);
	padding: 6.25rem 0;
	border-top: 1px solid var(--steel);
	border-bottom: 1px solid var(--steel);
}
.proof__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.proof__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3.5rem;
}
.proof__head .section-tag { justify-content: center; }
.proof__head .section-tag::before { display: none; }
.proof__head .body-text { margin: 0 auto; }
.proof__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}
.proof__pair {
	background: var(--charcoal);
	border: 1px solid var(--steel);
	border-left: 3px solid var(--alert);
	padding: 1.75rem;
}
.proof__pair-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.125rem, 1.6vw, 1.5rem);
	color: var(--bone);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 1rem;
	line-height: 1.05;
}
.proof__compare {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0.875rem;
	align-items: center;
}
.proof__shot { text-align: center; }
.proof__shot-img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	border: 1px solid var(--steel);
	cursor: zoom-in;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.proof__shot-img:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 0 1px var(--alert);
}
.proof__shot-label {
	margin-top: 0.625rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.proof__shot-label-name {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.875rem;
	color: var(--bone);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.proof__shot-label-date {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: var(--ash);
	letter-spacing: 0.12em;
}

/* Lightbox */
.fw-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	animation: fw-fade-in 0.2s ease;
	cursor: zoom-out;
}
.fw-lightbox__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border: 1px solid var(--alert);
	box-shadow: 0 0 60px rgba(204, 0, 0, 0.3);
}
.fw-lightbox__close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 44px;
	height: 44px;
	background: rgba(0, 0, 0, 0.6);
	color: var(--bone);
	border: 1px solid var(--steel);
	font-family: var(--font-display);
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
}
.fw-lightbox__close:hover { border-color: var(--alert); color: var(--alert); }
@keyframes fw-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
.proof__arrow {
	font-family: var(--font-display);
	font-size: 1.75rem;
	color: var(--alert);
	line-height: 1;
}

/* ============ RIPPED CODE ============ */
.ripped {
	padding: var(--section-padding) 0;
	background: var(--bg-color);
}
.ripped::before, .ripped::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--alert), transparent);
}
.ripped::before { top: 0; }
.ripped::after  { bottom: 0; }
.ripped__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.ripped__head {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
}
.ripped__head .section-tag { justify-content: center; }
.ripped__head .section-tag::before { display: none; }
.ripped__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto;
}
.ripped__row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 2rem;
	align-items: center;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--steel);
}
.ripped__letter {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(5rem, 10vw, 9rem);
	line-height: 0.85;
	color: var(--blood);
	text-align: center;
}
.ripped__row-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--bone);
	margin-bottom: 0.5rem;
	letter-spacing: 0.02em;
}
.ripped__body p { color: #c8c8c8; line-height: 1.6; }
.ripped__foot {
	text-align: center;
	margin-top: 3rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.125rem, 1.8vw, 1.5rem);
	letter-spacing: 0.04em;
	color: var(--ash);
	line-height: 1.5;
	text-transform: uppercase;
}
.ripped__foot span { color: var(--alert); }

/* ============ VALUE STACK ============ */
.stack {
	background: var(--charcoal);
	padding: var(--section-padding) 0;
}
.stack__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.stack__head {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
}
.stack__head .section-tag { justify-content: center; }
.stack__head .section-tag::before { display: none; }
.stack__sub {
	font-family: var(--font-cond);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--medal);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.stack__feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
	margin-bottom: 3.5rem;
}
.stack__card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 1.5rem;
	background: var(--charcoal);
	border: 1px solid var(--steel);
	border-left: 3px solid var(--alert);
	padding: 1.5rem;
	align-items: stretch;
}
.stack__card-img {
	background: var(--void);
	border: 1px solid var(--steel);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	overflow: hidden;
}
.stack__card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.stack__card-img--book {
	background: transparent;
	border: none;
	padding: 0;
}
.stack__card-img--book img {
	filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
}
.stack__card-body { display: flex; flex-direction: column; }
.stack__card-num {
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 0.75rem;
	color: var(--alert);
	letter-spacing: 0.18em;
	margin-bottom: 0.5rem;
}
.stack__card-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.25rem, 1.8vw, 1.625rem);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--bone);
	margin-bottom: 0.625rem;
	line-height: 1.05;
}
.stack__card-desc {
	font-size: 0.875rem;
	color: #b8b8b8;
	line-height: 1.55;
	flex: 1;
}
.stack__card-price {
	margin-top: 1rem;
	padding-top: 0.875rem;
	border-top: 1px solid var(--steel);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.stack__card-price-label {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: var(--ash);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.stack__card-price-amt {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.75rem;
	color: var(--alert);
	line-height: 1;
}

.stack__list { display: flex; flex-direction: column; }
.stack__item {
	display: grid;
	grid-template-columns: 60px 1fr 180px;
	gap: 2rem;
	align-items: start;
	padding: 2rem 0;
	border-bottom: 1px solid var(--steel);
	transition: padding 0.25s ease;
}
.stack__item:first-child { border-top: 2px solid var(--alert); }
.stack__item:hover { padding-left: 0.75rem; }
.stack__item-num {
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--alert);
	letter-spacing: 0.1em;
	padding-top: 0.375rem;
}
.stack__item-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.375rem, 2.4vw, 1.875rem);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--bone);
	margin-bottom: 0.5rem;
}
.stack__item-content p {
	font-size: 1rem;
	color: #b8b8b8;
	line-height: 1.6;
	max-width: 680px;
}
.stack__item-value {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.75rem;
	color: var(--alert);
	text-align: right;
	line-height: 1;
	padding-top: 0.375rem;
}
.stack__item-value-label {
	display: block;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: var(--ash);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 0.375rem;
	font-weight: 400;
}
.stack__item-value--free { color: var(--medal); }

.stack__total {
	margin-top: 4rem;
	padding: 3rem;
	background: var(--void);
	border: 1px solid var(--steel);
	border-left: 6px solid var(--alert);
}
.stack__total-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}
.stack__total-strike {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--ash);
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: var(--alert);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
}
.stack__total-now {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1;
	color: var(--bone);
	text-transform: uppercase;
}
.stack__total-price { color: var(--alert); }
.stack__total-save {
	margin-top: 1rem;
	font-family: var(--font-cond);
	font-size: 1rem;
	color: #b8b8b8;
	line-height: 1.6;
}

/* ============ TIERS ============ */
.tiers {
	padding: var(--section-padding) 0;
	background: var(--bg-color);
}
.tiers__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.tiers__head { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.tiers__head .section-tag { justify-content: center; }
.tiers__head .section-tag::before { display: none; }
.tiers__head .body-text { margin: 0 auto; }
.tiers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.tiers__card {
	background: var(--charcoal);
	border: 1px solid var(--steel);
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
}
.tiers__card--elite {
	border: 1px solid var(--alert);
	background: linear-gradient(180deg, var(--charcoal), rgba(139, 0, 0, 0.08));
	position: relative;
}
.tiers__card-tag {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: var(--alert);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.tiers__card-name {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.625rem, 2vw, 2rem);
	text-transform: uppercase;
	color: var(--bone);
	letter-spacing: 0.02em;
	margin-bottom: 0.5rem;
	line-height: 1.05;
}
.tiers__card-stack {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	color: var(--medal);
	margin-bottom: 1.25rem;
	letter-spacing: 0.05em;
}
.tiers__card-desc { color: #b8b8b8; line-height: 1.6; flex: 1; font-size: 0.9375rem; }
.tiers__note {
	margin-top: 2rem;
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.1em;
	line-height: 1.7;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* ============ GUARANTEE ============ */
.guarantee {
	padding: var(--section-padding) 0;
	background: var(--charcoal);
}
.guarantee__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.guarantee__head { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.guarantee__head .section-tag { justify-content: center; }
.guarantee__head .section-tag::before { display: none; }
.guarantee__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.guarantee__card {
	background: var(--void);
	border: 1px solid var(--steel);
	border-top: 4px solid var(--alert);
	padding: 2.5rem 2rem;
}
.guarantee__card-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.5rem, 2vw, 2rem);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--bone);
	margin-bottom: 1rem;
	line-height: 1.05;
}
.guarantee__card-body { color: #c8c8c8; line-height: 1.7; }
.guarantee__closing {
	text-align: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: var(--medal);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	max-width: 800px;
	margin: 2rem auto 0;
}

/* ============ MOMENT ============ */
.moment {
	padding: var(--section-padding) 0;
	background: var(--bg-color);
	text-align: center;
}
.moment__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.moment__inner { max-width: 800px; margin: 0 auto; }
.moment__inner .section-tag { justify-content: center; }
.moment__inner .section-tag::before { display: none; }
.moment__inner .section-title { text-align: center; }
.moment__body { text-align: left; }
.moment__checklist {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 2rem auto;
	max-width: 720px;
	text-align: left;
}
.moment__check {
	display: flex;
	gap: 0.875rem;
	font-size: 1rem;
	color: var(--bone);
	padding: 0.875rem 1.125rem;
	background: var(--charcoal);
	border-left: 3px solid var(--alert);
}
.moment__check::before {
	content: '✔';
	color: var(--alert);
	font-weight: 700;
	flex-shrink: 0;
}
.moment__check-text { flex: 1; }
.moment__check-value {
	margin-left: 0.625rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--medal);
	letter-spacing: 0.05em;
}
.moment__highlight {
	margin: 2rem auto;
	color: var(--medal);
	font-family: var(--font-cond);
	font-weight: 600;
	font-size: 1.125rem;
	letter-spacing: 0.04em;
}
.moment__book {
	max-width: 220px;
	margin: 2rem auto;
}
.moment__book-img {
	width: 100%;
	filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
}
.moment__book-label {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-align: center;
	margin-top: 0.75rem;
}
.moment__tagline {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.875rem;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	color: var(--alert);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 2rem 0;
}
.moment__tagline span { color: var(--bone); }
.moment__tagline span:nth-child(2) { color: var(--alert); }
.moment__cta {
	display: flex;
	margin: 2rem auto;
	max-width: 540px;
	padding: 1.625rem 2rem;
	font-size: 1.625rem;
	background: var(--alert);
	color: var(--bone);
	font-family: var(--font-display);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	justify-content: space-between;
	gap: 1rem;
}
.moment__cta-price {
	font-size: 1.25rem;
	background: rgba(0,0,0,0.25);
	padding: 0.375rem 0.875rem;
	border: 1px solid rgba(255,255,255,0.25);
}
.moment__qr {
	margin: 1.75rem auto 0.5rem;
	text-align: center;
	max-width: 200px;
}
.moment__qr-link {
	display: inline-block;
	background: #fff;
	padding: 0.625rem;
	border: 1px solid var(--steel);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.moment__qr-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 24px rgba(204, 0, 0, 0.25);
}
.moment__qr-img {
	width: 140px;
	height: 140px;
	display: block;
}
.moment__qr-label {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-top: 0.75rem;
}
.moment__fineprint {
	margin-top: 2rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--ash);
	letter-spacing: 0.1em;
	line-height: 1.8;
}
.moment__fineprint a { color: var(--medal); border-bottom: 1px solid currentColor; }

/* ============ FOOTER ============ */
.footer {
	background: var(--charcoal);
	padding: 3.5rem 0 1.5rem;
	border-top: 1px solid var(--steel);
}
.footer__container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
.footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}
.footer__brand {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.625rem;
	letter-spacing: 0.08em;
	color: var(--bone);
	text-transform: uppercase;
}
.footer__brand-accent { color: var(--alert); }
.footer__tag {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.2em;
	margin-top: 0.5rem;
	text-transform: uppercase;
}
.footer__heading {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1rem;
	color: var(--alert);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link {
	font-size: 0.875rem;
	color: var(--bone);
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
}
.footer__link:hover { color: var(--alert); }
.footer__bottom {
	padding-top: 1.5rem;
	border-top: 1px solid var(--steel);
}
.footer__copy {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ash);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.footer__disclaimer {
	margin-top: 1.5rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: var(--ash);
	letter-spacing: 0.05em;
	line-height: 1.7;
	max-width: 1000px;
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta {
	display: none;
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 100;
	background: var(--alert);
	color: var(--bone);
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 1.125rem;
	text-align: center;
	box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
}

/* ============ A11Y / PERF ============ */
@media print {
	.topbar, .mobile-cta, body.fw::before { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
