:root {
  --bg: linear-gradient(135deg, #f4fbf6 0%, #dceee1 48%, #c4e0cf 100%);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-border: rgba(24, 79, 61, 0.12);
  --text: #173528;
  --muted: #5b7669;
  --shadow: 0 24px 60px rgba(30, 72, 54, 0.16);
  --card-shadow: 0 18px 36px rgba(37, 88, 66, 0.14);
  --primary: #184f3d;
  --secondary: #3f7f59;
  --accent: #6cbf74;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Malgun Gothic", sans-serif;
}

.shell {
  width: min(100%, 980px);
  padding: 40px;
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.hero-copy {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(24, 79, 61, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(108, 191, 116, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 242, 0.98));
  box-shadow: var(--card-shadow);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(24, 79, 61, 0.28);
  box-shadow: 0 24px 44px rgba(29, 72, 55, 0.18);
  outline: none;
}

.menu-card-accent {
  background:
    radial-gradient(circle at top right, rgba(24, 79, 61, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(250, 255, 251, 0.98), rgba(227, 244, 231, 0.98));
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(24, 79, 61, 0.09);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-title {
  font-size: 1.9rem;
  line-height: 1.1;
}

.menu-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.helper-text {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  body {
    padding: 16px;
  }

  .shell {
    padding: 24px;
    border-radius: 24px;
  }

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

  .menu-card {
    min-height: 180px;
    padding: 22px;
  }

  .menu-title {
    font-size: 1.6rem;
  }
}
