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

:root {
  --bg-color: #F9F6F3;
  --text-main: #222222;
  --text-muted: #555555;
  --accent-blue: #9E8CA1;
  --accent-purple: #85A392;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: #E6D6E2;
  --gradient-btn: linear-gradient(135deg, #9E8CA1 0%, #C4B5C6 100%);
  --gradient-text: linear-gradient(135deg, #9E8CA1 0%, #85A392 100%);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.bg-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(158, 140, 161, 0.2) 0%, rgba(249, 246, 243, 0) 70%);
  top: -20vh;
  left: -20vw;
  z-index: 0;
  pointer-events: none;
}

.bg-glow-2 {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(133, 163, 146, 0.15) 0%, rgba(249, 246, 243, 0) 70%);
  bottom: -10vh;
  right: -10vw;
  z-index: 0;
  pointer-events: none;
}

/* Header */
header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 8%;
  gap: 4rem;
  z-index: 10;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

p.subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  gap: 0.75rem;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 10px 20px rgba(158, 140, 161, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(158, 140, 161, 0.35);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

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

/* Hero Image & Phone Mockup */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 1000px;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  background-color: #222222;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 
    inset 0 0 0 2px #444,
    0 40px 60px rgba(158, 140, 161, 0.4),
    0 10px 20px rgba(158, 140, 161, 0.2);
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
  transform: rotateY(-10deg) rotateX(5deg);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background-color: #222222;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 10;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 36px;
  display: block;
  object-fit: cover;
  background: #FFF;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Footer / Privacy */
footer {
  padding: 2rem 5%;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  z-index: 10;
  position: relative;
  margin-top: auto;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-purple);
  text-decoration: underline;
}

/* Privacy Policy Layout */
.privacy-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  z-index: 10;
  position: relative;
}

.privacy-container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.privacy-container h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.privacy-container p, .privacy-container ul {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.privacy-container ul {
  padding-left: 1.5rem;
}

.privacy-container li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }

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

  h1 { font-size: 3.5rem; }
  
  .phone-mockup {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.8rem; }
  .btn { width: 100%; }
}
