/* ============================================================
   TRYKZ AUDIO - Premium Audio Plugin Company
   Main Stylesheet - Premium Design System
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

/* ============================================================
   1. CSS RESET & CUSTOM PROPERTIES
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  /* Dark Scale */
  --black: #000000;
  --black-soft: #060606;
  --black-medium: #0c0c0c;
  --dark-100: #141414;
  --dark-200: #1c1c1c;
  --dark-300: #2a2a2a;
  --dark-400: #3a3a3a;
  --dark-500: #4a4a4a;
  --dark-600: #666666;
  --dark-700: #888888;
  --dark-800: #aaaaaa;
  --dark-900: #cccccc;

  /* Gold Scale - used sparingly */
  --gold-dark: #a67820;
  --gold: #d4982a;
  --gold-medium: #e6b33e;
  --gold-light: #edca72;
  --gold-pale: #f5dfa0;
  --gold-glow: rgba(212, 152, 42, 0.12);
  --gold-glow-strong: rgba(212, 152, 42, 0.3);

  /* Text Colors */
  --text-primary: #f0f0f0;
  --text-secondary: #8a8a8a;
  --text-tertiary: #555555;
  --text-inverse: #0a0a0a;

  /* Functional Colors */
  --success: #2ecc71;
  --error: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;

  /* Larger type scale - hero text is MASSIVE */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
  --text-xl: clamp(1.2rem, 1rem + 0.6vw, 1.4rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 0.9vw, 1.75rem);
  --text-3xl: clamp(1.8rem, 1.3rem + 1.5vw, 2.25rem);
  --text-4xl: clamp(2.2rem, 1.5rem + 2vw, 3rem);
  --text-5xl: clamp(2.8rem, 1.8rem + 2.8vw, 4rem);
  --text-6xl: clamp(3.5rem, 2rem + 4vw, 5rem);
  --text-hero: clamp(4rem, 2rem + 5.5vw, 8rem);

  --leading-tight: 1.05;
  --leading-snug: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --tracking-tight: -0.04em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;
  --tracking-widest: 0.14em;

  /* Spacing Scale - MUCH bigger for cinematic feel */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;
  --space-7xl: 12rem;
  --space-8xl: 15rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --header-height: 72px;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;

  /* Premium Easing Curves */
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Transitions - cinematic, slower */
  --transition-fast: 200ms var(--ease-hover);
  --transition-base: 350ms var(--ease-hover);
  --transition-slow: 500ms var(--ease-reveal);
  --transition-slower: 800ms var(--ease-reveal);
  --transition-cinematic: 1200ms var(--ease-reveal);

  /* Shadows - deeper, more cinematic */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 8px 40px rgba(212, 152, 42, 0.15);
  --shadow-gold-lg: 0 16px 60px rgba(212, 152, 42, 0.2);
  --shadow-cinematic: 0 40px 100px rgba(0, 0, 0, 0.9);

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-header: 500;
  --z-overlay: 600;
  --z-modal: 700;
  --z-toast: 800;
}


/* ============================================================
   2. GLOBAL STYLES
   ============================================================ */

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--black);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

a {
  color: var(--gold-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--border-radius-sm);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: var(--gold);
  color: var(--black);
}

/* Scrollbar - minimal */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-300);
  border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-400);
}


/* ============================================================
   Typography - Restrained but Confident
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--text-hero); font-weight: 700; }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-4xl); }
h4 { font-size: var(--text-3xl); }
h5 { font-size: var(--text-2xl); }
h6 { font-size: var(--text-xl); font-weight: 500; }

p {
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }

small {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

blockquote {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
  color: var(--text-secondary);
  font-style: italic;
  font-size: var(--text-lg);
}

code {
  font-family: var(--font-mono);
  background: var(--dark-100);
  padding: 0.15em 0.4em;
  border-radius: var(--border-radius-sm);
  font-size: 0.9em;
}

hr {
  border: none;
  height: 1px;
  background: var(--dark-200);
  margin: var(--space-4xl) 0;
}


/* ============================================================
   Containers & Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

/* Sections with MUCH larger padding */
.section {
  padding: var(--space-7xl) 0;
}

.section--sm {
  padding: var(--space-5xl) 0;
}

.section--lg {
  padding: var(--space-8xl) 0;
}


