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

:root {
  --bg-main: #07080d;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.08);
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-pink: #ff0844;
  --accent-purple: #9b51e0;
  --text-main: #ffffff;
  --text-muted: #9496a1;
  --shadow-glow: 0 0 50px rgba(0, 242, 254, 0.15);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Glowing Orbs in Background */
.glow {
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.glow.cyan {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
  animation: pulseOrb 8s ease-in-out infinite alternate;
}
.glow.pink {
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-pink), transparent 70%);
  animation: pulseOrb 10s ease-in-out infinite alternate-reverse;
}
.glow.purple {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
  width: 600px;
  height: 600px;
  opacity: 0.2;
}

@keyframes pulseOrb {
  0% { transform: scale(1) translate(0, 0); opacity: 0.35; }
  100% { transform: scale(1.15) translate(30px, 20px); opacity: 0.45; }
}

/* Layout Wrap */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* Navigation */
header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 13, 0.8);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover img {
  transform: scale(1.08) rotate(-4deg);
}
.links {
  display: flex;
  gap: 32px;
}
.links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}
.links a:hover, .links a.active {
  color: var(--text-main);
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.appicon-hero {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 242, 254, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
  margin-bottom: 32px;
  animation: floatIcon 5s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}
.grad-cyan {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-pink {
  background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Buttons & CTA */
.cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.35);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 242, 254, 0.5);
}
.btn.ghost {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}
.btn.ghost:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.badge-soon {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Stats Banner */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0 80px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 254, 0.4);
}
.stat-card b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}
.stat-card span {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 40px 0 80px;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 242, 254, 0.2);
}
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Page Headers (Support & Privacy) */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 50px;
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}
.page-header .updated {
  color: var(--accent-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Content Pages Styling */
.page-content {
  max-width: 800px;
  margin: 0 auto 100px;
}
.page-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: #fff;
}
.page-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.page-content ul {
  color: var(--text-muted);
  margin: 0 0 24px 24px;
}
.page-content li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.page-content li b {
  color: #fff;
}
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
}
.contact-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.contact-box p {
  margin-bottom: 20px;
}

/* FAQ Accordions */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}
.faq-item h3 {
  font-size: 1.15rem;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}
.faq-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.3);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-main);
}

@media (max-width: 768px) {
  .links {
    display: none;
  }
  .hero {
    padding: 50px 0 40px;
  }
}
