:root {
  color-scheme: dark;
  --bg: #0a0e0c;
  --bg-deep: #050807;
  --surface: rgba(12, 18, 14, 0.94);
  --surface-muted: rgba(16, 24, 18, 0.92);
  --text: #edf2ee;
  --muted: #8fa898;
  --accent: #a3e635;
  --accent-deep: #d9f99d;
  --glow-lime: #84cc16;
  --glow-lime-soft: rgba(132, 204, 22, 0.18);
  --glow-coral: #f97316;
  --glow-coral-soft: rgba(249, 115, 22, 0.16);
  --glow-mint: #4ade80;
  --glow-mint-soft: rgba(74, 222, 128, 0.14);
  --glow-gold: #facc15;
  --glow-gold-soft: rgba(250, 204, 21, 0.12);
  --ink: #f4faf5;
  --border: rgba(163, 230, 53, 0.12);
  --shadow: 0 32px 88px rgba(0, 0, 0, 0.72);
  --radius: 28px;
  --radius-sm: 18px;
  --font-display: "SF Pro Display", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "SF Pro Text", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 42% at 88% 6%, rgba(249, 115, 22, 0.14), transparent),
    radial-gradient(ellipse 38% 32% at 8% 38%, rgba(132, 204, 22, 0.12), transparent),
    radial-gradient(ellipse 46% 38% at 48% 100%, rgba(74, 222, 128, 0.08), transparent),
    linear-gradient(168deg, var(--bg-deep) 0%, var(--bg) 54%, #0c1410 100%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.ambient__lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(163, 230, 53, 0.03) 47px,
      rgba(163, 230, 53, 0.03) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(163, 230, 53, 0.03) 47px,
      rgba(163, 230, 53, 0.03) 48px
    );
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, black 10%, transparent 82%);
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.ambient__orb--amber {
  width: 400px;
  height: 400px;
  top: -130px;
  right: -50px;
  background: rgba(249, 115, 22, 0.22);
}

.ambient__orb--teal {
  width: 360px;
  height: 360px;
  top: 42%;
  left: -110px;
  background: rgba(132, 204, 22, 0.16);
}

.ambient__orb--sky {
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: 8%;
  background: rgba(74, 222, 128, 0.14);
}

.page {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 84px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
  padding: 52px 48px 46px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(14, 22, 16, 0.98) 0%, rgba(6, 10, 8, 0.99) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(24px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 48% at 50% -6%, rgba(249, 115, 22, 0.1), transparent 60%),
    radial-gradient(ellipse 28% 26% at 92% 68%, rgba(132, 204, 22, 0.08), transparent 50%),
    radial-gradient(ellipse 22% 20% at 6% 82%, rgba(74, 222, 128, 0.06), transparent 44%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-lime) 15%,
    var(--glow-coral) 50%,
    var(--glow-mint) 85%,
    transparent
  );
  opacity: 0.8;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 26px;
  color: var(--glow-lime);
  background: linear-gradient(
    145deg,
    var(--glow-lime-soft) 0%,
    var(--glow-coral-soft) 55%,
    var(--glow-mint-soft) 100%
  );
  border: 1px solid rgba(163, 230, 53, 0.32);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 18px rgba(255, 255, 255, 0.06),
    0 0 48px rgba(132, 204, 22, 0.2),
    0 14px 36px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.hero__badge svg {
  width: 46px;
  height: 46px;
}

.hero__content {
  min-width: 0;
  position: relative;
  z-index: 1;
  max-width: 58ch;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--glow-coral);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.brand-title span {
  background: linear-gradient(
    105deg,
    var(--glow-lime) 0%,
    var(--glow-gold) 38%,
    var(--glow-coral) 72%,
    var(--glow-mint) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  margin: 16px 0 0;
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
}

h1 {
  margin: 30px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.updated {
  display: inline-block;
  margin-top: 26px;
  padding: 8px 20px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--glow-lime-soft);
  border: 1px solid rgba(132, 204, 22, 0.36);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--glow-coral);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 0.26s ease, border-left-color 0.26s ease, box-shadow 0.26s ease;
}

.highlights li:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.highlights li:nth-child(1) {
  border-left-color: var(--glow-lime);
}

.highlights li:nth-child(2) {
  border-left-color: var(--glow-coral);
}

.highlights li:nth-child(3) {
  border-left-color: var(--glow-mint);
}

.highlights strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.56;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 30px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  transition: background 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--glow-lime), var(--glow-coral), var(--glow-mint));
  opacity: 0;
  transition: opacity 0.26s ease;
}

.card:hover {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(163, 230, 53, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.card p + p {
  margin-top: 11px;
}

a {
  color: var(--accent);
  font-weight: 600;
}

a:hover {
  color: var(--glow-coral);
}

.footer {
  margin-top: 56px;
  padding: 28px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 720px) {
  .hero {
    padding: 40px 28px 36px;
  }

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

@media (max-width: 480px) {
  .page {
    padding: 32px 0 60px;
  }

  .hero {
    padding: 32px 22px 28px;
  }
}
