:root {
  --chalk: #F8F8F7;
  --white: #FFFFFF;
  --sage: #7A9E7E;
  --bordeaux: #B03045;
  --slate: #4A5585;
  --inkwell: #2B2B2B;
  --navy: #11162C;
  --cream: #FFF5EC;
  --gold: #E9AB44;
  --coral: #E06B65;
  --line: rgba(17, 22, 44, 0.09);
  --shadow: 0 18px 45px rgba(43, 43, 43, 0.07);
  --radius: 28px;
  --page-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 2%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(180deg, #FBFAF8 0%, var(--chalk) 100%);
  color: var(--navy);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell,
.site-footer {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
}

.intro {
  display: block;
  padding: 42px 8px 36px;
}

.intro-copy {
  max-width: 760px;
}

.intro h1 {
  max-width: 580px;
  margin: 0 0 10px;
  font-size: clamp(3.2rem, 6.2vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.intro-copy > p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(17, 22, 44, 0.77);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.process {
  display: grid;
  gap: 14px;
}

.process-card {
  display: grid;
  grid-template-columns: minmax(245px, 0.34fr) minmax(0, 0.66fr);
  min-height: 330px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step-copy {
  display: flex;
  min-width: 0;
  padding: 30px 28px 26px 18px;
  flex-direction: column;
  align-items: flex-start;
}

.step-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.step-number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(145deg, #C40836, #A80D2B);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(176, 48, 69, 0.22);
  font-size: 1.85rem;
  font-weight: 800;
}

.step-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.step-copy > p {
  max-width: 30ch;
  margin: 24px 0 0 72px;
  color: rgba(17, 22, 44, 0.72);
  font-size: 0.98rem;
}

.step-icon {
  display: block;
  width: 152px;
  height: 152px;
  margin: auto 0 0 72px;
  object-fit: contain;
}

.builder-stage,
.product-stage,
.delivery-stage {
  min-width: 0;
  border-radius: 22px;
}

.builder-stage {
  display: grid;
  place-items: center;
  padding: 18px clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 14%, transparent 14% 86%, rgba(255, 255, 255, 0.035) 86%),
    linear-gradient(135deg, #34416F, #4A5889);
}

.builder-window {
  width: min(100%, 580px);
  padding: 20px 24px;
  background: var(--white);
  border: 2px solid #27335E;
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(17, 22, 44, 0.18);
}

.builder-field + .builder-field {
  margin-top: 12px;
}

.builder-field > span {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.builder-field > small {
  display: block;
  margin: 1px 0 5px;
  color: rgba(17, 22, 44, 0.56);
  font-size: 0.57rem;
}

.fake-input {
  padding: 8px 10px;
  color: rgba(17, 22, 44, 0.42);
  background: #FAFAF9;
  border: 1px solid rgba(17, 22, 44, 0.15);
  border-radius: 8px;
  font-size: 0.72rem;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.vibe-option {
  display: flex;
  min-width: 0;
  padding: 7px;
  align-items: center;
  flex-direction: column;
  background: #FAFAF9;
  border: 1px solid rgba(17, 22, 44, 0.12);
  border-radius: 9px;
  text-align: center;
}

.vibe-option.is-active {
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 1px var(--bordeaux);
}

.vibe-option img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  background: var(--white);
  border-radius: 6px;
}

.vibe-option strong {
  margin-top: 5px;
  font-size: 0.62rem;
  line-height: 1.2;
}

.vibe-option small {
  margin-top: 2px;
  color: rgba(17, 22, 44, 0.48);
  font-size: 0.52rem;
}

.grade-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 6px;
}

.grade-row b {
  padding: 6px 4px;
  border: 1px solid rgba(17, 22, 44, 0.15);
  border-radius: 999px;
  font-size: 0.62rem;
  text-align: center;
}

.builder-button {
  margin-top: 12px;
  padding: 8px;
  color: white;
  background: var(--bordeaux);
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 28px 14px 8px;
}

.direction-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 280px;
  padding: 20px 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(165deg, #FFFEFC, #F8F5EF);
  border: 1px solid rgba(17, 22, 44, 0.12);
  border-radius: 24px;
  text-align: center;
}

.direction-card.is-selected {
  border: 2px solid var(--bordeaux);
  box-shadow: 0 12px 30px rgba(176, 48, 69, 0.12);
  transform: translateY(-3px);
}

.direction-card > strong {
  margin-top: 14px;
  font-size: 0.95rem;
}

.direction-card > small {
  color: rgba(17, 22, 44, 0.5);
  font-size: 0.68rem;
}

.favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--bordeaux);
  border-radius: 50%;
  font-size: 1.2rem;
}

.direction-asset {
  display: grid;
  width: min(182px, 100%);
  height: 182px;
  place-items: center;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(17, 22, 44, 0.08);
  border-radius: 20px;
}

.direction-asset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.theme-preview {
  position: relative;
  width: min(168px, 100%);
  height: 178px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 44, 0.08);
  border-radius: 48% 48% 42% 42%;
  box-shadow: inset 0 -18px 30px rgba(255, 255, 255, 0.34);
}

.theme-preview::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  height: 12px;
  background: rgba(17, 22, 44, 0.08);
  border-radius: 50%;
  filter: blur(5px);
  content: '';
}

.theme-preview--woodland {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.62) 0 5px, transparent 6px),
    linear-gradient(155deg, #F9E9C2 0%, #E9D6A8 100%);
}

