:root {
  --bg: #f5f7f3;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --text: #17212b;
  --muted: #5d6f63;
  --line: rgba(31, 55, 42, 0.1);
  --accent: #23684b;
  --accent-2: #e07a2f;
  --shadow: 0 24px 60px rgba(38, 52, 44, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(35, 104, 75, 0.16), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(224, 122, 47, 0.14), transparent 24%),
    linear-gradient(180deg, #eef4ef 0%, #f8fbf8 48%, #edf3ef 100%);
  overflow-x: hidden;
}

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

.shell {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
}

.orb {
  position: fixed;
  z-index: -1;
  filter: blur(56px);
  pointer-events: none;
}

.orb-a {
  top: 20px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(35, 104, 75, 0.18);
}

.orb-b {
  top: 280px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(224, 122, 47, 0.14);
}

.hero,
.guide-card {
  backdrop-filter: blur(16px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: 24px;
  margin-top: 32px;
  padding: 28px;
  border-radius: 30px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  max-width: 8ch;
}

.hero-text,
.guide-card p,
.card-note {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 1.02rem;
}

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

.primary-action,
.ghost-action,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-action,
.card-link {
  background: linear-gradient(135deg, var(--accent), #183d2d);
  color: #fff;
  box-shadow: 0 14px 28px rgba(35, 104, 75, 0.24);
}

.ghost-action {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.primary-action:hover,
.ghost-action:hover,
.card-link:hover {
  transform: translateY(-2px);
}

.hero-panel {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(24, 61, 45, 0.94), rgba(35, 104, 75, 0.88)),
    var(--panel-strong);
  color: #f2fbf5;
}

.hero-panel .panel-kicker,
.hero-panel span {
  color: rgba(242, 251, 245, 0.78);
}

.hero-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-stats div {
  padding: 14px 0;
  border-top: 1px solid rgba(242, 251, 245, 0.12);
}

.hero-stats span {
  display: block;
  font-size: 0.9rem;
}

.hero-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 26px 0 44px;
}

.guide-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--panel-strong);
}

.guide-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(35, 104, 75, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.guide-badge-muted {
  background: rgba(93, 111, 99, 0.1);
  color: var(--muted);
}

.guide-card h3 {
  margin-top: 10px;
  font-size: 1.72rem;
}

.guide-card p {
  margin: 14px 0 0;
}

.guide-card-featured {
  background:
    linear-gradient(150deg, rgba(35, 104, 75, 0.08), rgba(224, 122, 47, 0.08)),
    var(--panel-strong);
}

.card-link {
  width: fit-content;
  margin-top: 18px;
}

.card-note {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .hero,
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 18px, 1160px);
  }

  .hero,
  .guide-card {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
