:root {
  --sky: #55b9f3;
  --coral: #ff594f;
  --ink: #191717;
  --cream: #fff8e7;
  --green: #49aa45;
  --yellow: #ffd348;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
}
a { color: inherit; }

.hero {
  min-height: 820px;
  height: 100vh;
  max-height: 980px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 70% 10%, rgba(255,255,255,.18), transparent 27%),
    linear-gradient(#50b8f4 0%, #78cafa 72%);
  isolation: isolate;
}

.nav {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  padding: 26px 0;
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-brand, .footer-brand {
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: -2px;
  transform: rotate(-2deg);
  font-size: 1.35rem;
}
.mini-brand span { color: var(--coral); }
.nav-link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: .82rem;
  padding: 10px 18px;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 999px;
  transition: .2s ease;
}
.nav-link:hover { background: white; color: #268fcf; transform: translateY(-2px); }

.hero-content {
  position: relative;
  z-index: 7;
  text-align: center;
  padding-top: clamp(35px, 7vh, 75px);
}
.eyebrow {
  margin: 0 0 8px;
  font-size: clamp(.68rem, 1vw, .85rem);
  font-weight: 1000;
  letter-spacing: 4px;
  color: white;
}
.hero h1 {
  margin: 0;
  color: var(--coral);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(4.4rem, 12vw, 10.5rem);
  letter-spacing: clamp(-8px, -0.6vw, -3px);
  line-height: .86;
  font-weight: 1000;
  -webkit-text-stroke: clamp(3px, .48vw, 8px) var(--ink);
  paint-order: stroke fill;
  text-shadow:
    0 clamp(5px, .7vw, 11px) 0 white,
    clamp(3px, .42vw, 7px) clamp(9px, 1.1vw, 17px) 0 var(--ink);
  transform: rotate(-1deg);
}
.join-badge {
  display: inline-block;
  position: relative;
  margin-top: clamp(34px, 4.4vw, 54px);
  margin-bottom: 0;
  padding: 10px clamp(34px, 5vw, 68px) 12px;
  border-radius: 999px 940px 999px 880px;
  background: var(--ink);
  color: white;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.85rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: clamp(1px, .25vw, 3px);
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
  transform: rotate(.4deg) scaleX(1.04);
  pointer-events: none;
  user-select: none;
}
.join-badge::before, .join-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 23px;
  height: 6px;
  border-radius: 5px;
  background: var(--yellow);
  box-shadow: 9px -11px 0 -1px var(--yellow), 9px 11px 0 -1px var(--yellow);
}
.join-badge::before { left: -42px; transform: rotate(8deg); }
.join-badge::after { right: -42px; transform: rotate(172deg); }

.sun {
  position: absolute;
  z-index: 2;
  top: 105px;
  left: clamp(28px, 6vw, 105px);
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 16px rgba(255,211,72,.12), 0 0 52px rgba(255,210,39,.38);
  animation: float 5s ease-in-out infinite;
}
.sun::before, .sun::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 8px;
  border-radius: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 30px, transparent 30px 80px);
  top: 59px;
  left: -32px;
}
.sun::after { transform: rotate(90deg); }
.sun-face::before, .sun-face::after {
  content: "";
  position: absolute;
  top: 46px;
  width: 13px;
  height: 7px;
  border: 4px solid #362600;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}
.sun-face::before { left: 32px; }
.sun-face::after { right: 32px; }
.sun-face i {
  position: absolute;
  width: 42px;
  height: 21px;
  border: 5px solid #362600;
  border-top: 0;
  border-radius: 0 0 50px 50px;
  top: 68px;
  left: 42px;
}

.cloud {
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 35px;
  border-radius: 100px;
  background: rgba(255,255,255,.86);
  filter: drop-shadow(0 7px 0 rgba(255,255,255,.18));
}
.cloud::before, .cloud::after { content: ""; position: absolute; background: inherit; border-radius: 50%; }
.cloud::before { width: 65px; height: 65px; left: 25px; bottom: 4px; }
.cloud::after { width: 82px; height: 82px; right: 18px; bottom: 2px; }
.cloud-one { top: 170px; right: 6%; transform: scale(.85); }
.cloud-two { top: 310px; left: 12%; transform: scale(.55); }
.cloud-three { top: 345px; right: 23%; transform: scale(.45); }

.hill { position: absolute; left: -5%; width: 110%; border-radius: 50% 50% 0 0 / 30% 30% 0 0; }
.hill-back { z-index: 3; bottom: -70px; height: 330px; background: #5fbb4c; transform: rotate(2deg); }
.hill-front { z-index: 4; bottom: -150px; height: 370px; background: #31983d; transform: rotate(-2deg); }
.dogz {
  position: absolute;
  z-index: 10;
  width: min(1080px, 90vw);
  height: auto;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 12px rgba(21,74,31,.2));
  animation: dogz-in .8s cubic-bezier(.2,.8,.2,1) both;
}
.flower { position: absolute; z-index: 6; font-size: 32px; color: #ffe74c; text-shadow: 15px 12px 0 #ff6f91; }
.flower-a { left: 5%; bottom: 13%; transform: rotate(-14deg); }
.flower-b { right: 7%; bottom: 17%; color: white; }
.flower-c { right: 17%; bottom: 7%; font-size: 24px; color: #f69bff; }

.follow-strip {
  position: relative;
  z-index: 12;
  background: var(--coral);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
}
.x-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 14px 23px;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  font-weight: 1000;
  box-shadow: 5px 5px 0 var(--ink);
  transition: .16s ease;
}
.x-button:hover { transform: translate(3px, 3px) rotate(-1deg); box-shadow: 2px 2px 0 var(--ink); }
.x-button:focus-visible, .nav-link:focus-visible { outline: 4px solid white; outline-offset: 4px; }
.x-mark { font-size: 1.35rem; }

.roadmap {
  overflow: hidden;
  padding: 110px 24px 130px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,89,79,.09) 0 4px, transparent 5px),
    radial-gradient(circle at 90% 75%, rgba(255,211,72,.18) 0 5px, transparent 6px),
    var(--cream);
  background-size: 90px 90px, 120px 120px;
}
.roadmap-heading { max-width: 680px; margin: 0 auto 65px; text-align: center; }
.eyebrow.dark { color: var(--coral); }
.roadmap h2 {
  margin: 2px 0 8px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -5px;
}
.roadmap-heading > p:last-child { color: #6a5c4f; font-size: 1.08rem; }
.trail { width: min(1000px, 100%); margin: auto; position: relative; }
.trail-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 5px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, var(--coral) 0 13px, transparent 13px 26px);
}
.milestone { position: relative; width: 100%; min-height: 245px; display: flex; align-items: flex-start; }
.milestone.left { justify-content: flex-start; padding-right: 55%; }
.milestone.right { justify-content: flex-end; padding-left: 55%; }
.paw-node {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 2px;
  transform: translateX(-50%) rotate(170deg);
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  font-size: 36px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
}
.right .paw-node { transform: translateX(-50%) rotate(192deg); }
.card {
  width: 100%;
  position: relative;
  border: 4px solid var(--ink);
  border-radius: 22px;
  background: white;
  padding: 28px 28px 30px;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px) rotate(-.5deg); box-shadow: 10px 13px 0 var(--ink); }