/* ============================================================
   3. HEADER / NAVIGATION - Minimal, Disappearing
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--z-header);
  transition: background-color 500ms var(--ease-reveal),
              backdrop-filter 500ms var(--ease-reveal),
              box-shadow 500ms var(--ease-reveal);
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: calc(var(--z-header) + 1);
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__logo-text {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.header__logo-text span {
  color: var(--gold);
}

/* Nav - more spacing, lighter weight */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 400ms var(--ease-reveal);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 10px var(--space-xl);
  border: 1px solid rgba(212, 152, 42, 0.4);
  border-radius: var(--border-radius-full);
  color: var(--gold);
  letter-spacing: var(--tracking-wide);
  transition: all var(--transition-base);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-header) + 1);
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 400ms var(--ease-reveal);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile Menu - Fullscreen overlay with staggered links */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: var(--z-header);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms var(--ease-reveal),
              visibility 500ms var(--ease-reveal);
}

.nav__mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-menu .nav__link {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
  letter-spacing: var(--tracking-wider);
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-reveal),
              transform 500ms var(--ease-reveal),
              color var(--transition-fast);
}

.nav__mobile-menu.open .nav__link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger link animations */
.nav__mobile-menu.open .nav__link:nth-child(1) { transition-delay: 80ms; }
.nav__mobile-menu.open .nav__link:nth-child(2) { transition-delay: 160ms; }
.nav__mobile-menu.open .nav__link:nth-child(3) { transition-delay: 240ms; }
.nav__mobile-menu.open .nav__link:nth-child(4) { transition-delay: 320ms; }
.nav__mobile-menu.open .nav__link:nth-child(5) { transition-delay: 400ms; }
.nav__mobile-menu.open .nav__link:nth-child(6) { transition-delay: 480ms; }
.nav__mobile-menu.open .nav__link:nth-child(7) { transition-delay: 560ms; }
.nav__mobile-menu.open .nav__link:nth-child(8) { transition-delay: 640ms; }

.nav__mobile-menu .nav__link:hover {
  color: var(--gold);
}

.nav__mobile-menu .nav__cta {
  margin-top: var(--space-xl);
  font-size: var(--text-lg);
  padding: 14px var(--space-2xl);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-reveal),
              transform 500ms var(--ease-reveal),
              background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}

.nav__mobile-menu.open .nav__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 720ms;
}


/* ============================================================
   4. HERO SECTION - Cinematic, Product-Led
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  overflow: hidden;
}

/* Layered radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 152, 42, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(212, 152, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.8;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

/* Hero content visible by default, animation added via JS */
.hero__content .fade-in,
.hero__content .reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--gold);
  border: 1px solid rgba(212, 152, 42, 0.2);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-2xl);
  background: rgba(212, 152, 42, 0.03);
}

/* Enormous hero title */
.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.05em;
  margin-bottom: var(--space-xl);
}

.hero__title .gold {
  color: var(--gold);
}

.hero__subtitle {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
  line-height: var(--leading-relaxed);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Hero image - MASSIVE, dominant, cinematic */
.hero__image {
  position: relative;
  z-index: 1;
  margin-top: var(--space-4xl);
  /* Break out of the 1000px .hero__content container, span near full viewport */
  width: min(96vw, 1600px);
  left: 50%;
  transform: translateX(-50%);
  /* Show full image, do not crop edges */
  overflow: visible;
  border-radius: var(--border-radius-lg);
  /* Cinematic gold-tinted glow + deep depth shadow (not clipped by overflow) */
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.85),
    0 0 200px rgba(212, 152, 42, 0.22),
    0 0 0 1px rgba(212, 152, 42, 0.08);
}

.hero__image img,
.hero__image-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  animation: hero-float 8s var(--ease-hover) infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero auto-animate stagger on load */
.hero__content > *:nth-child(1) { animation: hero-reveal 1s var(--ease-reveal) 0.1s both; }
.hero__content > *:nth-child(2) { animation: hero-reveal 1s var(--ease-reveal) 0.2s both; }
.hero__content > *:nth-child(3) { animation: hero-reveal 1s var(--ease-reveal) 0.35s both; }
.hero__content > *:nth-child(4) { animation: hero-reveal 1s var(--ease-reveal) 0.5s both; }
.hero__content > *:nth-child(5) { animation: hero-reveal 1s var(--ease-reveal) 0.65s both; }

