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

:root {
  --bg-primary: #080604;
  --bg-secondary: #0E0B08;
  --bg-card: rgba(20, 14, 8, 0.6);
  --bg-card-hover: rgba(30, 22, 12, 0.8);
  --border-card: rgba(234, 146, 30, 0.12);
  --border-card-hover: rgba(234, 146, 30, 0.35);
  --accent-orange: #EA921E;
  --accent-amber: #D97706;
  --accent-gold: #FBBF24;
  --accent-orange-glow: rgba(234, 146, 30, 0.4);
  --accent-amber-glow: rgba(217, 119, 6, 0.3);
  --text-primary: #FDF4E7;
  --text-secondary: #B8A48E;
  --text-muted: #7A6B5A;
  --glass-bg: rgba(8, 6, 4, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
  --nav-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

ul, ol {
  list-style: none;
}

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

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

/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base), backdrop-filter var(--transition-base);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
}

.navbar-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-logo svg {
  width: 40px;
  height: 40px;
}

.navbar-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-right: -20px;
}

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

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-links a.navbar-cta {
  padding: 10px 22px;
  background: #fff;
  color: #B45309 !important;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar-links a.navbar-cta:hover {
  background: #f0f0f0;
  color: #92400E !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.navbar-cta::after {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

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

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

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

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 4, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-base);
  transform: translateY(20px);
}

.mobile-nav.open a {
  transform: translateY(0);
  color: var(--text-primary);
}

.mobile-nav a:nth-child(2) { transition-delay: 0.05s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.2s; }

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  overflow: hidden;
  background: var(--bg-primary);
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 0%, transparent 50%, rgba(8, 6, 4, 0.6) 80%, var(--bg-primary) 100%),
    linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(8, 6, 4, 0.4) 80%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--accent-orange),
    var(--accent-amber),
    var(--accent-gold),
    var(--accent-orange)
  );
  filter: blur(80px);
  opacity: 0.25;
  animation: orbRotate 12s linear infinite;
}

.hero-orb-inner {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.3;
  animation: orbPulse 4s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234, 146, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 146, 30, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
  padding: 0 40px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-tagline svg {
  color: var(--accent-gold);
}

.hero-title {
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.typewriter-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  border-right: 3px solid var(--accent-orange);
  animation: typewrite 0.8s steps(20, end) forwards, blinkCaret 0.6s step-end 3;
}

.typewriter-line[data-line="1"] {
  animation-delay: 0.3s, 0.3s;
}

.typewriter-line[data-line="2"] {
  animation-delay: 1.2s, 1.2s;
}

.typewriter-line[data-line="3"] {
  animation-delay: 2.1s, 2.1s;
}

.typewriter-line[data-line="3"] {
  border-right-color: transparent;
  animation: typewrite 0.8s steps(20, end) 2.1s forwards;
}

@keyframes typewrite {
  from { width: 0; }
  to { width: 100%; border-right-color: transparent; }
}

@keyframes blinkCaret {
  0%, 100% { border-right-color: var(--accent-orange); }
  50% { border-right-color: transparent; }
}

.hero-highlight {
  position: relative;
  color: var(--accent-orange);
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: var(--accent-orange);
  opacity: 0.25;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 3.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 3.4s forwards;
  opacity: 0;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: fadeInUp 0.8s ease 3.6s forwards;
  opacity: 0;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  object-fit: cover;
  margin-left: -8px;
}

.hero-trust-avatars img:first-child {
  margin-left: 0;
}

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

.hero-trust-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  animation: fadeInUp 0.8s ease 3.8s forwards;
  opacity: 0;
}

.hero-partners-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.hero-partners-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.partner-item:hover {
  opacity: 0.9;
}

.partner-item svg,
.partner-item img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.partner-item span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover {
  background: #C67A0E;
  box-shadow: 0 0 30px var(--accent-orange-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: fadeInUp 0.8s ease 0.5s forwards, floatY 3s ease-in-out infinite 1.3s;
  opacity: 0;
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

/* ===== PARTICLES ===== */

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; width: 2px; height: 2px; }
.particle:nth-child(3) { left: 45%; top: 15%; animation-delay: 2s; background: var(--accent-amber); }
.particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 0.5s; width: 4px; height: 4px; }
.particle:nth-child(5) { left: 80%; top: 30%; animation-delay: 3s; background: var(--accent-gold); width: 2px; height: 2px; }
.particle:nth-child(6) { left: 90%; top: 55%; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 15%; top: 80%; animation-delay: 4s; background: var(--accent-amber); }
.particle:nth-child(8) { left: 55%; top: 85%; animation-delay: 2.5s; width: 2px; height: 2px; }
.particle:nth-child(9) { left: 35%; top: 40%; animation-delay: 3.5s; background: var(--accent-gold); }
.particle:nth-child(10) { left: 75%; top: 10%; animation-delay: 5s; }

