:root {
  --primary: #FF8E9E;
  --primary-light: #FFB1BC;
  --primary-dark: #D67A88;
  --accent: #FF4081;
  --bg: #FFF9FA;
  --text: #1c1b1f;
  --text-muted: #49454f;
  --white: #ffffff;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  padding: 24px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-copy {
  flex: 1;
  max-width: 600px;
}

.hero-copy h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -1.5px;
}

.hero-copy h1 .accent {
  color: var(--primary);
  display: inline-block;
}

.hero-copy p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Store Buttons */
.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-button:hover {
  transform: translateY(-4px);
  background-color: #222;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.store-button svg {
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.small-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.large-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-container {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #1c1b1f;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25);
  border: 4px solid #333;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.app-preview {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.15) 0%, rgba(103, 58, 183, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

/* Footer */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-copy h1 {
    font-size: 3rem;
  }
  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
  }
  .hero-copy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-copy p {
    max-width: 100%;
  }
  .download-buttons {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2.5rem;
  }
  .store-button {
    width: 100%;
    justify-content: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
