/* ================================================================
   ELEVARA AGENCY — Premium Dark Theme
   Inspired by anchormedia.io
   ================================================================ */

/* ----------------------------------------------------------------
   0. CUSTOM PROPERTIES & @property
   ---------------------------------------------------------------- */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* Backgrounds */
  --bg-base: #080808;
  --bg-surface: #111111;
  --bg-elevated: #1a1a1a;

  /* Accent */
  --accent: #00e5e8;
  --accent-dark: #00b4d8;
  --accent-glow: rgba(0, 229, 232, 0.15);
  --accent-subtle: rgba(0, 229, 232, 0.08);

  /* CTA */
  --cta: #00e5e8;
  --cta-hover: #33ebec;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Layout */
  --section-padding: 120px;
  --max-width: 1200px;
  --card-radius: 16px;
  --btn-radius: 12px;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ----------------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

ul {
  list-style: none;
}

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

/* ----------------------------------------------------------------
   2. GLOBAL OVERLAYS
   ---------------------------------------------------------------- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('noise-texture.png');
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ----------------------------------------------------------------
   3. FLOATING ORBS
   ---------------------------------------------------------------- */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-dark);
  bottom: -150px;
  left: -150px;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ----------------------------------------------------------------
   4. CUSTOM CURSOR
   ---------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-ring.expand {
  width: 80px;
  height: 80px;
  background: rgba(0, 229, 232, 0.1);
  border-color: var(--accent);
}

.cursor-ring.expand::after {
  content: 'View';
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto;
  }
  button {
    cursor: pointer;
  }
}

/* ----------------------------------------------------------------
   5. PRELOADER
   ---------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.preloader-counter {
  position: absolute;
  bottom: 48px;
  right: 48px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

.preloader-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

/* ----------------------------------------------------------------
   6. TICKER TAPE
   ---------------------------------------------------------------- */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg-base);
}

.ticker {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker.reverse {
  animation-direction: reverse;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: transform 0.4s ease;
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg-base);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--btn-radius);
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

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

/* ----------------------------------------------------------------
   8. SECTION BASE
   ---------------------------------------------------------------- */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-headline .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0;
  border: none;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .section-headline {
    font-size: 32px;
  }
}

/* ----------------------------------------------------------------
   9. GLASS CARD
   ---------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(0, 229, 232, 0.25);
  box-shadow: 0 0 30px rgba(0, 229, 232, 0.06);
}

/* ----------------------------------------------------------------
   10. BUTTONS
   ---------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg-base);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--btn-radius);
  border: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 232, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--text-primary);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   11. HERO
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.7) 0%,
    rgba(8, 8, 8, 0.5) 40%,
    rgba(8, 8, 8, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '\u25C6';
  font-size: 8px;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-headline .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .char {
  display: inline-block;
  opacity: 0;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
@keyframes hero-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: hero-bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 38px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
   12. STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  padding: 60px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid .stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stats-grid .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 36px;
  }
  .stats-grid .stat-item:nth-child(2)::after {
    display: none;
  }
}

/* ----------------------------------------------------------------
   13. PORTFOLIO
   ---------------------------------------------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: none;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08) translateX(2%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 8, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}

.portfolio-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.portfolio-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--bg-base);
}

.portfolio-card:hover .portfolio-arrow {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   14. SERVICES
   ---------------------------------------------------------------- */

/* Rotating gradient border animation */
@keyframes gradient-rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}

.services-featured {
  margin-bottom: 24px;
}

.service-featured-card {
  position: relative;
  padding: 48px;
  border-radius: var(--card-radius);
  background: var(--bg-surface);
  overflow: hidden;
}

.service-featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 1px;
  background: conic-gradient(from var(--gradient-angle), var(--accent), transparent 40%, transparent 60%, var(--accent-dark), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradient-rotate 4s linear infinite;
}

.service-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-watermark {
  position: absolute;
  top: -20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 22px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

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

.service-card {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 232, 0.2);
  box-shadow: 0 12px 40px rgba(0, 229, 232, 0.06);
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.service-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '\2713';
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .service-featured-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-featured-card {
    padding: 32px;
  }
  .service-watermark {
    font-size: 100px;
  }
}

/* ----------------------------------------------------------------
   15. AI RECEPTIONIST DEMO
   ---------------------------------------------------------------- */
.demo-container {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 48px;
}

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

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

.demo-image {
  border-radius: var(--card-radius);
  box-shadow: 0 8px 40px rgba(0, 229, 232, 0.12);
  animation: float-breathe 6s ease-in-out infinite;
}

.demo-phone {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .demo-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .demo-container {
    padding: 32px;
  }
  .demo-phone {
    font-size: 24px;
  }
}

/* ----------------------------------------------------------------
   16. LIVE RESULTS
   ---------------------------------------------------------------- */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22c55e;
  margin-bottom: 16px;
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: live-pulse 2s ease-in-out infinite;
}

.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.live-stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.live-stat-card:hover {
  border-color: rgba(0, 229, 232, 0.2);
}

