:root {
  --ink: #17231f;
  --muted: #53645e;
  --paper: #fffaf0;
  --panel: rgba(255, 255, 255, 0.88);
  --line: rgba(34, 58, 50, 0.18);
  --green: #0f766e;
  --green-dark: #0a4f49;
  --gold: #d89b2b;
  --shadow: 0 28px 80px rgba(19, 45, 38, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 118, 110, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(216, 155, 43, 0.2), transparent 28rem),
    linear-gradient(145deg, #f7f0df 0%, #e7efe9 54%, #f5ead6 100%);
}

a {
  color: inherit;
}

.landing-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.74)),
    radial-gradient(circle at 80% 20%, rgba(15, 118, 110, 0.16), transparent 18rem);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5rem -8rem auto;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(15, 118, 110, 0.08) 0,
    rgba(15, 118, 110, 0.08) 2px,
    transparent 2px,
    transparent 24px
  );
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-dark);
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  position: relative;
  z-index: 1;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 740px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.access-note {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 0.95rem;
}

.panel-grid,
.resource-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.panel,
.resource-card,
.safety-note {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 1.25rem;
  box-shadow: 0 18px 42px rgba(19, 45, 38, 0.08);
}

.panel h2,
.resource-card h3,
.safety-note h2,
.section-heading h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.panel p,
.resource-card p,
.safety-note p {
  margin: 0;
  color: var(--muted);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
}

.resources,
.safety-note {
  margin-top: 1.2rem;
}

.section-heading {
  margin-top: 3rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.resource-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--green-dark);
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-card {
  background: linear-gradient(155deg, rgba(15, 118, 110, 0.12), rgba(255, 255, 255, 0.9));
}

.action-card .button {
  margin-top: 1rem;
}

@media (max-width: 820px) {
  .landing-shell {
    padding-top: 1rem;
  }

  .hero {
    border-radius: 24px;
  }

  .panel-grid,
  .resource-list {
    grid-template-columns: 1fr;
  }
}
