:root {
  --bg: #0c0f18;
  --card: #0f1422;
  --primary: #f4b860;
  --accent: #9ad5ff;
  --text: #e9ecf2;
  --muted: #97a0b8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
  display: flex;
  justify-content: center;
  padding: 48px 16px 64px;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  filter: blur(90px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: float 16s ease-in-out infinite alternate;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, #f4b860, transparent 60%);
  top: -60px;
  left: -100px;
}

.orb-b {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 60% 40%, #70b8ff, transparent 55%);
  bottom: -120px;
  right: -120px;
  animation-duration: 18s;
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.page {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244, 184, 96, 0.08), rgba(154, 213, 255, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.card > * {
  position: relative;
  z-index: 1;
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.hero h1 {
  font-family: "Fraunces", "Space Grotesk", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.hero {
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 320px;
  height: 160px;
  background: radial-gradient(circle at 20% 20%, rgba(244, 184, 96, 0.35), transparent 55%);
  transform: rotate(-6deg);
  opacity: 0.8;
  pointer-events: none;
}

.hero .lede {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 8px;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.pill-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.03);
}

.pill:hover {
  border-color: rgba(244, 184, 96, 0.5);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.split {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.traits {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.traits li {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.callout {
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(244, 184, 96, 0.12), rgba(112, 184, 255, 0.12));
  color: #0d0f18;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  color: #0c0f18;
  background: linear-gradient(120deg, #ffe1a6, #f4b860 45%, #ffd196 90%);
  background-size: 160% 160%;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 45px rgba(244, 184, 96, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.5s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 55px rgba(244, 184, 96, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  background-position: 100% 50%;
}

.button.ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border: 1px solid rgba(154, 213, 255, 0.35);
  box-shadow: 0 12px 32px rgba(154, 213, 255, 0.16);
  backdrop-filter: blur(6px);
}

.button.ghost:hover {
  border-color: rgba(154, 213, 255, 0.75);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 36px rgba(154, 213, 255, 0.2);
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(20px, -20px, 0);
  }
}

@media (max-width: 720px) {
  body {
    padding: 28px 12px 48px;
  }

  .card {
    padding: 22px 20px;
  }

  .hero .lede {
    font-size: 1rem;
  }
}
