/* ============================================================
   AUXI SUITE — Global Stylesheet
   auxisuite.app
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --bg-0: #05070b;
  --bg-1: #0a0d14;
  --bg-2: #0e1521;
  --bg-3: #12202e;

  --cyan: #00e5ff;
  --cyan-80: rgba(0, 229, 255, 0.8);
  --cyan-40: rgba(0, 229, 255, 0.4);
  --cyan-20: rgba(0, 229, 255, 0.2);
  --cyan-10: rgba(0, 229, 255, 0.1);
  --cyan-05: rgba(0, 229, 255, 0.05);

  --text-100: #f0f6fc;
  --text-70: rgba(240, 246, 252, 0.7);
  --text-50: rgba(240, 246, 252, 0.5);
  --text-30: rgba(240, 246, 252, 0.3);

  --border-subtle: rgba(0, 229, 255, 0.09);
  --border-default: rgba(0, 229, 255, 0.18);
  --border-active: rgba(0, 229, 255, 0.5);

  --glow-xs: 0 0 8px rgba(0, 229, 255, 0.2);
  --glow-sm: 0 0 20px rgba(0, 229, 255, 0.28);
  --glow-md: 0 0 40px rgba(0, 229, 255, 0.2);
  --glow-lg: 0 0 80px rgba(0, 229, 255, 0.15);

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.08);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 70px;
  --max-w: 1200px;
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background-color: var(--bg-0);
  color: var(--text-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--ease), border-color var(--ease);
}
.nav.scrolled {
  background: rgba(5, 7, 11, 0.97);
  border-bottom-color: var(--border-default);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-100);
}
.nav-logo-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-70);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-100); background: var(--cyan-05); }
.nav-links a.active { color: var(--cyan); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  justify-content: center;
  cursor: pointer;
  padding: 2px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-70);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--cyan);
  color: #04060a;
  border: 1px solid var(--cyan);
  box-shadow: var(--glow-xs);
}
.btn-primary:hover {
  background: #1aeaff;
  border-color: #1aeaff;
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-default);
}
.btn-secondary:hover {
  border-color: var(--border-active);
  background: var(--cyan-05);
  box-shadow: var(--glow-xs);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-70);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  padding: 8px 18px;
}
.btn-ghost:hover {
  color: var(--text-100);
  border-color: var(--border-default);
  background: rgba(255,255,255,0.03);
}
.lang-toggle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-50);
  border-color: var(--border-subtle);
}
.lang-toggle:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: var(--cyan-05);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--bg-3);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-100);
  transition: all var(--ease);
}
.btn-download:hover {
  border-color: var(--cyan-40);
  background: var(--bg-2);
  box-shadow: var(--glow-xs);
  transform: translateY(-1px);
}
.btn-download-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--cyan); fill: var(--cyan); }
.btn-download-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.btn-download-text small { font-size: 0.68rem; color: var(--text-50); font-weight: 400; }
.btn-download-text strong { font-size: 0.88rem; font-weight: 700; }

/* ---- Hero (Homepage) ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 24px 96px;
  background-color: var(--bg-0);
  background-image:
    radial-gradient(ellipse at 50% 25%, rgba(0, 229, 255, 0.08) 0%, transparent 55%),
    radial-gradient(circle, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg-0));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}
.hero-logo {
  width: 108px;
  height: 108px;
  margin: 0 auto 32px;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 0 32px rgba(0, 229, 255, 0.4));
  animation: pulse-glow 3.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(0, 229, 255, 0.35)); }
  50% { filter: drop-shadow(0 0 52px rgba(0, 229, 255, 0.6)); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cyan-10);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-100);
  margin-bottom: 20px;
}
.hero-title span { color: var(--cyan); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-50);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 40px;
}
.hero-mini-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-mini-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hero-mini-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-mini-stat-label { font-size: 0.76rem; color: var(--text-50); font-weight: 400; }
.hero-mini-stat-sep { color: var(--border-default); font-size: 1.5rem; }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--cyan-10);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--cyan); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-50);
  line-height: 1.75;
}

/* ---- Apps Section ---- */
.apps-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.app-card {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-40), transparent);
  transform: scaleX(0);
  transition: transform var(--ease-slow);
}
.app-card:hover {
  border-color: var(--border-default);
  background: var(--bg-3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.app-card:hover::before { transform: scaleX(1); }

.app-card-header { display: flex; align-items: flex-start; gap: 16px; }
.app-card-logo {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}
.app-card-header-text { flex: 1; }
.app-card-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.app-card-tagline { font-size: 0.82rem; color: var(--text-50); line-height: 1.4; }

.app-card-description { font-size: 0.88rem; color: var(--text-70); line-height: 1.65; }

.app-card-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.app-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-70);
  line-height: 1.45;
}
.app-card-feature svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--cyan);
  margin-top: 2px;
}
.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

/* ---- Stats Bar ---- */
.stats-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item { padding: 24px 16px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-subtle);
}
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.84rem; color: var(--text-50); font-weight: 400; }

/* ---- Audience Cards ---- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--ease);
}
.audience-card:hover {
  border-color: var(--border-default);
  background: var(--bg-3);
  transform: translateY(-3px);
}
.audience-icon {
  width: 52px; height: 52px;
  background: var(--cyan-10);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.audience-icon svg { width: 24px; height: 24px; color: var(--cyan); }
.audience-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.audience-desc { font-size: 0.85rem; color: var(--text-50); line-height: 1.65; }
.audience-apps { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.audience-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--cyan-10);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--cyan);
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 200px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.07), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-title span { color: var(--cyan); }
.cta-subtitle {
  font-size: 1rem;
  color: var(--text-50);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  text-align: center;
  position: relative;
  background-image:
    radial-gradient(ellipse at 50% 30%, rgba(0, 229, 255, 0.07) 0%, transparent 55%),
    radial-gradient(circle, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-0));
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-icon {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  object-fit: contain;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.3));
}
.page-hero-app-name {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-hero-title span { color: var(--cyan); }
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-50);
  line-height: 1.75;
  margin-bottom: 40px;
}
.page-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- App Stats ---- */
.app-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.app-stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--ease);
}
.app-stat-card:hover {
  border-color: var(--border-default);
  background: var(--bg-3);
}
.app-stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.app-stat-label { font-size: 0.8rem; color: var(--text-50); }

