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

:root {
  --background: #120b15;
  --foreground: #fff8f3;
  --primary: #ff4b72;
  --primary-hover: #ff335b;
  --secondary: #382a3d;
  --muted: #8d718e;
  --border: rgba(141, 113, 142, 0.2);
  --glass-bg: rgba(56, 42, 61, 0.45);
  --glass-border: rgba(255, 75, 114, 0.15);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gradient-main: linear-gradient(135deg, #ff4b72, #b862c9, #e8d8f4);
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Orbs */
.ambient-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.orb-1 {
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background-color: #ff4b72;
  animation: float 20s ease-in-out infinite;
}

.orb-2 {
  bottom: -10%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background-color: #b862c9;
  animation: float 25s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  z-index: 100;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  background-color: rgba(18, 11, 21, 0.7);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--foreground);
  text-decoration: none;
}

.logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

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

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

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

.cta-btn {
  background: var(--gradient-main);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 75, 114, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(to right, #ffffff, #f1dfea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 540px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--foreground);
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.store-btn:hover {
  background-color: rgba(255, 75, 114, 0.1);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.store-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn .btn-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.store-btn .btn-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

/* App Showcase Mockup */
.mockup-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 290px;
  height: 590px;
  background-color: #000;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 3px rgba(255, 75, 114, 0.2);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background-color: #f8efea;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-logo {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(255, 75, 114, 0.25);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 8px 24px rgba(255, 75, 114, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(255, 75, 114, 0.45); }
  100% { transform: scale(1); box-shadow: 0 8px 24px rgba(255, 75, 114, 0.2); }
}

/* Features Section */
.features {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

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

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

.feature-card {
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(12px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-icon {
  background-color: rgba(255, 75, 114, 0.15);
  border-radius: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* Policy / Document Pages Styles */
.policy-container {
  max-width: 800px;
  margin: 140px auto 100px;
  padding: 0 5%;
}

.policy-card {
  background-color: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(16px);
}

.policy-card h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.policy-date {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--foreground);
}

.policy-content p {
  color: rgba(255, 248, 243, 0.85);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.policy-content ul {
  margin: 0 0 24px 20px;
  color: rgba(255, 248, 243, 0.8);
}

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

/* Footer Section */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
  background-color: #0b070d;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--foreground);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.footer-copyright {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* Responsiveness */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .store-buttons {
    justify-content: center;
  }
  .policy-card {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 15px 5%;
  }
  .nav-links {
    display: none;
  }
  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
