:root {
  --bg-color: #050505;
  --text-color: #ffffff;
  --text-muted: #a0a0a0;
  --primary-color: #6366f1;
  --secondary-color: #a855f7;
  --accent-color: #ec4899;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 5, 0.5);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

nav a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}



.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.store-btn {
    display: inline-block;
    transition: transform 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn img {
    height: 50px;
    width: auto;
    display: block;
}

/* Mockups */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: absolute;
  width: 280px;
  border-radius: 40px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) scale(0.9);
  transition: transform 0.5s ease;
}

.phone-mockup:nth-child(2) {
  transform: perspective(1000px) rotateY(15deg) rotateX(5deg) scale(0.9)
    translate3d(60px, 40px, -50px);
  z-index: -1;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual:hover .phone-mockup:first-child {
  transform: perspective(1000px) rotateY(0deg) scale(1);
  z-index: 10;
}

.hero-visual:hover .phone-mockup:nth-child(2) {
  transform: perspective(1000px) rotateY(0deg) scale(0.95)
    translate3d(120px, 20px, -50px);
}

/* Policy Content */
.policy-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.policy-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.policy-content h2,
.policy-content h3 {
  color: #fff;
  margin-top: 2rem;
}

.policy-content p,
.policy-content li {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: #d1d5db;
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  margin-top: auto;
  background: #000;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 30px;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.link-group h4 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.link-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.link-group a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.copyright {
  text-align: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  color: #525252;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
  }

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

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

  .phone-mockup {
    width: 200px;
  }

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

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Features Section */
.features {
    padding: 5rem 0;
    margin-top: 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.premium-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

.final-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    margin-top: 5rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
}

.checklist-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}
