/* ═══════════════════════════════════════════════════════════
   LANDING 4 — "Geometric Luxe & Abstract Layers"
   Same palette (Rose Bronze · Marble Ivory) + Be Vietnam Pro
   UNIQUE: Angled dividers, 3D tilt cards, floating geometry,
           horizontal timeline, noise texture, layered depth
   ═══════════════════════════════════════════════════════════ */

/* ─────────── TOKENS ─────────── */
:root {
  --brand: #a45735;
  --brand-dark: #8d472b;
  --brand-deep: #753822;
  --brand-light: #be6b45;
  --brand-soft: #d79b74;
  --brand-shine: #ebc9af;
  --brand-on-dark: #d6a278;
  --brand-rgb: 164, 87, 53;
  --brand-glow: rgba(164, 87, 53, 0.28);

  --bg: #fdfaf6;
  --bg-alt: #f4e9db;
  --bg-dark: #18120e;
  --bg-dark2: #231a14;
  --card: #fffdf9;

  --text: #35251b;
  --text-mid: #5d4332;
  --text-muted: #7d6352;
  --white: #ffffff;
  --border: rgba(93, 67, 50, 0.18);
  --border-dark: rgba(235, 201, 175, 0.22);

  --shadow-deep: 0 24px 70px rgba(39, 24, 14, 0.28);
  --shadow-soft: 0 14px 36px rgba(39, 24, 14, 0.14);
  --shadow-glow: 0 0 60px rgba(164, 87, 53, 0.15);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 6px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

main {
  overflow: clip;
}

/* ─────────── NOISE TEXTURE OVERLAY ─────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─────────── LAYOUT ─────────── */
.container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-dark2 {
  background: var(--bg-dark2);
  color: var(--white);
}

.section-alt {
  background: var(--bg-alt);
}

/* ─────────── SCROLL PROGRESS ─────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    var(--brand-shine) 0%,
    var(--brand-light) 30%,
    var(--brand) 60%,
    var(--brand-dark) 100%
  );
  box-shadow: 0 0 12px rgba(var(--brand-rgb), 0.5);
}

/* ─────────── SECTION HEADS ─────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
}

.section-dark .kicker,
.section-dark2 .kicker {
  color: var(--brand-on-dark);
}

.section-dark .kicker::before,
.section-dark2 .kicker::before {
  background: linear-gradient(90deg, var(--brand-on-dark), transparent);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 900;
}

h1 span {
  background: linear-gradient(
    135deg,
    var(--brand-light) 0%,
    var(--brand) 50%,
    var(--brand-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 900;
}

.section-dark h2,
.section-dark2 h2 {
  color: var(--white);
}

.section-head {
  max-width: 780px;
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-dark .section-head p,
.section-dark2 .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.text-center {
  text-align: center;
  margin-inline: auto;
}

/* ═══════════════════════════════════════
   ANGLED SECTION DIVIDERS (Unique to L4)
   ═══════════════════════════════════════ */
.angle-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  z-index: 3;
}

.angle-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════
   FLOATING GEOMETRIC DECORATIONS
   ═══════════════════════════════════════ */
.geo-float {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.geo-float--circle {
  border-radius: 50%;
  border: 2px solid rgba(var(--brand-rgb), 0.15);
}

.geo-float--diamond {
  transform: rotate(45deg);
  border: 2px solid rgba(var(--brand-rgb), 0.12);
}

.geo-float--dot {
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.2);
}

.geo-float--line {
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.2), transparent);
}

.geo-float--ring {
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  box-shadow: inset 0 0 20px rgba(var(--brand-rgb), 0.05);
}

/* Animations for floating geometric shapes */
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@keyframes floatMedium {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-12px) rotate(48deg);
  }
}

@keyframes floatFast {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.15);
  }
}