/* Override for hero image: keep translateX(-50%) centering during reveal */
.hero__content > .hero__image {
  animation: hero-reveal-image 1s var(--ease-reveal) 0.65s both;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-reveal-image {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}


/* ============================================================
   5. SECTIONS - NO MORE BOXES
   ============================================================ */

/* Section Backgrounds */
.bg-black { background-color: var(--black); }
.bg-soft { background-color: var(--black-soft); }
.bg-medium { background-color: var(--black-medium); }
.bg-dark-100 { background-color: var(--dark-100); }

/* Section Header - can be centered or left-aligned, oversized */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
}

.section-header__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.section-header__title {
  margin-bottom: var(--space-lg);
}

.section-header__line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-xl) auto;
}

.section-header__desc {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* --- Cinematic Feature - full-width asymmetric layout --- */
.cinematic-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--space-6xl) 0;
}

.cinematic-feature--reverse {
  direction: rtl;
}

.cinematic-feature--reverse > * {
  direction: ltr;
}

.cinematic-feature__visual {
  position: relative;
}

.cinematic-feature__visual img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.cinematic-feature__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* --- Atmosphere Section - gradient backgrounds, no containers boxing --- */
.atmosphere-section {
  position: relative;
  padding: var(--space-7xl) 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-100) 50%, var(--black) 100%);
}

.atmosphere-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 152, 42, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* --- Editorial Block - magazine-style text+image --- */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--space-5xl) 0;
}

.editorial-block__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.editorial-block__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.editorial-block__image img {
  width: 100%;
  height: auto;
  transition: transform 800ms var(--ease-reveal);
}

.editorial-block__image:hover img {
  transform: scale(1.02);
}

/* --- Stat Strip - horizontal, no boxes --- */
.stat-strip {
  display: flex;
  justify-content: center;
  gap: var(--space-4xl);
  padding: var(--space-5xl) var(--space-xl);
  position: relative;
}

.stat-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-300), transparent);
}

.stat-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-300), transparent);
}


/* Feature Grid - redesigned without boxy feel */
.feature-grid {
  display: grid;
  gap: var(--space-3xl);
}

.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Feature Card - subtle, no aggressive borders */
.feature-card {
  padding: var(--space-2xl);
  border-bottom: 1px solid var(--dark-200);
  transition: border-color 500ms var(--ease-reveal);
}

.feature-card:hover {
  border-color: rgba(212, 152, 42, 0.2);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-xl);
  font-size: var(--text-2xl);
}

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* Product Cards - cinematic, product-led */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-3xl);
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 600ms var(--ease-reveal);
}

.product-card:hover {
  transform: scale(1.01);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark-100) 0%, var(--black) 100%);
  padding: var(--space-2xl);
}

.product-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(212, 152, 42, 0.08) 0%, transparent 70%);
  filter: blur(15px);
}

.product-card__image img {
  width: 100%;
  transition: transform 800ms var(--ease-reveal);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  background: var(--gold);
  color: var(--black);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-full);
}

.product-card__body {
  padding: var(--space-2xl) var(--space-lg);
}

.product-card__category {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.product-card__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.product-card__price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
}

.product-card__price-old {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-left: var(--space-sm);
  font-weight: 400;
}


/* Stats Section - Clean strip */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {
  text-align: center;
}

.stat-item__number,
.stat-value {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: inline;
}

.stat-unit {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold-medium);
}

.stat-item__label,
.stat-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-top: var(--space-sm);
}


/* Testimonials - elegant, minimal */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-3xl);
}

.testimonial-card {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--dark-200);
  position: relative;
}

.testimonial-card__quote {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: var(--text-4xl);
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: var(--space-lg);
  font-style: normal;
  font-weight: 300;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  opacity: 0.9;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: var(--text-sm);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}


/* ============================================================
   6. BUTTONS - Restrained, Premium
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  padding: 16px 36px;
  border-radius: var(--border-radius-full);
  border: none;
  cursor: pointer;
  transition: all 400ms var(--ease-hover);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Primary Button - gold gradient, subtle glow on hover */
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  text-transform: uppercase;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-medium), var(--gold));
  box-shadow: 0 0 30px rgba(212, 152, 42, 0.25);
  color: var(--black);
}

.btn--primary:active {
  box-shadow: 0 0 15px rgba(212, 152, 42, 0.15);
}

/* Secondary Button - text with subtle border */
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--dark-400);
  text-transform: uppercase;
}

