:root {
  --ink: #071411;
  --moss: #12372d;
  --fern: #67b58a;
  --nectar: #f4bc46;
  --cream: #fff7e6;
  --coral: #ef7d63;
  --tide: #58a6b2;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-rounded, "Aptos", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 80% 0%, rgba(244,188,70,.22), transparent 28%), linear-gradient(140deg, #071411, #12372d 48%, #d7ccb6);
  color: var(--cream);
}

main { overflow: hidden; }
.hero, .split, .worlds, .pass {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(255,231,163,.34);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--nectar);
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2 { margin: 18px 0 0; letter-spacing: -.07em; line-height: .9; }
h1 { font-size: clamp(64px, 10vw, 132px); max-width: 760px; }
h2 { font-size: clamp(44px, 6vw, 86px); }
.lede { max-width: 570px; color: rgba(255,247,230,.74); font-size: 22px; line-height: 1.45; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button, .ghost {
  border-radius: 999px;
  padding: 10px 10px 10px 24px;
  color: var(--ink);
  background: var(--cream);
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.button span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5d8ba;
}
.ghost { color: var(--cream); background: rgba(255,247,230,.1); padding: 24px 26px; }

.phone {
  justify-self: center;
  width: min(390px, 100%);
  border-radius: 52px;
  padding: 12px;
  background: rgba(255,247,230,.16);
  box-shadow: 0 40px 90px rgba(0,0,0,.38);
  transform: rotate(3deg);
}
.phone-top { width: 110px; height: 24px; border-radius: 999px; background: #06110e; margin: 8px auto 14px; }
.screen { border-radius: 38px; background: var(--ink); padding: 24px; border: 1px solid rgba(255,247,230,.12); }
.mini { color: var(--nectar); font-size: 12px; letter-spacing: .18em; font-weight: 900; }
.screen h2 { font-size: 38px; letter-spacing: -.04em; }
.board { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin-top: 24px; }
.board i {
  aspect-ratio: 1;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
  background: #1f7d55;
  color: var(--cream);
}
.board i:nth-child(3n) { background: #4553b8; }
.board i:nth-child(4n) { background: #a24f62; }
.board i:nth-child(5n) { background: #277b8d; }
.screen button { width: 100%; border: 0; border-radius: 999px; padding: 18px; margin-top: 20px; background: var(--nectar); color: var(--ink); font-weight: 900; font-size: 18px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.steps { display: grid; gap: 16px; }
.steps article, .cards article, .price {
  border-radius: 34px;
  padding: 24px;
  background: rgba(255,247,230,.1);
  border: 1px solid rgba(255,247,230,.12);
}
.steps strong { color: var(--nectar); font-size: 48px; display: block; }
.steps span, .cards span, .pass p, .price em { color: rgba(255,247,230,.7); font-size: 18px; line-height: 1.4; }
.cards { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards b { display: block; font-size: 24px; margin-bottom: 12px; }
.pass { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.price { background: var(--cream); color: var(--ink); }
.price span, .price strong, .price em { display: block; }
.price span { color: var(--coral); font-weight: 900; }
.price strong { font-size: 44px; margin-top: 12px; }
.price em { color: #566259; font-style: normal; margin-top: 16px; }

@media (max-width: 840px) {
  .hero, .split, .pass { grid-template-columns: 1fr; }
  .hero, .split, .worlds, .pass { padding: 54px 0; }
  .phone { transform: none; }
  .cards { grid-template-columns: 1fr; }
}