@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes driftX {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

/* ═══════════════════════════════════════
   TICKER MARQUEE (Unique running band)
   ═══════════════════════════════════════ */
.ticker {
  background: linear-gradient(
    90deg,
    var(--bg-dark) 0%,
    var(--bg-dark2) 50%,
    var(--bg-dark) 100%
  );
  border-top: 1px solid rgba(var(--brand-rgb), 0.2);
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.2);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.ticker-content {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-on-dark);
}

.ticker-content .ticker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  margin: 0 24px;
  vertical-align: middle;
  opacity: 0.6;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ═══════════════════════════════════════
   NAV — Minimal dark transparent (Unique)
   ═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(24, 18, 14, 0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

#nav.scrolled {
  background: rgba(24, 18, 14, 0.94);
  border-bottom-color: rgba(var(--brand-rgb), 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: clamp(120px, 12vw, 165px);
  object-fit: contain;
  filter: brightness(1.8) saturate(0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-on-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--spring);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--spring),
    box-shadow 0.35s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  color: var(--white);
  box-shadow: 0 8px 28px var(--brand-glow);
  border-color: rgba(var(--brand-rgb), 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-soft), var(--brand));
  box-shadow: 0 14px 40px rgba(var(--brand-rgb), 0.4);
}

.btn-ghost {
  border-color: rgba(var(--brand-rgb), 0.3);
  color: var(--brand-dark);
  background: rgba(var(--brand-rgb), 0.04);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(var(--brand-rgb), 0.12);
  border-color: rgba(var(--brand-rgb), 0.5);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  background: var(--brand);
  color: var(--white);
  border-color: transparent;
}

.btn-nav:hover {
  background: var(--brand-light);
  box-shadow: 0 6px 20px var(--brand-glow);
}

/* ═══════════════════════════════════════
   HERO — Layered dark with geometric bg
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #1a1310 0%,
    var(--bg-dark) 40%,
    var(--bg-dark2) 100%
  );
  color: var(--white);
}

/* Animated gradient orbs */
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: -200px;
  right: -180px;
  background: radial-gradient(
    circle,
    rgba(var(--brand-rgb), 0.2) 0%,
    transparent 65%
  );
  animation: floatSlow 10s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(var(--brand-rgb), 0.12) 0%,
    transparent 65%
  );
  animation: floatSlow 14s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Grid overlay pattern */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    black 20%,
    transparent 75%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-content-wrapper {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  max-width: 100%;
  text-align: center;
}

.hero-copy > .kicker::before {
  background: linear-gradient(90deg, var(--brand-on-dark), transparent);
}

.hero-copy p {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 620px;
  line-height: 1.75;
  text-align: center;
}

.hero-truth {
  margin-top: 20px;
  max-width: 720px;
  display: grid;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  width: 100%;
}

.hero-truth p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  padding: 12px 0 0 0;
  border-top: 2px solid rgba(var(--brand-rgb), 0.2);
  transition: all 0.3s var(--ease);
  text-align: center;
  width: 100%;
  max-width: 680px;
}

.hero-truth p:hover {
  color: rgba(255, 255, 255, 0.85);
  border-top-color: var(--brand);
}

.hero-cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Dark hero buttons override */
.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  justify-content: center;
  max-width: 100%;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease);
}

.hero-points div:hover {
  background: rgba(var(--brand-rgb), 0.12);
  border-color: rgba(var(--brand-rgb), 0.3);
}

.hero-points i {
  color: var(--brand-on-dark);
  font-size: 13px;
}

/* Hero media — cinematic card */
.hero-media {
  position: relative;
  margin: 28px 0 0 0;
  width: 100%;
}

.hero-media img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.6s var(--spring);
}

.hero-cinematic {
  position: relative;
  border-radius: var(--radius);
  overflow: clip;
}

.hero-cinematic::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(24, 18, 14, 0.4) 100%
  );
  pointer-events: none;
}

@media (hover: hover) {
  .hero-cinematic:hover img {
    transform: scale(1.03);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.5);
  }
}

.media-caption {
  margin: 8px auto 0;
  width: min(920px, 100%);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
}