.btn--secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* Ghost Button */
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 16px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--dark-400);
  text-transform: uppercase;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Dark Button */
.btn--dark {
  background: var(--dark-200);
  color: var(--text-primary);
  text-transform: uppercase;
}

.btn--dark:hover {
  background: var(--dark-300);
  color: var(--text-primary);
}

/* Size Variants */
.btn--sm {
  font-size: var(--text-xs);
  padding: 12px 24px;
}

.btn--lg {
  font-size: var(--text-base);
  padding: 20px 48px;
}

.btn--full {
  width: 100%;
}


/* ============================================================
   7. FORMS
   ============================================================ */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-100);
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: border-color 300ms var(--ease-hover),
              box-shadow 300ms var(--ease-hover);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--dark-500);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 152, 42, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--dark-400);
  border-radius: var(--border-radius-sm);
  background: var(--dark-100);
  appearance: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  cursor: pointer;
}

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: var(--space-xs);
}

.form-success {
  font-size: var(--text-xs);
  color: var(--success);
  margin-top: var(--space-xs);
}


/* ============================================================
   8. FOOTER - Elegant, Spacious
   ============================================================ */

.footer {
  background: var(--black);
  position: relative;
  padding-top: var(--space-6xl);
}

/* Gradient separator instead of hard border */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-300), transparent);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-xl);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
}

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--text-primary);
}

/* Newsletter in Footer */
.footer__newsletter {
  border-top: 1px solid var(--dark-200);
  padding: var(--space-3xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.footer__newsletter-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.footer__newsletter-input {
  padding: 12px 20px;
  background: var(--dark-100);
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius-full);
  color: var(--text-primary);
  font-size: var(--text-sm);
  min-width: 280px;
  transition: border-color 300ms var(--ease-hover);
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 152, 42, 0.08);
}

/* Social Links - minimal, no circle borders */
.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer__social-link {
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
  font-size: var(--text-lg);
}

.footer__social-link:hover {
  color: var(--text-primary);
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid var(--dark-200);
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 300;
}

.footer__legal {
  display: flex;
  gap: var(--space-xl);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--text-secondary);
}


/* ============================================================
   9. BLOG STYLES
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-3xl);
}

.blog-card {
  overflow: hidden;
  transition: opacity var(--transition-base);
}

.blog-card:hover {
  opacity: 0.9;
}

.blog-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-lg);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-reveal);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
}

.blog-card__body {
  padding: 0;
}

.blog-card__date {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--gold);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.blog-card__read-more {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: var(--tracking-wide);
}

/* Blog Post (article) */
.blog-post {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + var(--space-4xl));
}

.blog-post__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.blog-post__meta {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
}

.blog-post__content {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

.blog-post__content h2 {
  font-size: var(--text-3xl);
  margin: var(--space-4xl) 0 var(--space-xl);
  color: var(--text-primary);
}

.blog-post__content h3 {
  font-size: var(--text-2xl);
  margin: var(--space-3xl) 0 var(--space-lg);
  color: var(--text-primary);
}

.blog-post__content p {
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.blog-post__content img {
  border-radius: var(--border-radius-lg);
  margin: var(--space-3xl) 0;
}

.blog-post__content ul,
.blog-post__content ol {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.blog-post__content li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  list-style: disc;
}

/* Category Badge */
.badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
  background: rgba(212, 152, 42, 0.08);
  color: var(--gold);
}

/* Blog Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-4xl);
}

.sidebar__widget {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--dark-200);
  margin-bottom: var(--space-xl);
}

.sidebar__title {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}


/* ============================================================
   10. UTILITY CLASSES
   ============================================================ */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Colors */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-tertiary); }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.tracking-wide { letter-spacing: var(--tracking-wide); }
.tracking-wider { letter-spacing: var(--tracking-wider); }
.tracking-widest { letter-spacing: var(--tracking-widest); }

/* Gold Glow */
.gold-glow {
  text-shadow: 0 0 30px rgba(212, 152, 42, 0.3);
}

