/* Landing page: gradient hero + two entry-point cards. */

.landing-hero {
  position: relative;
  padding: 36px 0 10px;
  border-radius: 18px;
  overflow: hidden;
}

/* Soft gradient-mesh background, no images needed. */
.landing-hero::before {
  content: "";
  position: absolute;
  inset: -40px -40px 60% -40px;
  z-index: -1;
  border-radius: 24px;
  background:
    radial-gradient(600px 260px at 15% 0%, rgba(109, 172, 58, 0.16), transparent 60%),
    radial-gradient(500px 240px at 85% 10%, rgba(90, 145, 48, 0.14), transparent 60%),
    linear-gradient(180deg, #f3f8ee 0%, var(--bg) 100%);
}

.hero-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
  animation: heroIn 0.5s ease both;
}

.landing-badge {
  margin-bottom: 14px;
}

.landing-title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.landing-sub {
  color: var(--muted);
  font-size: 16px;
  margin: 0 auto;
  max-width: 520px;
}

.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 0 24px;
}

.option-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: cardIn 0.5s ease both;
  animation-delay: var(--delay, 0s);
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(49, 49, 49, 0.1);
  border-color: var(--brand);
}

.option-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.option-card h2 {
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--ink);
}

.option-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 14px;
  min-height: 40px;
}

.option-cta {
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.option-card:hover .option-cta {
  transform: translateX(4px);
}

.landing-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 20px;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner, .option-card { animation: none; }
}

@media (max-width: 680px) {
  .option-cards { grid-template-columns: 1fr; }
  .landing-title { font-size: 27px; }
}
