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

body {
  font-family: 'DM Sans', sans-serif;
  background: #f5f4f0;
  color: #1a1a1a;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: #fff;
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #d6d3c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #888;
  overflow: hidden;
}

/* PLACEHOLDER — replace <div class="logo-img"> with <img src="logo.png" ...> */
.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #1a1a1a; }

/* ── HERO ── */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: #555;
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1D9E75;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero-text h1 span { color: #1D9E75; }

.hero-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1D9E75;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-btn:hover { background: #0F6E56; }

/* ── APP SCREENSHOT PLACEHOLDER ── */
.screenshot-placeholder {
  aspect-ratio: 9 / 16;
  max-height: 480px;
  background: #d6d3c8;
  border-radius: 24px;
  border: 0.5px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #999;
  font-size: 13px;
}

/* PLACEHOLDER — replace .screenshot-placeholder with:
   <img src="app-screenshot.png" alt="I made it! app" style="border-radius:24px; width:100%; max-height:480px; object-fit:cover;"> */
.screenshot-placeholder svg {
  opacity: 0.4;
}

/* ── FEATURES ── */
.features {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 1.4rem;
}

.feat-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.feat-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.feat-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 0.5px solid rgba(0,0,0,0.1);
  font-size: 12px;
  color: #aaa;
  background: #fff;
}

footer a {
  color: #888;
  text-decoration: none;
}

footer a:hover { color: #1a1a1a; }
