/* ============================================
   APEXIAR — Multi-Page Site Styles
   Mobile-first responsive design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Skip Navigation (accessibility) --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --text: #e4e4e7;
  --text-muted: #9ca3af;
  --text-heading: #ffffff;
  --accent: #B8860B;
  --accent-light: #D4A24C;
  --orange: #E8922F;
  --gold-deep: #8B6914;
  --gold-bright: #F5C242;
  --gold-copper: #CD7F32;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --gold-dark: #B8860B;
  --copper: #CD7F32;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 80px rgba(184,134,11,0.2);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Utility --- */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--accent), var(--gold-copper), var(--gold-bright));
  background-size: 300% 100%;
  color: #fff;
  padding: 10px 24px;
  box-shadow: 0 2px 16px rgba(184,134,11,0.4);
  animation: shimmer 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.2) 55%, transparent 65%);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

.btn--primary:hover {
  box-shadow: 0 4px 32px rgba(184,134,11,0.6), 0 0 60px rgba(205,127,50,0.2);
  transform: translateY(-1px);
}

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

@keyframes btnShimmer {
  0% { left: -60%; }
  50% { left: 120%; }
  100% { left: 120%; }
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  padding: 10px 24px;
  border: 1px solid var(--border);
}

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

.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

.btn__arrow {
  transition: transform 0.2s;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-heading);
  letter-spacing: 0.05em;
}