.gold-glow-box {
  box-shadow: 0 0 40px rgba(212, 152, 42, 0.1);
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline-flex { display: inline-flex; }

/* Flexbox */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* Width */
.w-full { width: 100%; }
.max-w-narrow { max-width: var(--container-narrow); }
.max-w-default { max-width: var(--container-max); }

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


/* ============================================================
   ANIMATION CLASSES - Premium Reveals
   ============================================================ */

/* Reveal - slides up with premium easing */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal Scale - scales from 0.95 */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s var(--ease-reveal),
              transform 1s var(--ease-reveal);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Reveal Left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal Right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Legacy animation class support */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s var(--ease-reveal),
              transform 0.9s var(--ease-reveal);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays - 80ms increments */
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }
.delay-6 { transition-delay: 480ms; }


/* ============================================================
   11. PAGE-SPECIFIC STYLES
   ============================================================ */

/* --- Page Header (shared across about, blog, etc) --- */
.page-header {
  padding: calc(var(--header-height) + var(--space-6xl)) 0 var(--space-4xl);
  text-align: center;
  position: relative;
}

.page-header__title {
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xl);
}

.page-header__desc {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}


/* --- About Page --- */

/* Timeline - elegant line */
.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--dark-300), transparent);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-4xl);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) - 4px);
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: var(--border-radius-full);
  box-shadow: 0 0 15px rgba(212, 152, 42, 0.3);
}

.timeline__year {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-sm);
}

.timeline__title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.timeline__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* --- Contact Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-info-card {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--dark-200);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  transition: border-color 400ms var(--ease-hover);
}

.contact-info-card:hover {
  border-color: rgba(212, 152, 42, 0.2);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: var(--text-xl);
}

.contact-info-card__title {
  font-size: var(--text-base);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.contact-info-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}


/* --- FAQ Page --- */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--dark-200);
}

.faq-item__question {
  width: 100%;
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 400ms var(--ease-reveal);
  color: var(--gold);
  font-size: var(--text-xl);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-reveal),
              padding 500ms var(--ease-reveal);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: var(--space-xl);
}

.faq-item__answer p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* --- Pricing Page --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  align-items: start;
}

.pricing-card {
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  transition: all 500ms var(--ease-reveal);
  position: relative;
  border-bottom: 1px solid var(--dark-200);
}

.pricing-card--featured {
  border-color: var(--gold);
  border-bottom-width: 2px;
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  background: var(--gold);
  color: var(--black);
  padding: 4px 16px;
  border-radius: var(--border-radius-full);
}

.pricing-card:hover {
  border-color: rgba(212, 152, 42, 0.3);
}

.pricing-card--featured:hover {
  border-color: var(--gold);
}

.pricing-card__name {
  font-size: var(--text-lg);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-md);
}

.pricing-card__price {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-xl);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-card__feature {
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pricing-card__feature::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--dark-200);
  font-size: var(--text-sm);
}

.pricing-table th {
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-xs);
}

.pricing-table td {
  color: var(--text-secondary);
}


/* --- Support Page --- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.help-card {
  padding: var(--space-2xl);
  text-align: center;
  border-bottom: 1px solid var(--dark-200);
  transition: border-color 400ms var(--ease-hover);
}

.help-card:hover {
  border-color: rgba(212, 152, 42, 0.2);
}

.help-card__icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  color: var(--gold);
}

.help-card__title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.help-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}


/* --- Downloads Page --- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.download-card {
  padding: var(--space-2xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  border-bottom: 1px solid var(--dark-200);
  transition: border-color 400ms var(--ease-hover);
}

.download-card:hover {
  border-color: rgba(212, 152, 42, 0.2);
}

.download-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: var(--text-2xl);
}

.download-card__info {
  flex: 1;
}

.download-card__title {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.download-card__version {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
}

.download-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

.download-card__platforms {
  display: flex;
  gap: var(--space-sm);
}

.download-card__platform {
  font-size: var(--text-xs);
  padding: 3px 10px;
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius-full);
  color: var(--text-tertiary);
}


/* --- Legal Pages --- */
.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + var(--space-4xl));
}

.legal-content h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-xl);
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-4xl) 0 var(--space-xl);
}

.legal-content h3 {
  font-size: var(--text-xl);
  margin: var(--space-3xl) 0 var(--space-lg);
}

.legal-content p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.legal-content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.legal-content li {
  list-style: disc;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.legal-content .last-updated {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-3xl);
}


/* ============================================================
   12. ANIMATIONS
   ============================================================ */

/* Gold Glow Pulse - subtle */
@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 152, 42, 0.06); }
  50% { box-shadow: 0 0 40px rgba(212, 152, 42, 0.15); }
}

