:root {
  color-scheme: light;
  --ink: #3b2717;
  --paper: #f6e4ca;
  --hot: #9b6232;
  --mint: #d8b37d;
  --lime: #fff0d6;
  --blue: #6f4a2b;
  --orange: #c88b4d;
  --line: rgba(65, 42, 24, 0.22);
  --soft: rgba(66, 43, 25, 0.76);
  --shadow: 0 24px 70px rgba(68, 43, 22, 0.26);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(246, 228, 202, 0.94), rgba(204, 158, 103, 0.76)),
    repeating-linear-gradient(-17deg, rgba(255, 240, 214, 0.34) 0 7px, transparent 7px 28px),
    #c49a6f;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 54%, rgba(255, 240, 214, 0.5) 54% 58%, transparent 58%),
    linear-gradient(164deg, transparent 0 38%, rgba(114, 74, 42, 0.16) 38% 41%, transparent 41%),
    radial-gradient(circle at 18% 10%, rgba(255, 240, 214, 0.55), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(107, 69, 38, 0.18), transparent 28rem);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, #4a2f1a 25%, transparent 25%),
    linear-gradient(-45deg, #4a2f1a 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #4a2f1a 75%),
    linear-gradient(-45deg, transparent 75%, #4a2f1a 75%);
  background-position: 0 0, 0 4px, 4px -4px, -4px 0;
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 240, 214, 0.78);
  box-shadow: 0 16px 40px rgba(68, 43, 22, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}

.brand span,
.main-nav a,
.header-action {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(59, 39, 23, 0.74);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--lime);
  background: var(--ink);
  outline: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--lime);
  background: var(--hot);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--mint);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 150px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 74px) 0 34px;
}

.hero-copy {
  position: relative;
}

.hero-copy .hero-actions {
  margin-top: 22px;
}

.kicker,
.section-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(65, 42, 24, 0.34);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 240, 214, 0.58);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 8.7vw, 7.6rem);
  line-height: 0.86;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.8vw, 5rem);
  line-height: 0.94;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.05;
}

.hero-text,
.site-footer p,
.roadmap article p {
  color: var(--soft);
  line-height: 1.65;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-hot {
  color: var(--lime);
  background: var(--hot);
  box-shadow: 8px 8px 0 var(--mint);
}

.btn-hot:hover,
.btn-hot:focus-visible {
  box-shadow: 5px 5px 0 var(--mint);
}

.btn-dark {
  color: var(--ink);
  border-color: rgba(65, 42, 24, 0.28);
  background: rgba(255, 240, 214, 0.38);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  color: var(--lime);
  background: var(--ink);
}

.btn-ghost {
  color: var(--ink);
  background: var(--paper);
}

.btn-event {
  color: var(--lime);
  background: var(--blue);
  box-shadow: 7px 7px 0 var(--hot);
}

.btn-event:hover,
.btn-event:focus-visible {
  box-shadow: 4px 4px 0 var(--hot);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.hero-art::before {
  position: absolute;
  inset: 11% 4% 2% 10%;
  content: "";
  border: 4px solid var(--paper);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 240, 214, 0.62), rgba(200, 139, 77, 0.52)),
    repeating-linear-gradient(-17deg, rgba(255, 240, 214, 0.52) 0 8px, rgba(155, 98, 50, 0.16) 8px 18px);
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
}

.hero-cat {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  aspect-ratio: 1;
  border: 4px solid var(--lime);
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.52));
  animation: floatCat 5.6s ease-in-out infinite;
}

.price-tag,
.sticker {
  position: absolute;
  z-index: 3;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.35);
  font-weight: 1000;
  text-transform: uppercase;
}

.price-tag {
  top: 6%;
  left: 50%;
  padding: 10px 13px;
  background: var(--lime);
  transform: translateX(-50%) rotate(-3deg);
}

.sticker {
  display: grid;
  place-items: center;
  text-align: center;
}

.sticker-one {
  left: 2%;
  bottom: 13%;
  width: 116px;
  height: 116px;
  background: var(--mint);
  transform: rotate(-8deg);
}

.ticker-tape {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
}

.ticker-tape div {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-tape span {
  padding: 14px 28px;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.roadmap {
  width: min(1280px, calc(100% - 24px));
  margin-top: clamp(28px, 5vw, 64px);
  padding: clamp(42px, 6vw, 72px) clamp(14px, 3vw, 34px);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 240, 214, 0.9), rgba(216, 179, 125, 0.78)),
    repeating-linear-gradient(-17deg, rgba(155, 98, 50, 0.12) 0 8px, transparent 8px 26px);
  box-shadow: 14px 14px 0 rgba(59, 39, 23, 0.24), var(--shadow);
}