.theme-preview--circus {
  background:
    linear-gradient(90deg, transparent 47%, rgba(255,255,255,0.3) 47% 53%, transparent 53%),
    linear-gradient(155deg, #F8E7B5 0%, #F5D487 100%);
}

.theme-preview--space {
  background:
    radial-gradient(circle at 26% 20%, white 0 2px, transparent 3px),
    radial-gradient(circle at 78% 31%, white 0 2px, transparent 3px),
    linear-gradient(155deg, #DDE5FA 0%, #B9C7EA 100%);
}

.scene-spark {
  position: absolute;
  z-index: 5;
  color: var(--bordeaux);
}

.scene-spark--one {
  top: 14px;
  right: 22px;
  font-size: 1.25rem;
}

.scene-spark--two {
  top: 42px;
  left: 19px;
  color: var(--slate);
  font-size: 0.8rem;
}

.mascot {
  position: absolute;
  z-index: 3;
  top: 36px;
  left: 50%;
  width: 78px;
  height: 112px;
  transform: translateX(-50%);
}

.mascot-face {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 50%;
  width: 62px;
  height: 58px;
  background: #E58B43;
  border: 3px solid var(--navy);
  border-radius: 45% 45% 48% 48%;
  transform: translateX(-50%);
}

.mascot-face::before {
  position: absolute;
  top: 22px;
  left: 16px;
  width: 5px;
  height: 7px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 22px 0 0 var(--navy);
  content: '';
}

.mascot-face i {
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 24px;
  height: 17px;
  background: #F7D49F;
  border: 2px solid var(--navy);
  border-radius: 50%;
  transform: translateX(-50%);
}

.mascot-face i::before {
  position: absolute;
  top: 1px;
  left: 8px;
  width: 5px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  content: '';
}

.mascot-face i::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--navy);
  border-radius: 50%;
  content: '';
}

.mascot-body {
  position: absolute;
  z-index: 2;
  bottom: 3px;
  left: 50%;
  width: 54px;
  height: 60px;
  background: #D8753D;
  border: 3px solid var(--navy);
  border-radius: 45% 45% 30% 30%;
  transform: translateX(-50%);
}

.mascot-body::before,
.mascot-body::after {
  position: absolute;
  bottom: -5px;
  width: 21px;
  height: 18px;
  background: inherit;
  border: 3px solid var(--navy);
  border-radius: 50%;
  content: '';
}

