/* ============================================
   LANDING PAGE STYLES
   ============================================
   Place your landing page CSS here.
   This file was created as a placeholder —
   copy your original styles.css content into this file.
   ============================================ */
/* ============================================
   TEEBLING Corporate — Home Page Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1e293b;
  --primary-medium: #334155;
  --primary-light: #475569;
  --accent: #c9a96e;
  --accent-light: #e2c792;
  --accent-dark: #a88c4f;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --bg-dark-light: #1e293b;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-on-dark: #e2e8f0;
  --text-on-dark-muted: #94a3b8;
  --white: #ffffff;
  --border: #e2e8f0;
  --border-dark: #334155;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius: 2px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --nav-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ---------- Section Labels ---------- */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.transparent {
  background: transparent;
}

.navbar.solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.navbar.transparent .navbar-logo {
  color: var(--white);
}

.navbar.solid .navbar-logo {
  color: var(--primary);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.navbar.transparent .navbar-links a {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.transparent .navbar-links a:hover {
  color: var(--white);
}

.navbar.solid .navbar-links a {
  color: var(--text-secondary);
}

.navbar.solid .navbar-links a:hover {
  color: var(--primary);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  transition: var(--transition);
}

.navbar.transparent .navbar-links a::after {
  background: var(--white);
}

.navbar.solid .navbar-links a::after {
  background: var(--primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  transition: var(--transition);
}

.navbar.transparent .hamburger span {
  background: var(--white);
}

.navbar.solid .hamburger span {
  background: var(--primary);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.24s; }

.mobile-menu a:hover {
  color: var(--accent);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-image.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 15, 26, 0.75) 0%,
    rgba(15, 23, 42, 0.65) 40%,
    rgba(26, 39, 68, 0.6) 70%,
    rgba(30, 41, 59, 0.7) 100%
  );
  z-index: 1;
}

.hero-indicators {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-indicator {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-indicator.active {
  background: var(--white);
  width: 60px;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-overline {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 1.2s 0.4s forwards;
}

.hero-title-filled {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: clamp(6px, 2.5vw, 24px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
  background-size: 33.4% 100%, 33.3% 100%, 33.3% 100%;
  background-position: 0% center, 50% center, 100% center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.25);
  filter: contrast(1.1) saturate(1.2);
  position: relative;
  z-index: 2;
}

.hero-title-shimmer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.06) 58%,
    transparent 65%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: clamp(6px, 2.5vw, 24px);
  text-transform: uppercase;
  line-height: 1;
  animation: heroShimmer 4s ease-in-out infinite;
}

@keyframes heroShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-title-glow {
  position: absolute;
  inset: -20px -40px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(201, 169, 110, 0.15) 0%,
    transparent 70%
  );
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-category-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-cat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}

.hero-cat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text-on-dark-muted);
  margin-bottom: 56px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 1.1s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-on-dark-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.hero-scroll-chevron {
  animation: chevronBounce 1.5s ease-in-out infinite;
}

.hero-scroll-chevron svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes chevronBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================
   GLOWING STARS
   ============================================ */
.glowing-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.glow-star {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-light);
  animation: starPulse var(--duration) var(--delay) ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   BRAND MARQUEE (Infinite Moving Cards)
   ============================================ */
.brand-marquee-ace {
  position: relative;
  padding: 80px 0 60px;
  background: var(--bg-dark);
  overflow: hidden;
}

.brand-marquee-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(30,41,59,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.brand-marquee-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.brand-marquee-header .section-label {
  color: var(--accent);
}

.mt-16 {
  margin-top: 20px;
}

.infinite-cards-container {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.infinite-cards-scroller {
  display: flex;
  gap: 20px;
  width: max-content;
  list-style: none;
  padding: 12px 0;
}

.infinite-cards-container.running .infinite-cards-scroller {
  animation: infiniteScroll var(--animation-duration, 35s) linear infinite var(--animation-direction, forwards);
}

.infinite-cards-container:hover .infinite-cards-scroller {
  animation-play-state: var(--pause-on-hover, paused);
}

@keyframes infiniteScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.infinite-card {
  flex-shrink: 0;
  width: 280px;
}

.infinite-card a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.infinite-card a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.3) 0%,
    transparent 40%,
    transparent 60%,
    rgba(201, 169, 110, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.infinite-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(201, 169, 110, 0.08);
}

.infinite-card a:hover::before {
  opacity: 1;
}

.infinite-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.infinite-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.infinite-card a:hover .infinite-card-img img {
  transform: scale(1.1);
}

.infinite-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.infinite-card-info {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.infinite-card-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.infinite-card-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--accent-light);
  letter-spacing: 0.5px;
}

