:root {
  color-scheme: dark;
  --bg: #1a1410;
  --bg-deep: #0f0b08;
  --surface: rgba(32, 24, 18, 0.94);
  --surface-muted: rgba(40, 30, 22, 0.97);
  --text: #f5ebe0;
  --muted: #a89480;
  --accent: #f4a261;
  --accent-deep: #d97706;
  --glow-amber: #fbbf24;
  --glow-amber-soft: rgba(251, 191, 36, 0.14);
  --glow-rose: #e76f51;
  --glow-rose-soft: rgba(231, 111, 81, 0.16);
  --glow-sage: #84a98c;
  --glow-sage-soft: rgba(132, 169, 140, 0.12);
  --ink: #fff8f0;
  --border: rgba(244, 162, 97, 0.2);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  --radius: 24px;
  --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;
  --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 52% 44% at 10% 6%, rgba(231, 111, 81, 0.2), transparent),
    radial-gradient(ellipse 44% 38% at 90% 14%, rgba(251, 191, 36, 0.14), transparent),
    radial-gradient(ellipse 50% 42% at 48% 100%, rgba(132, 169, 140, 0.12), transparent),
    linear-gradient(172deg, #221a14 0%, var(--bg) 52%, var(--bg-deep) 100%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  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.05;
  background-image:
    linear-gradient(rgba(244, 162, 97, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 162, 97, 0.3) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 28%, black 5%, transparent 75%);
}

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

.ambient__orb--coral {
  width: 440px;
  height: 440px;
  top: -130px;
  left: -70px;
  background: rgba(231, 111, 81, 0.24);
}

.ambient__orb--lime {
  width: 380px;
  height: 380px;
  top: 36%;
  right: -90px;
  background: rgba(251, 191, 36, 0.18);
}

.ambient__orb--violet {
  width: 320px;
  height: 320px;
  bottom: 6%;
  left: 16%;
  background: rgba(132, 169, 140, 0.16);
}

.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(38, 28, 20, 0.98) 0%, rgba(24, 18, 12, 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 48% 38% at 50% 0%, rgba(244, 162, 97, 0.18), transparent 62%),
    radial-gradient(ellipse 32% 30% at 8% 74%, rgba(132, 169, 140, 0.1), transparent 50%),
    radial-gradient(ellipse 30% 28% at 92% 76%, rgba(231, 111, 81, 0.08), transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-rose) 16%,
    var(--glow-amber) 50%,
    var(--glow-sage) 84%,
    transparent
  );
  opacity: 0.9;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: var(--accent);
  background: linear-gradient(
    145deg,
    var(--glow-rose-soft) 0%,
    rgba(32, 24, 18, 0.98) 50%,
    var(--glow-amber-soft) 100%
  );
  border: 1.5px solid rgba(244, 162, 97, 0.38);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 52px rgba(244, 162, 97, 0.22),
    0 16px 40px rgba(0, 0, 0, 0.38);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

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

.hero__content {
  max-width: 58ch;
  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.22em;
  text-transform: uppercase;
  color: var(--glow-sage);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-title span {
  background: linear-gradient(
    115deg,
    var(--glow-rose) 0%,
    var(--accent) 42%,
    var(--glow-amber) 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: 50ch;
  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: 52ch;
  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-amber);
  background: var(--glow-rose-soft);
  border: 1px solid rgba(244, 162, 97, 0.32);
  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.28);
  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-rose), var(--glow-amber));
}

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

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

.highlights li:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 162, 97, 0.38);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.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-rose), var(--glow-amber), var(--glow-sage));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  background: linear-gradient(148deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(244, 162, 97, 0.34);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.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-amber);
  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(--glow-rose), var(--glow-amber));
  -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: 90px;
    height: 90px;
    border-radius: 24px;
  }

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