.mascot-body::before { left: -8px; }
.mascot-body::after { right: -8px; }

.mascot-ear {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 25px;
  height: 31px;
  background: #D86B3F;
  border: 3px solid var(--navy);
  border-radius: 80% 8% 55% 45%;
}

.mascot-ear::after {
  position: absolute;
  inset: 7px;
  background: #F5B29E;
  border-radius: inherit;
  content: '';
}

.mascot-ear--left {
  left: 3px;
  transform: rotate(-28deg);
}

.mascot-ear--right {
  right: 3px;
  transform: scaleX(-1) rotate(-28deg);
}

.scene-book {
  position: absolute;
  z-index: 5;
  right: 15px;
  bottom: 18px;
  display: grid;
  width: 54px;
  gap: 2px;
}

.scene-book b {
  display: block;
  height: 9px;
  padding-right: 5px;
  color: white;
  background: var(--slate);
  border: 1px solid var(--navy);
  font-size: 0.42rem;
  line-height: 7px;
  text-align: right;
}

.scene-book b:nth-child(2) { width: 46px; background: var(--coral); }
.scene-book b:nth-child(3) { width: 50px; background: var(--sage); }

.scene-leaf {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  width: 20px;
  height: 38px;
  background: var(--sage);
  border: 2px solid var(--navy);
  border-radius: 100% 0 100% 0;
}

.scene-leaf--left { left: 16px; transform: rotate(-25deg); }
.scene-leaf--right { left: 34px; bottom: 11px; transform: scaleX(-1) rotate(-18deg); }

.mascot--lion .lion-mane {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 74px;
  height: 74px;
  background: #9B512A;
  border: 3px solid var(--navy);
  border-radius: 48%;
  box-shadow:
    -7px 7px 0 #9B512A,
    7px 7px 0 #9B512A,
    -5px -5px 0 #9B512A,
    5px -5px 0 #9B512A;
  transform: translateX(-50%);
}

.mascot--lion .mascot-face {
  top: 11px;
  width: 57px;
  height: 55px;
  background: #EAA648;
}

.mascot--lion .mascot-body {
  background: #EAA648;
}

.scene-drum {
  position: absolute;
  z-index: 5;
  right: 13px;
  bottom: 16px;
  width: 50px;
  height: 35px;
  background: #D53D45;
  border: 3px solid var(--navy);
  border-radius: 8px 8px 15px 15px;
}

.scene-drum::before,
.scene-drum::after {
  position: absolute;
  left: -3px;
  width: 50px;
  height: 7px;
  background: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 50%;
  content: '';
}

.scene-drum::before { top: -6px; }
.scene-drum::after { bottom: -5px; }