.live-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.live-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

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

/* ----------------------------------------------------------------
   17. BENTO / FEATURES GRID
   ---------------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(0, 229, 232, 0.2);
  transform: translateY(-2px);
}

.bento-card.large {
  grid-column: span 2;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 20px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.large {
    grid-column: span 1;
  }
}

/* ----------------------------------------------------------------
   18. WHY ELEVARA
   ---------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.why-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.3;
}

.why-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-item-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.metric-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 24px;
  margin-bottom: 16px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  width: 0;
  transition: width 1.5s ease;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ----------------------------------------------------------------
   19. PROCESS TIMELINE
   ---------------------------------------------------------------- */
.process-timeline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  gap: 0;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.process-line-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 1s ease;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.process-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.process-step.active .process-node {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-base);
  box-shadow: 0 0 20px rgba(0, 229, 232, 0.3);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 40px;
  }
  .process-line {
    top: 0;
    bottom: 0;
    left: 18px;
    right: auto;
    width: 2px;
    height: 100%;
  }
  .process-step {
    text-align: left;
    padding: 0;
  }
  .process-node {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin: 0;
  }
}

/* ----------------------------------------------------------------
   20. TOOLS LOGO BAR
   ---------------------------------------------------------------- */
.tools-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.tool-logo {
  height: 32px;
  width: auto;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.tool-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.perf-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  width: fit-content;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  font-size: 13px;
  color: var(--text-secondary);
}

.perf-badge .lightning {
  color: var(--accent);
}

/* ----------------------------------------------------------------
   21. PRICING
   ---------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.pricing-card.popular {
  transform: scale(1.03);
  overflow: hidden;
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 1px;
  background: conic-gradient(from var(--gradient-angle), var(--accent), transparent 40%, transparent 60%, var(--accent-dark), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradient-rotate 4s linear infinite;
}

.pricing-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-addon {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 12px;
  text-align: center;
}

.pricing-addon.included {
  background: var(--accent);
  color: var(--bg-base);
  border-color: var(--accent);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   22. LEAD MAGNET
   ---------------------------------------------------------------- */
.lead-magnet {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 60px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.lead-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 24px auto 0;
}

.lead-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s ease;
}

.lead-input::placeholder {
  color: var(--text-muted);
}

.lead-input:focus {
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .lead-magnet {
    padding: 40px 24px;
  }
  .lead-form {
    flex-direction: column;
  }
}

/* ----------------------------------------------------------------
   23. FAQ
   ---------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-chevron {
  color: var(--accent);
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-left: 2px solid var(--accent);
  margin-left: 0;
  padding-left: 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   24. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 360px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 32px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 300px;
  }
}

/* ----------------------------------------------------------------
   25. TRUST / INDUSTRIES MARQUEE
   ---------------------------------------------------------------- */
@keyframes trust-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--accent-subtle);
  border-bottom: 1px solid var(--accent-subtle);
  overflow: hidden;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: trust-scroll 30s linear infinite;
  width: max-content;
}

.trust-item {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   26. LOCAL / MAP
   ---------------------------------------------------------------- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.local-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.local-city {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.local-city::before {
  content: '\1F4CD';
  font-size: 14px;
}

.florida-map {
  max-width: 300px;
  margin: 0 auto;
  opacity: 0.3;
  filter: drop-shadow(0 0 20px var(--accent));
  position: relative;
}

@keyframes map-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.map-pin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: map-pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .local-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ----------------------------------------------------------------
   27. FOUNDER
   ---------------------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.founder-photo {
  border-radius: var(--card-radius);
  box-shadow: 0 8px 40px rgba(0, 229, 232, 0.1);
  transition: transform 0.5s ease;
}

.founder-photo:hover {
  transform: perspective(800px) rotateY(-5deg) rotateX(3deg);
}

.founder-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.founder-sig {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ----------------------------------------------------------------
   28. CTA SECTION
   ---------------------------------------------------------------- */
.cta-section {
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.cta-ghost-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: var(--text-primary);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.cta-phone:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-headline {
    font-size: 36px;
  }
  .cta-ghost-text {
    font-size: 100px;
  }
  .cta-phone {
    font-size: 22px;
  }
}

/* ----------------------------------------------------------------
   29. CONTACT
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-card {
    padding: 28px;
  }
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ----------------------------------------------------------------
   31. UTILITIES
   ---------------------------------------------------------------- */

/* Reveal animations */
.reveal-up {
  /* Initial state set by GSAP — keep visible as fallback if JS fails */
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  /* Initial state set by GSAP — keep visible as fallback if JS fails */
}

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.4s; }

/* Section line */
.section-line {
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 1s ease;
}

.section-line.revealed {
  width: 100%;
}

/* Badges */
.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--glass-bg);
}

/* Selection */
::selection {
  background: rgba(0, 229, 232, 0.2);
  color: var(--text-primary);
}

/* Smooth scroll offset for fixed nav */
:target {
  scroll-margin-top: 88px;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up,
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}
