@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --bg: #0c120c;
  --surface: #141d14;
  --surface-2: #1b271a;
  --text: #f7f1df;
  --muted: #b8c3b0;
  --green: #9dc83e;
  --green-dark: #638b1f;
  --cream: #fff4d6;
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(157, 200, 62, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 34%,
      rgba(255, 190, 80, 0.055),
      transparent 30%
    ),
    linear-gradient(180deg, #0c120c 0%, #0a100a 100%);
}

/* Premium background glows */

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -3;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(95px);
  will-change: transform;
}

body::before {
  width: 470px;
  height: 470px;
  top: 4%;
  right: -150px;
  background: rgba(157, 200, 62, 0.18);
  opacity: 0.72;
  animation: glowDriftGreen 16s ease-in-out infinite;
}

body::after {
  width: 390px;
  height: 390px;
  bottom: 2%;
  left: -145px;
  background: rgba(255, 190, 80, 0.085);
  opacity: 0.62;
  animation: glowDriftWarm 20s ease-in-out infinite;
}

/* Subtle background particles */

main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(
      circle,
      rgba(157, 200, 62, 0.58) 0 1.5px,
      transparent 2.5px
    ),
    radial-gradient(
      circle,
      rgba(255, 244, 214, 0.32) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle,
      rgba(157, 200, 62, 0.22) 0 1px,
      transparent 2px
    );
  background-size:
    210px 210px,
    310px 310px,
    420px 420px;
  background-position:
    20px 40px,
    110px 150px,
    230px 80px;
  animation: particleDrift 34s linear infinite;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
  background: rgba(12, 18, 12, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  font-size: 1.4rem;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

nav a {
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--cream);
}

main {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}

.hero-copy {
  opacity: 0;
  animation: fadeHeroCopy 0.8s ease forwards;
}

.hero-copy .eyebrow {
  opacity: 0;
  animation: fadeHeroItem 0.6s ease 0.1s forwards;
}

.hero-copy h1 {
  opacity: 0;
  animation: fadeHeroItem 0.7s ease 0.25s forwards;
}

.hero-copy .lead {
  opacity: 0;
  animation: fadeHeroItem 0.7s ease 0.4s forwards;
}

.hero-copy .actions {
  opacity: 0;
  animation: fadeHeroItem 0.7s ease 0.55s forwards;
}

.hero-copy .status-strip {
  opacity: 0;
  animation: fadeHeroItem 0.7s ease 0.68s forwards;
}

.hero-copy .contract {
  opacity: 0;
  animation: fadeHeroItem 0.7s ease 0.82s forwards;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
  font-weight: 900;
  color: var(--green);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 660px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
}

.primary {
  background: var(--green);
  color: #15200d;
  box-shadow: 0 14px 40px rgba(157, 200, 62, 0.2);
}

.primary:hover {
  box-shadow:
    0 16px 42px rgba(157, 200, 62, 0.34),
    0 0 22px rgba(157, 200, 62, 0.2);
}

.secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.secondary:hover {
  border-color: rgba(157, 200, 62, 0.4);
  background: rgba(157, 200, 62, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Live status strip */

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.status-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.status-item:hover {
  transform: translateY(-2px);
  background: rgba(157, 200, 62, 0.055);
}

.status-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.status-item div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.status-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.status-item strong {
  overflow: hidden;
  color: var(--cream);
  font-size: 0.84rem;
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.status-dot {
  position: relative;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(157, 200, 62, 0.72);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(157, 200, 62, 0.45);
  border-radius: 50%;
  animation: livePulse 2s ease-out infinite;
}

.status-emoji {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(157, 200, 62, 0.09);
  font-size: 1rem;
}

.contract {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contract button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--surface);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.contract button:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 200, 62, 0.35);
  background: var(--surface-2);
}

.hero-art {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow:
    var(--shadow),
    0 0 60px rgba(157, 200, 62, 0.055);
  transform: rotate(1.5deg) scale(1.08);
  opacity: 0;
  animation: fadeHeroArt 0.9s ease 0.35s forwards;
}

.hero-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  animation: floatMascot 4.5s ease-in-out infinite;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.card,
.community-panel {
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(157, 200, 62, 0.22);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(157, 200, 62, 0.08);
}

.story-card {
  width: min(760px, 100%);
  padding: clamp(26px, 5vw, 52px);
  font-size: 1.16rem;
  line-height: 1.8;
  color: var(--muted);
}

.story-card p:last-child {
  margin-bottom: 0;
}

.story-card strong {
  color: var(--cream);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid .card {
  padding: 28px;
}

.step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: rgba(157, 200, 62, 0.13);
  color: var(--green);
  font-weight: 900;
}

.grid p {
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--muted);
}

.community-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 6vw, 64px);
}

.community-panel p {
  color: var(--muted);
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

footer {
  margin-top: 80px;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

/* Entrance animations */

@keyframes fadeHeroCopy {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeHeroItem {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeHeroArt {
  from {
    opacity: 0;
    transform: translateY(22px) rotate(1.5deg) scale(1.08);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(1.5deg) scale(1.08);
  }
}

/* Mascot movement */

@keyframes floatMascot {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Live status animation */

@keyframes livePulse {
  0% {
    opacity: 0.8;
    transform: scale(0.65);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

/* Premium background movement */

@keyframes glowDriftGreen {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-42px, 34px, 0) scale(1.08);
  }
}

@keyframes glowDriftWarm {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(46px, -28px, 0) scale(1.06);
  }
}

@keyframes particleDrift {
  from {
    background-position:
      20px 40px,
      110px 150px,
      230px 80px;
  }

  to {
    background-position:
      20px 250px,
      110px 460px,
      230px 500px;
  }
}

/* Accessibility */

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

@media (max-width: 1050px) and (min-width: 821px) {
  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
.journey-image {
  width: 180px;
  height: auto;
  display: block;
  margin: 4px auto 16px;
  object-fit: contain;
}

.journey-image-wide {
  width: 100%;
  max-width: 260px;
}
}
}

@media (max-width: 820px) {
  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-art {
    order: -1;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .community-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  main {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 16px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  .status-strip {
    margin-top: 20px;
    padding: 8px;
    border-radius: 17px;
  }

  .status-item {
    padding: 11px 10px;
  }

  .status-item strong {
    font-size: 0.82rem;
  }

  .contract {
    align-items: flex-start;
    flex-direction: column;
  }

  .contract button {
    width: 100%;
    justify-content: space-between;
  }

  body::before {
    width: 320px;
    height: 320px;
    right: -170px;
  }

  body::after {
    width: 280px;
    height: 280px;
    left: -150px;
  }

  main::before {
    opacity: 0.12;
  }
}
.cake-icon {
  width: 64px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 8px;
}
.community-panel .cake-icon {
  width: 48px;
  margin-bottom: 5px;
}