.section:not(.section-dark):not(.section-dark2):not(.hero) .media-caption {
  color: var(--text-muted);
}

.media-caption--wide {
  width: min(980px, 100%);
}

/* ═══════════════════════════════════════
   PAIN — 3D Perspective Cards (Unique L4)
   ═══════════════════════════════════════ */
#pain {
  background: linear-gradient(
    135deg,
    #140e0a 0%,
    var(--bg-dark) 40%,
    #1e160f 100%
  );
}

#pain::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(var(--brand-rgb), 0.16),
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(var(--brand-rgb), 0.1),
      transparent 45%
    );
  pointer-events: none;
}

.pain-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1200px;
}

.pain-card {
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--spring);
  transform-style: preserve-3d;
  /* Number watermark */
  counter-increment: pain-counter;
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card::after {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: rgba(var(--brand-rgb), 0.08);
  pointer-events: none;
}

.pain-card:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pain-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.pain-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.warning {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--brand-rgb), 0.35);
  border-left: 4px solid var(--brand);
  background: rgba(var(--brand-rgb), 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  backdrop-filter: blur(6px);
}

.warning strong {
  color: var(--brand-on-dark);
}

/* ═══════════════════════════════════════
   WEAPONS — Layered split with decorations
   ═══════════════════════════════════════ */
#weapons {
  position: relative;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(var(--brand-rgb), 0.06),
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(var(--brand-rgb), 0.04),
      transparent 35%
    ),
    var(--bg);
}

.weapons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.weapons-copy {
  max-width: 100%;
}

.weapons-copy p {
  margin-top: 16px;
  color: var(--text-mid);
  line-height: 1.75;
}

.weapons-copy ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.weapons-copy li {
  position: relative;
  padding: 16px 20px;
  padding-left: 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    135deg,
    var(--card),
    rgba(var(--brand-rgb), 0.03)
  );
  border: 1px solid var(--border);
  color: var(--text-mid);
  line-height: 1.65;
  transition: all 0.35s var(--spring);
}

.weapons-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--brand-light), var(--brand-dark));
  opacity: 0.6;
  transition: opacity 0.3s;
}

.weapons-copy li:hover {
  transform: translateX(6px);
  border-color: rgba(var(--brand-rgb), 0.3);
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.08);
}

.weapons-copy li:hover::before {
  opacity: 1;
}

.weapons-copy li strong {
  color: var(--text);
}

/* Panorama rail */
.panorama-rail {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.panorama-rail img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.8s var(--ease);
}

@media (hover: hover) {
  .panorama-rail:hover img {
    transform: translateX(-1.5%) scale(1.03);
  }
}

/* Weapons square media */
.weapons-square {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.weapons-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.6s var(--ease);
}

@media (hover: hover) {
  .weapons-square:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-deep);
  }
}

/* ═══════════════════════════════════════
   ROADMAP — Horizontal Timeline (Unique L4)
   ═══════════════════════════════════════ */
#roadmap {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #f0e3d4 100%);
  position: relative;
}

#roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(var(--brand-rgb), 0.08),
    transparent 50%
  );
  pointer-events: none;
}

.roadmap-wrap {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
}

.roadmap-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep);
  transition: all 0.5s var(--spring);
}

.roadmap-spotlight {
  position: relative;
}

.roadmap-spotlight::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--brand-rgb), 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: -1;
}

@media (hover: hover) {
  .roadmap-spotlight:hover img {
    transform: rotate(-1deg) translateY(-6px);
    box-shadow: 0 30px 60px rgba(33, 21, 13, 0.25);
  }
}

/* Horizontal timeline cards */
.roadmap-list {
  display: grid;
  gap: 16px;
  position: relative;
}

/* Connecting line */
.roadmap-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--brand-light),
    var(--brand-dark),
    transparent
  );
  border-radius: 2px;
}

.road-item {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 22px 22px 56px;
  transition: all 0.35s var(--spring);
}

/* Timeline dot */
.road-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand));
  border: 3px solid var(--card);
  box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.3);
  z-index: 2;
}