/* ===== SECTION COMMON ===== */

.section {
  position: relative;
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== APPS SECTION VIDEO ===== */

.apps-section {
  overflow: hidden;
}

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

.apps-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(8, 6, 4, 0.55) 0%, rgba(8, 6, 4, 0.8) 70%, var(--bg-primary) 100%),
    linear-gradient(to bottom, var(--bg-primary) 0%, transparent 8%, transparent 92%, var(--bg-primary) 100%);
}

.apps-section .section-inner {
  position: relative;
  z-index: 2;
}

/* ===== APPS SHOWCASE ===== */

.apps-showcase {
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.apps-showcase-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollIcons 40s linear infinite;
}

.showcase-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.showcase-icon:hover {
  transform: scale(1.2) translateY(-4px);
  box-shadow: 0 8px 30px rgba(234, 146, 30, 0.25);
}

@keyframes scrollIcons {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== APPS TABS ===== */

.apps-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
  background: rgba(20, 14, 8, 0.6);
  border: 1px solid rgba(234, 146, 30, 0.1);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.apps-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition-base);
  cursor: pointer;
}

.apps-tab:hover {
  color: var(--text-secondary);
}

.apps-tab.active {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(234, 146, 30, 0.3);
}

.apps-tab svg {
  width: 16px;
  height: 16px;
}

/* ===== APPS GRID ===== */

.apps-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: none;
}

.apps-grid.active {
  display: grid;
}

.app-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(234, 146, 30, 0.06);
}

.app-card-icon-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.app-card-body {
  flex: 1;
  min-width: 0;
}

.app-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-card-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.app-card-arrow svg {
  width: 18px;
  height: 18px;
}

.app-card:hover .app-card-arrow {
  color: var(--accent-orange);
  transform: translateX(3px);
}

/* ===== BOTTOM WRAPPER (About + Footer) ===== */

.bottom-wrapper {
  position: relative;
  overflow: hidden;
}

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

.bottom-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(8, 6, 4, 0.45) 0%, rgba(8, 6, 4, 0.7) 60%, rgba(8, 6, 4, 0.85) 100%),
    linear-gradient(to bottom, var(--bg-primary) 0%, transparent 10%, transparent 85%, var(--bg-primary) 100%);
}

/* ===== ABOUT / STATS ===== */

.about-section {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--glass-border);
}

.about-top {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(234, 146, 30, 0.08);
  border: 1px solid rgba(234, 146, 30, 0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-orange);
  margin-bottom: 32px;
}

.about-status-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.about-headline {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.about-gradient-word {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #E85D75 40%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

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

.store-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.store-badge-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.store-badge-v2 svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-badge-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.12);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.store-badge-small {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1;
}

.store-badge-big {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 16px;
  background: rgba(20, 14, 8, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 146, 30, 0.1);
  border-radius: var(--radius-lg);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(234, 146, 30, 0.25), transparent);
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */

.footer {
  position: relative;
  z-index: 2;
  padding: 60px 24px 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 30px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}

.footer-brand .navbar-logo {
  margin-left: -45px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-orange);
  opacity: 0.8;
}

.footer-contact-item a {
  display: inline;
  padding: 0;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--text-primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ===== LEGAL PAGES ===== */

.legal-page {
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  min-height: 100vh;
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.breadcrumb a {
  color: var(--accent-orange);
  transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  color: var(--text-muted);
}

.legal-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.legal-inner .legal-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-inner h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-inner p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-inner ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-inner ul li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 6px;
}

.legal-inner a {
  color: var(--accent-orange);
  transition: opacity var(--transition-fast);
}

.legal-inner a:hover {
  opacity: 0.8;
}

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

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

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.45; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-30px); }
}

@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }
.reveal-delay-10 { transition-delay: 1.0s; }
.reveal-delay-11 { transition-delay: 1.1s; }
.reveal-delay-12 { transition-delay: 1.2s; }

/* ===== RESPONSIVE ===== */

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

  .stats-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 calc(50% - 10px);
    padding: 12px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

  .mobile-toggle {
    display: flex;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }


  .section {
    padding: 70px 20px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 60px;
  }

  .hero-orb {
    width: 320px;
    height: 320px;
  }

  .hero-orb-inner {
    width: 180px;
    height: 180px;
  }

  .hero-title {
    align-items: center;
  }

  .typewriter-line {
    width: auto !important;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    border-right: none !important;
    animation: none !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .showcase-icon {
    width: 56px;
    height: 56px;
    border-radius: 13px;
  }

  .apps-showcase-track {
    gap: 14px;
  }

  .app-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .app-card-icon-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }


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