:root {
  color-scheme: dark;
  --bg: #14161c;
  --bg-deep: #0c0e13;
  --surface: rgba(24, 27, 34, 0.92);
  --surface-muted: rgba(30, 34, 42, 0.96);
  --text: #e8eaef;
  --muted: #8b93a3;
  --accent: #ff5c38;
  --accent-deep: #e04422;
  --glow-lime: #7ee787;
  --glow-lime-soft: rgba(126, 231, 135, 0.12);
  --glow-coral: #ff5c38;
  --glow-coral-soft: rgba(255, 92, 56, 0.14);
  --glow-violet: #a78bfa;
  --glow-violet-soft: rgba(167, 139, 250, 0.1);
  --ink: #f4f5f7;
  --border: rgba(255, 92, 56, 0.18);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 16px;
  --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;
  --font-mono: "SF Mono", "Menlo", "Consolas", monospace;
}

* {
  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.7;
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 42% at 12% 8%, rgba(255, 92, 56, 0.18), transparent),
    radial-gradient(ellipse 42% 36% at 88% 18%, rgba(126, 231, 135, 0.12), transparent),
    radial-gradient(ellipse 48% 40% at 50% 100%, rgba(167, 139, 250, 0.1), transparent),
    linear-gradient(168deg, #1a1d25 0%, var(--bg) 55%, var(--bg-deep) 100%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 92, 56, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 56, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 5%, transparent 75%);
}

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

.ambient__orb--coral {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -60px;
  background: rgba(255, 92, 56, 0.22);
}

.ambient__orb--lime {
  width: 360px;
  height: 360px;
  top: 38%;
  right: -80px;
  background: rgba(126, 231, 135, 0.16);
}

.ambient__orb--violet {
  width: 300px;
  height: 300px;
  bottom: 8%;
  left: 18%;
  background: rgba(167, 139, 250, 0.14);
}

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

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  padding: 48px 40px 40px;
  border-radius: var(--radius);
  background: linear-gradient(168deg, rgba(28, 31, 38, 0.98) 0%, rgba(20, 22, 28, 0.99) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 35% at 50% 0%, rgba(255, 92, 56, 0.16), transparent 62%),
    radial-gradient(ellipse 30% 28% at 6% 72%, rgba(126, 231, 135, 0.08), transparent 50%),
    radial-gradient(ellipse 28% 26% at 94% 78%, rgba(167, 139, 250, 0.06), transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-coral) 18%,
    var(--glow-lime) 50%,
    var(--glow-violet) 82%,
    transparent
  );
  opacity: 0.85;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  color: var(--accent);
  background: linear-gradient(
    150deg,
    var(--glow-coral-soft) 0%,
    rgba(28, 31, 38, 0.98) 52%,
    var(--glow-lime-soft) 100%
  );
  border: 1.5px solid rgba(255, 92, 56, 0.35);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 48px rgba(255, 92, 56, 0.2),
    0 14px 36px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

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

.hero__content {
  max-width: 56ch;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--glow-lime);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.brand-title span {
  background: linear-gradient(
    118deg,
    var(--accent) 0%,
    #ff8a65 40%,
    var(--glow-lime) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  margin: 14px auto 0;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 48ch;
  letter-spacing: 0.005em;
}

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

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

.updated {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--glow-lime);
  background: var(--glow-coral-soft);
  border: 1px solid rgba(255, 92, 56, 0.28);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

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

.highlights li {
  padding: 26px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.highlights li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
}

.highlights li:nth-child(1)::before {
  background: linear-gradient(90deg, var(--glow-coral), var(--glow-lime));
}

.highlights li:nth-child(2)::before {
  background: linear-gradient(90deg, var(--glow-lime), var(--glow-violet));
}

.highlights li:nth-child(3)::before {
  background: linear-gradient(90deg, var(--glow-violet), var(--glow-coral));
}

.highlights li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 92, 56, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

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

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

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.card {
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

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

.card:hover {
  background: linear-gradient(148deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(255, 92, 56, 0.3);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

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

.card h2 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

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

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

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

a:hover {
  color: var(--accent);
}

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

.footer strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--glow-lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

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

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

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

  .hero {
    padding: 28px 18px 24px;
  }

  .hero__badge {
    width: 88px;
    height: 88px;
  }

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