.navbar__logo-icon {
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar__links {
  display: none;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  transition: color 0.2s, transform 0.2s;
}

.navbar__links a:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.navbar__actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.navbar__social-link {
  display: flex;
  align-items: center;
}

.navbar__social-icon {
  height: 28px;
  width: 28px;
  border-radius: 4px;
  object-fit: contain;
  transition: opacity 0.2s;
}

.navbar__social-icon:hover {
  opacity: 0.8;
}

.navbar__badge {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.navbar__badge:hover {
  opacity: 1;
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav__links a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-nav__links a:hover {
  color: var(--text-heading);
}

.mobile-nav__actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* Desktop nav */
@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }

  .navbar__actions {
    display: flex;
  }

  .navbar__hamburger {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 120px 0 40px;
  overflow: hidden;
  min-height: 100vh;
  background: var(--bg);
}

/* --- Electric Storm / Vortex Effect --- */
.hero__vortex {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Bright epicenter — tight hot point at top center */
.hero__vortex-core {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle,
    rgba(255,240,200,0.6) 0%,
    rgba(245,194,66,0.5) 20%,
    rgba(184,134,11,0.2) 50%,
    transparent 70%);
  filter: blur(8px);
  animation: corePulse 6s ease-in-out infinite;
}

/* Mid-layer — scattered energy dispersion */
.hero__vortex-wide {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background:
    radial-gradient(ellipse 40% 60% at 50% 15%, rgba(245,194,66,0.18) 0%, transparent 100%),
    radial-gradient(ellipse 25% 50% at 42% 25%, rgba(205,127,50,0.1) 0%, transparent 100%),
    radial-gradient(ellipse 30% 45% at 58% 20%, rgba(184,134,11,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 60% 35% at 50% 35%, rgba(139,105,20,0.06) 0%, transparent 100%);
  filter: blur(25px);
  animation: stormDrift 12s ease-in-out infinite;
}

/* Outer layer — wide atmospheric glow, chaotic */
.hero__vortex-flare {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 900px;
  background:
    radial-gradient(ellipse 35% 55% at 48% 18%, rgba(245,194,66,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 50% 30% at 55% 30%, rgba(184,134,11,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 20% 40% at 38% 22%, rgba(205,127,50,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 45% 25% at 62% 40%, rgba(139,105,20,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 30% 20% at 35% 45%, rgba(232,146,47,0.03) 0%, transparent 100%);
  filter: blur(50px);
  animation: stormDrift 12s ease-in-out infinite 2s;
}

@keyframes corePulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  30% { opacity: 1; transform: translateX(-50%) scale(1.2); }
  70% { opacity: 0.8; transform: translateX(-50%) scale(0.95); }
}

@keyframes stormDrift {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1) scaleY(1); }
  25% { opacity: 1; transform: translateX(-48%) scaleX(1.05) scaleY(0.97); }
  50% { opacity: 0.9; transform: translateX(-52%) scaleX(0.98) scaleY(1.03); }
  75% { opacity: 1; transform: translateX(-50%) scaleX(1.03) scaleY(0.99); }
}

/* --- Glow Orb (ambient haze) --- */
.hero__glow {
  position: absolute;
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background:
    radial-gradient(ellipse 50% 45% at 50% 40%, rgba(245,194,66,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 35% 50% at 45% 35%, rgba(184,134,11,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 40% 35% at 55% 45%, rgba(205,127,50,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 10s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

/* --- Central Light Beam --- */
.hero__glow-beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 55%;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.95),
    rgba(255,240,200,0.7) 10%,
    rgba(245,194,66,0.5) 25%,
    rgba(184,134,11,0.2) 50%,
    rgba(205,127,50,0.05) 75%,
    transparent 100%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 1;
  animation: beamFlicker 8s ease-in-out infinite;
}

.hero__glow-beam::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(245,194,66,0.4), transparent);
}

/* Wide soft glow around the beam */
.hero__glow-beam--wide {
  width: 40px;
  height: 50%;
  background: linear-gradient(to bottom,
    rgba(245,194,66,0.2) 0%,
    rgba(184,134,11,0.08) 30%,
    rgba(205,127,50,0.03) 60%,
    transparent 100%);
  filter: blur(20px);
  z-index: 0;
  animation: beamBreath 10s ease-in-out infinite;
}

.hero__glow-beam--wide::after {
  display: none;
}

@keyframes beamFlicker {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  20% { opacity: 0.9; transform: translateX(-50%) scaleX(1.5); }
  40% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  60% { opacity: 1; transform: translateX(-50%) scaleX(2); }
  80% { opacity: 0.8; transform: translateX(-50%) scaleX(1.2); }
}

@keyframes beamBreath {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scaleX(1.4); }
}

/* --- Floating Particles --- */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  8% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: translateY(-700px) scale(0);
  }
}

/* --- Gradient Overlay (depth at bottom) --- */
.hero__gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #F5C242 50%, #CD7F32 75%, #ffffff 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 12s ease-in-out infinite;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.15em;
}

@keyframes textShimmer {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 1200px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  max-width: 820px;
  margin: 0 auto 1.4rem;
}

.hero__cta {
  margin-bottom: 0;
}

/* ============================================
   SHOWCASE BENTO (Landing Page Product Grid)
   ============================================ */
.showcase-bento {
  position: relative;
  padding: 40px 0 80px;
  overflow: hidden;
  background: var(--bg);
}

.showcase-bento__particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.showcase-bento__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* 2-column on tablets */
@media (min-width: 640px) {
  .showcase-bento__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 3-column top row, 2-column bottom row on desktop */
@media (min-width: 960px) {
  .showcase-bento__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .showcase-bento__card--1 { grid-column: 1 / 2; grid-row: 1; }
  .showcase-bento__card--2 { grid-column: 2 / 3; grid-row: 1; }
  .showcase-bento__card--3 { grid-column: 3 / 4; grid-row: 1; }

  /* Bottom row: 2 cards spanning 1.5 cols each */
  .showcase-bento__card--4 {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .showcase-bento__card--5 {
    grid-column: 2 / 4;
    grid-row: 2;
  }
}

.showcase-bento__card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 1.45;
  background: var(--bg-card);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.showcase-bento__card:hover {
  border-color: rgba(184,134,11,0.35);
  box-shadow: 0 8px 60px rgba(184,134,11,0.12), 0 0 80px rgba(184,134,11,0.06);
  transform: translateY(-6px);
}

.showcase-bento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.showcase-bento__card:hover .showcase-bento__img {
  opacity: 0.75;
  transform: scale(1.04);
}

.showcase-bento__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.6) 60%, transparent 100%);
  z-index: 2;
}

.showcase-bento__overlay h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.showcase-bento__overlay p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 380px;
}

/* On smaller cards (row 1), tighten padding */
@media (min-width: 960px) {
  .showcase-bento__card--4,
  .showcase-bento__card--5 {
    aspect-ratio: 2.2;
  }
}

/* ============================================
   PRODUCT SHOWCASE (Mock UI)
   ============================================ */
.showcase {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 20px;
  z-index: 1;
}

