:root {
  --bg: #fdf7f1;
  --bg-strong: #f7e6d7;
  --accent: #d98057;
  --accent-strong: #c56d45;
  --text: #2b231e;
  --muted: #7a6b60;
  --card: #fffaf6;
  --border: rgba(123, 92, 70, 0.18);
  --shadow: 0 20px 60px rgba(164, 104, 65, 0.18);
  --radius: 24px;
}

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

body {
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fff7ee 0%, var(--bg) 45%, #f8efe6 100%);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 12px 26px;
  border-radius: 999px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 128, 87, 0.35);
}

.ghost {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  color: var(--text);
}

.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(171, 101, 63, 0.22);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}

.glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(255, 205, 150, 0.55);
  top: -60px;
  left: -40px;
}

.glow-2 {
  width: 420px;
  height: 420px;
  background: rgba(240, 168, 118, 0.4);
  bottom: -120px;
  right: -80px;
  animation-delay: 2s;
}

.glow-3 {
  width: 260px;
  height: 260px;
  background: rgba(255, 236, 210, 0.5);
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

.site-header {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fade-in 0.9s ease both;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--accent-strong);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.6);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  animation: slide-up 1s ease both;
}

.eyebrow {
  letter-spacing: 0.24em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.card-screen {
  width: min(360px, 90vw);
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-top {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.card-top span {
  width: 10px;
  height: 10px;
  background: rgba(217, 128, 87, 0.4);
  border-radius: 50%;
}

.card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-body p {
  color: var(--muted);
  margin-bottom: 16px;
}

.chip {
  width: 48px;
  height: 6px;
  background: rgba(217, 128, 87, 0.4);
  border-radius: 999px;
  margin-bottom: 22px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-row span {
  padding: 6px 14px;
  background: rgba(217, 128, 87, 0.12);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent-strong);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 80px;
}

.grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(197, 109, 69, 0.12);
  animation: fade-in 1s ease both;
}

.grid h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.grid p {
  color: var(--muted);
}

.roadmap {
  margin-top: 80px;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(240px, 1fr) 1.2fr;
  align-items: start;
}

.roadmap h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.roadmap p {
  color: var(--muted);
}

.roadmap ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.roadmap li {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  border: 1px solid var(--border);
  display: grid;
  gap: 6px;
}

.roadmap span {
  font-size: 12px;
  color: var(--muted);
}

.roadmap strong {
  font-size: 1rem;
}

.roadmap em {
  font-style: normal;
  color: var(--muted);
}

.footer {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: fade-in 1s ease both;
}

.footer h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer p {
  color: var(--muted);
}

.footer-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .roadmap {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
