:root {
  --blue: #087dde;
  --blue-dark: #065aaf;
  --sky: #dff4ff;
  --orange: #f59b16;
  --yellow: #ffd951;
  --green: #6bbd34;
  --ink: #142a36;
  --cream: #fffdf4;
  --white: #ffffff;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.3rem;
}
.paw { font-size: 1.15em; }
nav { display: flex; gap: 10px; }
.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.nav-link:hover { transform: translateY(-2px); }
.nav-link--filled { background: var(--ink); color: var(--white); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 660px;
  margin: 18px auto 90px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .15em;
}
h1, h2 {
  font-family: "Baloo 2", sans-serif;
  letter-spacing: -.055em;
  line-height: .9;
  margin: 0;
}
h1 { font-size: clamp(4rem, 7.5vw, 7.25rem); }
h1 span { color: var(--orange); }
h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.intro {
  max-width: 540px;
  margin: 28px 0 8px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.48;
  font-weight: 700;
}
.vibe { margin: 0; color: #49616c; font-weight: 700; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(3px); box-shadow: 0 3px 0 var(--ink); }
.button--primary { background: var(--yellow); }
.button--secondary { background: var(--white); }

.hero-art {
  position: relative;
  min-height: 580px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 46% 54% / 44% 48% 52% 56%;
  background: var(--sky);
  box-shadow: 14px 16px 0 var(--blue);
  transform: rotate(1.5deg);
}
.hero-art img {
  width: 100%; height: 100%; min-height: 530px;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: inherit;
}
.sticker {
  position: absolute;
  display: inline-flex;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  box-shadow: 4px 5px 0 var(--ink);
}
.sticker--one { top: 11%; left: -7%; transform: rotate(-9deg); }
.sticker--two { right: -7%; bottom: 16%; transform: rotate(8deg); background: var(--yellow); }

.mission {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--blue);
  color: var(--white);
}
.mission-image { overflow: hidden; background: var(--sky); }
.mission-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.mission-copy {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
  padding: 70px 0 78px;
}
.mission-copy .eyebrow { color: var(--yellow); }
.mission-copy p:not(.eyebrow) { font-size: 1.14rem; line-height: 1.6; font-weight: 700; }
.values { display: grid; gap: 12px; margin-top: 28px; }
.values span {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  font-weight: 800;
}

.launch-card {
  width: min(1080px, calc(100% - 40px));
  margin: 96px auto;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--yellow);
  box-shadow: 12px 14px 0 var(--ink);
}
.launch-card h2 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.launch-card p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; font-weight: 700; }
.launch-actions { display: grid; justify-items: end; gap: 14px; }
.button--dark { background: var(--ink); color: var(--white); box-shadow: 0 6px 0 var(--blue-dark); }
.contract {
  max-width: 660px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
}
.contract[hidden] { display: none; }
.contract span { font-weight: 800; }
.contract code { overflow: hidden; text-overflow: ellipsis; font-size: .9rem; }
.contract button {
  border: 0;
  border-radius: 9px;
  padding: 9px 12px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.coming-soon {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #7ee049; box-shadow: 0 0 0 0 rgba(126,224,73,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(126,224,73,0); } 100% { box-shadow: 0 0 0 0 rgba(126,224,73,0); } }
.mobile-cta { display: none; }

footer {
  min-height: 150px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}
footer p { color: #c8d5da; text-align: center; font-size: .88rem; line-height: 1.5; }
.footer-links { display: flex; gap: 18px; justify-content: flex-end; }
.footer-links a { font-weight: 800; text-underline-offset: 4px; }

@media (max-width: 850px) {
  .topbar { min-height: 74px; width: min(100% - 28px, 720px); }
  .brand { font-size: 1.08rem; }
  .nav-link { padding: 9px 12px; font-size: .88rem; }
  .nav-link:first-child { display: none; }
  .hero { grid-template-columns: 1fr; gap: 52px; margin: 48px auto 78px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-art { min-height: 460px; width: min(100%, 590px); margin: 0 auto; }
  .hero-art img { min-height: 410px; }
  .mission-copy { width: min(100% - 56px, 720px); padding: 58px 0 66px; }
  .launch-card { align-items: flex-start; flex-direction: column; padding: 38px 28px; }
  .launch-actions { width: 100%; justify-items: stretch; }
  .launch-actions .coming-soon { justify-content: center; }
  .mobile-cta {
    position: fixed;
    z-index: 20;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    border: 2px solid var(--ink);
    border-radius: 15px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 5px 0 var(--ink);
    font-weight: 800;
    text-decoration: none;
  }
  footer { padding-bottom: 108px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
}

@media (max-width: 520px) {
  .hero { width: min(100% - 28px, 480px); }
  h1 { font-size: 4rem; }
  .intro { font-size: 1.1rem; }
  .actions { width: 100%; }
  .button { width: 100%; }
  .hero-art { min-height: 380px; padding: 14px; box-shadow: 8px 10px 0 var(--blue); }
  .hero-art img { min-height: 350px; }
  .sticker { font-size: .77rem; padding: 7px 10px; }
  .sticker--one { left: -2%; }
  .sticker--two { right: -2%; }
  .launch-card { margin: 68px auto; box-shadow: 8px 9px 0 var(--ink); }
  .contract { grid-template-columns: auto minmax(0, 1fr); }
  .contract button { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