.showcase::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at 50% 20%,
    rgba(184,134,11,0.08) 0%,
    rgba(205,127,50,0.04) 30%,
    transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.showcase__window {
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.5),
    0 0 80px rgba(184,134,11,0.08),
    0 0 160px rgba(184,134,11,0.04),
    inset 0 1px 0 rgba(245,194,66,0.06);
}

.showcase__main {
  width: 100%;
}

.showcase__inbox {
  position: absolute;
  right: -10px;
  bottom: -30px;
  width: 320px;
  display: none;
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .showcase__inbox {
    display: block;
  }
}

/* --- App Mock (Main Dashboard) --- */
.app-mock {
  display: flex;
  min-height: 380px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.app-mock__sidebar {
  display: none;
  width: 190px;
  flex-shrink: 0;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .app-mock__sidebar {
    display: flex;
  }
}

.app-mock__sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.mock-avatar--brand {
  background: linear-gradient(135deg, var(--accent), var(--orange));
}

.mock-avatar--red    { background: var(--red); }
.mock-avatar--amber  { background: var(--amber); }
.mock-avatar--green  { background: var(--green); }
.mock-avatar--gold   { background: var(--accent); }
.mock-avatar--copper { background: var(--gold-copper); }

/* --- Bento Phone Mock Form --- */
.bento__phone-screen--padded { padding: 8px; }
.bento__phone-content-centered { padding: 12px; text-align: center; }

.bento__report-wrapper {
  width: 100%;
  text-align: left;
}

.bento__report-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.bento__report-field {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 8px;
  margin-bottom: 4px;
  font-size: 0.55rem;
  color: var(--text-muted);
}

.bento__report-action {
  background: rgba(239,68,68,0.2);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.55rem;
  color: var(--red);
  text-align: center;
  font-weight: 600;
}

.bento__gauge-container {
  position: relative;
  width: 140px;
  height: 140px;
}

.app-mock__sidebar-search {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.app-mock__sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-mock__sidebar-nav li {
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  cursor: default;
  transition: background 0.15s;
}

.app-mock__sidebar-nav li.active {
  background: rgba(184,134,11,0.12);
  color: var(--accent-light);
}

.app-mock__sidebar-section {
  margin-top: 8px;
}

.app-mock__sidebar-section small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding-left: 10px;
}

.app-mock__sidebar-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-mock__sidebar-section li {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

/* Main content area */
.app-mock__content {
  flex: 1;
  padding: 14px 16px;
  overflow: hidden;
}

.app-mock__header {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.app-mock__header strong {
  color: var(--text-heading);
}

.app-mock__toolbar {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.tab {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
  padding-bottom: 2px;
}

.tab.active {
  color: var(--text-heading);
  border-bottom: 2px solid var(--accent);
}

.app-mock__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .app-mock__columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .app-mock__columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.app-mock__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.col-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot--green { background: var(--green); }
.dot--amber { background: var(--amber); }
.dot--blue  { background: var(--copper); }

.badge {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 600;
}

.mock-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-card strong {
  color: var(--text-heading);
  font-size: 0.73rem;
}

.mock-card p {
  font-size: 0.66rem;
  color: var(--text-muted);
}

.mock-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.tag {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.tag--green  { background: rgba(16,185,129,0.15); color: var(--green); }
.tag--blue   { background: rgba(59,130,246,0.15); color: var(--copper); }
.tag--amber  { background: rgba(245,158,11,0.15); color: var(--amber); }
.tag--red    { background: rgba(239,68,68,0.15);  color: var(--red); }
.tag--purple { background: rgba(139,92,246,0.15); color: var(--gold-dark); }

.mock-meta {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 2px;
}

/* --- Inbox / Activity Feed Mock --- */
.inbox-mock {
  font-size: 0.75rem;
}

.inbox-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 10px;
  color: var(--text-heading);
}

.inbox-close {
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: default;
}

.inbox-mock__tabs {
  display: flex;
  gap: 12px;
  padding: 0 16px 10px;
  border-bottom: 1px solid var(--border);
}

.inbox-mock__tabs .tab {
  font-size: 0.7rem;
}

.notif-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.55rem;
  padding: 1px 5px;
  border-radius: 8px;
  margin-left: 2px;
}

.inbox-mock__list {
  list-style: none;
  max-height: 300px;
  overflow: hidden;
}

.inbox-mock__list li {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.inbox-mock__list li:last-child {
  border-bottom: none;
}

.inbox-mock__list .mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.inbox-mock__list strong {
  color: var(--text-heading);
  font-size: 0.72rem;
}

.inbox-mock__list em {
  color: var(--accent-light);
  font-style: normal;
}

.inbox-mock__list small {
  color: var(--text-muted);
  font-size: 0.62rem;
}

/* ============================================
   BENTO SHOWCASE GRID
   ============================================ */
.bento {
  padding: 20px 0 80px;
  position: relative;
}

.bento__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .bento__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bento__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.bento__card:hover {
  border-color: rgba(184,134,11,0.25);
  box-shadow: 0 0 40px rgba(184,134,11,0.08);
}

/* Card heights */
.bento__card--tall {
  min-height: 340px;
}

@media (min-width: 640px) {
  .bento__card--tall {
    min-height: 420px;
  }
}

/* Wide card spans full row on mobile, half on desktop handled by grid */
.bento__card--wide {
  min-height: 320px;
}

/* Glow card (notifications) */
.bento__card--glow {
  min-height: 300px;
  background: radial-gradient(ellipse at center 40%, rgba(184,134,11,0.08) 0%, var(--bg-card) 70%);
}

/* Card visual area */
.bento__card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 8px;
  position: relative;
  overflow: hidden;
}

.bento__card-visual--center {
  align-items: center;
  justify-content: center;
}

/* Card text */
.bento__card-text {
  padding: 16px 20px 20px;
}

.bento__card-text h3 {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento__card-text h3 strong {
  color: var(--text-heading);
  font-weight: 700;
}

/* --- QR Phone Mock --- */
.bento__qr-mock {
  display: flex;
  justify-content: center;
}

.bento__phone {
  width: 140px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px 10px;
  position: relative;
}

.bento__phone-notch {
  width: 50px;
  height: 6px;
  background: var(--bg);
  border-radius: 4px;
  margin: 0 auto 12px;
}

.bento__phone-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 140px;
}

.bento__scan-line {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 12px var(--orange);
  animation: scanLine 4s ease-in-out infinite;
}

@keyframes scanLine {
  0%, 100% { top: 10%; opacity: 0.6; }
  50% { top: 85%; opacity: 1; }
}

/* --- Dashboard Mock --- */
.bento__dashboard-mock {
  width: 100%;
  max-width: 300px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento__dash-header {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.bento__dash-tab {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
}

.bento__dash-tab.active {
  color: var(--text-heading);
  font-weight: 700;
}

.bento__dash-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.bento__dash-row:last-child {
  border-bottom: none;
}

.bento__dash-row .tag {
  flex-shrink: 0;
  margin-top: 2px;
}

.bento__dash-row strong {
  display: block;
  font-size: 0.73rem;
  color: var(--text-heading);
}

.bento__dash-row small {
  font-size: 0.62rem;
  color: var(--text-muted);
}

/* --- Timeline Mock --- */
.bento__timeline-mock {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 460px;
  position: relative;
}

.bento__timeline-event {
  display: flex;
  gap: 12px;
  flex: 1;
}

.bento__timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px rgba(184,134,11,0.4);
}

.bento__timeline-content {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bento__timeline-content strong {
  font-size: 0.78rem;
  color: var(--text-heading);
}

.bento__timeline-content small {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.bento__timeline-content p {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin: 4px 0;
}

.bento__timeline-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  width: fit-content;
  margin: 4px 0;
  cursor: pointer;
}

.bento__timeline-meta {
  display: flex;
  gap: 12px;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.bento__timeline-rsvp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.bento__timeline-rsvp .tag {
  cursor: pointer;
}

.bento__timeline-card-float {
  display: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  max-width: 180px;
  align-self: flex-start;
  margin-top: 20px;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .bento__timeline-card-float {
    display: block;
  }
}

.bento__timeline-card-float strong {
  font-size: 0.72rem;
  color: var(--text-heading);
  display: block;
}

.bento__timeline-card-float small {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.bento__timeline-card-float p {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Bell Notification with Radiating Rings --- */
.bento__bell-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
}

.bento__bell-icon {
  position: relative;
  z-index: 2;
  animation: bellSwing 5s ease-in-out infinite;
}

@keyframes bellSwing {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(8deg); }
  30% { transform: rotate(-6deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-2deg); }
  75% { transform: rotate(0deg); }
}

.bento__bell-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(184,134,11,0.3);
  animation: bellRadiate 5s ease-out infinite;
}

.bento__bell-ring--1 {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.bento__bell-ring--2 {
  width: 120px;
  height: 120px;
  animation-delay: 0.7s;
}

.bento__bell-ring--3 {
  width: 160px;
  height: 160px;
  animation-delay: 1.4s;
}

@keyframes bellRadiate {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.8;
    border-color: rgba(184,134,11,0.5);
  }
  50% {
    opacity: 0.3;
    border-color: rgba(205,127,50,0.3);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
    border-color: rgba(205,127,50,0.05);
  }
}

/* Ambient glow behind bell */
.bento__card--glow .bento__card-visual::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184,134,11,0.2) 0%, rgba(205,127,50,0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 80px 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: rgba(184,134,11,0.3);
  box-shadow: 0 0 30px rgba(184,134,11,0.08);
  transform: translateY(-4px);
}

.feature-card__icon {
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

.step {
  text-align: center;
  max-width: 280px;
  padding: 20px;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--accent), var(--gold-copper), var(--gold-bright));
  background-size: 300% 100%;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(184,134,11,0.35);
  animation: shimmer 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.step__number::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.25) 55%, transparent 65%);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@media (min-width: 768px) {
  .step__connector {
    width: 60px;
    height: 2px;
    margin-top: 47px;
    background: linear-gradient(to right, var(--accent), transparent);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
}

.cta-section__inner {
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-section__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 480px) {
  .cta-section__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 140px 0 40px;
  text-align: center;
}

.contact-section {
  padding: 0 0 80px;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-section__inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

/* --- Contact Form --- */
.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.contact-form__subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

.contact-form__field .required {
  color: var(--accent-light);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-heading);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__char-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: -4px;
}

.contact-form__submit {
  margin-top: 8px;
  width: 100%;
}

@media (min-width: 480px) {
  .contact-form__submit {
    width: auto;
  }
}

.contact-form__status {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.4em;
}

.contact-form__status--success {
  color: #10B981;
}

.contact-form__status--error {
  color: #EF4444;
}

/* --- Contact Info Sidebar --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-info__card:hover {
  border-color: rgba(184,134,11,0.3);
  box-shadow: 0 0 30px rgba(184,134,11,0.08);
}

.contact-info__icon {
  margin-bottom: 12px;
}

.contact-info__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.contact-info__card a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.contact-info__card a:hover {
  color: var(--text-heading);
}

.contact-info__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 0 16px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: 1.5fr 3fr;
    align-items: start;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__brand .navbar__logo {
  flex-shrink: 0;
}

.footer__brand p {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer__brand .footer__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--text-heading);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* ============================================
   PRODUCT BADGE (product pages)
   ============================================ */
.product-badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--accent-light);
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 50px;
  padding: 10px 32px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

/* ============================================
   HERO — LANDING VARIANT (index.html)
   ============================================ */
.hero--landing {
  min-height: 0 !important;
  padding: 120px 0 40px;
}

.hero--product {
  min-height: auto;
  padding-bottom: 60px;
}

.hero--landing .hero__inner {
  padding-bottom: 0;
}

.hero--landing .showcase {
  display: none;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 0.5rem;
}

@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* Trust Strip */
.hero__trust-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

.hero__trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero__trust-badge {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.hero__trust-badge:hover {
  opacity: 1;
}

/* ============================================
   VIDEO REEL SECTION
   ============================================ */
.video-reel {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-reel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-reel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 15%),
    linear-gradient(0deg, var(--bg) 0%, transparent 15%),
    rgba(10, 10, 15, 0.45);
  pointer-events: none;
}

.video-reel__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.video-reel__slide {
  position: absolute;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.video-reel__slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-reel__heading {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.video-reel__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .video-reel {
    height: 50vh;
    min-height: 300px;
  }

  .video-reel__slide {
    padding: 0 16px;
  }
}

/* ============================================
   DEMO VIDEO EMBED
   ============================================ */
.demo-video {
  padding: 2rem 0 5rem;
  margin-top: 0;
  position: relative;
}

.demo-video__wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 1.5rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184,134,11,0.12);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.5),
    0 0 80px rgba(184,134,11,0.08),
    0 0 160px rgba(184,134,11,0.04),
    inset 0 1px 0 rgba(245,194,66,0.06);
}

