/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #faf9f7;
  color: #1a1a1a;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === Typography === */
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* === Layout === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 500; }

nav { display: flex; align-items: center; gap: 32px; }
nav a { font-size: 14px; color: #666; transition: color 0.2s; }
nav a:hover { color: #1a1a1a; }

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn:hover { background: #333; transform: scale(1.02); }

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #e5e4e2;
}
.btn-secondary:hover { background: #f0eeea; }

/* === Hero === */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  background: #faf9f7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f0eeea;
  border-radius: 100px;
  font-size: 12px;
  color: #666;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  font-size: 17px;
  color: #666;
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-cta { display: flex; gap: 12px; }

.hero-img {
  position: relative;
  text-align: center;
}

.hero-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* === Features (Apps) === */
.features { padding: 100px 0; background: #fff; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-header p { color: #666; max-width: 500px; margin: 0 auto; }

/* === App Showcase === */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.app-showcase.reverse { direction: rtl; }
.app-showcase.reverse > * { direction: ltr; }

.app-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
}

.app-info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.app-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.app-images img {
  width: 100%;
  aspect-ratio: 9/19;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

hr.dark {
  border: none;
  border-top: 1px solid #e5e4e2;
  margin: 80px 0;
}

.more-apps {
  text-align: center;
  margin-top: 40px;
}

.more-apps a {
  font-size: 16px;
  color: #666;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.more-apps a:hover { color: #1a1a1a; }

/* === CTA === */
.about { padding: 100px 0; text-align: center; background: #faf9f7; }

.about-content { max-width: 600px; margin: 0 auto; }

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  margin-bottom: 24px;
}

.about p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

.skills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.skill {
  padding: 8px 16px;
  background: #f0eeea;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.about-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* === CTA === */
.cta { padding: 100px 0; text-align: center; background: #faf9f7; }

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  margin-bottom: 12px;
}

.cta p { color: #666; margin-bottom: 32px; }

/* === Footer === */
footer { padding: 40px 0; border-top: 1px solid #e5e4e2; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-text { font-family: "Playfair Display", serif; font-size: 16px; font-weight: 500; }

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #666; }
.footer-links a:hover { color: #1a1a1a; }
.footer-copy { font-size: 13px; color: #888; }

/* === Responsive === */
@media (max-width: 900px) {
  nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .app-showcase { grid-template-columns: 1fr; }
  .app-showcase.reverse { direction: ltr; }
  .app-images { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .about-links { flex-direction: column; }
}