.gold-pulse {
  animation: gold-pulse 4s var(--ease-hover) infinite;
}

/* Gradient Shift */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-animated {
  background-size: 200% 200%;
  animation: gradient-shift 8s var(--ease-hover) infinite;
}

/* Fade In Keyframe */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.9s var(--ease-reveal) forwards;
}

/* Spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1.2s linear infinite;
}

/* Loading Skeleton */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--dark-100) 25%,
    var(--dark-200) 50%,
    var(--dark-100) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  border-radius: var(--border-radius);
}


/* ============================================================
   HOMEPAGE-SPECIFIC SECTIONS
   ============================================================ */

/* Showcase Section - cinematic product presentation */
.showcase-section {
  padding: var(--space-7xl) 0;
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-100) 50%, var(--black) 100%);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.showcase-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.showcase-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 15%;
  right: 15%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(212, 152, 42, 0.08) 0%, transparent 70%);
  filter: blur(12px);
}

.showcase-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s var(--ease-reveal);
}

.showcase-image-wrapper:hover .showcase-image {
  transform: scale(1.02);
}

.showcase-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.showcase-description {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.showcase-cta-text {
  font-size: var(--text-base);
  color: var(--gold-medium);
  font-weight: 400;
}

/* Philosophy Section */
.philosophy-section {
  padding: var(--space-7xl) 0;
  position: relative;
}

.philosophy-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.philosophy-accent {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-3xl);
}

.philosophy-quote {
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--text-primary);
  line-height: var(--leading-snug);
  font-style: italic;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.philosophy-attribution {
  font-size: var(--text-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3xl);
}

.philosophy-card {
  text-align: center;
  padding: var(--space-xl) 0;
}

.philosophy-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.philosophy-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.philosophy-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  color: var(--gold);
}

/* Stats Section */
.stats-section {
  padding: var(--space-5xl) 0;
  position: relative;
}

/* Newsletter Section - premium, minimal, ONE per page */
.newsletter-section {
  padding: var(--space-7xl) 0;
  position: relative;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-description {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3xl);
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius-full);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: border-color 300ms var(--ease-hover),
              box-shadow 300ms var(--ease-hover);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 152, 42, 0.08);
}

.newsletter-input::placeholder {
  color: var(--dark-500);
}

.newsletter-btn {
  white-space: nowrap;
}

.newsletter-privacy {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-lg);
}


/* ============================================================
   PAGE-SPECIFIC STYLES (Additional)
   ============================================================ */

/* --- FAQ Page --- */
.faq-section {
  padding: var(--space-4xl) 0;
}

.faq-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.faq-tab {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius-full);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-tab:hover,
.faq-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.faq-section-header__title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  margin-top: var(--space-3xl);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--text-base);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  transition: transform 400ms var(--ease-reveal);
  color: var(--gold);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-reveal);
  padding: 0 var(--space-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.faq-answer p {
  padding-bottom: var(--space-lg);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form-wrapper {
  background: var(--dark-100);
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl);
}

.contact-form .form-group {
  margin-bottom: var(--space-lg);
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-card {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--dark-200);
}

.contact-card-highlight {
  border-color: var(--gold);
}

.contact-card-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--gold);
}

.contact-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.contact-card p,
.contact-card a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.contact-social-links {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.contact-social-links a {
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.contact-social-links a:hover {
  color: var(--text-primary);
}

.contact-info-bar {
  display: flex;
  gap: var(--space-3xl);
  justify-content: center;
  padding: var(--space-3xl) 0;
}

.contact-info-item {
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* --- Downloads Page --- */
.coming-soon-badge {
  display: inline-block;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--border-radius-full);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-xl);
}

.coming-soon-section {
  padding: var(--space-5xl) 0;
}

.coming-soon-showcase {
  max-width: 600px;
  margin: var(--space-3xl) auto 0;
}

.coming-soon-block {
  padding: var(--space-3xl);
  text-align: center;
  border-bottom: 1px solid var(--dark-200);
}

.coming-soon-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-xl);
  color: var(--gold);
}

.coming-soon-notify {
  margin-top: var(--space-xl);
}

.download-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.download-card-preview {
  border-color: var(--gold);
}

