:root {
  --bg: #2F3A2E;
  --bg-2: #242D22;

  --panel: rgba(47, 58, 46, 0.82);
  --panel-strong: rgba(36, 45, 34, 0.95);

  --text: #F5F7F3;
  --muted: #C2CBBE;

  --line: rgba(255, 255, 255, 0.08);

  --accent: #AFC8A4;
  --accent-soft: rgba(175, 200, 164, 0.22);

  --white-soft: rgba(255, 255, 255, 0.04);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(175, 200, 164, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(150, 165, 120, 0.14), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  position: relative;
  overflow-x: hidden;
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  right: -60px;
  background: rgba(175, 200, 164, 0.12);
}

.orb-2 {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: -80px;
  background: rgba(150, 165, 120, 0.1);
}

.page {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.hero {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  margin-bottom: 16px;
}

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

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 9vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-title {
  margin: 12px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #EAF0E6;
}

.hero-tagline {
  margin: 8px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-intro {
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hero-button {
  min-height: 58px;
  border-radius: 16px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-button:hover,
.hero-button:focus-visible,
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
}

.hero-button.primary {
  background: linear-gradient(180deg, #C9D9B8, #9FB889);
  color: #1C1C1C;
  box-shadow: 0 10px 30px rgba(175, 200, 164, 0.22);
}

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

.content-grid {
  display: grid;
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section-head {
  margin-bottom: 14px;
}

.section-label {
  margin: 0 0 6px;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.card h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.stack {
  display: grid;
  gap: 10px;
}

.link-card {
  display: block;
  padding: 14px 15px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(175, 200, 164, 0.38);
  background: linear-gradient(180deg, rgba(175,200,164,0.08), rgba(255,255,255,0.02));
  outline: none;
}

.link-card span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.link-card small {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.footer {
  padding: 18px 4px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

@media (min-width: 700px) {
  .page {
    padding-top: 30px;
    padding-bottom: 52px;
  }

  .hero {
    padding: 34px 30px;
  }

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

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

}