:root {
  color-scheme: light;
  --bg-0: #fff1e7;
  --bg-1: #fde2d2;
  --bg-2: #f7c6b1;
  --ink: #2a241f;
  --accent: #ff9a62;
  --accent-strong: #f46f3d;
  --mint: #58c7b3;
  --card: rgba(255, 255, 255, 0.75);
  --shadow: 0 24px 60px rgba(28, 18, 11, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #ffe6d8, transparent 55%),
    radial-gradient(circle at 90% 20%, #fce7b6, transparent 45%),
    linear-gradient(140deg, var(--bg-0), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.bg-sprites {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bg-sprites img {
  position: absolute;
  width: 52px;
  height: 52px;
  opacity: 0.65;
  filter: drop-shadow(0 10px 20px rgba(30, 20, 10, 0.2));
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.nav-links .ghost {
  border: 1px solid rgba(42, 36, 31, 0.2);
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(42, 36, 31, 0.45);
  cursor: not-allowed;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 60px 0 40px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.hero-meta {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(42, 36, 31, 0.7);
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  background: rgba(88, 199, 179, 0.2);
  color: #176154;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-screen {
  background: rgba(36, 33, 30, 0.88);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.card-screen img {
  width: 120px;
  height: 120px;
}

.screen-ui {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  font-size: 0.9rem;
}

.screen-ui button {
  border: none;
  background: var(--accent-strong);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-note {
  margin-top: 14px;
  font-size: 0.95rem;
}

.features {
  padding: 30px 0 10px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(28, 18, 11, 0.08);
}

.roadmap {
  padding: 30px 0;
}

.roadmap-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.roadmap-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(42, 36, 31, 0.15);
}

.footer {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(42, 36, 31, 0.6);
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }
}
