/* AUXA — Modern AI Technology Theme */

:root {
  --bg: #050816;
  --blue: #00CFFF;
  --purple: #8B5CF6;
  --white: #FFFFFF;
  --gray: #A8B3CF;
  --gray-dim: rgba(168, 179, 207, 0.5);
  --glass: rgba(8, 12, 28, 0.65);
  --border: rgba(0, 207, 255, 0.2);
  --glow-blue: 0 0 40px rgba(0, 207, 255, 0.35);
  --glow-purple: 0 0 50px rgba(139, 92, 246, 0.3);
  --grad: linear-gradient(135deg, var(--blue), var(--purple));
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 88px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* Background */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -2;
}

.bg-glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -5%;
  background: rgba(0, 207, 255, 0.12);
}

.bg-glow--2 {
  width: 450px;
  height: 450px;
  bottom: 10%;
  right: -5%;
  background: rgba(139, 92, 246, 0.15);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 207, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 207, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 70%);
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--glow-blue);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-blue), var(--glow-purple);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--white);
  box-shadow: var(--glow-blue);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
}

.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--glow-blue);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.header.is-scrolled .header__inner {
  border-color: rgba(139, 92, 246, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(20px, 3vw, 36px);
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.25s;
}

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

.nav__ai {
  color: var(--purple) !important;
  font-weight: 600;
}

.nav__ai:hover {
  color: var(--blue) !important;
  text-shadow: 0 0 20px rgba(0, 207, 255, 0.5);
}

.nav__cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.header__inner .btn--sm { margin-left: auto; flex-shrink: 0; }

body.nav-open { overflow: hidden; }

.nav-overlay {
  display: none;
}

.btn {
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

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

.badge {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(0, 207, 255, 0.35);
  border-radius: 100px;
  background: rgba(0, 207, 255, 0.08);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero__title span { display: block; }

.hero__title-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  max-width: 480px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 12px;
}

.hero__desc2 {
  font-size: 0.98rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* AI Visual */
.ai-visual {
  position: relative;
  width: min(400px, 85vw);
  height: min(400px, 85vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visual__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 207, 255, 0.2);
  transform: translate(-50%, -50%);
  animation: spin 28s linear infinite;
}

.ai-visual__ring--1 { width: 100%; height: 100%; }
.ai-visual__ring--2 {
  width: 78%;
  height: 78%;
  border-color: rgba(139, 92, 246, 0.35);
  animation-duration: 40s;
  animation-direction: reverse;
}
.ai-visual__ring--3 {
  width: 58%;
  height: 58%;
  border-color: rgba(0, 207, 255, 0.15);
  animation-duration: 20s;
}

.ai-visual__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 207, 255, 0.25), rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite;
}

.ai-visual__core {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 12, 28, 0.8);
  border: 1px solid rgba(0, 207, 255, 0.4);
  box-shadow: var(--glow-blue), var(--glow-purple);
  animation: float 6s ease-in-out infinite;
}

.ai-visual__img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0, 207, 255, 0.5));
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--dim {
  background: rgba(0, 207, 255, 0.02);
}

.section--about {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.04), transparent);
}

.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--glow-blue), var(--glow-purple);
}

.glass-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
  background: rgba(0, 207, 255, 0.1);
  border: 1px solid rgba(0, 207, 255, 0.25);
  border-radius: 12px;
}

.glass-card__icon svg { width: 24px; height: 24px; }

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.glass-card p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about__copy p {
  margin-top: 16px;
  color: var(--gray);
  font-size: 1rem;
  max-width: 440px;
}

.about__subtitle {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  padding: 22px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--glow-purple);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--gray);
}

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

.service-card {
  display: block;
  padding: 36px 28px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  box-shadow: var(--glow-blue), var(--glow-purple);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 14px;
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

/* Projects */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-pill {
  padding: 28px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.project-pill:hover { border-color: var(--blue); }

.project-pill h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.project-pill p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* CTA */
.cta {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(0, 207, 255, 0.12), transparent 60%),
    radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1), transparent 70%);
}

.cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta__inner > p:not(.cta__note) {
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta__inner .btn--lg {
  display: inline-flex;
  margin: 0 auto;
}

/* Tokenomics */
.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.token-stat {
  text-align: center;
  padding: 36px 20px;
}

.token-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.token-stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.token-stat p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.roadmap__phase {
  padding: 32px 28px;
  position: relative;
}

.roadmap__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0, 207, 255, 0.25);
  margin-bottom: 12px;
}

.roadmap__phase h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 8px;
}

.roadmap__phase p {
  font-size: 0.92rem;
  color: var(--gray);
}

/* Community */
.community__lead {
  margin-top: 12px;
  color: var(--gray);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.community__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.social-btn {
  padding: 18px 36px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.35s var(--ease);
}

.social-btn:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--glow-blue);
}

