:root {
  --bg: #FFF8F0;
  --ink: #16213E;
  --coral: #FF6B6B;
  --violet: #C3B1E1;
  --cream: #FFF3E4;
  --soft-ink: #4A5568;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 33, 62, 0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--coral); }

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.hero-grid {
  position: relative;
}
.pixel-canvas {
  background: var(--cream);
  border-radius: 20px;
  padding: 24px;
  border: 2px solid rgba(22, 33, 62, 0.08);
  box-shadow: 0 8px 32px rgba(22, 33, 62, 0.07);
}
.pixel-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
}
.pixel-cell {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 2px;
  background: white;
  transition: background 0.3s ease;
}
.hero-label {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--coral);
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-headline {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}
.hero-headline em {
  font-style: normal;
  color: var(--coral);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--soft-ink);
  line-height: 1.7;
  max-width: 480px;
}
.hero-screenshots {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.screenshot {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(22, 33, 62, 0.12);
  object-fit: cover;
}
.screenshot-main { width: 200px; }
.screenshot-small { width: 120px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 8px;
  border-top: 1px solid rgba(22, 33, 62, 0.1);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--soft-ink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── SHOWCASE ── */
.showcase {
  background: var(--cream);
  border-top: 1px solid rgba(22, 33, 62, 0.06);
  border-bottom: 1px solid rgba(22, 33, 62, 0.06);
}
.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.showcase-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-phone {
  background: white;
  border-radius: 24px;
  padding: 20px 20px 16px;
  box-shadow: 0 12px 40px rgba(22, 33, 62, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 160px;
}
.app-icon-img {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  object-fit: cover;
}
.phone-label {
  font-size: 0.7rem;
  color: var(--soft-ink);
  font-weight: 600;
  text-align: center;
}
.overline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  display: block;
  margin-bottom: 12px;
}
.showcase-text h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.showcase-text p {
  color: var(--soft-ink);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 420px;
}
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(22, 33, 62, 0.1);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── FEATURES ── */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.features-header {
  text-align: center;
  margin-bottom: 56px;
}
.features-header h2 {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  color: var(--ink);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(22, 33, 62, 0.07);
  box-shadow: 0 4px 16px rgba(22, 33, 62, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(22, 33, 62, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--soft-ink);
  line-height: 1.6;
}

/* ── DAILY ── */
.daily {
  background: var(--ink);
  color: white;
}
.daily-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.daily-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--coral);
}
.daily-content h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}
.daily-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
}
.daily-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.meta-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--cream);
  border-top: 1px solid rgba(22, 33, 62, 0.06);
  border-bottom: 1px solid rgba(22, 33, 62, 0.06);
}
.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.philosophy-inner blockquote {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 28px;
  font-weight: 600;
}
.philosophy-inner p {
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.8;
}

/* ── CLOSING ── */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.closing-inner h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.closing-inner > p {
  color: var(--soft-ink);
  font-size: 1rem;
  margin-bottom: 36px;
}
.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, background 0.15s;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}
.cta-button:hover {
  background: #ff5252;
  transform: translateY(-2px);
}
.cta-note {
  font-size: 0.82rem;
  color: var(--soft-ink);
  font-weight: 600;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--coral); }
.footer-copy { font-size: 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero-grid { order: -1; }
  .showcase-inner { grid-template-columns: 1fr; }
  .showcase-image-wrap { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .daily-inner { grid-template-columns: 1fr; gap: 28px; }
  .daily-badge { flex-direction: row; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 20px 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links a:not(:last-child) { display: none; }
}