body.home {
  min-height: 100vh;
  overflow: auto;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(31, 130, 151, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 86% 18%, rgba(53, 113, 51, 0.1), transparent),
    #f4fbf6;
}

.home-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(53, 113, 51, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.home-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
  background: #fff;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 57, 64, 0.04);
  flex-wrap: wrap;
}

.home-top img {
  height: 52px;
  width: auto;
}

.home-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  color: var(--navy);
  border: 1px solid rgba(0, 57, 64, 0.14);
  background: #f4fbf6;
}

.home-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

.home-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--navy);
  line-height: 1.15;
}

.home-hero h1 strong {
  color: var(--ai);
  font-weight: 800;
}

.home-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.home-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-card.ready:hover {
  transform: translateY(-6px);
  border-color: var(--ai);
  box-shadow: 0 18px 40px rgba(0, 57, 64, 0.12);
}

.home-card.soon {
  opacity: 0.78;
  cursor: default;
}

.home-scene {
  height: 176px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-scene img.home-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-scene.waiter img.home-photo {
  object-position: center 18%;
}

.home-card.ready .home-scene {
  background: #d9f4ea;
}

.home-card.soon .home-scene {
  background: linear-gradient(165deg, #e8f1f2, #f3f6f6);
}

.home-scene.icon-scene .home-photo {
  object-fit: contain;
  padding: 12px 18px;
}

.home-card-body {
  padding: 1.1rem 1.25rem 1.2rem;
}

.home-card h3 {
  margin: 0;
  font-size: 1.28rem;
  color: var(--navy);
}

.home-state {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.home-card.soon .home-state {
  color: var(--warn);
}

.home-foot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.home-foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.home-foot svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .home-cards { grid-template-columns: 1fr; }
  .home-top { padding: 14px 18px; }
  .home-foot { flex-direction: column; gap: 8px; align-items: center; }
}