.roadmap .section-label {
  color: var(--lime);
  background: var(--ink);
  border-color: var(--ink);
}

.roadmap > h2 {
  max-width: 920px;
  font-size: clamp(2.2rem, 5.4vw, 5.2rem);
  text-shadow: 3px 3px 0 rgba(255, 240, 214, 0.95);
  white-space: nowrap;
}

.roadmap-grid {
  display: grid;
  gap: 16px;
}

.roadmap article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 240, 214, 0.42);
  box-shadow: 0 18px 48px rgba(68, 43, 22, 0.16);
}

.roadmap article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--hot);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.roadmap-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 4vw, 48px);
}

.roadmap article {
  min-height: 310px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 2px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 240, 214, 0.86), rgba(216, 179, 125, 0.58)),
    rgba(255, 240, 214, 0.64);
  box-shadow: 7px 7px 0 rgba(59, 39, 23, 0.22);
}

.roadmap article h3 {
  font-size: clamp(1.28rem, 1.55vw, 1.72rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.roadmap .community-card h3 {
  display: grid;
  gap: 0.1em;
  font-size: clamp(1.16rem, 1.35vw, 1.5rem);
}

.roadmap .community-card h3 span {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  text-transform: inherit;
}

.roadmap .final-card {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  align-content: start;
}

.roadmap .final-card p {
  max-width: 860px;
}

.roadmap article p {
  margin-bottom: 0;
  color: rgba(59, 39, 23, 0.82);
  font-size: 1.02rem;
  font-weight: 760;
}

.roadmap-list {
  display: grid;
  gap: 0.46rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.48rem;
  align-items: start;
  color: rgba(59, 39, 23, 0.84);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.28;
}

.roadmap-list li::before {
  content: "";
  width: 0.52rem;
  aspect-ratio: 1;
  margin-top: 0.34rem;
  border-radius: 50%;
  background: var(--hot);
  box-shadow:
    0.28rem 0.08rem 0 -0.12rem var(--hot),
    -0.08rem 0.28rem 0 -0.12rem var(--hot),
    0.12rem -0.18rem 0 -0.14rem var(--hot);
}

.roadmap .community-card em {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: -0.15rem 0 1rem;
  padding: 0.42rem 0.58rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: var(--lime);
  background: var(--hot);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.roadmap .final-card .roadmap-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.roadmap-tagline {
  margin: clamp(24px, 4vw, 42px) 0 0;
  color: rgba(59, 39, 23, 0.88);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.roadmap-tagline strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 4vw, 2.8rem);
  line-height: 0.95;
}

.roadmap .hot-card {
  background:
    linear-gradient(130deg, rgba(155, 98, 50, 0.34), transparent 46%),
    rgba(255, 240, 214, 0.82);
  border-color: var(--ink);
  box-shadow: 9px 9px 0 rgba(111, 74, 43, 0.34);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 1000;
  text-transform: lowercase;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--lime);
  background: var(--ink);
  font-weight: 1000;
  text-transform: uppercase;
  transform: translateY(150%);
  transition: transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

@keyframes floatCat {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 1120px) {
  .roadmap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .hero {
    padding-top: 44px;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-art {
    min-height: 420px;
  }

}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-action {
    width: 100%;
  }

  .hero {
    gap: 18px;
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .roadmap > h2 {
    font-size: clamp(1.45rem, 8.5vw, 2.75rem);
  }

  .hero-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .hero-art {
    min-height: 330px;
  }

  .hero-cat {
    width: min(86vw, 370px);
  }

  .price-tag {
    top: 7%;
  }

  .sticker-one {
    right: auto;
    left: 1%;
    bottom: 11%;
    width: 94px;
    height: 94px;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap article {
    min-height: auto;
  }

  .roadmap .final-card .roadmap-list {
    grid-template-columns: 1fr;
  }

  .roadmap {
    width: min(100% - 16px, 1280px);
    padding-inline: 14px;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 0.94rem;
  }

  .main-nav a {
    padding-inline: 10px;
  }

  .roadmap article {
    padding: 18px;
  }

  .hero-art {
    min-height: 292px;
  }

  .price-tag {
    max-width: 170px;
  }

}