/* ============================================
   BRAND STATEMENT (Lamp + TextGenerate)
   ============================================ */
.brand-statement-ace {
  position: relative;
  padding: 160px 0 120px;
  background: var(--bg-dark);
  overflow: hidden;
}

.brand-statement-inner {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-statement-text-ace {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.85);
  text-align: center;
}

.brand-statement-text-ace .word {
  display: inline-block;
  margin-right: 0.35em;
  opacity: 0;
  transform: translateY(12px);
  filter: blur(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.brand-statement-text-ace .word.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.text-highlight-gold {
  color: var(--accent) !important;
  font-weight: 500;
}

.brand-statement-divider-ace {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 48px auto 0;
  transform-origin: center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 1s 0.8s ease-out, opacity 1s 0.8s ease-out;
}

.brand-statement-divider-ace.visible {
  transform: scaleX(1);
  opacity: 1;
}

.brand-statement-sub {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 1.2s ease, transform 0.8s 1.2s ease;
}

.brand-statement-sub.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lamp effect */
.lamp-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lamp-glow {
  position: absolute;
  top: -60px;
  width: 60%;
  max-width: 700px;
  height: 280px;
  background: conic-gradient(
    from 90deg at 50% 0%,
    rgba(201, 169, 110, 0) 0deg,
    rgba(201, 169, 110, 0.12) 90deg,
    rgba(201, 169, 110, 0.24) 180deg,
    rgba(201, 169, 110, 0.12) 270deg,
    rgba(201, 169, 110, 0) 360deg
  );
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, transparent 100%);
  transform-origin: top center;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.lamp-glow.visible {
  opacity: 1;
  transform: scaleX(1);
}

.lamp-glow-wide {
  position: absolute;
  top: -40px;
  width: 80%;
  max-width: 900px;
  height: 200px;
  background: radial-gradient(
    ellipse 60% 100% at 50% 0%,
    rgba(201, 169, 110, 0.15) 0%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 1.4s 0.1s ease-out, transform 1.4s 0.1s ease-out;
}

.lamp-glow-wide.visible {
  opacity: 0.5;
  transform: scaleX(1);
}

.lamp-line {
  width: min(60%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-bottom: 60px;
  transform-origin: center;
  z-index: 1;
  transform: scaleX(0);
  transition: transform 0.8s 0.3s ease-out;
}

.lamp-line.visible {
  transform: scaleX(1);
}

/* ============================================
   BACKGROUND GRID PATTERN
   ============================================ */
.bg-grid-wrap {
  position: relative;
  overflow: hidden;
}

.bg-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid-dots {
  background-image:
    radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}

.bg-grid-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, transparent 30%, var(--bg-alt) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   BRANDS SHOWCASE
   ============================================ */
.brands-showcase {
  padding: 120px 0;
  background: var(--bg-alt);
}

.brands-showcase-header {
  text-align: center;
  margin-bottom: 80px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 2;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.brand-card:hover::before {
  transform: scaleX(1);
}

.brand-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card:hover .brand-card-image img {
  transform: scale(1.08);
}

.brand-card-body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.brand-card-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.brand-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.brand-card-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.brand-card-link:hover {
  color: var(--accent-dark);
  gap: 14px;
}

.brand-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.stats-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 120px 0;
  background: var(--bg);
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.value-card {
  display: flex;
  gap: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: scale(1.02);
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 39, 68, 0.92) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 169, 110, 0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand-desc {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-on-dark-muted);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-newsletter-text {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

.footer-newsletter-form input::placeholder {
  color: var(--text-on-dark-muted);
}

.footer-newsletter-form input:focus {
  border-color: var(--accent);
}

.footer-newsletter-form button {
  padding: 12px 20px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  background: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: var(--text-on-dark-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.scroll-to-top.visible {
  display: flex;
}

.scroll-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
  min-height: 100vh;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SPOTLIGHT
   ============================================ */
.spotlight-wrap {
  position: relative;
  overflow: hidden;
}

.spotlight-blob {
  position: absolute;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.spotlight-wrap:hover .spotlight-blob {
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .navbar-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title-filled {
    font-size: clamp(4rem, 14vw, 8rem);
    -webkit-text-stroke: 0.5px rgba(201, 169, 110, 0.2);
  }

  .hero-title-shimmer {
    font-size: clamp(4rem, 14vw, 8rem);
  }

  .hero-category-labels {
    gap: 14px;
  }

  .hero-cat-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    letter-spacing: 2px;
    font-size: 0.85rem;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .brand-card-body {
    padding: 24px 20px 28px;
  }

  .hero-indicators {
    bottom: 80px;
  }
}

/* ============================================
   ANIMATIONS (Keyframes)
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