.cta__note {
  display: block;
  max-width: 420px;
  margin: 28px auto 0;
  padding: 12px 20px 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray-dim);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--gray-dim);
  margin-top: 6px;
}

/* Footer */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
}

.footer__logo {
  width: 36px;
  border-radius: 8px;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--blue); }

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--gray);
  transition: color 0.2s, transform 0.2s;
}

.footer__social a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.footer__copy {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 207, 255, 0.1);
}

.footer__copy p {
  font-size: 0.8rem;
  color: var(--gray-dim);
}

/* Scroll reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Responsive — tablet */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__desc { max-width: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .token-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: 1fr; }
  .ai-visual__core { width: min(280px, 70vw); height: min(280px, 70vw); }
  .ai-visual__img { width: min(220px, 58vw); height: min(220px, 58vw); }
}

/* Responsive — mobile */
@media (max-width: 768px) {
  :root { --header-h: 76px; }

  .container { padding: 0 16px; }

  .header {
    padding: calc(10px + var(--safe-top)) 12px 10px;
  }

  .header__inner {
    padding: 10px 14px;
    gap: 10px;
    border-radius: 14px;
  }

  .brand__name { font-size: 1rem; }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 8px + var(--safe-top));
    left: max(12px, var(--safe-left));
    right: max(12px, var(--safe-right));
    bottom: auto;
    max-height: calc(100dvh - var(--header-h) - 24px);
    overflow-y: auto;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(5, 8, 22, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--glow-blue);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
    z-index: 999;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .nav a:hover,
  .nav a:active {
    background: rgba(0, 207, 255, 0.08);
  }

  .nav__cta-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
    justify-content: center;
  }

  .nav-toggle { display: flex; }
  .header__inner .btn--sm { display: none; }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 24px + var(--safe-top)) 0 48px;
  }

  .hero__grid { gap: 28px; }

  .hero__title { font-size: clamp(1.85rem, 8vw, 2.75rem); }

  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .ai-visual {
    width: min(300px, 88vw);
    height: min(300px, 88vw);
  }

  .ai-visual__core {
    width: min(220px, 65vw);
    height: min(220px, 65vw);
  }

  .ai-visual__img {
    width: min(180px, 55vw);
    height: min(180px, 55vw);
  }

  .section { padding: 64px 0; }

  .section-head { margin-bottom: 32px; }

  .heading { font-size: clamp(1.5rem, 6vw, 2rem); }

  .features,
  .token-grid { grid-template-columns: 1fr; gap: 14px; }

  .glass-card { padding: 24px 20px; }

  .glass-card:hover { transform: none; }

  .about__cards { gap: 12px; }

  .token-stat__num { font-size: 2rem; }

  .community__lead {
    padding: 0 8px;
    font-size: 0.95rem;
  }

  .community__social {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 4px;
  }

  .social-btn {
    width: 100%;
    padding: 16px 20px;
  }

  .cta {
    padding: 72px 0;
  }

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

  .cta__note {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.75rem;
  }

  .footer { padding: 40px 0 calc(20px + var(--safe-bottom)); }

  .footer__grid {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .footer__social { justify-content: center; }

  .chat-fab {
    bottom: calc(20px + var(--safe-bottom));
    right: calc(16px + var(--safe-right));
    padding: 14px 18px 14px 14px;
  }
}

/* Responsive — small phones */
@media (max-width: 480px) {
  .brand__name { display: none; }

  .hero__title { font-size: clamp(1.65rem, 9vw, 2.25rem); }

  .hero__tagline,
  .badge { font-size: 0.65rem; }

  .btn--lg { padding: 14px 24px; font-size: 0.95rem; }

  .roadmap__num { font-size: 1.5rem; }

  .roadmap__phase { padding: 24px 20px; }

  .chat-fab {
    padding: 16px;
    border-radius: 50%;
    min-width: 52px;
    min-height: 52px;
    justify-content: center;
  }

  .chat-fab__label { display: none; }
}

/* Floating AI button */
.chat-fab {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  right: calc(24px + var(--safe-right));
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: var(--grad);
  color: var(--white);
  border-radius: 100px;
  box-shadow: var(--glow-blue), var(--glow-purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.chat-fab:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 207, 255, 0.5), 0 0 60px rgba(139, 92, 246, 0.4);
}

.chat-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 1px solid rgba(0, 207, 255, 0.5);
  animation: fab-pulse 2s ease-out infinite;
  pointer-events: none;
}

.chat-fab__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.chat-fab__label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 0; }
}

@media (hover: none) {
  .glass-card:hover,
  .social-btn:hover,
  .btn--primary:hover,
  .chat-fab:hover {
    transform: none;
  }
}

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