.download-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.download-card-desc {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.download-card-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.download-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.download-meta {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
}

.file-size {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

.platform-icons,
.platform-icon {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.version-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--dark-200);
  border-radius: var(--border-radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.installed {
  color: var(--success);
}

/* Desktop App Teaser / Mockup */
.desktop-app-teaser {
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  border-bottom: 1px solid var(--dark-200);
}

.teaser-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.teaser-header {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
}

.teaser-description {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.teaser-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.teaser-visual {
  display: flex;
  justify-content: center;
}

.app-mockup {
  background: var(--dark-100);
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.app-mockup-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 14px;
  background: var(--dark-200);
}

.app-mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #e74c3c; }
.dot.yellow { background: #f39c12; }
.dot.green { background: #2ecc71; }

.app-title {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-left: var(--space-sm);
}

.app-mockup-body {
  padding: var(--space-lg);
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.mockup-nav-item {
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  background: var(--dark-200);
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mockup-plugin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--dark-200);
  border-radius: var(--border-radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.mockup-status {
  font-size: var(--text-xs);
  color: var(--success);
}

/* --- Account Page --- */
.auth-form-wrapper {
  max-width: 440px;
  margin: 0 auto;
  padding: var(--space-3xl);
}

.auth-form-wrapper h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.auth-form .form-group {
  margin-bottom: var(--space-lg);
}

.auth-links {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  margin-top: var(--space-lg);
}

.auth-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-xl);
}

/* --- Pricing Page --- */
.price-card {
  padding: var(--space-3xl);
  text-align: center;
  border-bottom: 1px solid var(--dark-200);
}

.price-amount {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold);
  margin: var(--space-xl) 0;
}

.pricing-coming-soon-section,
.pricing-philosophy-section,
.pricing-faq-section,
.pricing-placeholder {
  padding: var(--space-4xl) 0;
}

.cta-section {
  padding: var(--space-6xl) 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

/* --- Product Page --- */
.product-hero {
  padding: calc(var(--header-height) + var(--space-5xl)) 0 var(--space-4xl);
}

.product-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.product-hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.product-name {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--leading-tight);
  letter-spacing: -0.04em;
}

.product-tagline {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: var(--border-radius-full);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
}

.product-meta {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.product-version,
.product-format {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

.product-hero-actions {
  display: flex;
  gap: var(--space-md);
}

.product-hero__image-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-screenshot-placeholder {
  background: var(--dark-100);
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius-lg);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
}

.product-section,
.product-tabs-section,
.product-gallery-section,
.product-pricing-section,
.related-products-section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--dark-100) 0%, var(--black) 100%);
}

.section-cta {
  text-align: center;
  padding: var(--space-5xl) 0;
}

/* Tabs */
.tabs {
  margin-top: var(--space-xl);
}

.tab-nav {
  display: flex;
  gap: var(--space-sm);
  border-bottom: 1px solid var(--dark-200);
  margin-bottom: var(--space-xl);
}

.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  transition: background 400ms var(--ease-reveal);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--gold);
}

.tab-btn.active::after {
  background: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Product Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--dark-200);
  font-size: var(--text-sm);
}

.specs-table th {
  color: var(--text-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-xs);
}

.specs-table td {
  color: var(--text-primary);
}

/* Feature Detail */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.feature-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.gallery-placeholder {
  background: var(--dark-100);
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius-lg);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

/* Related Products */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.related-placeholder {
  padding: var(--space-xl);
  text-align: center;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--dark-200);
}

/* --- News Page --- */
.news-entry {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--dark-200);
}

.news-entry:last-child {
  border-bottom: none;
}

.news-meta {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-sm);
}

.news-title {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.news-excerpt {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* --- Plugins Page --- */
.notify-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 400px;
}

.notify-form input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: var(--text-sm);
  transition: border-color 300ms var(--ease-hover);
}

.notify-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 152, 42, 0.08);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.preview-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: var(--border-radius-full);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
}

.features-preview-section {
  padding: var(--space-4xl) 0;
}

.overview-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.category-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--gold);
}

/* --- Support Page --- */
.search-bar-wrapper {
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.search-bar {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--dark-300);
  border-radius: var(--border-radius-full);
  padding: 0 var(--space-lg);
  transition: border-color 300ms var(--ease-hover);
}

.search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 152, 42, 0.08);
}

.search-icon {
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  padding: 16px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: var(--text-base);
  outline: none;
}

.search-input::placeholder {
  color: var(--dark-500);
}