.scene-drum i {
  position: absolute;
  inset: 3px 7px;
  background: linear-gradient(63deg, transparent 43%, #F9E3A6 44% 56%, transparent 57%);
}

.scene-pencil,
.kit-pencil {
  display: block;
  width: 10px;
  height: 43px;
  background: linear-gradient(90deg, #E7A93C 0 28%, #F9CF4A 28% 72%, #E7A93C 72%);
  border: 2px solid var(--navy);
  border-radius: 3px 3px 1px 1px;
  transform: rotate(34deg);
}

.scene-pencil {
  position: absolute;
  z-index: 4;
  bottom: 19px;
  left: 17px;
}

.scene-pencil::after,
.kit-pencil::after {
  position: absolute;
  bottom: -9px;
  left: -2px;
  border-top: 9px solid #E8BE91;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: '';
}

.mascot--astronaut .space-helmet {
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 50%;
  width: 77px;
  height: 76px;
  background: #F6F8FF;
  border: 4px solid var(--slate);
  border-radius: 50%;
  box-shadow: inset 0 -8px 0 #C6D2EE;
  transform: translateX(-50%);
}

.mascot--astronaut .mascot-face {
  top: 11px;
  width: 55px;
  height: 52px;
  background: #B97952;
}

.mascot--astronaut .mascot-body {
  width: 62px;
  background: #F7F8FC;
  box-shadow: inset 0 -13px 0 #B8C8ED;
}

.scene-planet {
  position: absolute;
  z-index: 5;
  right: 10px;
  bottom: 17px;
  width: 46px;
  height: 46px;
  background: var(--coral);
  border: 3px solid var(--navy);
  border-radius: 50%;
}

.scene-planet i {
  position: absolute;
  top: 17px;
  left: -9px;
  width: 59px;
  height: 13px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.scene-rocket {
  position: absolute;
  z-index: 4;
  bottom: 21px;
  left: 21px;
  color: var(--bordeaux);
  font-size: 1.6rem;
  transform: rotate(35deg);
}

.product-stage {
  position: relative;
  min-height: 335px;
  background:
    radial-gradient(circle at 10% 18%, rgba(233, 171, 68, 0.12) 0 4px, transparent 5px),
    radial-gradient(circle at 14% 18%, rgba(224, 107, 101, 0.12) 0 4px, transparent 5px),
    linear-gradient(145deg, #FFF8F3, #FFFDFB);
  overflow: hidden;
}

.classroom-product {
  position: absolute;
  color: var(--navy);
  background-color: #FFF6DD;
  background-image:
    radial-gradient(circle at 12px 12px, var(--gold) 0 3px, transparent 4px),
    radial-gradient(circle at 28px 12px, var(--coral) 0 3px, transparent 4px);
  border: 2px solid #E5A83D;
  box-shadow: 0 10px 24px rgba(17, 22, 44, 0.1);
}

.product-poster {
  top: 18px;
  right: 28px;
  display: flex;
  width: 210px;
  height: 285px;
  padding: 34px 18px 22px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-width: 5px;
  text-align: center;
}

.product-poster strong {
  max-width: 7ch;
  font-size: 1.48rem;
  line-height: 0.95;
}

.product-poster small {
  margin-top: 13px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-nameplate {
  top: 150px;
  left: 29%;
  display: flex;
  width: 270px;
  height: 74px;
  padding: 12px 22px;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
}

.product-nameplate strong {
  font-size: 1.18rem;
}

.product-label {
  left: 30px;
  bottom: 24px;
  display: flex;
  width: 155px;
  height: 86px;
  padding: 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-border {
  right: 275px;
  bottom: 25px;
  display: flex;
  width: 340px;
  height: 52px;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
}

.product-border span {
  color: var(--bordeaux);
  font-size: 1.25rem;
}

.product-border i {
  position: relative;
  width: 28px;
  height: 23px;
  background: var(--coral);
  border: 2px solid var(--navy);
  border-radius: 5px 5px 8px 8px;
}

.product-border i::before,
.product-border i::after {
  position: absolute;
  left: -2px;
  width: 28px;
  height: 5px;
  background: var(--gold);
  border: 2px solid var(--navy);
  border-radius: 50%;
  content: '';
}

.product-border i::before { top: -4px; }
.product-border i::after { bottom: -4px; }

.product-card {
  top: 42px;
  left: 26px;
  display: flex;
  width: 180px;
  height: 108px;
  padding: 20px;
  justify-content: center;
  flex-direction: column;
}

.product-card strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.job-dots {
  display: flex;
  margin-top: 10px;
  gap: 7px;
}

.job-dots i {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--coral);
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.job-dots i:nth-child(2) { background: var(--gold); }
.job-dots i:nth-child(3) { background: var(--sage); }

.kit-lion {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  background: #9B512A;
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow:
    -3px 2px 0 #9B512A,
    3px 2px 0 #9B512A;
}

.kit-lion > i,
.kit-lion > em {
  position: absolute;
  inset: 5px;
  display: block;
  background: #EAA648;
  border: 2px solid var(--navy);
  border-radius: 47%;
}

.kit-lion > i::before,
.kit-lion > em::before {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 3px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 8px 0 0 var(--navy);
  content: '';
}

.kit-lion > i::after,
.kit-lion > em::after {
  position: absolute;
  right: 6px;
  bottom: 4px;
  left: 6px;
  height: 6px;
  background: #F7D49F;
  border: 1px solid var(--navy);
  border-radius: 50%;
  content: '';
}

.kit-lion--large {
  width: 72px;
  height: 72px;
  margin-top: 14px;
  border-width: 3px;
  box-shadow:
    -5px 3px 0 #9B512A,
    5px 3px 0 #9B512A,
    0 -4px 0 #9B512A;
}

.kit-lion--large > i {
  inset: 9px;
  border-width: 3px;
}

.kit-lion--large > i::before {
  top: 16px;
  left: 11px;
  width: 5px;
  height: 7px;
  box-shadow: 18px 0 0 var(--navy);
}

.kit-lion--large > i::after {
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 12px;
  border-width: 2px;
}

.kit-star {
  color: var(--bordeaux);
  font-size: 1.45rem;
}

.product-accent {
  position: absolute;
  z-index: 2;
}

.product-accent--star {
  top: 28px;
  left: 38%;
  color: var(--bordeaux);
  font-size: 2.4rem;
}

.product-accent--pencil {
  top: 58px;
  left: 48%;
  width: 12px;
  height: 54px;
  background: linear-gradient(90deg, #E7A93C 0 28%, #F9CF4A 28% 72%, #E7A93C 72%);
  border: 2px solid var(--navy);
  border-radius: 3px;
  transform: rotate(40deg);
}

.product-accent--pencil::after {
  position: absolute;
  bottom: -11px;
  left: -2px;
  border-top: 11px solid #E8BE91;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: '';
}

.delivery-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 56px minmax(0, 1fr);
  min-height: 320px;
  align-items: stretch;
  background: linear-gradient(145deg, #FFFAF7, #FFF5F0);
}

.delivery-option {
  display: grid;
  grid-template-rows: auto 278px 17px auto;
  min-width: 0;
  padding: 20px;
  align-items: center;
}

.delivery-option > strong {
  justify-self: center;
  font-size: 1rem;
  text-align: center;
}

.delivery-or {
  position: relative;
  display: grid;
  place-items: center;
}

.delivery-or::before {
  position: absolute;
  inset-block: 22px;
  left: 50%;
  width: 1px;
  background: rgba(17, 22, 44, 0.35);
  content: '';
}

.delivery-or span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: white;
  background: var(--bordeaux);
  border: 5px solid #FFF7F2;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.laptop {
  position: relative;
  width: min(290px, 92%);
  margin-top: 26px;
}

.laptop-screen {
  position: relative;
  z-index: 1;
  display: grid;
  width: 84%;
  height: 145px;
  margin: 0 auto;
  padding: 15px 16px 16px;
  place-items: center;
  background: #242424;
  border: 5px solid #111;
  border-radius: 9px 9px 3px 3px;
}

.screen-label {
  align-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-card {
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-around;
  color: var(--navy);
  background: #FFF6DD;
  border: 3px solid var(--gold);
  box-shadow: inset 0 0 0 4px #FFF6DD, inset 0 0 0 6px var(--coral);
}

.laptop-base {
  height: 10px;
  background: linear-gradient(180deg, #9D9D9D, #D8D8D8);
  border-radius: 2px 2px 12px 12px;
  box-shadow: 0 9px 9px rgba(17, 22, 44, 0.15);
}

.download-badge {
  position: absolute;
  z-index: 2;
  right: 4px;
  bottom: 4px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: white;
  background: var(--bordeaux);
  border: 8px solid white;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(17, 22, 44, 0.16);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.download-badge span {
  display: block;
  margin-bottom: 1px;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.download-journey {
  display: flex;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(17, 22, 44, 0.63);
  font-size: 0.56rem;
  font-weight: 700;
}

.download-journey span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.download-journey b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: white;
  background: var(--bordeaux);
  border-radius: 50%;
  font-size: 0.5rem;
}

.download-journey > i {
  width: 12px;
  height: 1px;
  background: rgba(17, 22, 44, 0.26);
}

.delivery-box {
  position: relative;
  width: min(300px, 94%);
  height: 210px;
  margin-top: 10px;
}

.print-stack {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 220px;
  height: 128px;
  transform: translateX(-50%);
}

.delivered-sheet {
  position: absolute;
  display: block;
  padding: 10px 12px;
  color: var(--navy);
  background: #FFF6DD;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 10px rgba(17, 22, 44, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.delivered-sheet--name {
  top: 22px;
  right: 2px;
  left: 16px;
  transform: rotate(-5deg);
}

.delivered-sheet--label {
  top: 58px;
  right: 13px;
  left: 2px;
  transform: rotate(3deg);
}

.delivered-sheet--poster {
  top: 0;
  left: 50%;
  display: flex;
  width: 92px;
  height: 120px;
  padding: 12px 8px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 9px;
  transform: translateX(-50%) rotate(-1deg);
}

.delivered-sheet .kit-star {
  position: absolute;
  right: 10px;
  color: var(--bordeaux);
  font-size: 0.8rem;
  font-style: normal;
}

.delivered-sheet .kit-pencil {
  position: absolute;
  top: 3px;
  right: 16px;
  width: 6px;
  height: 29px;
  border-width: 1px;
}

.delivered-sheet .kit-pencil::after {
  bottom: -6px;
  left: -1px;
  border-top-width: 6px;
  border-right-width: 3px;
  border-left-width: 3px;
}

.delivered-sheet .kit-lion {
  width: 40px;
  height: 40px;
}

.box-flap {
  position: absolute;
  z-index: 2;
  bottom: 69px;
  width: 48%;
  height: 58px;
  background: #D6A064;
  border: 1px solid rgba(92, 53, 24, 0.16);
}

.box-flap--left {
  left: 2%;
  clip-path: polygon(0 24%, 100% 0, 86% 100%, 10% 88%);
}

.box-flap--right {
  right: 2%;
  clip-path: polygon(0 0, 100% 24%, 90% 88%, 14% 100%);
}

.box-front {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 0;
  display: grid;
  width: 90%;
  height: 92px;
  place-items: center;
  background: linear-gradient(145deg, #C9955F, #AC7340);
  box-shadow: 0 14px 20px rgba(17, 22, 44, 0.15);
  clip-path: polygon(7% 0, 93% 0, 100% 22%, 94% 100%, 6% 100%, 0 22%);
}

.box-front img {
  width: 62px;
  height: auto;
  filter: saturate(0.9);
}

.box-front span {
  margin-top: -21px;
  color: rgba(66, 37, 20, 0.72);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-note {
  max-width: 260px;
  margin-top: 4px;
  color: rgba(17, 22, 44, 0.52);
  font-size: 0.58rem;
  font-weight: 600;
  text-align: center;
}

/* Final flattened Step 3 artwork, kept intact as supplied for art-direction fidelity. */
.product-collage {
  display: grid;
  place-items: center;
  min-height: 0;
  background: transparent;
}

.step3-composition {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.workflow-image-frame {
  display: flex;
  width: 100%;
  height: 278px;
  align-items: center;
  justify-content: center;
}

.workflow-image-frame img {
  display: block;
  width: auto;
  max-width: min(100%, 330px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
}

.delivery-option--download .workflow-image-frame img {
  width: 120%;
  max-width: 396px;
  max-height: 264px;
}

.delivery-option--download .workflow-image-frame {
  height: 278px;
}

.workflow-caption {
  max-width: 280px;
  margin-top: 2px;
  color: rgba(17, 22, 44, 0.56);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.workflow-status {
  display: block;
  min-height: 17px;
  text-align: center;
}

.coming-soon {
  color: var(--bordeaux);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
}

.closing-callout {
  display: flex;
  max-width: 880px;
  margin: 14px auto 0;
  padding: 20px 30px;
  align-items: center;
  gap: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.heart-mark {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--bordeaux);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(17, 22, 44, 0.1);
  font-size: 2.5rem;
}

.closing-callout h2 {
  margin: 0 0 2px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.035em;
}

.closing-callout p {
  margin: 0;
  color: rgba(17, 22, 44, 0.7);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 44px;
  margin-top: 44px;
  padding: 32px 8px 38px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  display: block;
  width: 244px;
  height: auto;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
  color: rgba(17, 22, 44, 0.64);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a[aria-current='page'] {
  color: var(--bordeaux);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(17, 22, 44, 0.48);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .intro {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
  }

  .process-card {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .step-copy {
    padding-inline: 8px 20px;
  }

  .step-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .step-copy > p,
  .step-icon {
    margin-left: 61px;
  }

  .direction-grid {
    gap: 10px;
    padding-right: 12px;
  }

  .direction-card {
    min-height: 250px;
    padding-inline: 10px;
  }

  .product-border {
    right: 250px;
    width: 260px;
  }

  .product-nameplate {
    left: 22%;
    width: 230px;
  }
}

@media (max-width: 820px) {
  .page-shell,
  .site-footer {
    width: min(calc(100% - 28px), var(--page-width));
  }

  .intro {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 24px;
  }

  .intro-copy > p {
    max-width: 650px;
  }

  .process-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .step-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 20px 12px 26px;
  }

  .step-heading,
  .step-copy > p {
    grid-column: 1;
  }

  .step-copy > p {
    max-width: 52ch;
    margin: 16px 0 0 61px;
  }

  .step-icon {
    grid-column: 2;
    grid-row: 1 / 3;
    margin: 8px 12px 0 20px;
    align-self: center;
  }

  .direction-grid {
    padding: 8px 4px 12px;
  }

  .product-stage {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .intro {
    gap: 28px;
    padding-inline: 2px;
  }

  .intro h1 {
    font-size: clamp(3rem, 16vw, 4.15rem);
  }

  .process {
    gap: 12px;
  }

  .process-card {
    border-radius: 22px;
  }

  .step-copy {
    display: block;
    padding: 17px 6px 24px;
  }

  .step-heading {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .step-heading h2 {
    font-size: 1.45rem;
  }

  .step-copy > p {
    margin: 14px 0 0 56px;
    font-size: 0.92rem;
  }

  .step-icon {
    display: none;
  }

  .builder-stage {
    padding: 12px;
  }

  .builder-window {
    padding: 16px 13px;
  }

  .vibe-option img {
    height: 54px;
  }

  .vibe-option strong {
    font-size: 0.54rem;
  }

  .direction-grid {
    grid-template-columns: 1fr;
    padding: 4px 0 2px;
  }

  .direction-card {
    min-height: 230px;
  }

  .direction-card.is-selected {
    order: -1;
  }

  .direction-asset {
    width: 164px;
    height: 164px;
  }

  .product-collage {
    min-height: 0;
  }

  .delivery-stage {
    grid-template-columns: 1fr;
    padding-bottom: 18px;
  }

  .delivery-or {
    min-height: 54px;
  }

  .delivery-or::before {
    inset: 50% 22px auto;
    width: auto;
    height: 1px;
  }

  .delivery-option {
    min-height: 235px;
    grid-template-rows: auto 228px 17px auto;
  }

  .workflow-image-frame {
    height: 228px;
  }

  .workflow-image-frame img {
    max-height: 190px;
  }

  .delivery-option--download .workflow-image-frame {
    height: 228px;
  }

  .delivery-option--download .workflow-image-frame img {
    max-height: 228px;
  }

  .closing-callout {
    align-items: flex-start;
    padding: 22px;
    gap: 16px;
  }

  .heart-mark {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: inline-flex;
    justify-content: center;
  }

  .footer-links,
  .footer-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