.demo-video__wrapper::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(184,134,11,0.06) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.demo-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Cursor-following glow --- */
.glow-track {
  position: relative;
  display: block;
  text-align: center;
  overflow: visible;
}

.glow-track__light {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,194,66,0.5) 0%, rgba(205,127,50,0.2) 40%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  filter: blur(12px);
  will-change: left, top;
}

.glow-track:hover .glow-track__light {
  opacity: 1;
}

/* ============================================
   ABOUT / STATS SECTION
   ============================================ */
.about {
  padding: 80px 0;
  position: relative;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .about__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about__stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.about__stat:hover {
  border-color: rgba(184,134,11,0.3);
  box-shadow: 0 0 30px rgba(184,134,11,0.08);
  transform: translateY(-4px);
}

.about__stat-number {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #F5C242 50%, #CD7F32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}

.about__stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================
   ECO-SYSTEM SECTION
   ============================================ */
.ecosystem {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .ecosystem__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .ecosystem__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .ecosystem__grid .ecosystem__card:nth-child(1) {
    grid-column: 1 / 3;
  }
  .ecosystem__grid .ecosystem__card:nth-child(2) {
    grid-column: 3 / 5;
  }
  .ecosystem__grid .ecosystem__card:nth-child(3) {
    grid-column: 5 / 7;
  }
  .ecosystem__grid .ecosystem__card:nth-child(4) {
    grid-column: 2 / 4;
  }
  .ecosystem__grid .ecosystem__card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

.ecosystem__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.ecosystem__card:hover {
  border-color: rgba(184,134,11,0.35);
  box-shadow: 0 4px 40px rgba(184,134,11,0.1);
  transform: translateY(-4px);
}

.ecosystem__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem__card-content {
  flex: 1;
}

.ecosystem__card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.ecosystem__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  background: rgba(184,134,11,0.1);
  border-radius: 50px;
  padding: 2px 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ecosystem__card-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ecosystem__card-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.ecosystem__card:hover .ecosystem__card-arrow {
  color: var(--accent-light);
  transform: translateX(4px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   SCROLLBAR (optional nice touch)
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Legal Pages (Privacy, Cookies) --- */
.legal-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.legal-hero__date {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.legal-content {
  padding: 40px 0 100px;
}

.legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 3rem;
}

.legal-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 1.25rem 0 0.5rem;
}

.legal-block p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.legal-block ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-block a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-block a:hover {
  color: var(--gold-bright);
}

.legal-table-wrapper {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
}

.legal-table td {
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-table tbody tr:hover {
  background: rgba(184, 134, 11, 0.03);
}

/* --- Services Page --- */
.services-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.services-section {
  padding: 60px 0 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(184, 134, 11, 0.3);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(184, 134, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-card ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Blog Page --- */
.blog-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.blog-section {
  padding: 40px 0 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(184, 134, 11, 0.3);
  transform: translateY(-4px);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__image svg {
  opacity: 0.3;
}

a.blog-card {
  text-decoration: none;
  color: inherit;
}

.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-light);
  background: rgba(184, 134, 11, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card__excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: color 0.2s, gap 0.2s;
}

.blog-card:hover .blog-card__link {
  color: var(--gold-bright);
  gap: 0.75rem;
}

.blog-empty {
  text-align: center;
  padding: 80px 20px;
}

.blog-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-empty h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.blog-empty p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Blog Article Page */
.blog-article-hero {
  padding: 140px 0 40px;
}

.blog-article-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.blog-article-intro {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.blog-article-image {
  padding: 0 0 3rem;
}

.blog-article-image img {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.blog-article-body {
  padding: 0 0 4rem;
}

.blog-article-content {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.blog-article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 2.5rem 0 1rem;
}

.blog-article-content p {
  margin-bottom: 1.25rem;
}

.blog-article-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-article-content a:hover {
  color: var(--gold-bright);
}

.blog-article-content blockquote {
  border-left: 3px solid var(--accent-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(184, 134, 11, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  line-height: 2;
}

.blog-article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.blog-article-content ul li {
  margin-bottom: 0.5rem;
}

.blog-article-content strong {
  color: var(--text-heading);
}

.blog-article-back {
  padding: 0 0 2rem;
}