.right .card:hover { transform: translateY(-5px) rotate(.5deg); }
.card::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  top: 20px;
  right: -18px;
  background: white;
  border-top: 4px solid var(--ink);
  border-right: 4px solid var(--ink);
  transform: rotate(45deg);
}
.right .card::after { right: auto; left: -18px; transform: rotate(-135deg); }
.card-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.step { font-size: .72rem; font-weight: 1000; letter-spacing: 2px; color: white; background: var(--coral); border-radius: 999px; padding: 6px 10px; }
.tag { font-size: .66rem; font-weight: 1000; letter-spacing: 1px; color: #8b7964; }
.card h3 { margin: 17px 0 8px; font-size: clamp(1.45rem, 2.4vw, 2rem); letter-spacing: -1px; }
.card p { margin: 0; line-height: 1.6; color: #5c5148; font-size: .98rem; }

footer {
  min-height: 190px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 50px 24px;
  text-align: center;
}
footer p { color: #bdb5ab; margin: 0; }
footer a { display: grid; place-items: center; width: 44px; height: 44px; background: white; color: var(--ink); border-radius: 50%; text-decoration: none; font-weight: 900; }

@keyframes float { 50% { transform: translateY(-8px) rotate(2deg); } }
@keyframes dogz-in { from { transform: translate(-50%, 35px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

@media (max-width: 760px) {
  .hero { min-height: 680px; height: 92svh; max-height: 800px; }
  .nav { width: calc(100% - 32px); padding-top: 18px; }
  .hero-content { padding-top: 72px; }
  .hero h1 { font-size: clamp(4rem, 19vw, 7rem); letter-spacing: -6px; }
  .join-badge { margin-top: 32px; padding: 10px 30px 11px; }
  .sun { width: 82px; height: 82px; top: 105px; left: 20px; }
  .sun::before, .sun::after { display: none; }
  .sun-face::before, .sun-face::after, .sun-face i { display: none; }
  .cloud-one { top: 200px; right: -25px; transform: scale(.5); }
  .cloud-two { top: 330px; left: -35px; }
  .cloud-three { display: none; }
  .dogz { width: 150vw; max-width: 850px; }
  .hill-back { height: 245px; }
  .hill-front { height: 265px; }
  .follow-strip { flex-direction: column; gap: 16px; text-align: center; padding: 28px 20px 32px; }
  .roadmap { padding: 85px 18px 100px; }
  .roadmap-heading { margin-bottom: 50px; }
  .trail-line { left: 31px; }
  .milestone, .milestone.left, .milestone.right { min-height: 0; padding: 0 0 54px 78px; justify-content: flex-start; }
  .paw-node, .right .paw-node { left: 31px; top: 0; width: 57px; height: 57px; font-size: 28px; transform: translateX(-50%) rotate(172deg); box-shadow: 3px 3px 0 var(--ink); }
  .card { padding: 23px 21px 25px; border-radius: 17px; box-shadow: 6px 6px 0 var(--ink); }
  .card::after, .right .card::after { left: -15px; right: auto; top: 15px; width: 22px; height: 22px; transform: rotate(-135deg); }
  footer { flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
