:root {
  color-scheme: dark;
  --bg: #14100c;
  --bg-deep: #0a0806;
  --surface: rgba(22, 18, 14, 0.94);
  --surface-muted: rgba(28, 22, 16, 0.97);
  --text: #f2ebe3;
  --muted: #a89888;
  --accent: #e8a84c;
  --accent-deep: #c47a1a;
  --glow-amber: #f0b84a;
  --glow-amber-soft: rgba(240, 184, 74, 0.14);
  --glow-copper: #d4845c;
  --glow-copper-soft: rgba(212, 132, 92, 0.16);
  --glow-sage: #8faa7a;
  --glow-sage-soft: rgba(143, 170, 122, 0.12);
  --ink: #faf6f0;
  --border: rgba(232, 168, 76, 0.22);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.68);
  --radius: 28px;
  --radius-sm: 20px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, 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 46% 40% at 12% 8%, rgba(240, 184, 74, 0.16), transparent),
    radial-gradient(ellipse 40% 36% at 88% 14%, rgba(212, 132, 92, 0.14), transparent),
    radial-gradient(ellipse 50% 44% at 50% 98%, rgba(143, 170, 122, 0.08), transparent),
    linear-gradient(168deg, #1c1610 0%, var(--bg) 54%, 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='4' 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.035;
  background-image:
    linear-gradient(rgba(232, 168, 76, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 168, 76, 0.3) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 8%, transparent 76%);
}

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

.ambient__orb--amber {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -100px;
  background: rgba(240, 184, 74, 0.22);
}

.ambient__orb--copper {
  width: 440px;
  height: 440px;
  top: 28%;
  right: -120px;
  background: rgba(212, 132, 92, 0.18);
}

.ambient__orb--sage {
  width: 380px;
  height: 380px;
  bottom: 0;
  left: 18%;
  background: rgba(143, 170, 122, 0.12);
}

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

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 56px 44px 46px;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(28, 22, 16, 0.98) 0%, rgba(14, 10, 8, 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 54% 44% at 50% -4%, rgba(240, 184, 74, 0.18), transparent 64%),
    radial-gradient(ellipse 38% 36% at 6% 78%, rgba(212, 132, 92, 0.1), transparent 52%),
    radial-gradient(ellipse 36% 34% at 94% 70%, rgba(143, 170, 122, 0.08), transparent 48%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-sage) 12%,
    var(--glow-amber) 48%,
    var(--glow-copper) 88%,
    transparent
  );
  opacity: 0.95;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  color: var(--accent);
  background: linear-gradient(
    152deg,
    var(--glow-copper-soft) 0%,
    rgba(18, 14, 10, 0.98) 50%,
    var(--glow-amber-soft) 100%
  );
  border: 1.5px solid rgba(232, 168, 76, 0.38);
  border-radius: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 64px rgba(240, 184, 74, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.52);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

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

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

.eyebrow {
  margin: 0 0 12px;
  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(1.8rem, 5.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand-title .brand-name {
  background: linear-gradient(
    124deg,
    var(--glow-amber) 0%,
    var(--glow-copper) 52%,
    var(--glow-sage) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-title .brand-name em {
  font-style: normal;
  color: var(--glow-copper);
  -webkit-text-fill-color: var(--glow-copper);
  background: none;
  font-weight: 600;
}

.brand-title small {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--muted);
}

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

h1 {
  margin: 30px 0 0;
  padding-top: 26px;
  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: 12px;
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.updated {
  display: inline-block;
  margin-top: 26px;
  padding: 8px 22px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--glow-amber);
  background: var(--glow-copper-soft);
  border: 1px solid rgba(232, 168, 76, 0.32);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

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

.highlights li {
  padding: 30px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  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-amber), var(--glow-copper));
}

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

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

.highlights li:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 168, 76, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.52);
}

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

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

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

.card {
  padding: 28px 30px;
  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: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--glow-amber), var(--glow-copper), var(--glow-sage));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  background: linear-gradient(150deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(232, 168, 76, 0.36);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.48);
}

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

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

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

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

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

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

.footer {
  margin-top: 48px;
  padding: 28px 0;
  text-align: center;
  font-size: 0.75rem;
  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-amber), var(--glow-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

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

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

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

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

  .hero__badge {
    width: 96px;
    height: 96px;
    border-radius: 28px;
  }

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