.help-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.help-category-card {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--dark-200);
  transition: border-color 400ms var(--ease-hover);
}

.help-category-card:hover {
  border-color: rgba(212, 152, 42, 0.2);
}

.help-category-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.help-category-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.quick-link {
  display: block;
  padding: var(--space-lg);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--dark-200);
  transition: all var(--transition-fast);
}

.quick-link:hover {
  border-color: rgba(212, 152, 42, 0.2);
  color: var(--text-primary);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  counter-reset: step;
}

.step-card {
  padding: var(--space-xl);
  position: relative;
  border-bottom: 1px solid var(--dark-200);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

/* --- Blog Page --- */
.demo {
  padding: var(--space-2xl);
  background: var(--dark-100);
  border-radius: var(--border-radius-lg);
}

/* --- Legal Pages --- */
.legal-updated {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-xl);
}

/* --- Misc Utility --- */
.text-link {
  color: var(--gold-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212, 152, 42, 0.3);
  transition: text-decoration-color var(--transition-fast);
}

.text-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}

.btn--disabled,
.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.required {
  color: var(--error);
}


/* ============================================================
   13. RESPONSIVE
   ============================================================ */

/* Max 1200px */
@media (max-width: 1200px) {
  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .stat-strip {
    flex-wrap: wrap;
    gap: var(--space-3xl);
  }
}

/* Max 1024px - Tablet */
@media (max-width: 1024px) {
  .section {
    padding: var(--space-5xl) 0;
  }

  .section--lg {
    padding: var(--space-6xl) 0;
  }

  .feature-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cinematic-feature {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .editorial-block {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .pricing-card--featured {
    transform: none;
  }
}

/* Max 768px - Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .section--lg {
    padding: var(--space-5xl) 0;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Navigation - Mobile */
  .nav__list,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  /* Mobile logo MUCH larger */
  .header__logo img {
    height: 52px;
  }

  .header__logo-text {
    font-size: var(--text-lg);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__image {
    margin-top: var(--space-3xl);
    width: 100vw;
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.85),
      0 0 120px rgba(212, 152, 42, 0.18);
  }

  /* Grids */
  .feature-grid--2,
  .feature-grid--3,
  .feature-grid--4 {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Showcase */
  .showcase-content {
    grid-template-columns: 1fr;
  }

  .showcase-section {
    padding: var(--space-5xl) 0;
  }

  /* Philosophy */
  .philosophy-section {
    padding: var(--space-5xl) 0;
  }

  /* Newsletter */
  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-section {
    padding: var(--space-5xl) 0;
  }

  /* Footer */
  .footer {
    padding-top: var(--space-4xl);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer__newsletter {
    flex-direction: column;
    text-align: center;
  }

  .footer__newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .footer__newsletter-input {
    min-width: 0;
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-bar {
    flex-direction: column;
    gap: var(--space-lg);
  }

  /* Product */
  .product-hero__content {
    grid-template-columns: 1fr;
  }

  .feature-detail {
    grid-template-columns: 1fr;
  }

  /* Downloads */
  .desktop-app-teaser {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-tabs {
    overflow-x: auto;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Page header */
  .page-header {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  }

  /* Stat strip */
  .stat-strip {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
  }

  /* Section header */
  .section-header {
    margin-bottom: var(--space-3xl);
  }
}

/* Max 480px - Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }

  .hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: -0.03em;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 3px var(--space-md);
  }

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

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

  .footer__legal {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .download-card {
    flex-direction: column;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: var(--text-sm);
  }

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

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

  /* Touch targets */
  .nav__toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .faq-item__question {
    min-height: 44px;
  }

  .footer__link {
    padding: var(--space-xs) 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}


/* ============================================================
   Reduced Motion
   ============================================================ */

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

  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .fade-in-up,
  .fade-in-left,
  .fade-in-right,
  .scale-in,
  .reveal,
  .reveal-scale,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }

  .hero__image img,
  .hero__image-img {
    animation: none;
  }

  .hero__content > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* Preserve hero image viewport centering when reduced motion disables transforms */
  .hero__content > .hero__image {
    transform: translateX(-50%);
  }
}


/* ============================================================
   Print
   ============================================================ */

@media print {
  body {
    background: white;
    color: black;
  }

  .header,
  .footer,
  .nav,
  .btn,
  .newsletter-section {
    display: none;
  }

  .section {
    padding: 1rem 0;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