.road-item:hover {
  transform: translateX(8px);
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: 0 12px 32px rgba(var(--brand-rgb), 0.1);
}

.road-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(var(--brand-rgb), 0.12),
    rgba(var(--brand-rgb), 0.05)
  );
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.road-item h3 {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}

.road-item p {
  margin-top: 8px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   PRICING — Animated glassmorphic (Unique L4)
   ═══════════════════════════════════════ */
#pricing {
  background: linear-gradient(
    160deg,
    #140e0a 0%,
    var(--bg-dark) 35%,
    var(--bg-dark2) 100%
  );
}

#pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(var(--brand-rgb), 0.14),
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(var(--brand-rgb), 0.08),
      transparent 45%
    );
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-box {
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  border-radius: var(--radius);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(12px);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

/* Animated border glow */
.price-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--brand) 10%,
    transparent 20%,
    transparent 100%
  );
  animation: borderRotate 6s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

.price-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(
    155deg,
    rgba(20, 14, 10, 0.98),
    rgba(35, 26, 20, 0.98)
  );
  z-index: -1;
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.price-box p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.price-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-row strong {
  color: var(--white);
}

.price-highlight {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-on-dark);
  border-bottom: none;
  padding: 12px 0;
}

.price-highlight strong {
  color: var(--brand-on-dark);
  font-size: 28px;
}

.price-box .btn {
  margin-top: 22px;
  width: 100%;
}

/* Bonus box */
.bonus-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  padding: 32px 28px;
}

.bonus-box h3 {
  font-size: 26px;
  line-height: 1.2;
  color: var(--white);
}

.bonus-box ul {
  margin: 18px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.75);
}

.bonus-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
  line-height: 1.6;
}

.bonus-box li::before {
  content: "◆";
  color: var(--brand-on-dark);
  font-size: 8px;
  margin-top: 7px;
  flex-shrink: 0;
}

.bonus-box li:last-child {
  border-bottom: none;
}

/* Ebook card */
.ebook-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(
    155deg,
    rgba(var(--brand-rgb), 0.12) 0%,
    rgba(var(--brand-rgb), 0.04) 100%
  );
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  height: 100%;
}

.ebook-card .ebook-hero-img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s var(--spring);
}

.book-tilt:hover .ebook-hero-img {
  transform: rotate(-2deg) translateY(-8px) scale(1.02);
}

.ebook-kicker {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-on-dark);
  font-weight: 800;
}

.ebook-copy p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.ebook-benefits {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.ebook-benefits li {
  padding: 4px 0;
  border-bottom: none;
}

.ebook-benefits li::before {
  content: "→";
  color: var(--brand-on-dark);
  font-size: 12px;
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   COMMUNITY — Framed QR (Unique L4)
   ═══════════════════════════════════════ */
#community {
  position: relative;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(var(--brand-rgb), 0.06),
      transparent 40%
    ),
    var(--bg);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.community-copy p {
  margin-top: 16px;
  color: var(--text-mid);
  line-height: 1.75;
}

.link-pill {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(var(--brand-rgb), 0.1),
    rgba(var(--brand-rgb), 0.04)
  );
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(var(--brand-rgb), 0.1);
  transition: all 0.35s var(--spring);
}

.link-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(var(--brand-rgb), 0.18);
  background: linear-gradient(
    135deg,
    rgba(var(--brand-rgb), 0.16),
    rgba(var(--brand-rgb), 0.06)
  );
}

.link-pill i {
  font-size: 12px;
}

.community-qr {
  justify-self: center;
  width: min(320px, 100%);
  position: relative;
}

.community-qr img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--border);
}

/* Decorative frame around QR */
.qr-focus {
  position: relative;
  padding: 16px;
}

.qr-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) + 8px);
  border: 2px dashed rgba(var(--brand-rgb), 0.2);
  animation: ringPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.qr-focus::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  pointer-events: none;
}

