:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --bg-alt: #13161b;
  --text: #e7e8ea;
  --muted: #a7adb7;
  --accent: #ffb45b;
  --accent-2: #5dd7ff;
  --border: #2a2f38;
  --glow: rgba(255, 179, 90, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top right, rgba(93, 215, 255, 0.12), transparent 45%),
    radial-gradient(circle at 15% 20%, rgba(255, 180, 91, 0.18), transparent 40%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero {
  position: relative;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(19, 22, 27, 0.95), rgba(11, 13, 16, 0.9));
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
}

.hero__content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero__glow {
  position: absolute;
  inset: -10% 10% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 91, 0.5), transparent 70%);
  filter: blur(10px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.95rem;
  color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section__lede {
  color: var(--muted);
  max-width: 720px;
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-bottom: 12px;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.card ul li::before {
  content: "✦";
  color: var(--accent);
  margin-right: 8px;
}

.section--steps h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steps {
  list-style: none;
  display: grid;
  gap: 20px;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(19, 22, 27, 0.7);
  border: 1px solid var(--border);
}

.steps li span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 180, 91, 0.12);
  color: var(--accent);
  font-weight: 600;
}

.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery figure {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.gallery img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.card--accent {
  background: linear-gradient(135deg, rgba(255, 180, 91, 0.12), rgba(19, 22, 27, 0.9));
}

.chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.section--cta .cta {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(93, 215, 255, 0.12), rgba(255, 180, 91, 0.12));
  border: 1px solid var(--border);
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 13, 16, 0.6);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.checklist input {
  accent-color: var(--accent-2);
}

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  main {
    padding: 48px 18px 36px;
  }

  .hero {
    padding: 40px 28px;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.section,
.footer {
  animation: rise 0.8s ease both;
}

.section:nth-of-type(2) {
  animation-delay: 0.1s;
}

.section:nth-of-type(3) {
  animation-delay: 0.2s;
}

.section:nth-of-type(4) {
  animation-delay: 0.3s;
}