/* ---- Feature Cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.features-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--ease);
}
.feature-card:hover {
  border-color: var(--border-default);
  background: var(--bg-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.feature-card-icon {
  width: 48px; height: 48px;
  background: var(--cyan-10);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card-icon svg { width: 22px; height: 22px; color: var(--cyan); }
.feature-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card-desc { font-size: 0.86rem; color: var(--text-50); line-height: 1.65; }
.feature-card-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-70);
  line-height: 1.4;
}
.feature-card-list li svg { width: 13px; height: 13px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ---- Section Dark Background ---- */
.section-dark {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ---- Support Page ---- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.support-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-question {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 10px;
}
.faq-answer { font-size: 0.86rem; color: var(--text-50); line-height: 1.7; }
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-70);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-0);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-100);
  font-size: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-30); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--cyan-40);
  box-shadow: 0 0 0 3px var(--cyan-05);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-70);
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; }
.contact-info-item a { color: var(--cyan); }
.contact-info-item a:hover { text-decoration: underline; }

/* ---- Legal Pages ---- */
.legal-hero {
  padding: calc(var(--nav-h) + 48px) 24px 48px;
  border-bottom: 1px solid var(--border-subtle);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
}
.legal-hero-content { max-width: 700px; }
.legal-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 12px;
}
.legal-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.legal-hero-updated { font-size: 0.82rem; color: var(--text-30); }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.92rem;
  color: var(--text-70);
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-70);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-content a { color: var(--cyan); text-decoration: underline; }
.legal-footer {
  font-size: 0.8rem;
  color: var(--text-30);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.86rem;
  color: var(--text-50);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-50);
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a {
  font-size: 0.87rem;
  color: var(--text-50);
  transition: color var(--ease);
}
.footer-col-links a:hover { color: var(--text-100); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-30); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-30);
  transition: color var(--ease);
}
.footer-legal a:hover { color: var(--text-70); }

/* ---- Fade-in animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- Utilities ---- */
.text-cyan { color: var(--cyan); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { border: none; border-top: 1px solid var(--border-subtle); margin: 0; }
.mt-auto { margin-top: auto; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .apps-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(5, 7, 11, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--ease);
    z-index: 99;
    border-top: 1px solid var(--border-subtle);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; padding: 14px 18px; border-radius: var(--radius-md); width: 100%; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }

  .apps-grid { max-width: 100%; }
  .audience-grid { grid-template-columns: 1fr; }
  .features-grid, .features-grid.cols-3 { grid-template-columns: 1fr; }
  .app-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .hero-ctas, .page-hero-ctas, .cta-buttons { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .page-hero-ctas .btn, .cta-buttons .btn { justify-content: center; }
  .hero-mini-stats { gap: 24px; }
  .hero-mini-stat-sep { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .app-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
}

/* ===== BLOG ===== */
.blog-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, rgba(0,212,200,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.blog-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.blog-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-100);
  margin-bottom: 16px;
}
.blog-hero-title span { color: var(--cyan); }
.blog-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-50);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--ease), transform var(--ease);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--border-default);
  transform: translateY(-3px);
}
.blog-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--cyan-05);
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  width: fit-content;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-50);
  line-height: 1.7;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-30);
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.blog-card-meta-sep { opacity: 0.4; }

/* Article page */
.article-hero {
  padding: 100px 0 56px;
  border-bottom: 1px solid var(--border-subtle);
}
.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.article-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--cyan-05);
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}
.article-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-30);
}
.article-breadcrumb a {
  color: var(--text-30);
  text-decoration: none;
}
.article-breadcrumb a:hover { color: var(--cyan); }
.article-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-100);
  margin-bottom: 20px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-30);
  flex-wrap: wrap;
}
.article-meta-sep { opacity: 0.4; }

.article-body {
  max-width: 760px;
  margin: 56px auto 0;
  padding-bottom: 80px;
  color: var(--text-70);
  font-size: 1.05rem;
  line-height: 1.85;
}
.article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 32px 0 10px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li { line-height: 1.7; }
.article-body strong { color: var(--text-100); font-weight: 600; }
.article-body a { color: var(--cyan); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }

.article-callout {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 0.95rem;
  color: var(--text-70);
}
.article-callout strong { color: var(--cyan); }

.article-table-wrap { overflow-x: auto; margin: 24px 0 32px; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.article-table th {
  background: var(--surface-2);
  color: var(--text-100);
  font-weight: 700;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-default);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-70);
  vertical-align: top;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:hover td { background: rgba(255,255,255,0.02); }

.article-app-cta {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease);
}
.article-app-cta:hover { border-color: var(--cyan); }
.article-app-cta img { width: 56px; height: 56px; border-radius: 12px; object-fit: contain; flex-shrink: 0; }
.article-app-cta-text { flex: 1; }
.article-app-cta-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 4px; }
.article-app-cta-title { font-size: 1rem; font-weight: 700; color: var(--text-100); margin-bottom: 4px; }
.article-app-cta-desc { font-size: 0.83rem; color: var(--text-50); line-height: 1.5; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-app-cta { flex-direction: column; align-items: flex-start; }
}