@media (hover: hover) {
  .qr-focus:hover img {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px rgba(28, 18, 11, 0.3);
  }
}

/* ═══════════════════════════════════════
   FORM — Floating geometric card
   ═══════════════════════════════════════ */
#form {
  background: linear-gradient(170deg, var(--bg-dark) 0%, var(--bg-dark2) 100%);
}

#form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(var(--brand-rgb), 0.12),
    transparent 45%
  );
  pointer-events: none;
}

.form-wrap {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.form-shell {
  margin-top: 24px;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

/* Corner decorations */
.form-shell::before,
.form-shell::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(var(--brand-rgb), 0.15);
  pointer-events: none;
}

.form-shell::before {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.form-shell::after {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
}

.form-micro-copy {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-on-dark);
  font-weight: 700;
  padding: 8px 16px;
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  border-radius: 999px;
  display: inline-flex;
  margin: 0 auto;
  background: rgba(var(--brand-rgb), 0.08);
}

/* Center the micro copy */
.form-shell > .form-micro-copy {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
}

.reg-form {
  margin: 0 auto;
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reg-form--embed {
  display: block;
  max-width: 640px;
}

.funnel-form-embed {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--brand-rgb), 0.24);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.funnel-form-embed iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: 0;
  border-radius: 0;
}

.field {
  text-align: left;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

.field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s var(--ease);
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field input:focus {
  outline: none;
  border-color: var(--brand-on-dark);
  box-shadow:
    0 0 0 3px rgba(var(--brand-rgb), 0.2),
    0 0 20px rgba(var(--brand-rgb), 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-submit {
  margin-top: 6px;
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 300px;
  border: 0;
}

.form-note {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  padding: 44px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(var(--brand-rgb), 0.15);
  color: var(--white);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  font-size: 18px;
  color: var(--brand-on-dark);
}

.footer-inner p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 780px;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS (Enhanced L4)
   ═══════════════════════════════════════ */
.reveal {
  --reveal-x: 0px;
  --reveal-y: 36px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  transition:
    opacity 0.8s var(--spring),
    transform 0.8s var(--spring);
  will-change: transform, opacity;
}

.reveal-l {
  --reveal-x: -30px;
  --reveal-y: 20px;
}

.reveal-r {
  --reveal-x: 30px;
  --reveal-y: 20px;
}

.reveal-zoom {
  --reveal-scale: 0.92;
  --reveal-y: 38px;
}

.reveal-pop {
  --reveal-scale: 0.88;
  --reveal-y: 42px;
}

.reveal-lift {
  --reveal-y: 24px;
}

.reveal-fade {
  --reveal-y: 10px;
}

.reveal-tilt-l {
  --reveal-x: -18px;
  --reveal-y: 24px;
  --reveal-rotate: -2deg;
}

.reveal-tilt-r {
  --reveal-x: 18px;
  --reveal-y: 24px;
  --reveal-rotate: 2deg;
}

.reveal.in {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  opacity: 1;
}

/* ═══════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════ */
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.6;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1000px) {
  .roadmap-wrap,
  .pricing-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-qr {
    justify-self: start;
  }

  .media-caption {
    text-align: left;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .ebook-card {
    grid-template-columns: 1fr;
  }

  .weapons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    height: 66px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 110px;
    min-height: auto;
  }

  .btn {
    width: 100%;
  }

  .form-shell {
    padding: 22px 18px;
  }

  .reg-form {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .reg-form--embed {
    max-width: 100%;
  }

  .funnel-form-embed iframe {
    height: 620px;
  }

  .field--full {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
    min-width: 0;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .container {
    width: min(1140px, calc(100% - 32px));
  }

  .angle-divider {
    height: 50px;
  }

  .ticker-content {
    letter-spacing: 2px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    gap: 16px;
  }

  .price-box,
  .bonus-box {
    padding: 24px 20px;
  }

  .roadmap-list::before {
    display: none;
  }

  .road-item {
    padding-left: 22px;
  }

  .road-item::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
