:root {
  color-scheme: dark;
  --bg: #080711;
  --panel: rgba(15, 13, 23, 0.78);
  --line: rgba(255, 202, 90, 0.22);
  --text: #f4efd9;
  --muted: rgba(244, 239, 217, 0.72);
  --amber: #ffb82e;
  --orange: #ff6d22;
  --blue: #61c6ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", system-ui, sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 109, 34, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 90%, rgba(97, 198, 255, 0.12), transparent 26rem),
    linear-gradient(135deg, #060611, #140a18 52%, #220d0b);
  color: var(--text);
}

a {
  color: var(--amber);
  text-decoration: none;
}

a:hover {
  color: #ffd47a;
}

.shell {
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero,
article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 72px);
}

.hero::after,
article::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 46%;
  background:
    linear-gradient(170deg, transparent 0 40%, rgba(139, 83, 37, 0.72) 41% 100%),
    linear-gradient(15deg, transparent 0 35%, rgba(82, 47, 31, 0.86) 36% 100%);
  opacity: 0.24;
  pointer-events: none;
}

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

h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 2rem 0 0.65rem;
  color: #fff6df;
  font-size: 1.05rem;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero p {
  max-width: 620px;
  margin: 1rem 0 0;
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #1d0902;
  font-weight: 900;
}

.actions a + a {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

nav {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

article {
  padding: clamp(24px, 5vw, 52px);
}

article h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

ul {
  padding-left: 1.25rem;
}

@media (max-width: 560px) {
  .shell {
    width: min(100vw - 20px, 920px);
    padding: 20px 0;
  }

  .hero,
  article {
    border-radius: 14px;
  }
}
