:root {
  color-scheme: light;
  font-family: 'Inter', 'Noto Sans TC', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a4d3c;
  color: #f5f5f5;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 107, 79, 0.6), transparent 60%),
    #0a4d3c;
}

.layout {
  width: min(960px, 100%);
  background: rgba(10, 77, 60, 0.75);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(10, 77, 60, 0.45);
  backdrop-filter: blur(12px);
}

.badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: #ffe55c;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffe55c;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.9);
  margin-top: 1.5rem;
}

.next-steps {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.next-steps h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.next-steps ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.next-steps li {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.85);
}
