@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #20201e;
  --muted: #6f6b63;
  --paper: #fff8ec;
  --orange: #ff7043;
  --purple: #7654dc;
  --line: rgba(38, 34, 29, .12);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
}

.page-shell {
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px clamp(24px, 6vw, 88px) 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background-image: radial-gradient(rgba(32,32,30,.09) 1px, transparent 1px);
  background-size: 22px 22px;
}

.nav, footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font: 800 21px/1 "Manrope", sans-serif;
  letter-spacing: -.05em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 14px;
  box-shadow: 3px 3px 0 var(--ink);
}

.hub-link { color: var(--muted); font-size: 13px; text-decoration: none; }
.hub-link:hover, .hub-link:focus-visible { color: var(--purple); }

.hero {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: center;
  padding: clamp(70px, 10vh, 120px) 0;
}

.copy { max-width: 720px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

.eyebrow span { width: 24px; height: 2px; background: var(--purple); }

h1 {
  margin: 0;
  font: 700 clamp(50px, 7vw, 94px)/.98 "Manrope", sans-serif;
  letter-spacing: -.065em;
}

h1 em { color: var(--orange); font-style: normal; }

.copy > p {
  max-width: 570px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.62);
}

.launch-note .spark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: white; background: var(--purple); }
.launch-note strong, .launch-note small { display: block; }
.launch-note strong { font-size: 14px; margin-bottom: 2px; }
.launch-note small { color: var(--muted); font-size: 12px; }

.visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.orbit { position: absolute; border-radius: 50%; }
.orbit-one { width: min(34vw, 470px); aspect-ratio: 1; background: #ffd956; border: 2px solid var(--ink); box-shadow: 10px 12px 0 rgba(32,32,30,.09); }
.orbit-two { width: min(26vw, 350px); aspect-ratio: 1; border: 2px dashed rgba(32,32,30,.35); }

.bag {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 12px 12px 38px 38px;
  background: var(--orange);
  box-shadow: 9px 10px 0 var(--ink);
  transform: rotate(-4deg);
}

.bag .handle { position: absolute; width: 78px; height: 66px; top: -54px; border: 3px solid var(--ink); border-bottom: 0; border-radius: 60px 60px 0 0; }
.bag span { color: white; font: 800 76px/1 "Manrope", sans-serif; text-shadow: 3px 3px 0 var(--ink); }
.shape { position: absolute; z-index: 3; font: 700 38px/1 "Manrope", sans-serif; }
.shape-one { left: 4%; top: 20%; color: var(--purple); transform: rotate(12deg); }
.shape-two { right: 3%; top: 16%; color: var(--orange); }
.shape-three { right: 8%; bottom: 16%; width: 28px; height: 28px; border: 3px solid var(--purple); border-radius: 50%; }

footer { padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

@media (max-width: 800px) {
  .page-shell { padding: 24px 20px; }
  .hero { grid-template-columns: 1fr; padding: 80px 0 50px; }
  .visual { min-height: 330px; order: -1; }
  .orbit-one { width: 300px; }
  .orbit-two { width: 230px; }
  .bag { width: 120px; height: 138px; }
  .bag .handle { width: 60px; height: 48px; top: -39px; }
  .bag span { font-size: 58px; }
}

@media (max-width: 520px) {
  .hub-link { font-size: 0; }
  .hub-link span { font-size: 18px; }
  .visual { min-height: 290px; }
  .orbit-one { width: 255px; }
  .orbit-two { width: 190px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .bag { animation: float 4s ease-in-out infinite; }
  @keyframes float { 50% { transform: rotate(-2deg) translateY(-9px); } }
}
