:root {
  --primary: #00ff7f;
  --secondary: #00d2ff;
  --bg: #0a0e0c;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text: #ffffff;
  --subtext: #a0a0a0;
  --nav-height: 80px;
  --container-width: 1100px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
nav {
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 12, 0.8);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo img {
  width: 40px;
  border-radius: 8px;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--subtext);
  transition: color 0.3s;
}

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

/* Sections */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--subtext);
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Phone Mockup */
.phone-preview {
  margin-top: 60px;
  width: 100%;
  max-width: 320px;
  position: relative;
}

.phone-preview img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 8px solid #1a1a1a;
}

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

.feature-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.33s;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 127, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--subtext);
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--subtext);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

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

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

/* Legal Page Styling */
.legal-content {
  padding-top: calc(var(--nav-height) + 120px);
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.legal-content h1 {
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary);
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--subtext);
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--subtext);
}

.legal-content li {
  margin-bottom: 10px;
}
