:root {
  --primary: #00FFA3;
  --primary-dark: #00C27B;
  --primary-glow: rgba(0, 255, 163, 0.4);
  --bg-dark: #050505;
  --surface: #121212;
  --surface-hover: #1A1A1A;
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
  --border: #27272A;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Utilities */
.app-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.icon-btn i {
  margin-left: 8px;
  font-size: 1.2rem;
}

.full-width {
  width: 100%;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.logo i {
  color: var(--primary);
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 80vh;
  padding: 60px 0;
  position: relative;
  transition: background 0.5s ease-in-out;
  overflow: hidden;
}

.hero.angry-bg {
  background: radial-gradient(circle at 75% 50%, rgba(255, 0, 60, 0.15) 0%, transparent 60%);
}

.hero.secure-bg {
  background: radial-gradient(circle at 75% 50%, rgba(0, 255, 163, 0.1) 0%, transparent 60%);
}

.hero-content {
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 163, 0.1);
  border: 1px solid rgba(0, 255, 163, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero Visual & Animations */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.glow-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.shield-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  /* Increased z-index for clickability */
  cursor: pointer;
}

.shield-icon {
  font-size: 10rem;
  color: var(--primary);
  filter: drop-shadow(0 0 20px var(--primary-glow));
  animation: float 6s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-1 {
  width: 350px;
  height: 350px;
  animation: spin 20s linear infinite;
}

.orbit-2 {
  width: 450px;
  height: 450px;
  animation: spin-reverse 25s linear infinite;
}

.orbit-3 {
  width: 550px;
  height: 550px;
  animation: spin 30s linear infinite;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-1 {
  top: 20%;
  left: 0;
  animation: float 5s ease-in-out infinite 0.5s;
}

.icon-2 {
  bottom: 20%;
  right: 10%;
  animation: float 7s ease-in-out infinite 1s;
}

.icon-3 {
  top: 10%;
  right: 20%;
  animation: float 6s ease-in-out infinite 1.5s;
}

/* Features Section */
.features {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px -10px rgba(0, 255, 163, 0.1);
}

.feature-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 163, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Steps Section (How It Works) */
.steps-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 255, 163, 0.03) 50%, var(--bg-dark) 100%);
}

.steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 60px;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: var(--text-muted);
}

.step-line {
  width: 100px;
  height: 2px;
  background: var(--border);
  margin-top: 60px;
}

/* Showcase Section */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}

.showcase-content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.showcase-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.benefits-list li i {
  color: var(--primary);
  font-size: 1.5rem;
}

.showcase-image {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(0, 255, 163, 0.05) 0%, transparent 70%);
}

.tunnel-visual {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  overflow: hidden;
}

.center-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--primary);
  z-index: 10;
}

.tunnel-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 20px var(--primary-glow);
}

.ring-1 {
  width: 100px;
  height: 100px;
  animation: tunnel 4s linear infinite;
}

.ring-2 {
  width: 100px;
  height: 100px;
  animation: tunnel 4s linear infinite 1s;
}

.ring-3 {
  width: 100px;
  height: 100px;
  animation: tunnel 4s linear infinite 2s;
}

.ring-4 {
  width: 100px;
  height: 100px;
  animation: tunnel 4s linear infinite 3s;
}

/* Download Section */
.download-section {
  padding: 100px 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.platform-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 163, 0.1);
}

.platform-card.coming-soon {
  opacity: 0.8;
}

.badge-overlay {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--border);
  color: var(--text-muted);
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.platform-icon {
  font-size: 4rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.platform-card.active .platform-icon {
  color: var(--primary);
}

.platform-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.platform-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.platform-features {
  text-align: left;
  margin-bottom: 30px;
  padding: 0 20px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.platform-features li i {
  color: var(--primary);
}

.store-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.store-badge:hover {
  color: var(--text-main);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-question i {
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
}

.link-group h4 {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.link-group a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: var(--transition);
}

.link-group a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes tunnel {
  0% {
    width: 50px;
    height: 50px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  20% {
    opacity: 1;
  }

  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .orbit-3 {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero p {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 60px;
    height: 400px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-line {
    width: 2px;
    height: 50px;
    margin: 0;
  }

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

  .showcase-image {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

/* Angry / Unsecured State Styles */
.hero-visual.angry .glow-circle {
  background: radial-gradient(circle, rgba(255, 0, 60, 0.4) 0%, transparent 70%);
}

.hero-visual.angry .orbit {
  border: 1px solid rgba(255, 0, 60, 0.3);
}

.hero-visual.angry .orbit::before {
  background: #FF003C;
  box-shadow: 0 0 10px #FF003C;
}

.hero-visual.angry .floating-icon {
  background: rgba(255, 0, 60, 0.1);
  border-color: rgba(255, 0, 60, 0.3);
  color: #FF003C;
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
}

.hero-visual.angry .shield-icon {
  filter: drop-shadow(0 0 30px rgba(255, 0, 60, 0.5));
}

/* Transition effects */
.hero-visual .glow-circle,
.hero-visual .orbit,
.hero-visual .orbit::before,
.hero-visual .floating-icon,
.hero-visual .shield-icon {
  transition: all 0.5s ease-in-out;
}

/* Sticky Banner */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: none;
  /* Hidden by default, shown via JS */
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-banner .btn {
  font-size: 0.9rem;
  padding: 10px 20px;
  white-space: nowrap;
}

.sticky-banner .btn i {
  margin-right: 6px;
  font-size: 1.1rem;
}

.sticky-banner-content {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  justify-content: center;
}