/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;

  background: var(--browser-surface-color, #ffffff);
}

body {
  min-width: 320px;
  min-height: 100dvh;
  overflow-x: hidden;

  color: #ffffff;
  background: var(--browser-surface-color, #ffffff);

  font-family: "Nunito", Arial, sans-serif;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;
  clip: rect(0, 0, 0, 0);

  white-space: nowrap;
  border: 0;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 4vw;

  opacity: 1;
  transform: translateY(0);

  background:
    linear-gradient(
      to bottom,
      rgba(5, 18, 42, 0.88),
      rgba(5, 18, 42, 0)
    );

  transition:
    height 0.25s ease,
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.navbar.intro-hidden {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

.navbar.is-scrolled {
  height: 72px;

  background: rgba(5, 18, 42, 0.94);
  backdrop-filter: blur(16px);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}

.logo {
  color: #83efb5;

  font-family: "Baloo 2", sans-serif;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 1.5px;

  text-shadow:
    0 5px 17px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;

  gap: clamp(22px, 2.3vw, 40px);
}

.nav-links a {
  position: relative;

  color: rgba(255, 255, 255, 0.94);

  font-size: 14px;
  font-weight: 800;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;

  height: 2px;

  border-radius: 10px;
  background: #83efb5;

  transform: scaleX(0);

  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: #a6f7c8;
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-button {
  padding: 12px 23px;

  color: #a4f7c7;

  border: 2px solid #7beaae;
  border-radius: 999px;

  background: rgba(5, 29, 53, 0.4);

  font-family: "Baloo 2", sans-serif;
  font-size: 15px;
  font-weight: 800;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-button:hover {
  color: #06142e;
  background: #83efb5;

  transform: translateY(-2px);
}


/* =====================================================
   INTRO + HERO
===================================================== */

.intro-sequence {
  position: relative;

  height: 230vh;

  background: #06142e;
}

.intro-sticky {
  position: sticky;
  top: 0;

  width: 100%;
  height: 100svh;
  min-height: 700px;

  overflow: hidden;

  background: #06142e;
}

.hero {
  position: absolute;
  inset: 0;
  isolation: isolate;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #07172f;

  transform: scale(1.045);
  transform-origin: center;

  filter:
    brightness(0.55)
    saturate(0.78);

  will-change:
    transform,
    filter;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      circle at 73% 19%,
      rgba(73, 162, 214, 0.23),
      transparent 25%
    ),
    radial-gradient(
      circle at 49% 65%,
      rgba(52, 153, 184, 0.19),
      transparent 40%
    ),
    linear-gradient(
      to bottom,
      #06142e 0%,
      #0b2c52 55%,
      #15506e 100%
    );
}

.parallax-layer {
  pointer-events: none;
  user-select: none;

  will-change: transform;
}


/* =====================================================
   HERO STARS
===================================================== */

.stars {
  position: absolute;
  inset: -3%;
  z-index: 1;

  width: 106%;
  height: 106%;
}

.stars-one {
  background-image:
    radial-gradient(circle, #ffffff 0 1px, transparent 1.8px),
    radial-gradient(circle, #bdefff 0 1.2px, transparent 2px),
    radial-gradient(circle, #ffe8a0 0 1px, transparent 1.8px);

  background-position:
    0 0,
    35px 52px,
    80px 20px;

  background-size:
    135px 135px,
    190px 190px,
    240px 240px;

  opacity: 0.62;

  animation:
    starsTwinkle 4s ease-in-out infinite alternate;
}

.stars-two {
  background-image:
    radial-gradient(circle, #ffffff 0 1.4px, transparent 2.4px),
    radial-gradient(circle, #a8eefe 0 1px, transparent 2px);

  background-position:
    45px 18px,
    10px 70px;

  background-size:
    290px 290px,
    370px 370px;

  opacity: 0.38;

  animation:
    starsTwinkle 6s ease-in-out infinite alternate-reverse;
}

@keyframes starsTwinkle {
  from {
    opacity: 0.32;
  }

  to {
    opacity: 0.75;
  }
}


/* =====================================================
   HERO IMAGES
===================================================== */

.hero-moon {
  position: absolute;
  top: 6%;
  right: 18%;
  z-index: 2;

  width: clamp(190px, 16vw, 305px);

  filter:
    drop-shadow(0 0 25px rgba(255, 226, 145, 0.32))
    drop-shadow(0 0 65px rgba(255, 226, 145, 0.15));
}

.hero-mountains {
  position: absolute;
  right: -4%;
  bottom: -7%;
  left: -4%;
  z-index: 3;

  width: 108%;
  max-width: none;

  opacity: 0.92;

  filter:
    saturate(0.94)
    brightness(0.94);

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000000 0%,
      #000000 76%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      to bottom,
      #000000 0%,
      #000000 76%,
      transparent 100%
    );
}

.islands-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.islands-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    drop-shadow(0 24px 26px rgba(0, 0, 0, 0.18));
}

.hero-frog {
  position: absolute;
  top: 43%;
  left: 68%;

  width: clamp(115px, 8.2vw, 165px);

  filter:
    drop-shadow(0 10px 8px rgba(0, 0, 0, 0.18));

  animation:
    frogIdle 3.8s ease-in-out infinite;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 5;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(4, 15, 35, 0.47) 0%,
      rgba(4, 15, 35, 0.18) 36%,
      transparent 62%
    );
}

.hero-foreground {
  position: absolute;
  right: -2%;
  bottom: -5%;
  left: -2%;
  z-index: 8;

  width: 104%;
  max-width: none;

  filter:
    drop-shadow(0 -12px 26px rgba(0, 0, 0, 0.12));
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
  position: relative;
  z-index: 12;

  width: min(610px, 45vw);

  margin-left: 7vw;
  padding-top: 70px;

  opacity: 0;
  transform: translateY(28px);

  will-change:
    opacity,
    transform;
}

.hero-kicker {
  margin-bottom: 14px;

  color: #8eeeba;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;

  margin-bottom: 25px;

  font-family: "Baloo 2", sans-serif;
  font-size: clamp(58px, 5.4vw, 96px);
  font-weight: 800;
  line-height: 0.79;
  letter-spacing: -3px;

  text-shadow:
    0 5px 0 #173652,
    0 11px 0 rgba(6, 20, 46, 0.28),
    0 20px 34px rgba(0, 0, 0, 0.3);
}

.headline-line {
  display: flex;
  align-items: baseline;

  gap: 17px;
}

.headline-light {
  color: #fff3d4;
}

.headline-green {
  color: #7ee8ae;

  text-shadow:
    0 5px 0 #1d654c,
    0 11px 0 rgba(6, 20, 46, 0.28),
    0 20px 34px rgba(0, 0, 0, 0.3);
}

.hero-description {
  max-width: 560px;

  margin-bottom: 32px;

  color: #d9edff;

  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.48;

  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.42);
}

.hero-buttons {
  display: flex;
  align-items: center;

  gap: 16px;
  flex-wrap: wrap;
}

.button {
  min-height: 57px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border-radius: 16px;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.4px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button-primary {
  color: #ffffff;

  border: 2px solid #ffd1e4;

  background:
    linear-gradient(
      135deg,
      #ff8cc2,
      #eb69a5
    );

  box-shadow:
    0 0 24px rgba(255, 124, 184, 0.4);
}

.button-primary:hover {
  box-shadow:
    0 0 35px rgba(255, 124, 184, 0.62);
}

.button-secondary {
  color: #eafff2;

  border: 2px solid #7be8ad;

  background: rgba(5, 31, 53, 0.58);

  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(27, 88, 80, 0.76);
}


/* =====================================================
   HERO SCROLL
===================================================== */

.scroll-indicator {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 20;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  color: #bef9d6;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.2px;

  opacity: 0;

  transform:
    translateX(-50%)
    translateY(15px);
}

.scroll-arrow,
.intro-scroll-arrow {
  width: 15px;
  height: 15px;

  border-right: 3px solid #8cf1ba;
  border-bottom: 3px solid #8cf1ba;

  transform: rotate(45deg);

  animation:
    scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%,
  100% {
    transform:
      translateY(0)
      rotate(45deg);
  }

  50% {
    transform:
      translateY(7px)
      rotate(45deg);
  }
}


/* =====================================================
   INTRO LEAVES
===================================================== */

.intro-cover {
  position: absolute;
  inset: 0;
  z-index: 60;

  overflow: hidden;

  pointer-events: none;
}

.intro-darkness {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(
      circle at center,
      rgba(5, 26, 42, 0.18) 0%,
      rgba(1, 9, 22, 0.54) 48%,
      rgba(0, 4, 12, 0.88) 100%
    );
}

.intro-leaves {
  position: absolute;
  z-index: 3;

  pointer-events: none;
  user-select: none;

  will-change: transform;

  filter:
    brightness(0.72)
    saturate(0.88)
    drop-shadow(0 20px 35px rgba(0, 0, 0, 0.42));
}

.intro-leaves-left {
  left: -4vw;
  bottom: -7vh;

  width: min(66vw, 1050px);
  height: 114vh;

  object-fit: contain;
  object-position: left bottom;

  transform-origin: left bottom;
}

.intro-leaves-right {
  right: -4vw;
  bottom: -7vh;

  width: min(66vw, 1050px);
  height: 114vh;

  object-fit: contain;
  object-position: right bottom;

  transform-origin: right bottom;
}

.intro-leaves-top {
  top: -5vh;
  left: -3vw;

  width: 106vw;
  max-width: none;
  height: 48vh;

  object-fit: cover;
  object-position: center top;

  transform-origin: center top;

  filter:
    brightness(0.63)
    saturate(0.84)
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
}

.intro-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;

  width: min(920px, calc(100% - 40px));

  text-align: center;

  transform:
    translate(-50%, -50%);
}

.intro-eyebrow {
  margin-bottom: 5px;

  color: #9df4c5;

  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 900;
  letter-spacing: 5px;

  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.8);
}

.intro-brand h2 {
  color: #8bf0b8;

  font-family: "Baloo 2", sans-serif;
  font-size: clamp(92px, 13vw, 210px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -5px;

  text-shadow:
    0 7px 0 #1c5c48,
    0 16px 45px rgba(0, 0, 0, 0.72),
    0 0 60px rgba(74, 223, 156, 0.2);
}

.intro-scroll-text {
  margin-top: 35px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;

  color: rgba(227, 255, 239, 0.86);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}


/* =====================================================
   SHARED
===================================================== */

.section-kicker {
  margin-bottom: 12px;

  color: #89edb6;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}


/* =====================================================
   JOURNAL SECTION
===================================================== */

.journal-section {
  position: relative;
  z-index: 30;

  min-height: 115vh;

  overflow: hidden;

  padding:
    135px 24px
    115px;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(54, 147, 120, 0.2),
      transparent 36%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(78, 179, 127, 0.1),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #06172c 0%,
      #082536 48%,
      #071b2c 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.06);
}

.journal-section::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.22;

  pointer-events: none;

  background-image:
    radial-gradient(
      circle,
      rgba(255, 233, 137, 0.95) 0 1px,
      transparent 2px
    );

  background-size: 160px 160px;
  background-position: 30px 30px;
}

.journal-section::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 160px;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      transparent,
      #071b2c 96%
    );
}

.journal-heading {
  position: relative;
  z-index: 4;

  max-width: 940px;

  margin:
    0 auto
    64px;

  text-align: center;

  opacity: 0;
  transform: translateY(36px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.journal-section.is-visible .journal-heading {
  opacity: 1;
  transform: translateY(0);
}

.journal-heading h2 {
  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -3px;

  text-shadow:
    0 5px 0 rgba(20, 54, 69, 0.85),
    0 18px 35px rgba(0, 0, 0, 0.34);
}

.journal-heading-description {
  margin-top: 22px;

  color: #c8e3e9;

  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 700;
}

.journal-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  filter: blur(12px);

  pointer-events: none;
}

.journal-glow-left {
  left: -220px;
  bottom: 90px;

  background:
    rgba(77, 221, 151, 0.1);
}

.journal-glow-right {
  top: 180px;
  right: -210px;

  background:
    rgba(80, 157, 223, 0.1);
}

.journal-fireflies {
  position: absolute;
  inset: 0;

  opacity: 0.72;

  pointer-events: none;

  background-image:
    radial-gradient(circle at 12% 45%, #ffe899 0 2px, transparent 5px),
    radial-gradient(circle at 20% 68%, #fff1a5 0 2px, transparent 6px),
    radial-gradient(circle at 84% 37%, #ffe884 0 2px, transparent 5px),
    radial-gradient(circle at 90% 71%, #fff0a0 0 2px, transparent 6px),
    radial-gradient(circle at 72% 82%, #ffe899 0 1px, transparent 5px);

  animation:
    journalFireflies 5s ease-in-out infinite alternate;
}

@keyframes journalFireflies {
  from {
    opacity: 0.42;
    transform: translateY(0);
  }

  to {
    opacity: 0.85;
    transform: translateY(-8px);
  }
}


/* =====================================================
   JOURNAL BOOK
===================================================== */

.journal-stage {
  position: relative;
  z-index: 5;

  width: min(1480px, 100%);

  margin: 0 auto;

  perspective: 1800px;
}

.journal-book {
  width: 100%;

  opacity: 0;

  transform:
    translateY(80px)
    scale(0.95)
    rotate(-1deg);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journal-section.is-visible .journal-book {
  opacity: 1;

  transform:
    translateY(0)
    scale(1)
    rotate(0);
}

.journal-book-tilt {
  --journal-rotate-x: 0deg;
  --journal-rotate-y: 0deg;

  position: relative;

  width: 100%;

  aspect-ratio: 1672 / 941;

  transform:
    rotateX(var(--journal-rotate-x))
    rotateY(var(--journal-rotate-y));

  transform-style: preserve-3d;

  transition:
    transform 0.25s ease;
}

.journal-shell {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: contain;

  pointer-events: none;
  user-select: none;

  filter:
    drop-shadow(0 34px 40px rgba(0, 0, 0, 0.42));
}

.journal-page-area {
  position: absolute;

  top: 15.7%;
  right: 18.2%;
  bottom: 18.3%;
  left: 17.4%;

  z-index: 5;

  perspective: 1500px;
}

.journal-panels {
  position: absolute;
  inset: 0;
}

.journal-panel {
  position: absolute;
  inset: 0;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  column-gap: 12%;

  color: #513c28;

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s;
}

.journal-panel.is-active {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.journal-panel[hidden] {
  display: none;
}

.journal-page {
  position: relative;

  min-width: 0;
  height: 100%;

  overflow: hidden;

  padding:
    clamp(7px, 0.75vw, 14px)
    clamp(7px, 0.85vw, 16px);
}

.journal-page-left {
  padding-right:
    clamp(10px, 1vw, 20px);
}

.journal-page-right {
  padding-left:
    clamp(10px, 1vw, 20px);

  padding-right:
    clamp(17px, 1.6vw, 30px);
}


/* =====================================================
   JOURNAL TEXT
===================================================== */

.journal-page-label {
  display: inline-flex;

  margin:
    0 0
    clamp(8px, 0.7vw, 13px)
    7%;

  padding:
    5px 10px;

  color: #47694c;

  border:
    1px solid rgba(64, 91, 56, 0.45);

  border-radius: 4px;

  background:
    rgba(117, 149, 83, 0.1);

  font-size:
    clamp(7px, 0.62vw, 11px);

  font-weight: 900;
  letter-spacing: 1.5px;
}

.journal-chapter {
  margin-bottom:
    clamp(5px, 0.5vw, 9px);

  color: #6e8555;

  font-size:
    clamp(8px, 0.7vw, 12px);

  font-weight: 900;
  letter-spacing: 2px;
}

.journal-page h3 {
  max-width: 94%;

  margin-bottom:
    clamp(10px, 0.9vw, 17px);

  color: #4a3522;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(22px, 2vw, 38px);

  font-weight: 800;
  line-height: 0.93;
}

.journal-page p {
  color: #604a34;

  font-size:
    clamp(9px, 0.88vw, 15px);

  font-weight: 700;
  line-height: 1.48;
}

.journal-copy {
  max-width: 91%;

  margin-bottom:
    clamp(8px, 0.75vw, 14px);
}


/* =====================================================
   JOURNAL IMAGES
===================================================== */

.journal-photo {
  position: relative;

  width: 87%;

  margin:
    0 auto
    clamp(8px, 0.8vw, 14px);

  padding:
    clamp(5px, 0.45vw, 8px);

  border:
    1px solid rgba(82, 59, 34, 0.28);

  border-radius: 4px;

  background:
    rgba(255, 247, 219, 0.52);

  box-shadow:
    0 9px 18px rgba(79, 54, 29, 0.13);

  transform: rotate(-1.2deg);
}

.journal-photo::before {
  content: "";

  position: absolute;
  top: -9px;
  left: 50%;
  z-index: 4;

  width: 32%;
  height: 18px;

  background:
    rgba(206, 170, 103, 0.56);

  transform:
    translateX(-50%)
    rotate(1deg);
}

.journal-photo img {
  width: 100%;
  height:
    clamp(145px, 17.5vw, 280px);

  object-fit: cover;

  border-radius: 2px;
}

.journal-photo-sketch img,
.journal-photo-traits img {
  object-fit: contain;

  background:
    rgba(245, 227, 186, 0.18);
}

.journal-photo-profile {
  width: 89%;
  transform: rotate(1.1deg);
}

.journal-photo-profile img {
  object-position: center 38%;

  filter:
    saturate(1.08)
    contrast(1.02);
}

.journal-photo-dream img {
  object-position: center 50%;
}

.journal-photo figcaption {
  padding:
    6px 4px 1px;

  color: #685039;

  font-size:
    clamp(7px, 0.7vw, 12px);

  font-weight: 800;
  line-height: 1.25;
}


/* =====================================================
   JOURNAL STORY
===================================================== */

.story-notes {
  width: 82%;

  margin: 0 auto;
}

.story-note {
  position: relative;

  width: fit-content;

  margin-bottom: 5px;

  color: #61734e;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(7px, 0.68vw, 11px);

  font-weight: 800;
  line-height: 1.1;
}

.story-note::before {
  content: "";

  display: inline-block;

  width: 5px;
  height: 5px;

  margin-right: 7px;

  border-radius: 50%;

  background: #789861;
}

.handwritten-note {
  max-width: 76%;

  margin:
    8px auto 0;

  color: #63754b !important;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(8px, 0.76vw, 13px) !important;

  text-align: center;

  transform: rotate(-1.5deg);
}

.journal-quote {
  position: relative;

  width: 86%;

  margin-top:
    clamp(13px, 1.1vw, 19px);

  margin-left: 5%;

  padding:
    5px 10px 8px
    clamp(19px, 1.6vw, 28px);

  transform: rotate(-1.2deg);
}

.journal-quote p {
  color: #4d7659;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(13px, 1.16vw, 20px);

  font-weight: 700;
  line-height: 1.15;
}

.journal-quote-mark {
  position: absolute;

  top: -10px;
  left: 0;

  color:
    rgba(91, 128, 94, 0.38);

  font-family: Georgia, serif;
  font-size:
    clamp(34px, 3vw, 54px);

  line-height: 1;
}

.journal-quote-author {
  display: block;

  margin-top: 3px;
  padding-right: 8%;

  color: #75835f;

  font-size:
    clamp(7px, 0.62vw, 10px);

  font-weight: 900;

  text-align: right;
}

.journal-stamp {
  position: absolute;
  right: 17%;
  bottom: 7%;

  width:
    clamp(65px, 5.5vw, 96px);

  height:
    clamp(65px, 5.5vw, 96px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color:
    rgba(62, 101, 68, 0.68);

  border:
    2px solid rgba(62, 101, 68, 0.52);

  border-radius: 50%;

  font-size:
    clamp(6px, 0.56vw, 9px);

  font-weight: 900;
  line-height: 1.05;

  opacity: 0.78;

  transform: rotate(-7deg);
}

.journal-stamp::after {
  content: "";

  position: absolute;
  inset: 5px;

  border:
    1px dashed rgba(62, 101, 68, 0.42);

  border-radius: 50%;
}


/* =====================================================
   JOURNAL PROFILE
===================================================== */

.profile-label {
  color: #496b78;

  border-color:
    rgba(65, 105, 121, 0.42);

  background:
    rgba(91, 155, 181, 0.1);
}

.profile-chapter {
  color: #567b8d;
}

.profile-photo-note {
  width: fit-content;

  margin:
    5px auto 0;

  padding:
    6px 11px;

  color: #537b8b;

  border:
    1px solid rgba(83, 123, 139, 0.34);

  transform: rotate(-1deg);
}

.profile-photo-note span {
  display: block;

  font-size:
    clamp(6px, 0.55vw, 9px);

  font-weight: 900;
  letter-spacing: 1px;
}

.profile-photo-note strong {
  display: block;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(10px, 0.92vw, 16px);
}

.profile-list {
  display: grid;

  gap:
    clamp(5px, 0.5vw, 9px);
}

.profile-list div {
  display: grid;

  grid-template-columns:
    minmax(78px, 0.72fr)
    1.28fr;

  gap:
    clamp(7px, 0.65vw, 12px);

  padding-bottom:
    clamp(4px, 0.4vw, 7px);

  border-bottom:
    1px dashed rgba(86, 63, 39, 0.25);
}

.profile-list dt {
  color: #68818a;

  font-size:
    clamp(7px, 0.64vw, 11px);

  font-weight: 900;
  letter-spacing: 0.7px;

  text-transform: uppercase;
}

.profile-list dd {
  color: #513b26;

  font-size:
    clamp(8px, 0.78vw, 13px);

  font-weight: 800;
}

.profile-field-note {
  margin-top:
    clamp(9px, 0.8vw, 14px);

  padding:
    clamp(7px, 0.65vw, 11px);

  border-left:
    3px solid rgba(82, 132, 151, 0.58);

  background:
    rgba(84, 143, 166, 0.06);
}

.profile-field-note span {
  color: #547687;

  font-size:
    clamp(6px, 0.58vw, 10px);

  font-weight: 900;
  letter-spacing: 1.2px;
}

.profile-field-note p {
  margin-top: 3px;

  font-size:
    clamp(8px, 0.72vw, 12px);

  line-height: 1.25;
}

.profile-id {
  display: inline-block;

  margin-top:
    clamp(8px, 0.7vw, 13px);

  padding:
    5px 9px;

  color: #526f7b;

  border:
    2px solid rgba(82, 111, 123, 0.45);

  font-size:
    clamp(6px, 0.58vw, 10px);

  font-weight: 900;
  letter-spacing: 1px;

  transform: rotate(-2deg);
}


/* =====================================================
   JOURNAL TRAITS
===================================================== */

.traits-label {
  color: #925761;

  border-color:
    rgba(146, 87, 97, 0.38);

  background:
    rgba(201, 113, 119, 0.08);
}

.traits-chapter {
  color: #9a6069;
}

.trait-badges {
  display: flex;
  justify-content: center;

  gap:
    clamp(4px, 0.45vw, 8px);

  flex-wrap: wrap;
}

.trait-badges span {
  padding: 4px 8px;

  color: #70484d;

  border-radius: 999px;

  background:
    rgba(205, 118, 119, 0.17);

  font-size:
    clamp(6px, 0.56vw, 9px);

  font-weight: 900;
}

.trait-meters {
  display: grid;

  gap:
    clamp(7px, 0.62vw, 11px);

  margin-bottom:
    clamp(10px, 0.9vw, 16px);
}

.trait-meter-heading {
  display: flex;
  justify-content: space-between;

  margin-bottom: 3px;

  color: #684b3d;

  font-size:
    clamp(7px, 0.64vw, 11px);

  font-weight: 900;
}

.trait-meter-heading strong {
  color: #9c5d68;
}

.trait-meter-track {
  height:
    clamp(6px, 0.5vw, 9px);

  overflow: hidden;

  border-radius: 999px;

  background:
    rgba(132, 88, 71, 0.1);
}

.trait-meter-track span {
  display: block;

  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #c47178,
      #e49992
    );
}

.traits-columns {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    clamp(7px, 0.65vw, 12px);
}

.trait-group {
  padding:
    clamp(7px, 0.65vw, 11px);

  border-radius: 6px;

  background:
    rgba(117, 149, 83, 0.07);
}

.trait-group h4 {
  margin-bottom: 6px;

  color: #557349;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(10px, 0.95vw, 16px);
}

.trait-group ul {
  padding-left: 15px;

  color: #5e4935;

  font-size:
    clamp(7px, 0.64vw, 11px);

  font-weight: 700;
  line-height: 1.4;
}

.trait-weaknesses {
  background:
    rgba(201, 113, 119, 0.07);
}

.trait-weaknesses h4 {
  color: #9a5b5d;
}


/* =====================================================
   JOURNAL DREAM
===================================================== */

.dream-label {
  color: #65628e;

  border-color:
    rgba(101, 98, 142, 0.4);

  background:
    rgba(113, 98, 149, 0.08);
}

.dream-chapter {
  color: #6d6694;
}

.dream-intro {
  max-width: 91%;

  margin-bottom:
    clamp(10px, 0.9vw, 16px);

  color: #685c7d !important;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(10px, 0.92vw, 16px) !important;
}

.journey-steps {
  display: grid;

  gap:
    clamp(6px, 0.55vw, 10px);

  list-style: none;
}

.journey-steps li {
  display: flex;
  align-items: center;

  gap:
    clamp(7px, 0.65vw, 11px);

  padding-bottom:
    clamp(5px, 0.45vw, 8px);

  border-bottom:
    1px dashed rgba(85, 62, 39, 0.24);
}

.journey-steps li > span {
  flex: 0 0 auto;

  width:
    clamp(24px, 1.9vw, 34px);

  height:
    clamp(24px, 1.9vw, 34px);

  display: grid;
  place-items: center;

  color: #ffffff;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #71629a,
      #9a85c2
    );

  font-size:
    clamp(7px, 0.62vw, 10px);

  font-weight: 900;
}

.journey-steps strong {
  display: block;

  color: #59452f;

  font-size:
    clamp(8px, 0.76vw, 13px);
}

.journey-steps small {
  display: block;

  margin-top: 2px;

  color: #786957;

  font-size:
    clamp(6px, 0.57vw, 10px);

  font-weight: 700;
}

.dream-destination {
  display: inline-flex;
  flex-direction: column;

  margin-top:
    clamp(9px, 0.8vw, 14px);

  padding:
    6px 11px;

  color: #615985;

  border:
    2px solid rgba(97, 89, 133, 0.42);
}

.dream-destination span {
  font-size:
    clamp(6px, 0.54vw, 9px);

  font-weight: 900;
  letter-spacing: 1px;
}

.dream-destination strong {
  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(10px, 0.94vw, 16px);
}


/* =====================================================
   JOURNAL TABS
===================================================== */

.journal-tabs {
  position: absolute;
  inset: 0;
  z-index: 20;

  pointer-events: none;
}

.journal-tab {
  --tab-rgb: 140, 215, 85;

  position: absolute;

  left: 83.55%;

  width: 8.85%;
  height: 12%;

  padding: 0;

  border: 0;
  border-radius: 14px;

  background: transparent;

  cursor: pointer;

  pointer-events: auto;

  transform-origin: left center;

  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.journal-tab-story {
  top: 15.1%;

  --tab-rgb: 148, 222, 82;
}

.journal-tab-profile {
  top: 29.6%;

  --tab-rgb: 95, 177, 211;
}

.journal-tab-traits {
  top: 44.1%;

  --tab-rgb: 221, 104, 134;
}

.journal-tab-dream {
  top: 58.7%;

  --tab-rgb: 132, 96, 211;
}

.journal-tab::before {
  content: "";

  position: absolute;
  inset: 8%;

  border-radius: 12px;

  opacity: 0;

  background:
    linear-gradient(
      90deg,
      rgba(var(--tab-rgb), 0.05),
      rgba(var(--tab-rgb), 0.28)
    );

  box-shadow:
    0 0 11px rgba(var(--tab-rgb), 0.4),
    inset 0 0 10px rgba(var(--tab-rgb), 0.12);

  transition:
    opacity 0.22s ease;
}

.journal-tab:hover,
.journal-tab:focus-visible {
  transform:
    translateX(7px)
    scale(1.018);

  filter:
    brightness(1.12)
    saturate(1.05);

  outline: none;
}

.journal-tab:hover::before,
.journal-tab:focus-visible::before {
  opacity: 0.86;
}

.journal-tab.is-active {
  transform:
    translateX(4px)
    scale(1.008);
}

.journal-tab.is-active::before {
  opacity: 0.42;
}


/* =====================================================
   JOURNAL PAGE FLIP
===================================================== */

.journal-flip-sheet {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  z-index: 30;

  width: 44%;

  opacity: 0;

  pointer-events: none;

  transform:
    rotateY(0deg);

  transform-origin:
    left center;

  transform-style:
    preserve-3d;

  backface-visibility: hidden;

  border-radius:
    0 8px 10px 0;

  background:
    linear-gradient(
      90deg,
      #bea06c 0%,
      #e5c995 8%,
      #f6e4bd 68%,
      #d1ae74 100%
    );

  box-shadow:
    -14px 7px 18px rgba(66, 44, 24, 0.16);
}

.journal-book.is-flipping .journal-flip-sheet {
  opacity: 1;

  animation:
    journalPageFlip
    0.82s
    cubic-bezier(0.55, 0.02, 0.28, 0.98)
    forwards;
}

@keyframes journalPageFlip {
  0% {
    opacity: 0;

    transform:
      rotateY(0deg);
  }

  8% {
    opacity: 1;
  }

  45% {
    opacity: 1;

    transform:
      rotateY(-88deg);
  }

  100% {
    opacity: 0;

    transform:
      rotateY(-178deg);
  }
}


/* =====================================================
   TOKENOMICS SECTION
===================================================== */

.tokenomics-section {
  position: relative;
  z-index: 31;

  height: 215vh;
  height: 215svh;

  scroll-margin-top: 72px;

  overflow: clip;

  background: #06182c;
}

.tokenomics-sticky {
  position: sticky;
  top: 0;

  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      ellipse at 50% 54%,
      #0a3143 0%,
      #071d31 48%,
      #061628 100%
    );
}


/* =====================================================
   TOKENOMICS TRANSITION BASE
===================================================== */

.pond-transition-base {
  position: absolute;
  inset: 0;
  z-index: 2;

  pointer-events: none;

  background:
    radial-gradient(
      ellipse at 50% 55%,
      rgba(43, 150, 133, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 15% 72%,
      rgba(60, 184, 139, 0.08),
      transparent 29%
    ),
    linear-gradient(
      180deg,
      #071d31 0%,
      #06182c 100%
    );

  will-change: opacity;
}

.pond-transition-base::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.24;

  background-image:
    radial-gradient(
      circle,
      rgba(255, 233, 140, 0.9) 0 1px,
      transparent 2px
    );

  background-size: 175px 175px;
  background-position: 37px 48px;
}


/* =====================================================
   TOKENOMICS FULL-SCREEN REVEAL
===================================================== */

.tokenomics-reveal {
  position: absolute;
  inset: 0;
  z-index: 3;

  overflow: hidden;

  clip-path:
    circle(0% at 50% 53%);

  pointer-events: none;

  will-change: clip-path;
}

.tokenomics-sticky.is-ready .tokenomics-reveal {
  pointer-events: auto;
}

.tokenomics-reveal::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;

  width: var(--token-frame-width, 100%);
  height: var(--token-frame-height, 100%);

  background-image:
    url("./assets/images/tokenomics/tokenomics-bg.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;

  opacity: 0.52;

  filter:
    blur(10px)
    brightness(0.86)
    saturate(1.02);

  transform:
    translate(-50%, -50%)
    scale(1.018);

  pointer-events: none;
}

.tokenomics-backdrop {
  position: absolute;
  inset: -2%;
  z-index: 1;

  opacity: 0;

  background-image:
    url("./assets/images/tokenomics/tokenomics-bg.png");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  filter:
    blur(8px)
    brightness(0.78)
    saturate(1.02);

  transform: scale(1.025);

  pointer-events: none;

  will-change: opacity;
}


/* =====================================================
   TOKENOMICS EXACT IMAGE FRAME
===================================================== */

.tokenomics-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;

  width: 100%;
  height: 100%;

  overflow: visible;

  transform:
    translate(-50%, -50%);

  box-shadow: none;
}

.tokenomics-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  pointer-events: none;
  user-select: none;

  transform: scale(1);

  filter:
    brightness(0.76)
    saturate(0.9)
    blur(0.6px);

  will-change:
    transform,
    filter;
}

.tokenomics-left-shade {
  position: absolute;
  inset: 0;
  z-index: 5;

  opacity: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(3, 16, 37, 0.62) 0%,
      rgba(3, 19, 40, 0.42) 16%,
      rgba(3, 19, 40, 0.16) 31%,
      rgba(3, 19, 40, 0.03) 47%,
      transparent 62%
    );

  transition:
    opacity 0.55s ease;
}

.tokenomics-sticky.is-ready .tokenomics-left-shade {
  opacity: 1;
}


/* =====================================================
   TOKENOMICS CONTENT
===================================================== */

.tokenomics-heading,
.tokenomics-detail,
.tokenomics-stats {
  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity 0.62s ease,
    transform 0.62s
    cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tokenomics-sticky.is-ready .tokenomics-heading,
.tokenomics-sticky.is-ready .tokenomics-detail,
.tokenomics-sticky.is-ready .tokenomics-stats {
  opacity: 1;
  transform: translateY(0);
}

.tokenomics-sticky.is-ready .tokenomics-heading {
  transition-delay: 0.04s;
}

.tokenomics-sticky.is-ready .tokenomics-detail {
  transition-delay: 0.13s;
}

.tokenomics-sticky.is-ready .tokenomics-stats {
  transition-delay: 0.22s;
}


/* =====================================================
   TOKENOMICS HEADING
===================================================== */

.tokenomics-heading {
  position: absolute;
  top: 9%;
  left: 5.2%;
  z-index: 8;

  width: min(34%, 610px);
}

.tokenomics-heading h2 {
  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(50px, 5.4vw, 94px);

  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -3px;

  text-shadow:
    0 5px 0 rgba(15, 63, 71, 0.82),
    0 18px 36px rgba(0, 0, 0, 0.38);
}

.tokenomics-subtitle {
  margin-top: 18px;

  color: #d6f5ed;

  font-size:
    clamp(15px, 1.2vw, 21px);

  font-weight: 800;

  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.5);
}


/* =====================================================
   TOKENOMICS DETAIL
===================================================== */

.tokenomics-detail {
  position: absolute;
  top: 44%;
  left: 5.2%;
  z-index: 9;

  width: min(29%, 520px);

  padding:
    clamp(17px, 1.5vw, 27px);

  border:
    1px solid rgba(143, 237, 192, 0.24);

  border-radius:
    clamp(17px, 1.3vw, 23px);

  background:
    linear-gradient(
      135deg,
      rgba(4, 34, 51, 0.9),
      rgba(8, 63, 66, 0.66)
    );

  backdrop-filter: blur(16px);

  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tokenomics-detail.is-changing {
  transform:
    translateY(3px)
    scale(0.99);

  border-color:
    rgba(143, 237, 192, 0.48);
}

.tokenomics-detail-label {
  margin-bottom: 8px;

  color: #89edb6;

  font-size:
    clamp(8px, 0.68vw, 11px);

  font-weight: 900;
  letter-spacing: 2px;
}

.tokenomics-detail-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 15px;

  margin-bottom: 12px;
}

.tokenomics-detail h3 {
  color: #fff1cf;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(25px, 2.2vw, 42px);

  font-weight: 800;
  line-height: 0.95;
}

.tokenomics-detail strong {
  color: #90f0b9;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(24px, 2vw, 38px);

  font-weight: 800;
  line-height: 1;
}

.tokenomics-detail > p:last-child {
  color: #d5e9e8;

  font-size:
    clamp(11px, 0.9vw, 15px);

  font-weight: 700;
  line-height: 1.55;
}


/* =====================================================
   TOKENOMICS LILY PADS
===================================================== */

.tokenomics-pads {
  position: absolute;
  inset: 0;
  z-index: 10;

  pointer-events: none;
}

.token-pad {
  --pad-x: 50%;
  --pad-y: 50%;
  --pad-width: 15%;
  --pad-height: 18%;
  --pad-glow: 153, 244, 128;
  --label-y: 0px;
  --pad-delay: 0s;

  position: absolute;

  top: var(--pad-y);
  left: var(--pad-x);

  width: var(--pad-width);
  height: var(--pad-height);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #f5ffe7;

  border: 0;
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  pointer-events: none;

  text-align: center;

  opacity: 0;

  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.75),
    0 0 12px rgba(0, 0, 0, 0.48);

  transform:
    translate(-50%, -50%)
    translateY(13px)
    scale(0.94);

  transition:
    opacity 0.48s ease,
    transform 0.48s
    cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.22s ease;
}

.tokenomics-sticky.is-ready .token-pad {
  opacity: 1;

  pointer-events: auto;

  transform:
    translate(-50%, -50%);

  transition-delay:
    var(--pad-delay);
}

.token-pad::before {
  content: "";

  position: absolute;

  top: 13%;
  right: 8%;
  bottom: 13%;
  left: 8%;

  z-index: -1;

  border-radius: 50%;

  opacity: 0;

  background:
    radial-gradient(
      ellipse at center,
      rgba(var(--pad-glow), 0.35) 0%,
      rgba(var(--pad-glow), 0.15) 43%,
      transparent 73%
    );

  box-shadow:
    0 0 24px rgba(var(--pad-glow), 0.28);

  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.token-pad::after {
  content: "";

  position: absolute;
  top: 52%;
  left: 50%;

  z-index: -1;

  width: 84%;
  height: 42%;

  border:
    1.5px solid rgba(var(--pad-glow), 0.65);

  border-radius: 50%;

  opacity: 0;

  transform:
    translate(-50%, -50%)
    scale(0.72);

  pointer-events: none;
}

.tokenomics-sticky.is-ready .token-pad:hover,
.tokenomics-sticky.is-ready .token-pad:focus-visible,
.tokenomics-sticky.is-ready .token-pad.is-active {
  transform:
    translate(-50%, -50%)
    translateY(-2px)
    scale(1.025);

  filter:
    brightness(1.1)
    saturate(1.04);

  outline: none;

  transition-delay: 0s;
}

.token-pad:hover::before,
.token-pad:focus-visible::before,
.token-pad.is-active::before {
  opacity: 1;

  transform: scale(1.035);
}

.token-pad.is-rippling::after {
  animation:
    tokenPadRipple
    0.75s ease-out forwards;
}

.token-pad-percentage,
.token-pad-name {
  position: relative;

  transform:
    translateY(var(--label-y));

  pointer-events: none;
}

.token-pad-percentage {
  display: block;

  color: #fff3d0;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(19px, 1.85vw, 35px);

  font-weight: 800;
  line-height: 0.9;
}

.token-pad-name {
  display: block;

  margin-top: 5px;

  color: #e2ffd9;

  font-size:
    clamp(7px, 0.69vw, 12px);

  font-weight: 900;
  letter-spacing: 1px;

  text-transform: uppercase;
}


/* přesnější posice a výšky textů */

.token-pad-treasury {
  --pad-x: 57.4%;
  --pad-y: 21.8%;
  --pad-width: 15.2%;
  --pad-height: 18%;
  --label-y: -5px;
  --pad-glow: 170, 229, 107;
  --pad-delay: 0.08s;
}

.token-pad-community {
  --pad-x: 40.3%;
  --pad-y: 39.0%;
  --pad-width: 15.2%;
  --pad-height: 18.8%;
  --label-y: -4px;
  --pad-glow: 104, 231, 178;
  --pad-delay: 0.13s;
}

.token-pad-marketing {
  --pad-x: 78.0%;
  --pad-y: 39.0%;
  --pad-width: 15%;
  --pad-height: 18.5%;
  --label-y: -4px;
  --pad-glow: 255, 212, 114;
  --pad-delay: 0.18s;
}

.token-pad-liquidity {
  --pad-x: 37.8%;
  --pad-y: 69.8%;
  --pad-width: 15.7%;
  --pad-height: 19.7%;
  --label-y: -4px;
  --pad-glow: 89, 219, 196;
  --pad-delay: 0.23s;
}

.token-pad-airdrop {
  --pad-x: 82.0%;
  --pad-y: 67.7%;
  --pad-width: 15.7%;
  --pad-height: 19.7%;
  --label-y: -4px;
  --pad-glow: 240, 148, 203;
  --pad-delay: 0.28s;
}

.token-pad-team {
  --pad-x: 58.8%;
  --pad-y: 86.9%;
  --pad-width: 15.8%;
  --pad-height: 16.7%;
  --label-y: -6px;
  --pad-glow: 173, 152, 255;
  --pad-delay: 0.33s;
}

@keyframes tokenPadRipple {
  0% {
    opacity: 0.8;

    transform:
      translate(-50%, -50%)
      scale(0.72);
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(1.45);
  }
}


/* =====================================================
   TOKENOMICS STATS
===================================================== */

.tokenomics-stats {
  position: absolute;
  bottom: 4%;
  left: 5.2%;
  z-index: 9;

  width: min(31%, 555px);

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(8px, 0.75vw, 13px);
}

.token-stat {
  min-width: 0;

  padding:
    clamp(11px, 1vw, 18px)
    clamp(8px, 0.8vw, 14px);

  border:
    1px solid rgba(144, 238, 194, 0.18);

  border-radius:
    clamp(13px, 1vw, 18px);

  background:
    rgba(3, 28, 44, 0.76);

  backdrop-filter:
    blur(13px);

  box-shadow:
    0 13px 28px rgba(0, 0, 0, 0.2);

  text-align: center;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.token-stat:hover {
  transform: translateY(-4px);

  background:
    rgba(7, 55, 61, 0.84);
}

.token-stat span {
  display: block;

  margin-bottom: 6px;

  color: #84dbaa;

  font-size:
    clamp(6px, 0.55vw, 9px);

  font-weight: 900;
  letter-spacing: 1px;
}

.token-stat strong {
  display: block;

  overflow: hidden;

  color: #fff0cf;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(11px, 1.05vw, 18px);

  font-weight: 800;
  line-height: 1;

  text-overflow: ellipsis;
}

.token-stat small {
  display: block;

  margin-top: 5px;

  color: #b9d9d6;

  font-size:
    clamp(6px, 0.5vw, 8px);

  font-weight: 800;
  letter-spacing: 0.7px;
}


/* =====================================================
   FALLING COIN
===================================================== */

.pond-transition-coin {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 20;

  width:
    clamp(58px, 5vw, 88px);

  aspect-ratio: 1;

  display: grid;
  place-items: center;

  border:
    clamp(4px, 0.35vw, 6px)
    solid #ffd76c;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 34% 27%,
      #fffbc0 0%,
      #ffdc67 30%,
      #eaa633 69%,
      #aa621b 100%
    );

  box-shadow:
    inset 0 0 0 4px rgba(145, 80, 17, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.3),
    0 13px 29px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(255, 211, 91, 0.32);

  opacity: 0;

  transform:
    translate(-50%, -50%)
    rotate(-20deg);

  pointer-events: none;

  will-change:
    top,
    opacity,
    transform;
}

.pond-transition-coin span {
  color: #87501c;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(28px, 2.7vw, 48px);

  font-weight: 800;
  line-height: 1;

  text-shadow:
    0 2px 0 rgba(255, 246, 166, 0.75);
}


/* =====================================================
   MAIN WATER RIPPLES
===================================================== */

.pond-transition-ripple {
  position: absolute;
  top: 53%;
  left: 50%;
  z-index: 18;

  width:
    clamp(150px, 18vw, 350px);

  height:
    clamp(52px, 6.4vw, 125px);

  border:
    2px solid rgba(169, 247, 226, 0.72);

  border-radius: 50%;

  opacity: 0;

  box-shadow:
    0 0 20px rgba(111, 236, 209, 0.22),
    inset 0 0 14px rgba(111, 236, 209, 0.12);

  transform:
    translate(-50%, -50%)
    scale(0.15);

  pointer-events: none;

  will-change:
    opacity,
    transform;
}

.pond-transition-ripple-two {
  border-color:
    rgba(192, 255, 235, 0.46);
}

.pond-transition-ripple-three {
  border-color:
    rgba(197, 255, 229, 0.25);
}


/* =====================================================
   ROADMAP + COMMUNITY
===================================================== */

.page-section {
  position: relative;
  z-index: 30;

  min-height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding:
    130px 24px
    100px;

  scroll-margin-top: 72px;

  text-align: center;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}

.roadmap-section {
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(116, 100, 205, 0.19),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      #06182c,
      #0a1d38
    );
}

.community-section {
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(61, 193, 145, 0.18),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #071c32,
      #082b35
    );
}

.section-content {
  width: min(800px, 100%);
}

.section-content h2 {
  margin-bottom: 24px;

  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size:
    clamp(52px, 7vw, 105px);

  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -3px;

  text-shadow:
    0 7px 0 rgba(12, 47, 62, 0.72),
    0 20px 40px rgba(0, 0, 0, 0.32);
}

.section-content > p:last-child {
  color: #cde5ed;

  font-size:
    clamp(17px, 1.4vw, 23px);

  font-weight: 700;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  .hero-content {
    width:
      min(540px, 49vw);

    margin-left: 4vw;
  }

  .hero-content h1 {
    font-size:
      clamp(51px, 6.7vw, 78px);
  }

  .hero-moon {
    right: 12%;
  }

  .journal-page-area {
    top: 15%;
    right: 17.7%;
    bottom: 17.7%;
    left: 17%;
  }

  .tokenomics-heading {
    width: 35%;
  }

  .tokenomics-detail {
    width: 32%;
  }

  .tokenomics-stats {
    width: 35%;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

  .intro-sequence {
    height: 190vh;
  }

  .navbar {
    height: 74px;

    justify-content: center;

    padding: 0 20px;
  }

  .nav-links,
  .nav-button {
    display: none;
  }

  .logo {
    font-size: 25px;
  }

  .hero-content {
    width: 100%;

    margin: 0;
    padding: 0 22px;

    text-align: center;
  }

  .hero-content h1 {
    font-size:
      clamp(44px, 13vw, 63px);

    line-height: 0.82;
  }

  .headline-line {
    justify-content: center;

    gap: 10px;
  }

  .hero-description {
    max-width: 510px;

    margin-right: auto;
    margin-left: auto;

    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-moon {
    top: 385px;
    right: 8%;

    width: 135px;
  }

  .hero-mountains {
    right: -35%;
    bottom: -1%;
    left: -35%;

    width: 170%;
  }

  .hero-foreground {
    right: -34%;
    bottom: -3%;
    left: -34%;

    width: 168%;
  }

  .intro-leaves-left {
    left: -18vw;

    width: 92vw;
    height: 110vh;
  }

  .intro-leaves-right {
    right: -18vw;

    width: 92vw;
    height: 110vh;
  }

  .intro-leaves-top {
    top: -2vh;
    left: -15vw;

    width: 130vw;
    height: 40vh;
  }

  .intro-brand h2 {
    font-size:
      clamp(75px, 22vw, 120px);
  }


  /* JOURNAL */

  .journal-section {
    min-height: auto;

    padding:
      105px 16px
      95px;
  }

  .journal-heading {
    margin-bottom: 42px;
  }

  .journal-heading h2 {
    font-size:
      clamp(43px, 13vw, 68px);

    letter-spacing: -2px;
  }

  .journal-stage {
    max-width: 620px;
  }

  .journal-book-tilt {
    aspect-ratio: auto;

    display: flex;
    flex-direction: column;

    padding: 16px;

    border:
      3px solid #8b7247;

    border-radius: 25px;

    background:
      linear-gradient(
        145deg,
        #385f43,
        #1d402d
      );

    box-shadow:
      0 30px 45px rgba(0, 0, 0, 0.42);
  }

  .journal-shell {
    display: none;
  }

  .journal-tabs {
    position: relative;
    inset: auto;

    order: 1;

    width: 100%;
    height: auto;

    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    gap: 7px;

    margin-bottom: 15px;
  }

  .journal-tab {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;
    height: 50px;

    border-radius: 11px;

    background:
      rgba(var(--tab-rgb), 0.78);
  }

  .journal-tab::after {
    content: attr(data-label);

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
  }

  .journal-tab:hover,
  .journal-tab:focus-visible,
  .journal-tab.is-active {
    transform:
      translateY(-4px)
      scale(1.02);
  }

  .journal-page-area {
    position: relative;

    top: auto;
    right: auto;
    bottom: auto;
    left: auto;

    order: 2;

    min-height: 1070px;

    border-radius: 18px;

    background:
      linear-gradient(
        90deg,
        #f0d9aa,
        #f7e6bf
      );

    box-shadow:
      inset 0 0 35px rgba(91, 60, 26, 0.16);
  }

  .journal-panel {
    grid-template-columns: 1fr;

    gap: 18px;

    overflow-y: auto;

    padding: 22px;
  }

  .journal-page {
    height: auto;
    min-height: 0;

    overflow: visible;

    padding: 10px 5px;
  }

  .journal-page + .journal-page {
    padding-top: 24px;

    border-top:
      2px dashed rgba(91, 65, 37, 0.25);
  }

  .journal-page h3 {
    font-size:
      clamp(31px, 8vw, 44px);
  }

  .journal-page p {
    font-size: 15px;
  }

  .journal-photo {
    width: 100%;
    max-width: 430px;
  }

  .journal-photo img {
    height: 360px;
  }

  .journal-page-label {
    margin-left: 0;
  }

  .journal-stamp {
    position: relative;

    right: auto;
    bottom: auto;

    margin:
      25px 0
      0 auto;
  }

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


  /* TOKENOMICS */

  .tokenomics-section {
    height: auto;

    padding:
      90px 14px
      115px;
  }

  .tokenomics-sticky {
    position: relative;
    top: auto;

    height: auto;
    min-height: 0;

    display: flex;
    flex-direction: column;

    overflow: visible;

    background:
      linear-gradient(
        180deg,
        #071b2c,
        #06243a,
        #06182d
      );
  }

  .pond-transition-base,
  .pond-transition-coin,
  .pond-transition-ripple {
    display: none;
  }

  .tokenomics-reveal {
    position: relative;
    inset: auto;

    display: flex;
    flex-direction: column;

    overflow: visible;

    clip-path: none !important;

    pointer-events: auto;
  }

  .tokenomics-backdrop,
  .tokenomics-left-shade,
  .tokenomics-reveal::before {
    display: none;
  }

  .tokenomics-heading {
    position: relative;
    top: auto;
    left: auto;

    order: 0;

    width: 100%;

    margin-bottom: 30px;

    text-align: center;

    opacity: 1;
    transform: none;
  }

  .tokenomics-heading h2 {
    font-size:
      clamp(47px, 14vw, 72px);

    letter-spacing: -2px;
  }

  .tokenomics-frame {
    position: relative;
    top: auto;
    left: auto;

    order: 1;

    width: 100% !important;
    height: auto !important;

    aspect-ratio: 1672 / 941;

    border-radius: 20px;

    transform: none;

    box-shadow:
      0 25px 45px rgba(0, 0, 0, 0.34);
  }

  .tokenomics-background {
    transform: none !important;
    filter: none !important;
  }

  .tokenomics-detail {
    position: relative;
    top: auto;
    left: auto;

    order: 2;

    width: 100%;

    margin-top: 18px;

    opacity: 1;
    transform: none;
  }

  .tokenomics-stats {
    position: relative;
    bottom: auto;
    left: auto;

    order: 3;

    width: 100%;

    grid-template-columns: 1fr;

    margin-top: 16px;

    opacity: 1;
    transform: none;
  }

  .token-pad {
    opacity: 1;

    pointer-events: auto;

    transform:
      translate(-50%, -50%);
  }

  .token-pad-percentage {
    font-size:
      clamp(12px, 4vw, 22px);
  }

  .token-pad-name {
    margin-top: 2px;

    font-size:
      clamp(5px, 1.5vw, 9px);
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

  .hero-buttons {
    max-width: 330px;

    margin: 0 auto;

    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .journal-book-tilt {
    padding: 10px;
  }

  .journal-page-area {
    min-height: 1100px;
  }

  .journal-panel {
    padding: 15px;
  }

  .journal-photo img {
    height: 300px;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;
  }

  .intro-cover {
    display: none;
  }

  .parallax-layer {
    transform: none !important;
  }

  .tokenomics-section {
    height: 100svh;
  }

  .tokenomics-reveal {
    clip-path:
      circle(160% at 50% 53%) !important;
  }

  .tokenomics-backdrop,
  .tokenomics-left-shade,
  .tokenomics-heading,
  .tokenomics-detail,
  .tokenomics-stats,
  .token-pad {
    opacity: 1 !important;
  }

  .pond-transition-base,
  .pond-transition-coin,
  .pond-transition-ripple {
    display: none;
  }

}

/* =====================================================
   TOKENOMICS DEFINITIVE FULLSCREEN FIX
   VLOŽIT NA ÚPLNÝ KONEC STYLE.CSS
===================================================== */

@media (min-width: 761px) {

  /*
    Tokenomics obraz vyplňuje celý viewport.
    Už nepoužíváme contain ani rozmazané boční pruhy.
  */

  .tokenomics-reveal {
    background: #06182c;
  }

  .tokenomics-frame {
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    overflow: hidden !important;

    transform: none !important;

    box-shadow: none !important;
  }

  .tokenomics-background {
    inset: 0;

    width: 100% !important;
    height: 100% !important;
    max-width: none !important;

    object-fit: cover !important;
    object-position: center center !important;

    transform: scale(1) !important;
  }

  /*
    Boční rozmazané kopie už nejsou potřeba,
    protože ostrý obrázek skutečně pokrývá celý viewport.
  */

  .tokenomics-backdrop,
  .tokenomics-reveal::before {
    display: none !important;
  }

  .tokenomics-pads {
    position: absolute;
    inset: 0;
  }

  /*
    Mince je přesunutá přes JavaScript přímo do body.
    Díky fixed pozici může padat už během konce Journal sekce.
  */

  .pond-transition-coin {
    position: fixed !important;

    top: 8%;
    left: 50%;

    z-index: 900;

    margin: 0;

    pointer-events: none;
  }

  /*
    Text už neposouváme procentuálními hodnotami.
    Přesnou polohu nastavuje JavaScript podle zdrojového obrázku.
  */

  .token-pad-treasury,
  .token-pad-community,
  .token-pad-marketing,
  .token-pad-liquidity,
  .token-pad-airdrop,
  .token-pad-team {
    top: 0;
    left: 0;
  }

}

/* =====================================================
   TOKENOMICS — KRATŠÍ SCROLL
   VLOŽIT NA ÚPLNÝ KONEC STYLE.CSS
===================================================== */

@media (min-width: 761px) {
  .tokenomics-section {
    height: 145vh;
    height: 145svh;
  }
}
/* =====================================================
   TOKENOMICS HOVER RIPPLE POLISH
===================================================== */

@media (min-width: 761px) {

  .token-pad {
    isolation: isolate;
  }

  .token-pad::before,
  .token-pad::after {
    z-index: 0;
  }

  .token-pad-percentage,
  .token-pad-name {
    z-index: 2;
  }

  .token-pad::after {
    width: 88%;
    height: 46%;

    box-shadow:
      0 0 0 10px rgba(var(--pad-glow), 0.12),
      0 0 0 22px rgba(var(--pad-glow), 0.055),
      0 0 22px rgba(var(--pad-glow), 0.24);
  }

  .tokenomics-sticky.is-ready .token-pad:hover::after,
  .tokenomics-sticky.is-ready .token-pad:focus-visible::after {
    animation:
      tokenPadHoverRipple
      1.55s
      ease-out
      infinite;
  }

  .tokenomics-sticky.is-ready .token-pad.is-rippling::after {
    animation:
      tokenPadClickRipple
      0.78s
      ease-out
      forwards;
  }

}

@keyframes tokenPadHoverRipple {
  0% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(0.7);
  }

  18% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(1.34);
  }
}

@keyframes tokenPadClickRipple {
  0% {
    opacity: 0.92;

    transform:
      translate(-50%, -50%)
      scale(0.72);
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(1.52);
  }
}

/* =====================================================
   FINAL TOKENOMICS POLISH
   HOVER RIPPLES + CLEAN INTERACTION
===================================================== */

/*
  Hover efekt se spustí okamžitě po najetí myší.
  Kliknutí stále vytvoří samostatnou silnější vlnu.
*/

.token-pad::after {
  will-change:
    opacity,
    transform;

  box-shadow:
    0 0 0 9px
    rgba(var(--pad-glow), 0.1),

    0 0 0 19px
    rgba(var(--pad-glow), 0.055),

    0 0 26px
    rgba(var(--pad-glow), 0.24);
}


/* Jemné nekonečné vlnění při hoveru */

.tokenomics-sticky.is-ready
.token-pad:hover::after,
.tokenomics-sticky.is-ready
.token-pad:focus-visible::after {
  animation:
    tokenPadHoverRippleFinal
    1.65s
    ease-out
    infinite;
}


/* Aktivní leknín má jemný stabilní kruh */

.tokenomics-sticky.is-ready
.token-pad.is-active:not(:hover)::after {
  opacity: 0.28;

  transform:
    translate(-50%, -50%)
    scale(0.9);
}


/* Kliknutí má přednost před hover animací */

.tokenomics-sticky.is-ready
.token-pad.is-rippling::after {
  animation:
    tokenPadClickRippleFinal
    0.78s
    ease-out
    forwards;
}


/* Trochu výraznější světlo leknínu */

.tokenomics-sticky.is-ready
.token-pad:hover::before,
.tokenomics-sticky.is-ready
.token-pad:focus-visible::before {
  opacity: 0.88;

  transform:
    scale(1.08);
}


/* Text se při hoveru jemně zvedne */

.tokenomics-sticky.is-ready
.token-pad:hover
.token-pad-percentage,
.tokenomics-sticky.is-ready
.token-pad:focus-visible
.token-pad-percentage {
  transform:
    translateY(
      calc(var(--label-y) - 2px)
    );
}


/* Hover vodní vlna */

@keyframes tokenPadHoverRippleFinal {
  0% {
    opacity: 0.62;

    transform:
      translate(-50%, -50%)
      scale(0.78);
  }

  55% {
    opacity: 0.23;

    transform:
      translate(-50%, -50%)
      scale(1.12);
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(1.36);
  }
}


/* Silnější vlna po kliknutí */

@keyframes tokenPadClickRippleFinal {
  0% {
    opacity: 0.92;

    transform:
      translate(-50%, -50%)
      scale(0.68);
  }

  50% {
    opacity: 0.48;

    transform:
      translate(-50%, -50%)
      scale(1.18);
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(1.58);
  }
}


/* =====================================================
   TRANSITION CLEANUP
===================================================== */

/*
  Dokud nezačne reveal, nesmí být vidět
  ani jediný pixel Tokenomics obrázku.
*/

.tokenomics-reveal {
  clip-path:
    circle(0px at 50% 53%);
}


/*
  Mince je při zmizení skutečně odstraněna,
  ne pouze téměř průhledná.
*/

.pond-transition-coin {
  backface-visibility: hidden;

  transform-style: preserve-3d;

  will-change:
    top,
    opacity,
    visibility,
    transform;
}


/*
  Hlavní impact vlny zůstanou jemné,
  nízké a podobné vodní hladině.
*/

.pond-transition-ripple {
  height:
    clamp(40px, 5vw, 92px);

  border-width: 1.5px;

  box-shadow:
    0 0 18px
    rgba(111, 236, 209, 0.2),

    inset 0 0 12px
    rgba(111, 236, 209, 0.08);
}


/* Odstranění nechtěného bliknutí při dokončení revealu */

.tokenomics-reveal,
.tokenomics-frame,
.tokenomics-background,
.tokenomics-backdrop {
  backface-visibility: hidden;

  transform-style: preserve-3d;
}


/* Plynulejší změna textu aktivního leknínu */

.tokenomics-detail {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}


@media (max-width: 760px) {

  .tokenomics-sticky.is-ready
  .token-pad:hover::after,
  .tokenomics-sticky.is-ready
  .token-pad:focus-visible::after {
    animation: none;

    opacity: 0.32;

    transform:
      translate(-50%, -50%)
      scale(0.9);
  }

}


/* =====================================================
   ROADMAP MOON ROUTE
===================================================== */

.roadmap-section {
  position: relative;
  z-index: 35;

  min-height: 118vh;
  scroll-margin-top: 112px;

  overflow: hidden;
  isolation: isolate;

  padding:
    clamp(128px, 11vw, 175px)
    24px
    clamp(92px, 9vw, 135px);

  color: #ffffff;

  background:
    radial-gradient(
      circle at 83% 18%,
      rgba(255, 226, 145, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at 23% 84%,
      rgba(126, 232, 174, 0.15),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #071b2c 0%,
      #092641 44%,
      #081934 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.06);
}

.roadmap-section::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;

  height: 210px;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(6, 20, 46, 0.94)
    );
}

.roadmap-sky {
  position: absolute;
  inset: 0;
  z-index: -2;

  overflow: hidden;

  pointer-events: none;
}

.roadmap-sky::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 18% 78%,
      rgba(126, 232, 174, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 78% 24%,
      rgba(255, 226, 145, 0.13),
      transparent 24%
    ),
    radial-gradient(
      circle at 52% 52%,
      rgba(73, 162, 214, 0.12),
      transparent 34%
    );

  opacity: 1;

  filter: none;
}

.roadmap-sky::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(6, 20, 46, 0.34) 0%,
      rgba(6, 20, 46, 0.12) 44%,
      rgba(6, 20, 46, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 20, 46, 0.1) 0%,
      rgba(6, 20, 46, 0.06) 45%,
      rgba(6, 20, 46, 0.64) 100%
    );
}

.roadmap-stars {
  position: absolute;
  inset: -4%;

  opacity: 0.24;

  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 232, 160, 0.82) 0 1px, transparent 2px);

  animation:
    roadmapStars 5.5s ease-in-out infinite alternate;
}

.roadmap-stars-one {
  background-position:
    18px 35px,
    90px 18px;

  background-size:
    160px 160px,
    245px 245px;
}

.roadmap-stars-two {
  opacity: 0.28;

  background-position:
    70px 44px,
    20px 120px;

  background-size:
    280px 280px,
    390px 390px;

  animation-duration: 7s;
  animation-direction: alternate-reverse;
}

@keyframes roadmapStars {
  from {
    opacity: 0.24;
  }

  to {
    opacity: 0.62;
  }
}

.roadmap-moon {
  display: none;

  position: absolute;
  top: clamp(44px, 6vw, 86px);
  right: clamp(22px, 7vw, 118px);

  width: clamp(145px, 15vw, 245px);

  opacity: 0.82;

  filter:
    drop-shadow(0 0 24px rgba(255, 226, 145, 0.32))
    drop-shadow(0 0 70px rgba(255, 226, 145, 0.18));
}

.roadmap-inner {
  position: relative;
  z-index: 2;

  width: min(1480px, 100%);

  margin: 0 auto;
}

.roadmap-heading {
  width: min(860px, 100%);

  margin-bottom: clamp(42px, 6vw, 76px);

  opacity: 0;
  transform: translateY(34px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.roadmap-section.is-visible .roadmap-heading {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-heading h2 {
  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: clamp(48px, 6.6vw, 104px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -3px;

  text-shadow:
    0 5px 0 rgba(20, 54, 69, 0.86),
    0 18px 35px rgba(0, 0, 0, 0.34);
}

.roadmap-heading p:last-child {
  max-width: 690px;

  margin-top: 22px;

  color: #cce9f4;

  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.48;
}

.roadmap-shell {
  --roadmap-active-x: 9%;
  --roadmap-active-y: 82%;

  position: relative;

  min-height: 760px;
}

.roadmap-route,
.roadmap-points {
  position: absolute;
  inset: 0;
}

.roadmap-route {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.9s ease 0.08s,
    transform 0.9s ease 0.08s;
}

.roadmap-section.is-visible .roadmap-route {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-line {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
}

.roadmap-line path {
  fill: none;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-path-shadow {
  stroke: rgba(0, 0, 0, 0.28);
  stroke-width: 38;

  filter:
    blur(7px);
}

.roadmap-path-base {
  stroke: rgba(129, 238, 190, 0.14);
  stroke-width: 9;
  stroke-dasharray: 3 28;
}

.roadmap-path-progress {
  stroke: #8af0bd;
  stroke-width: 6;
  opacity: 0.78;

  filter:
    drop-shadow(0 0 8px rgba(126, 232, 174, 0.48))
    drop-shadow(0 0 18px rgba(126, 232, 174, 0.24));

  transition:
    stroke-dashoffset 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap-frog {
  position: absolute;
  left: var(--roadmap-active-x);
  top: var(--roadmap-active-y);
  z-index: 12;

  width: clamp(86px, 8vw, 132px);

  pointer-events: none;

  transform:
    translate(-50%, -78%)
    rotate(-7deg);

  filter:
    drop-shadow(0 14px 12px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 24px rgba(126, 232, 174, 0.24));

  transition:
    left 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    top 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);

  animation:
    roadmapFrogFloat 3.2s ease-in-out infinite;
}

@keyframes roadmapFrogFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}

.roadmap-points {
  z-index: 8;
}

.roadmap-point {
  --pad-main: 126, 232, 174;
  --pad-edge: 39, 112, 91;

  position: absolute;
  left: var(--point-x);
  top: var(--point-y);

  width: clamp(190px, 17vw, 270px);
  min-height: 166px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 22px 18px;

  cursor: pointer;

  color: #eafff2;

  border: 0;
  border-radius: 0;

  background: transparent;

  box-shadow:
    none;

  text-align: center;

  transform:
    translate(-50%, -50%)
    scale(0.94);

  opacity: 0;

  transition:
    opacity 0.68s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.roadmap-section.is-visible .roadmap-point {
  opacity: 1;
  transform:
    translate(-50%, -50%)
    scale(1);
}

.roadmap-section.is-visible .roadmap-point:nth-child(2) {
  transition-delay: 0.08s;
}

.roadmap-section.is-visible .roadmap-point:nth-child(3) {
  transition-delay: 0.16s;
}

.roadmap-section.is-visible .roadmap-point:nth-child(4) {
  transition-delay: 0.24s;
}

.roadmap-point::before {
  content: "";

  position: absolute;
  inset: -40px -35px -46px;
  z-index: 1;

  background:
    center / contain
    no-repeat;

  opacity: 0.96;

  filter:
    drop-shadow(0 23px 18px rgba(0, 0, 0, 0.26))
    drop-shadow(0 0 24px rgba(var(--pad-main), 0.18));

  transform:
    translateY(0);

  transition:
    filter 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.roadmap-point:nth-child(1)::before {
  background-image:
    url("./assets/images/roadmap/island-pond.png");
}

.roadmap-point:nth-child(2)::before {
  background-image:
    url("./assets/images/roadmap/island-hop.png");
}

.roadmap-point:nth-child(3)::before {
  background-image:
    url("./assets/images/roadmap/island-dream.png");
}

.roadmap-point:nth-child(4) {
  width: clamp(168px, 14vw, 220px);
  min-height: 205px;

  justify-content: flex-end;

  padding-bottom: 20px;
}

.roadmap-point:nth-child(4)::before {
  inset: -54px -42px 28px;

  background-image:
    url("./assets/images/roadmap/moon-destination.png");

  filter:
    drop-shadow(0 0 22px rgba(255, 226, 145, 0.32))
    drop-shadow(0 0 58px rgba(255, 226, 145, 0.16));
}

.roadmap-point-ripple {
  position: absolute;
  inset: 12px 2px 2px;
  z-index: 0;

  border:
    2px solid rgba(var(--pad-main), 0.28);
  border-radius: 50%;

  opacity: 0;

  pointer-events: none;
}

.roadmap-point-kicker,
.roadmap-point strong,
.roadmap-point small {
  position: relative;
  z-index: 3;

  text-shadow:
    0 3px 0 rgba(4, 35, 41, 0.45),
    0 12px 18px rgba(0, 0, 0, 0.34);
}

.roadmap-point-kicker {
  color: #fff0a8;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.roadmap-point strong {
  color: #ffffff;

  font-family: "Baloo 2", sans-serif;
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 800;
  line-height: 0.95;

  text-shadow:
    0 3px 0 rgba(4, 35, 41, 0.42),
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.roadmap-point small {
  color: rgba(232, 255, 243, 0.84);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.roadmap-point:hover,
.roadmap-point:focus-visible,
.roadmap-point.is-active {
  box-shadow:
    none;

  outline: none;
}

.roadmap-point:hover::before,
.roadmap-point:focus-visible::before,
.roadmap-point.is-active::before {
  opacity: 1;

  filter:
    drop-shadow(0 26px 20px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 32px rgba(var(--pad-main), 0.38));

  transform:
    translateY(-4px);
}

.roadmap-point:nth-child(4):hover::before,
.roadmap-point:nth-child(4):focus-visible::before,
.roadmap-point:nth-child(4).is-active::before {
  filter:
    drop-shadow(0 0 26px rgba(255, 226, 145, 0.42))
    drop-shadow(0 0 70px rgba(255, 226, 145, 0.2));
}

.roadmap-point:hover,
.roadmap-point:focus-visible {
  transform:
    translate(-50%, -50%)
    scale(1.05);
}

.roadmap-point.is-active {
  background: transparent;
}

.roadmap-point.is-active .roadmap-point-ripple,
.roadmap-point:hover .roadmap-point-ripple,
.roadmap-point:focus-visible .roadmap-point-ripple {
  animation:
    roadmapPointRipple 1.55s ease-out infinite;
}

.roadmap-point.is-complete::after {
  content: "COMPLETE";

  position: absolute;
  right: 20px;
  bottom: 25px;
  z-index: 3;

  padding: 5px 9px;

  color: #173652;

  border:
    2px solid rgba(81, 60, 40, 0.28);
  border-radius: 6px;

  background: #fff0a8;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;

  transform:
    rotate(-8deg);
}

@keyframes roadmapPointRipple {
  0% {
    opacity: 0.58;

    transform:
      scale(0.82);
  }

  100% {
    opacity: 0;

    transform:
      scale(1.34);
  }
}

.roadmap-detail {
  position: absolute;
  right: 1%;
  bottom: 4%;
  z-index: 14;

  width: min(340px, 29vw);

  padding: clamp(22px, 2vw, 30px);

  color: #49351f;

  border:
    2px solid rgba(81, 60, 40, 0.2);
  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 244, 202, 0.96),
      rgba(236, 203, 145, 0.94)
    );

  box-shadow:
    0 24px 35px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);

  opacity: 0;
  transform:
    translateY(28px)
    rotate(1deg);

  transition:
    opacity 0.65s ease 0.25s,
    transform 0.65s ease 0.25s;
}

.roadmap-section.is-visible .roadmap-detail {
  opacity: 1;
  transform:
    translateY(0)
    rotate(1deg);
}

.roadmap-detail.is-changing {
  opacity: 0.62;
  transform:
    translateY(4px)
    rotate(1deg);
}

.roadmap-detail-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  margin-bottom: 13px;

  color: #765531;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.roadmap-detail-topline strong {
  padding: 5px 9px;

  color: #0d2d33;

  border-radius: 6px;

  background: #8af0bd;

  letter-spacing: 1.2px;
}

.roadmap-detail h3 {
  margin-bottom: 12px;

  color: #3c2b1b;

  font-family: "Baloo 2", sans-serif;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 800;
  line-height: 0.92;
}

.roadmap-detail p {
  margin-bottom: 17px;

  color: #60462a;

  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.roadmap-detail ul {
  display: grid;

  gap: 9px;

  list-style: none;
}

.roadmap-detail li {
  position: relative;

  padding-left: 22px;

  color: #49351f;

  font-size: 14px;
  font-weight: 900;
}

.roadmap-detail li::before {
  content: "";

  position: absolute;
  top: 0.58em;
  left: 0;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #eb69a5;

  box-shadow:
    0 0 0 4px rgba(235, 105, 165, 0.13);
}

.roadmap-detail-stamp {
  width: max-content;

  margin-top: 24px;
  margin-left: auto;
  padding: 8px 12px;

  color: rgba(70, 48, 28, 0.66);

  border:
    2px solid rgba(70, 48, 28, 0.28);
  border-radius: 50%;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;

  transform:
    rotate(-7deg);
}

.roadmap-detail-stamp span,
.roadmap-detail-stamp strong {
  display: block;
}

.roadmap-detail-stamp strong {
  margin-top: 2px;

  color: rgba(70, 48, 28, 0.82);
}

@media (max-width: 1100px) {

  .roadmap-shell {
    min-height: 700px;
  }

  .roadmap-detail {
    width: min(330px, 34vw);
  }

  .roadmap-point {
    width: clamp(160px, 19vw, 220px);
    min-height: 152px;
  }

}

@media (max-width: 860px) {

  .roadmap-section {
    min-height: 0;

    padding:
      92px 18px
      96px;
  }

  .roadmap-moon {
    opacity: 0.34;
  }

  .roadmap-heading {
    margin-bottom: 34px;
  }

  .roadmap-heading h2 {
    letter-spacing: -2px;
  }

  .roadmap-shell {
    min-height: 0;

    display: grid;

    gap: 24px;
  }

  .roadmap-route {
    display: none;
  }

  .roadmap-points {
    position: relative;
    inset: auto;

    display: grid;

    gap: 16px;
  }

  .roadmap-point {
    position: relative;
    top: auto;
    left: auto;

    width: 100%;
    min-height: 132px;

    align-items: flex-start;

    padding:
      22px 150px
      22px 24px;

    border-radius: 8px;
    border:
      1px solid rgba(155, 246, 194, 0.2);

    background:
      rgba(5, 31, 53, 0.42);

    box-shadow:
      0 18px 24px rgba(0, 0, 0, 0.18);

    text-align: left;

    transform: none;
  }

  .roadmap-section.is-visible .roadmap-point,
  .roadmap-point:hover,
  .roadmap-point:focus-visible {
    transform: none;
  }

  .roadmap-point::before {
    inset: auto 8px -19px auto;

    width: 142px;
    height: 126px;

    opacity: 0.72;
  }

  .roadmap-point:nth-child(4) {
    width: 100%;
    min-height: 132px;

    justify-content: center;

    padding:
      22px 150px
      22px 24px;
  }

  .roadmap-point:nth-child(4)::before {
    inset: auto 20px -4px auto;

    width: 112px;
    height: 112px;
  }

  .roadmap-point.is-complete::after {
    right: 16px;
    bottom: 16px;
  }

  .roadmap-point-kicker,
  .roadmap-point strong,
  .roadmap-point small {
    max-width: 100%;
  }

  .roadmap-detail {
    position: relative;
    right: auto;
    bottom: auto;

    width: 100%;

    transform:
      translateY(20px)
      rotate(0);
  }

  .roadmap-section.is-visible .roadmap-detail,
  .roadmap-detail.is-changing {
    transform:
      translateY(0)
      rotate(0);
  }

}

@media (prefers-reduced-motion: reduce) {

  .roadmap-stars,
  .roadmap-frog,
  .roadmap-point.is-active .roadmap-point-ripple,
  .roadmap-point:hover .roadmap-point-ripple,
  .roadmap-point:focus-visible .roadmap-point-ripple {
    animation: none;
  }

  .roadmap-heading,
  .roadmap-route,
  .roadmap-point,
  .roadmap-detail,
  .roadmap-path-progress,
  .roadmap-frog {
    transition: none;
  }

}

@media (min-width: 361px) and (max-width: 440px) {

  .froggo-army-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .froggo-army-grid > * {
    grid-column: span 1 !important;
  }

  .froggo-army-grid .army-tile-wide,
  .froggo-army-grid .army-manifesto {
    grid-column: span 2 !important;
  }

}


/* =====================================================
   FINAL PRE-SALE, SOCIAL + MOBILE POLISH
===================================================== */

.nav-x-link img,
.footer-x-link img {
  width: 20px;
  height: 20px;

  object-fit: contain;

  filter: invert(1);

  transition: filter 0.2s ease;
}

.nav-x-link:hover img,
.footer-x-link:hover img {
  filter: none;
}

.presale-address-featured {
  width: min(620px, 100%);

  margin: 30px 0 28px;
  padding: 18px;

  border-color: rgba(255, 224, 138, 0.38);
  background:
    linear-gradient(110deg, rgba(255, 224, 138, 0.08), transparent 48%),
    rgba(5, 30, 45, 0.86);

  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.presale-address-featured code {
  color: #ffffff;

  font-size: 12px;
  line-height: 1.35;
}

.presale-swap-header {
  justify-content: flex-start;
}

.froggo-mark {
  border: 2px solid rgba(131, 239, 181, 0.75);
  background: #51c48a;
}

.froggo-mark img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 50% 31%;
}

.meme-gallery-heading {
  display: block;

  width: min(1000px, 100%);

  margin: 0 auto 48px;

  text-align: center;
}

.meme-gallery-heading h2 {
  max-width: none;

  margin: 0;
}

.meme-frame-controls {
  min-height: 54px;

  justify-content: center;
}

.meme-dots {
  margin: 0 auto;
}

.meme-slide > img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.footer-x-link {
  flex: 1 0 100%;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 8px;
}

.footer-x-link img {
  width: 17px;
  height: 17px;
}

.site-footer nav {
  flex-wrap: wrap;
}

.tokenomics-mobile-allocations {
  display: none;
}

@media (max-width: 760px) {

  .presale-address-featured {
    margin: 24px auto 26px;

    text-align: left;
  }

  .presale-intro h2 {
    font-size: 44px;
    line-height: 0.9;
  }

  .presale-swap-header strong {
    font-size: 26px;
  }

  .meme-gallery-heading {
    margin-bottom: 30px;
  }

  .meme-gallery-heading h2 {
    font-size: 44px;
    line-height: 0.9;
  }

  .meme-viewport {
    aspect-ratio: 1 / 1;
  }

  .meme-frame-controls {
    justify-content: center;
  }

  .meme-dots {
    margin: 0 auto;
  }

  .tokenomics-section {
    padding: 86px 14px 96px;
  }

  .tokenomics-sticky {
    border-radius: 0;
  }

  .tokenomics-heading {
    margin-bottom: 24px;
  }

  .tokenomics-heading h2 {
    font-size: 50px;
    letter-spacing: 0;
  }

  .tokenomics-subtitle {
    margin-top: 8px;

    font-size: 15px;
  }

  .tokenomics-frame {
    border: 1px solid rgba(131, 239, 181, 0.17);
    border-radius: 8px;

    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
  }

  .tokenomics-pads {
    display: none;
  }

  .tokenomics-mobile-allocations {
    order: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 14px;
  }

  .tokenomics-mobile-allocations button {
    min-width: 0;
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 12px 13px;

    cursor: pointer;

    color: #dff8ee;
    border: 1px solid rgba(131, 239, 181, 0.17);
    border-radius: 7px;
    background: rgba(7, 45, 57, 0.84);

    text-align: left;

    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      background 0.2s ease,
      transform 0.2s ease;
  }

  .tokenomics-mobile-allocations button:hover,
  .tokenomics-mobile-allocations button.is-active {
    color: #061c2d;
    border-color: #83efb5;
    background: #83efb5;

    transform: translateY(-2px);
  }

  .tokenomics-mobile-allocations strong {
    flex: 0 0 auto;

    font-family: "Baloo 2", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
  }

  .tokenomics-mobile-allocations span {
    min-width: 0;

    overflow-wrap: anywhere;

    font-size: 10px;
    font-weight: 900;
    text-align: right;
  }

  .tokenomics-detail {
    order: 3;

    margin-top: 10px;
    padding: 18px;

    border-radius: 8px;
  }

  .tokenomics-detail h3 {
    font-size: 27px;
  }

  .tokenomics-detail strong {
    font-size: 23px;
  }

  .tokenomics-detail > p:last-child {
    font-size: 13px;
    line-height: 1.5;
  }

  .tokenomics-stats {
    order: 4;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 7px;

    margin-top: 10px;
  }

  .token-stat {
    padding: 12px 5px;

    border-radius: 7px;
  }

  .token-stat span {
    font-size: 6px;
  }

  .token-stat strong {
    font-size: 11px;
  }

  .token-stat small {
    font-size: 6px;
  }

  .footer-x-link {
    justify-content: center;

    margin-top: 4px;
  }

}

@media (max-width: 480px) {

  .presale-address-featured {
    grid-template-columns: 1fr;

    padding: 15px;
  }

  .presale-address-featured code {
    font-size: 10px;
  }

  .presale-address-featured .presale-address-copy {
    width: 100%;
  }

  .presale-amount-row input,
  .presale-amount-row output {
    font-size: 29px;
  }

  .presale-token {
    padding: 7px;
  }

  .meme-gallery-heading h2 {
    font-size: 39px;
  }

  .gold-meme-frame {
    padding: 8px;
  }

  .meme-frame-controls {
    min-height: 50px;
  }

  .tokenomics-mobile-allocations button {
    min-height: 62px;

    padding: 10px;
  }

}


/* =====================================================
   MEET FROGGO + PRESALE CAPS + IMMERSIVE MOBILE MENU
===================================================== */

.mobile-menu-footer {
  display: none;
}

.nav-actions {
  margin-left: 20px;
}

.meet-frog-section {
  position: relative;
  z-index: 32;

  min-height: 900px;
  overflow: hidden;

  padding: 126px 24px 0;

  scroll-margin-top: 72px;

  color: #070b0a;
  background: #ffffff;
}

.meet-frog-copy {
  position: relative;
  z-index: 2;

  width: min(860px, 100%);

  margin: 0 auto;

  text-align: center;

  opacity: 0;
  transform: translateY(34px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.meet-frog-section.is-visible .meet-frog-copy {
  opacity: 1;
  transform: translateY(0);
}

.meet-frog-kicker {
  margin-bottom: 18px;

  color: #23825c;

  font-size: 12px;
  font-weight: 900;
}

.meet-frog-copy h2 {
  margin: 0;

  color: #070b0a;

  font-family: "Baloo 2", sans-serif;
  font-size: 88px;
  font-weight: 800;
  line-height: 0.88;
}

.meet-frog-copy > p:last-child {
  max-width: 760px;

  margin: 30px auto 0;

  color: #28312e;

  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
}

.meet-frog-art {
  position: relative;

  width: min(1100px, 100%);
  height: 460px;
  overflow: hidden;

  margin: 22px auto 0;

  opacity: 0;
  transform: translateY(42px) scale(0.97);

  transition:
    opacity 0.85s 0.14s ease,
    transform 0.85s 0.14s cubic-bezier(0.22, 1, 0.36, 1);
}

.meet-frog-section.is-visible .meet-frog-art {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.meet-frog-art img {
  position: absolute;
  top: 50%;
  left: 0;

  width: 100%;
  height: auto;

  transform: translateY(-50%);
}

.presale-intro {
  min-height: 720px;

  padding-right: 48px;
}

.presale-caps {
  width: min(620px, 100%);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-top: 32px;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.presale-caps > div {
  min-width: 0;

  display: grid;

  gap: 3px;

  padding: 20px 0 18px;
}

.presale-caps > div + div {
  padding-left: 30px;

  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.presale-caps span {
  color: #83efb5;

  font-size: 10px;
  font-weight: 900;
}

.presale-caps strong {
  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.presale-caps small {
  color: rgba(202, 230, 237, 0.72);

  font-size: 11px;
  font-weight: 800;
}

.presale-facts {
  margin-top: 28px;
}

@media (max-width: 1100px) {

  .meet-frog-section {
    min-height: 820px;
  }

  .meet-frog-copy h2 {
    font-size: 72px;
  }

  .meet-frog-art {
    height: 400px;
  }

  .presale-intro {
    min-height: 0;

    padding-right: 0;
  }

  .presale-caps {
    margin-right: auto;
    margin-left: auto;

    text-align: left;
  }

}

@media (max-width: 760px) {

  body.nav-open {
    overscroll-behavior: none;
  }

  .navbar {
    height: 74px;

    justify-content: space-between;

    padding: 0 18px;
  }

  .navbar.is-menu-open,
  .navbar.is-menu-open.is-scrolled {
    height: 74px;

    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .navbar.is-menu-open .logo {
    position: relative;
    z-index: 3;

    color: #ffffff;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;

    margin-left: auto;

    border-color: rgba(255, 255, 255, 0.3);
  }

  .navbar.is-menu-open .nav-toggle {
    border-color: transparent;
    background: transparent;
  }

  .navbar.is-menu-open .nav-toggle span {
    background: #ffffff;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 2;

    width: 100vw;
    height: 100vh;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 92px 24px 128px;

    visibility: hidden;
    opacity: 1;

    border: 0;
    border-radius: 0;
    background: #4bc98a;

    box-shadow: none;
    backdrop-filter: none;

    clip-path: inset(0 0 100% 0);
    transform: none;

    pointer-events: none;

    transition:
      visibility 0s linear 0.62s,
      clip-path 0.62s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .navbar.is-menu-open .nav-links {
    visibility: visible;

    clip-path: inset(0);

    pointer-events: auto;

    transition:
      visibility 0s linear 0s,
      clip-path 0.62s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .nav-links > a {
    width: auto;

    display: block;

    padding: 3px 8px;

    opacity: 0;

    color: #061b16;
    border: 0;

    font-family: "Baloo 2", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 0.98;
    text-align: center;
    text-transform: uppercase;

    transform: translateX(-78px);

    transition:
      color 0.2s ease,
      opacity 0.44s ease,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links > a:nth-child(even) {
    transform: translateX(78px);
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-links > a[aria-current="page"] {
    color: #ffffff;
  }

  .navbar.is-menu-open .nav-links > a {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar.is-menu-open .nav-links > a:nth-child(1) {
    transition-delay: 0.16s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(2) {
    transition-delay: 0.22s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(3) {
    transition-delay: 0.28s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(4) {
    transition-delay: 0.34s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(5) {
    transition-delay: 0.4s;
  }

  .mobile-menu-footer {
    position: absolute;
    right: 24px;
    bottom: max(24px, env(safe-area-inset-bottom));
    left: 24px;

    display: grid;
    grid-template-columns: auto minmax(180px, 270px);
    align-items: center;
    justify-content: center;

    gap: 16px;

    opacity: 0;
    transform: translateY(24px);

    transition:
      opacity 0.42s 0.45s ease,
      transform 0.58s 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .navbar.is-menu-open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-x {
    min-height: 48px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 0;

    color: #061b16;

    font-size: 12px;
    font-weight: 900;
  }

  .mobile-menu-x img {
    width: 23px;
    height: 23px;

    object-fit: contain;
  }

  .mobile-menu-buy {
    min-height: 52px;

    display: grid;
    place-items: center;

    padding: 0 22px;

    color: #07100d;
    border: 2px solid #ffffff;
    border-radius: 6px;
    background: #ffffff;

    font-size: 13px;
    font-weight: 900;
  }

  .meet-frog-section {
    min-height: 700px;

    padding: 96px 20px 0;
  }

  .meet-frog-copy h2 {
    font-size: 58px;
  }

  .meet-frog-copy > p:last-child {
    margin-top: 24px;

    font-size: 16px;
    line-height: 1.55;
  }

  .meet-frog-art {
    height: 300px;

    margin-top: 12px;
  }

  .presale-caps {
    margin-top: 28px;
  }

  .presale-caps strong {
    font-size: 30px;
  }

}

@media (max-width: 480px) {

  .nav-links {
    gap: 3px;

    padding-right: 18px;
    padding-bottom: 122px;
    padding-left: 18px;
  }

  .nav-links > a {
    font-size: 36px;
  }

  .mobile-menu-footer {
    right: 18px;
    left: 18px;

    grid-template-columns: 1fr;

    gap: 8px;
  }

  .mobile-menu-x {
    min-height: 34px;

    justify-self: center;
  }

  .mobile-menu-buy {
    width: min(290px, 100%);

    justify-self: center;
  }

  .meet-frog-section {
    min-height: 610px;

    padding-top: 82px;
  }

  .meet-frog-kicker {
    margin-bottom: 14px;

    font-size: 10px;
  }

  .meet-frog-copy h2 {
    font-size: 46px;
  }

  .meet-frog-copy > p:last-child {
    font-size: 15px;
  }

  .meet-frog-art {
    height: 220px;
  }

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

  .presale-caps > div {
    grid-template-columns: 1fr auto;
    align-items: center;

    gap: 2px 14px;

    padding: 15px 0;
  }

  .presale-caps > div + div {
    padding-left: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .presale-caps strong {
    grid-row: 1 / span 2;
    grid-column: 2;

    font-size: 28px;
  }

}

@media (max-width: 760px) and (max-height: 620px) {

  /* Legacy mobile menu sizing */

  .nav-links {
    justify-content: flex-start;

    gap: 0;

    padding-top: 82px;
  }

  .nav-links > a {
    font-size: 31px;
  }

  .mobile-menu-footer {
    grid-template-columns: auto minmax(170px, 230px);
  }

  .mobile-menu-buy {
    min-height: 46px;
  }

}

@media (max-width: 760px) {

  .nav-links .mobile-menu-buy {
    color: #07100d;

    font-size: 13px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .meet-frog-copy,
  .meet-frog-art,
  .nav-links,
  .nav-links > a,
  .mobile-menu-footer {
    transition: none;
  }

}


/* =====================================================
   CALCULATOR + X SLIDESHOW REFINEMENT
===================================================== */

.legacy-meme-gallery {
  display: none !important;
}

.nav-actions {
  display: flex;
  align-items: center;

  gap: 12px;
}

.nav-x-link,
.meme-x-link {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  color: #fff3d4;
  border: 1px solid rgba(255, 243, 212, 0.34);
  border-radius: 50%;
  background: rgba(4, 18, 35, 0.62);

  font-size: 17px;
  font-weight: 900;
  line-height: 1;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-x-link:hover,
.meme-x-link:hover {
  color: #06142e;
  border-color: #83efb5;
  background: #83efb5;
  transform: translateY(-2px);
}

.nav-x-link:focus-visible,
.meme-x-link:focus-visible,
.meme-arrow:focus-visible,
.meme-dots button:focus-visible,
.presale-address-copy:focus-visible {
  outline: 3px solid #fff3d4;
  outline-offset: 4px;
}

.presale-network img {
  width: 21px;
  height: 21px;

  object-fit: cover;

  border-radius: 50%;
}

.solana-mark {
  padding: 4px;

  background: #03070d;
}

.solana-mark img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.7);
}

.froggo-mark {
  color: #071c32;
  background: #83efb5;

  font-family: "Baloo 2", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.presale-address {
  min-width: 0;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;

  gap: 14px;

  padding: 15px 16px;

  border: 1px solid rgba(255, 216, 116, 0.22);
  border-radius: 6px;
  background: rgba(19, 33, 47, 0.88);
}

.presale-address > div {
  min-width: 0;

  display: grid;

  gap: 5px;
}

.presale-address span {
  color: rgba(255, 222, 138, 0.72);

  font-size: 9px;
  font-weight: 900;
}

.presale-address code {
  overflow-wrap: anywhere;

  color: #fff3d4;

  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.presale-address-copy {
  min-width: 72px;
  min-height: 42px;

  cursor: pointer;

  color: #071c32;
  border: 0;
  border-radius: 5px;
  background: #83efb5;

  font-size: 10px;
  font-weight: 900;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.presale-address-copy:not(:disabled):hover {
  background: #fff0a8;
  transform: translateY(-2px);
}

.presale-address-copy:disabled {
  cursor: not-allowed;

  color: rgba(190, 216, 222, 0.46);
  background: rgba(122, 160, 170, 0.14);
}

.meme-gallery-section {
  min-height: 100svh;
}

.meme-gallery-heading {
  width: min(1120px, 100%);

  margin-right: auto;
  margin-left: auto;
}

.meme-showcase {
  position: relative;

  width: min(1220px, 100%);

  display: grid;
  grid-template-columns: 56px minmax(0, 1050px) 56px;
  align-items: center;
  justify-content: center;

  gap: 22px;

  margin: 0 auto;

  outline: none;
}

.meme-arrow {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  cursor: pointer;

  color: #ffe69a;
  border: 1px solid rgba(255, 219, 122, 0.38);
  border-radius: 50%;
  background: rgba(5, 24, 42, 0.82);

  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.22);

  font-size: 20px;
  font-weight: 900;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.meme-arrow:hover {
  color: #071c32;
  background: #ffe08a;
  transform: scale(1.06);
}

.gold-meme-frame {
  position: relative;

  min-width: 0;

  padding: 12px;

  border: 1px solid #fff0a8;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #8f5e16 0%, #ffe39a 24%, #a36d1e 51%, #fff0b8 76%, #825211 100%);

  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.42),
    0 0 0 4px rgba(71, 43, 8, 0.72),
    0 0 0 7px rgba(255, 224, 138, 0.18),
    inset 0 0 0 2px rgba(255, 250, 214, 0.55);
}

.gold-meme-frame::before,
.gold-meme-frame::after {
  content: "";

  position: absolute;
  z-index: 3;

  width: 34px;
  height: 34px;

  pointer-events: none;

  border-color: #fff3bd;
  border-style: solid;
}

.gold-meme-frame::before {
  top: 5px;
  left: 5px;

  border-width: 3px 0 0 3px;
}

.gold-meme-frame::after {
  right: 5px;
  bottom: 5px;

  border-width: 0 3px 3px 0;
}

.meme-frame-topline,
.meme-frame-controls {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  color: #ffe49b;
  background: #071522;
}

.meme-frame-topline {
  min-height: 58px;

  padding: 7px 10px 7px 18px;

  border-radius: 4px 4px 0 0;
}

.meme-frame-topline > span,
.meme-frame-controls > span:last-child {
  font-size: 10px;
  font-weight: 900;
}

.meme-x-link {
  width: 38px;
  height: 38px;
}

.meme-viewport {
  position: relative;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #02070d;
}

.meme-track {
  width: 100%;
  height: 100%;

  display: flex;

  transform: translateX(0);

  transition: transform 0.68s cubic-bezier(0.22, 0.76, 0.22, 1);
  will-change: transform;
}

.meme-slide {
  position: relative;

  min-width: 100%;
  height: 100%;

  flex: 0 0 100%;

  overflow: hidden;

  background: #02070d;
}

.meme-slide > a {
  width: 100%;
  height: 100%;

  display: grid;
  place-items: center;
}

.meme-slide img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition: transform 0.7s ease;
}

.meme-slide:hover img {
  transform: scale(1.018);
}

.meme-slide figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 18px;

  padding: 42px 24px 19px;

  pointer-events: none;

  background: linear-gradient(transparent, rgba(2, 7, 13, 0.92));
}

.meme-slide figcaption small {
  color: #83efb5;

  font-size: 9px;
  font-weight: 900;
}

.meme-slide figcaption strong {
  max-width: 70%;

  overflow-wrap: anywhere;

  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.meme-frame-controls {
  min-height: 62px;

  padding: 10px 18px;

  border-radius: 0 0 4px 4px;
}

.meme-counter {
  min-width: 72px;

  display: flex;
  align-items: center;

  gap: 7px;
}

.meme-counter strong,
.meme-counter span {
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.meme-counter i {
  width: 22px;
  height: 1px;

  background: rgba(255, 228, 155, 0.38);
}

.meme-dots {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.meme-dots button {
  width: 9px;
  height: 9px;

  cursor: pointer;

  border: 0;
  border-radius: 50%;
  background: rgba(255, 228, 155, 0.3);

  transition:
    width 0.2s ease,
    border-radius 0.2s ease,
    background 0.2s ease;
}

.meme-dots button:hover,
.meme-dots button.is-active {
  background: #83efb5;
}

.meme-dots button.is-active {
  width: 25px;
  border-radius: 6px;
}

@media (max-width: 900px) {

  .meme-showcase {
    grid-template-columns: 48px minmax(0, 1fr) 48px;

    gap: 12px;
  }

  .meme-arrow {
    width: 44px;
    height: 44px;
  }

}

@media (max-width: 760px) {

  .nav-actions {
    margin-left: 0;
    margin-right: 10px;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .nav-x-link {
    width: 40px;
    height: 40px;
  }

  .meme-showcase {
    grid-template-columns: 1fr;

    padding-bottom: 62px;
  }

  .meme-arrow {
    position: absolute;
    bottom: 0;
    z-index: 5;
  }

  .meme-arrow-prev {
    left: calc(50% - 52px);
  }

  .meme-arrow-next {
    right: calc(50% - 52px);
  }

  .gold-meme-frame {
    padding: 9px;
  }

  .meme-viewport {
    aspect-ratio: 1 / 1;
  }

  .meme-frame-controls > span:last-child {
    display: none;
  }

  .meme-frame-controls {
    justify-content: flex-start;
  }

  .meme-dots {
    margin-left: auto;
  }

}

@media (max-width: 480px) {

  .navbar {
    padding: 0 14px;
  }

  .nav-actions {
    margin-right: 8px;
  }

  .nav-x-link {
    width: 38px;
    height: 38px;

    font-size: 15px;
  }

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

  .presale-address-copy {
    width: 100%;
  }

  .meme-frame-topline {
    min-height: 52px;

    padding-left: 13px;
  }

  .meme-frame-topline > span {
    font-size: 8px;
  }

  .meme-slide figcaption {
    align-items: flex-start;
    flex-direction: column;

    gap: 5px;

    padding: 36px 15px 14px;
  }

  .meme-slide figcaption strong {
    max-width: 100%;

    font-size: 16px;
    text-align: left;
  }

  .meme-frame-controls {
    min-height: 58px;

    padding: 9px 12px;
  }

  .meme-counter {
    min-width: 60px;
  }

  .meme-counter i {
    width: 14px;
  }

  .meme-dots {
    gap: 6px;
  }

  .meme-dots button {
    width: 7px;
    height: 7px;
  }

  .meme-dots button.is-active {
    width: 19px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .meme-track,
  .meme-slide img {
    transition: none;
  }

}


/* =====================================================
   COMPLETE SITE EXPERIENCE UPGRADE
===================================================== */

:root {
  --pond-ink: #06142e;
  --pond-deep: #071c32;
  --pond-green: #83efb5;
  --pond-green-strong: #55d895;
  --pond-cream: #fff3d4;
  --pond-pink: #ed72ab;
  --pond-blue: #92dff5;
}

* {
  letter-spacing: 0;
}

::selection {
  color: #06142e;
  background: #83efb5;
}

:focus-visible {
  outline: 3px solid #fff3d4;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;

  padding: 11px 15px;

  color: #06142e;
  border-radius: 6px;
  background: #fff3d4;

  font-weight: 900;

  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2200;

  height: 3px;

  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    #83efb5 0%,
    #fff0a8 52%,
    #ed72ab 100%
  );

  box-shadow: 0 0 15px rgba(131, 239, 181, 0.46);

  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.button,
.nav-button {
  border-radius: 6px;
}

.button {
  min-height: 52px;
}

.button:focus-visible,
.nav-button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid #fff3d4;
  outline-offset: 4px;
}

.nav-links a[aria-current="page"] {
  color: #a6f7c8;
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-mobile-cta,
.nav-toggle {
  display: none;
}

.hero-frog {
  width: 138px;

  object-fit: contain;

  filter:
    drop-shadow(0 12px 8px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 18px rgba(131, 239, 181, 0.2));
}

.hero-signals {
  width: min(500px, 100%);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-top: 24px;

  list-style: none;
}

.hero-signals li {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 2px;

  padding: 0 16px;

  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-signals li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-signals strong {
  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.hero-signals span {
  overflow-wrap: anywhere;

  color: rgba(222, 244, 250, 0.72);

  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
}

.roadmap-frog {
  width: 118px;
  height: 150px;

  object-fit: contain;
}


/* COMMUNITY FINALE */

.community-section {
  position: relative;
  z-index: 36;

  min-height: 940px;
  overflow: hidden;
  isolation: isolate;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 132px 24px 90px;

  scroll-margin-top: 72px;

  background:
    linear-gradient(120deg, rgba(41, 126, 112, 0.18), transparent 42%),
    linear-gradient(300deg, rgba(184, 74, 132, 0.12), transparent 38%),
    linear-gradient(180deg, #081934 0%, #09253b 52%, #061d2d 100%);

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.community-section::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;

  height: 150px;

  background: linear-gradient(180deg, rgba(6, 20, 46, 0.82), transparent);
  pointer-events: none;
}

.community-space,
.community-stars {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.community-space {
  z-index: -2;
}

.community-stars {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 239, 174, 0.66) 0 1px, transparent 2px);

  background-position: 30px 40px, 110px 95px;
  background-size: 190px 190px, 310px 310px;

  opacity: 0.26;
}

.community-stars-two {
  background-position: 85px 12px, 20px 155px;
  background-size: 330px 330px, 460px 460px;

  opacity: 0.2;
}

.community-inner {
  position: relative;
  z-index: 2;

  width: min(1360px, 100%);

  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.85fr);
  align-items: center;

  gap: 54px;

  margin: 0 auto;
}

.community-copy {
  max-width: 690px;

  opacity: 0;
  transform: translateY(32px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.community-section.is-visible .community-copy {
  opacity: 1;
  transform: translateY(0);
}

.community-copy h2 {
  margin: 15px 0 24px;

  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 84px;
  font-weight: 800;
  line-height: 0.84;

  text-shadow:
    0 6px 0 rgba(16, 59, 69, 0.9),
    0 20px 36px rgba(0, 0, 0, 0.3);
}

.community-lead {
  max-width: 620px;

  color: #cce8ef;

  font-size: 19px;
  font-weight: 800;
  line-height: 1.58;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.community-actions .button {
  min-width: 190px;

  padding: 15px 23px;
}

.community-primary {
  color: #071a2b;
  border: 2px solid #83efb5;
  background: #83efb5;

  box-shadow: 0 12px 26px rgba(84, 216, 149, 0.18);
}

.community-primary:hover {
  color: #071a2b;
  background: #a6f7c8;

  transform: translateY(-3px);
}

.community-secondary {
  color: #fff3d4;
  border: 2px solid rgba(255, 243, 212, 0.5);
  background: rgba(5, 30, 49, 0.34);
}

.community-secondary:hover {
  color: #071a2b;
  border-color: #fff3d4;
  background: #fff3d4;

  transform: translateY(-3px);
}

.community-signals {
  max-width: 640px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-top: 46px;

  list-style: none;
}

.community-signals li {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 10px;

  padding-top: 15px;

  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.community-signals span {
  color: #ed72ab;

  font-size: 11px;
  font-weight: 900;
}

.community-signals strong {
  overflow-wrap: anywhere;

  color: rgba(237, 251, 255, 0.82);

  font-size: 11px;
  font-weight: 900;
}

.community-visual {
  position: relative;

  width: min(590px, 100%);
  aspect-ratio: 1;

  justify-self: end;

  opacity: 0;
  transform: translateY(28px) scale(0.96);

  transition:
    opacity 0.9s ease 0.12s,
    transform 0.9s ease 0.12s;
}

.community-section.is-visible .community-visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.community-visual::before {
  content: "";

  position: absolute;
  right: 15%;
  bottom: 10%;
  left: 15%;

  height: 10%;

  border-radius: 50%;

  background: rgba(7, 18, 38, 0.48);
  filter: blur(14px);
}

.community-orbit {
  position: absolute;
  top: 50%;
  left: 50%;

  border: 1px solid rgba(153, 225, 242, 0.2);
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.community-orbit::after {
  content: "";

  position: absolute;
  top: 16%;
  right: 5%;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: #ed72ab;

  box-shadow: 0 0 20px rgba(237, 114, 171, 0.76);
}

.community-orbit-outer {
  width: 96%;
  height: 72%;

  transform: translate(-50%, -50%) rotate(-12deg);

  animation: communityOrbit 18s linear infinite;
}

.community-orbit-inner {
  width: 76%;
  height: 58%;

  transform: translate(-50%, -50%) rotate(18deg);
}

.community-moon {
  position: absolute;
  top: 5%;
  left: 17%;
  z-index: 2;

  width: 68%;

  filter:
    drop-shadow(0 0 32px rgba(255, 226, 145, 0.35))
    drop-shadow(0 0 90px rgba(255, 226, 145, 0.16));

  animation: communityMoonFloat 5s ease-in-out infinite;
}

.community-frog {
  position: absolute;
  right: 4%;
  bottom: 3%;
  z-index: 4;

  width: 34%;
  height: 48%;

  object-fit: contain;

  filter:
    drop-shadow(0 20px 12px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 24px rgba(131, 239, 181, 0.2));

  transform-origin: 50% 100%;

  animation: communityFrogIdle 3.4s ease-in-out infinite;
}

.community-message {
  position: absolute;
  top: 13%;
  right: 0;
  z-index: 5;

  padding: 13px 15px;

  color: #173652;
  border: 2px solid rgba(81, 60, 40, 0.18);
  border-radius: 6px;
  background: #fff0a8;

  box-shadow: 0 15px 26px rgba(0, 0, 0, 0.22);

  transform: rotate(3deg);
}

.community-message::after {
  content: "";

  position: absolute;
  right: 28px;
  bottom: -10px;

  border-top: 11px solid #fff0a8;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.community-message span,
.community-message strong {
  display: block;
}

.community-message span {
  font-size: 9px;
  font-weight: 900;
}

.community-message strong {
  margin-top: 2px;

  font-family: "Baloo 2", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.community-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  overflow: hidden;

  padding: 16px 0;

  color: #071c32;
  background: #83efb5;

  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.community-ticker div {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 28px;

  padding-left: 28px;

  animation: communityTicker 24s linear infinite;
}

.community-ticker span {
  font-size: 12px;
  font-weight: 900;
}

.community-ticker i {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: #ed72ab;
}

@keyframes communityMoonFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes communityFrogIdle {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes communityOrbit {
  from {
    transform: translate(-50%, -50%) rotate(-12deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(348deg);
  }
}

@keyframes communityTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* FOOTER + FEEDBACK */

.site-footer {
  position: relative;
  z-index: 40;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  gap: 18px 34px;

  padding: 38px 5vw;

  color: rgba(221, 242, 247, 0.72);
  background: #04151f;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  color: #83efb5;

  font-family: "Baloo 2", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.site-footer p {
  font-size: 13px;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  align-items: center;

  gap: 24px;
}

.site-footer nav a {
  color: rgba(238, 250, 252, 0.8);

  font-size: 12px;
  font-weight: 900;

  transition: color 0.2s ease;
}

.site-footer nav a:hover {
  color: #83efb5;
}

.site-footer small {
  grid-column: 1 / -1;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);

  font-size: 10px;
  font-weight: 900;
}

.site-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2500;

  max-width: min(330px, calc(100vw - 40px));

  padding: 13px 17px;

  color: #071c32;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  background: #83efb5;

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);

  font-size: 13px;
  font-weight: 900;

  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

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


/* RESPONSIVE EXPERIENCE */

@media (max-width: 1040px) {

  .community-copy h2 {
    font-size: 68px;
  }

  .community-inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 30px;
  }

  .community-message {
    right: 2%;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
  }

}

@media (max-width: 760px) {

  body.nav-open {
    overflow: hidden;
  }

  .navbar {
    justify-content: space-between;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;

    display: grid;
    place-content: center;

    gap: 5px;

    cursor: pointer;

    border: 1px solid rgba(131, 239, 181, 0.34);
    border-radius: 6px;
    background: rgba(5, 29, 53, 0.62);
  }

  .nav-toggle span {
    width: 21px;
    height: 2px;

    display: block;

    border-radius: 2px;
    background: #a4f7c7;

    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .navbar.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 12px;
    left: 12px;

    display: grid;

    gap: 0;

    padding: 10px;

    visibility: hidden;
    opacity: 0;

    border: 1px solid rgba(131, 239, 181, 0.2);
    border-radius: 8px;
    background: rgba(5, 24, 43, 0.97);

    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);

    transform: translateY(-12px);

    transition:
      visibility 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .navbar.is-menu-open .nav-links {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-mobile-cta {
    display: block;

    margin-top: 7px;

    color: #071c32 !important;
    border-radius: 5px;
    background: #83efb5;

    text-align: center;
  }

  .hero-frog {
    display: none;
  }

  .hero-signals {
    margin-top: 21px;
  }

  .hero-signals li {
    padding: 0 8px;
  }

  .hero-signals strong {
    font-size: 18px;
  }

  .hero-signals span {
    font-size: 8px;
  }

  .community-section {
    min-height: 0;

    padding: 96px 18px 88px;
  }

  .community-inner {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .community-copy {
    max-width: 610px;

    text-align: center;
  }

  .community-copy h2 {
    margin-top: 13px;

    font-size: 54px;
    line-height: 0.88;
  }

  .community-lead {
    margin: 0 auto;

    font-size: 16px;
  }

  .community-actions {
    justify-content: center;
  }

  .community-signals {
    gap: 10px;

    margin-top: 35px;
  }

  .community-signals li {
    flex-direction: column;

    gap: 4px;
  }

  .community-visual {
    width: min(500px, 100%);

    justify-self: center;
  }

  .community-message {
    top: 9%;
    right: 1%;
  }

  .community-ticker {
    padding: 13px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;

    gap: 15px;

    padding: 34px 22px;

    text-align: center;
  }

  .site-footer nav {
    grid-column: auto;

    flex-wrap: wrap;
    justify-content: center;

    gap: 14px 22px;
  }

  .site-footer small {
    grid-column: auto;
  }

}

@media (max-width: 440px) {

  .hero-signals {
    margin-top: 18px;
  }

  .community-copy h2 {
    font-size: 45px;
  }

  .community-actions {
    display: grid;
  }

  .community-actions .button {
    width: 100%;
  }

  .community-signals strong {
    font-size: 9px;
  }

  .community-message {
    padding: 10px 12px;
  }

  .community-message strong {
    font-size: 15px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .community-orbit-outer,
  .community-moon,
  .community-frog,
  .community-ticker div {
    animation: none;
  }

  .community-copy,
  .community-visual,
  .site-toast,
  .nav-links,
  .nav-toggle span {
    transition: none;
  }

}


/* =====================================================
   PRESALE TRACKER + MEME GALLERY
===================================================== */

body.modal-open {
  overflow: hidden;
}


/* PRESALE */

.presale-section {
  position: relative;
  z-index: 31;

  min-height: 960px;
  overflow: hidden;
  isolation: isolate;

  display: flex;
  align-items: center;

  padding: 130px 24px 120px;

  scroll-margin-top: 72px;

  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(75, 220, 154, 0.13), transparent 40%),
    linear-gradient(310deg, rgba(237, 114, 171, 0.11), transparent 38%),
    linear-gradient(180deg, #06182e 0%, #082b3b 54%, #071b2c 100%);

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.presale-atmosphere,
.presale-atmosphere span {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.presale-atmosphere {
  z-index: -1;
}

.presale-atmosphere span:first-child {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 237, 171, 0.55) 0 1px, transparent 2px);

  background-position: 22px 36px, 96px 118px;
  background-size: 210px 210px, 340px 340px;

  opacity: 0.24;
}

.presale-atmosphere span:nth-child(2) {
  top: auto;
  right: -8%;
  bottom: -2px;
  left: -8%;

  height: 180px;

  background:
    linear-gradient(180deg, transparent, rgba(5, 45, 45, 0.58)),
    repeating-linear-gradient(
      96deg,
      transparent 0 34px,
      rgba(87, 208, 137, 0.08) 35px 37px,
      transparent 38px 72px
    );
}

.presale-inner {
  position: relative;
  z-index: 2;

  width: min(1360px, 100%);

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  align-items: center;

  gap: 72px;

  margin: 0 auto;
}

.presale-intro {
  position: relative;

  min-height: 660px;

  padding-top: 30px;
  padding-right: 120px;

  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.presale-section.is-visible .presale-intro {
  opacity: 1;
  transform: translateY(0);
}

.presale-live-badge {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 34px;
  padding: 9px 12px;

  color: #b8fbd4;
  border: 1px solid rgba(131, 239, 181, 0.35);
  border-radius: 6px;
  background: rgba(6, 44, 48, 0.48);

  font-size: 11px;
  font-weight: 900;
}

.presale-live-badge i,
.presale-network i {
  width: 8px;
  height: 8px;

  flex: 0 0 auto;

  border-radius: 50%;
  background: #72efad;

  box-shadow: 0 0 14px rgba(114, 239, 173, 0.72);

  animation: presaleLivePulse 1.7s ease-in-out infinite;
}

.presale-intro h2 {
  max-width: 730px;

  margin: 14px 0 24px;

  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: 0.84;

  text-shadow:
    0 6px 0 rgba(16, 59, 69, 0.9),
    0 20px 38px rgba(0, 0, 0, 0.3);
}

.presale-lead {
  max-width: 610px;

  color: #cae6ed;

  font-size: 19px;
  font-weight: 800;
  line-height: 1.56;
}

.presale-facts {
  position: relative;
  z-index: 2;

  max-width: 620px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-top: 42px;
}

.presale-facts div {
  min-width: 0;

  padding-top: 14px;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.presale-facts dt {
  margin-bottom: 5px;

  color: rgba(153, 223, 241, 0.7);

  font-size: 9px;
  font-weight: 900;
}

.presale-facts dd {
  overflow-wrap: anywhere;

  color: #fff3d4;

  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.presale-frog {
  position: absolute;
  right: -64px;
  bottom: -112px;
  z-index: 1;

  width: 245px;
  height: 430px;

  object-fit: contain;

  opacity: 0.93;

  filter:
    drop-shadow(0 24px 13px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 24px rgba(131, 239, 181, 0.17));

  transform: rotate(3deg);
}

.presale-swap {
  position: relative;

  width: min(540px, 100%);

  justify-self: end;

  padding: 28px;

  color: #edfaff;
  border: 1px solid rgba(146, 223, 245, 0.2);
  border-radius: 8px;
  background: rgba(4, 20, 38, 0.92);

  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);

  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.75s ease 0.1s,
    transform 0.75s ease 0.1s;
}

.presale-section.is-visible .presale-swap {
  opacity: 1;
  transform: translateY(0);
}

.presale-swap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  margin-bottom: 22px;
}

.presale-swap-header > div {
  display: grid;

  gap: 3px;
}

.presale-swap-header span {
  color: rgba(170, 221, 234, 0.66);

  font-size: 10px;
  font-weight: 900;
}

.presale-swap-header strong {
  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.presale-network {
  display: flex;
  align-items: center;

  gap: 8px;

  padding: 8px 10px;

  border: 1px solid rgba(131, 239, 181, 0.21);
  border-radius: 6px;
  background: rgba(10, 57, 58, 0.42);
}

.presale-token-field {
  padding: 18px;

  border: 1px solid rgba(139, 214, 232, 0.14);
  border-radius: 6px;
  background: #0a2638;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.presale-token-field:focus-within {
  border-color: rgba(131, 239, 181, 0.55);
  background: #0b2b3c;
}

.presale-token-field-output {
  background: #092f35;
}

.presale-field-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  margin-bottom: 11px;
}

.presale-field-topline label,
.presale-field-topline span,
.presale-token-field > small {
  color: rgba(179, 221, 231, 0.64);

  font-size: 9px;
  font-weight: 900;
}

.presale-amount-row {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;
}

.presale-amount-row input,
.presale-amount-row output {
  min-width: 0;
  width: 100%;

  overflow: hidden;

  color: #ffffff;
  border: 0;
  outline: 0;
  background: transparent;

  font-family: "Baloo 2", sans-serif;
  font-size: 41px;
  font-weight: 800;
  line-height: 1.08;

  text-overflow: ellipsis;
}

.presale-amount-row input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.presale-token {
  min-width: max-content;

  display: flex;
  align-items: center;

  gap: 9px;

  padding: 8px 10px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(4, 18, 32, 0.7);
}

.presale-token strong {
  font-size: 13px;
  font-weight: 900;
}

.solana-mark,
.froggo-mark {
  width: 28px;
  height: 28px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 50%;
}

.solana-mark {
  color: #071329;
  background: linear-gradient(135deg, #9dffcf 0%, #7dcdf2 52%, #ed72ab 100%);

  font-size: 13px;
  font-weight: 900;
}

.froggo-mark {
  background: #83efb5;
}

.froggo-mark img {
  width: 85%;
  height: 85%;

  object-fit: cover;
  object-position: 50% 16%;
}

.presale-swap-arrow {
  position: relative;
  z-index: 2;

  height: 0;

  display: grid;
  place-items: center;
}

.presale-swap-arrow span {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #061a2d;
  border: 5px solid #041426;
  border-radius: 50%;
  background: #83efb5;

  font-size: 18px;
  font-weight: 900;
}

.presale-quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 18px;

  overflow: hidden;

  border: 1px solid rgba(139, 214, 232, 0.18);
  border-radius: 6px;
}

.presale-quick-amounts button {
  min-height: 42px;

  cursor: pointer;

  color: rgba(223, 246, 250, 0.76);
  border: 0;
  border-left: 1px solid rgba(139, 214, 232, 0.16);
  background: rgba(9, 40, 56, 0.72);

  font-size: 10px;
  font-weight: 900;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.presale-quick-amounts button:first-child {
  border-left: 0;
}

.presale-quick-amounts button:hover,
.presale-quick-amounts button.is-active {
  color: #071c32;
  background: #83efb5;
}

.presale-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 14px;

  margin: 18px 0;
  padding: 14px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.presale-rate-row span {
  color: rgba(171, 218, 229, 0.62);

  font-size: 9px;
  font-weight: 900;
}

.presale-rate-row strong {
  color: #fff0a8;

  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.presale-wallet-button {
  width: 100%;
  min-height: 56px;

  cursor: pointer;

  color: #071c32;
  border: 0;
  border-radius: 6px;
  background: #ed72ab;

  box-shadow: 0 14px 25px rgba(237, 114, 171, 0.17);

  font-size: 13px;
  font-weight: 900;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.presale-wallet-button:hover {
  background: #ff94c5;
  transform: translateY(-2px);
}

.presale-wallet-button.is-connected {
  background: #83efb5;
}

.presale-wallet-state {
  margin-top: 11px;

  color: rgba(177, 216, 225, 0.58);

  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

@keyframes presaleLivePulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}


/* MEME GALLERY */

.meme-gallery-section {
  position: relative;
  z-index: 37;

  overflow: hidden;

  padding: 124px 24px 118px;

  scroll-margin-top: 72px;

  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(237, 114, 171, 0.09), transparent 38%),
    linear-gradient(320deg, rgba(131, 239, 181, 0.11), transparent 40%),
    #071a2b;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.meme-gallery-inner {
  width: min(1380px, 100%);

  margin: 0 auto;
}

.meme-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;

  gap: 44px;

  margin-bottom: 42px;

  opacity: 0;
  transform: translateY(26px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.meme-gallery-section.is-visible .meme-gallery-heading {
  opacity: 1;
  transform: translateY(0);
}

.meme-gallery-heading h2 {
  max-width: 890px;

  margin-top: 12px;

  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 0.88;

  text-shadow:
    0 6px 0 rgba(16, 59, 69, 0.82),
    0 18px 34px rgba(0, 0, 0, 0.3);
}

.meme-gallery-heading > p {
  color: #c9e4eb;

  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.meme-filters {
  width: max-content;
  max-width: 100%;

  display: flex;

  margin-bottom: 28px;

  overflow-x: auto;

  border: 1px solid rgba(141, 216, 234, 0.18);
  border-radius: 6px;
}

.meme-filters button {
  min-height: 44px;

  flex: 0 0 auto;

  padding: 0 17px;

  cursor: pointer;

  color: rgba(220, 243, 248, 0.7);
  border: 0;
  border-left: 1px solid rgba(141, 216, 234, 0.16);
  background: rgba(7, 42, 57, 0.72);

  font-size: 10px;
  font-weight: 900;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.meme-filters button:first-child {
  border-left: 0;
}

.meme-filters button:hover,
.meme-filters button.is-active {
  color: #071c32;
  background: #83efb5;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.meme-card {
  min-width: 0;

  display: grid;
  grid-template-rows: 300px auto;

  overflow: hidden;

  cursor: zoom-in;

  color: #ffffff;
  border: 1px solid rgba(141, 216, 234, 0.17);
  border-radius: 8px;
  background: #0a2939;

  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);

  text-align: left;

  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.meme-card:hover,
.meme-card:focus-visible {
  border-color: rgba(131, 239, 181, 0.52);

  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.3);

  transform: translateY(-5px);
}

.meme-card[hidden] {
  display: none;
}

.meme-media {
  position: relative;

  min-width: 0;
  overflow: hidden;

  display: block;

  background: #0d3040;
}

.meme-media::after {
  content: "";

  position: absolute;
  inset: auto 0 0;

  height: 28%;

  background: linear-gradient(180deg, transparent, rgba(5, 20, 36, 0.64));
  pointer-events: none;
}

.meme-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.meme-card:hover .meme-media img,
.meme-card:focus-visible .meme-media img {
  transform: scale(1.045);
}

.meme-media-contain img,
.meme-media-moon img {
  object-fit: contain;
}

.meme-media-contain img {
  width: 76%;

  margin: 0 auto;
}

.meme-media-pink {
  background: #d9659b;
}

.meme-media-moon {
  padding: 34px;

  background: #102945;
}

.meme-card-copy {
  min-width: 0;

  display: grid;

  gap: 8px;

  padding: 19px 20px 22px;
}

.meme-card-copy small {
  color: #83efb5;

  font-size: 9px;
  font-weight: 900;
}

.meme-card-copy strong {
  overflow-wrap: anywhere;

  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.08;
}

.meme-lightbox[hidden] {
  display: none;
}

.meme-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: grid;
  place-items: center;

  padding: 24px;

  opacity: 0;

  transition: opacity 0.2s ease;
}

.meme-lightbox.is-open {
  opacity: 1;
}

.meme-lightbox-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(2, 10, 20, 0.88);
  backdrop-filter: blur(12px);
}

.meme-lightbox-panel {
  position: relative;
  z-index: 2;

  width: min(820px, 100%);
  max-height: calc(100svh - 48px);

  overflow: auto;

  border: 1px solid rgba(141, 216, 234, 0.24);
  border-radius: 8px;
  background: #071d2d;

  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.48);
}

.meme-lightbox-panel > img {
  width: 100%;
  height: min(62svh, 620px);

  object-fit: contain;

  background: #0c2a3b;
}

.meme-lightbox-panel > div:last-child {
  padding: 20px 24px 24px;
}

.meme-lightbox-panel span {
  color: #83efb5;

  font-size: 9px;
  font-weight: 900;
}

.meme-lightbox-panel h3 {
  margin-top: 6px;

  color: #fff3d4;

  font-family: "Baloo 2", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.meme-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  cursor: pointer;

  color: #071c32;
  border: 0;
  border-radius: 6px;
  background: #fff3d4;

  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}


/* PRESALE + GALLERY TABLET */

@media (max-width: 1080px) {

  .presale-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
    gap: 38px;
  }

  .presale-intro {
    padding-right: 45px;
  }

  .presale-intro h2 {
    font-size: 62px;
  }

  .presale-frog {
    right: -40px;

    width: 205px;
  }

  .meme-gallery-heading h2 {
    font-size: 62px;
  }

  .meme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* PRESALE + GALLERY MOBILE */

@media (max-width: 820px) {

  .presale-section {
    min-height: 0;

    padding: 92px 16px 94px;
  }

  .presale-inner {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .presale-intro {
    min-height: 0;

    padding: 0;

    text-align: center;
  }

  .presale-live-badge {
    margin-right: auto;
    margin-bottom: 26px;
    margin-left: auto;
  }

  .presale-intro h2 {
    margin-top: 12px;

    font-size: 50px;
    line-height: 0.88;
  }

  .presale-lead {
    max-width: 580px;

    margin: 0 auto;

    font-size: 16px;
  }

  .presale-facts {
    margin-right: auto;
    margin-left: auto;

    text-align: left;
  }

  .presale-frog {
    display: none;
  }

  .presale-swap {
    width: min(560px, 100%);

    justify-self: center;
  }

  .meme-gallery-section {
    padding: 92px 16px 88px;
  }

  .meme-gallery-heading {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-bottom: 30px;

    text-align: center;
  }

  .meme-gallery-heading h2 {
    font-size: 50px;
    line-height: 0.9;
  }

  .meme-gallery-heading > p {
    max-width: 560px;

    margin: 0 auto;

    font-size: 15px;
  }

  .meme-filters {
    margin-right: auto;
    margin-left: auto;
  }

  .meme-grid {
    gap: 14px;
  }

  .meme-card {
    grid-template-rows: 250px auto;
  }

}

@media (max-width: 560px) {

  .presale-intro h2,
  .meme-gallery-heading h2 {
    font-size: 42px;
  }

  .presale-facts {
    grid-template-columns: 1fr;

    gap: 13px;
  }

  .presale-facts div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    text-align: left;
  }

  .presale-facts dt {
    margin-bottom: 0;
  }

  .presale-facts dd {
    text-align: right;
  }

  .presale-swap {
    padding: 18px;
  }

  .presale-swap-header strong {
    font-size: 25px;
  }

  .presale-amount-row {
    gap: 10px;
  }

  .presale-amount-row input,
  .presale-amount-row output {
    font-size: 31px;
  }

  .presale-token {
    gap: 6px;

    padding: 7px 8px;
  }

  .presale-token strong {
    font-size: 11px;
  }

  .solana-mark,
  .froggo-mark {
    width: 25px;
    height: 25px;
  }

  .presale-quick-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .presale-quick-amounts button:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(139, 214, 232, 0.16);
  }

  .presale-quick-amounts button:nth-child(4) {
    border-top: 1px solid rgba(139, 214, 232, 0.16);
  }

  .presale-rate-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .presale-rate-row strong {
    text-align: left;
  }

  .meme-filters {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    overflow: hidden;
  }

  .meme-filters button {
    width: 100%;

    padding: 0 8px;
  }

  .meme-filters button:nth-child(3) {
    border-top: 1px solid rgba(141, 216, 234, 0.16);
    border-left: 0;
  }

  .meme-filters button:nth-child(4) {
    border-top: 1px solid rgba(141, 216, 234, 0.16);
  }

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

  .meme-card {
    grid-template-rows: 270px auto;
  }

  .meme-lightbox {
    padding: 12px;
  }

  .meme-lightbox-panel > img {
    height: 56svh;
  }

  .meme-lightbox-panel h3 {
    font-size: 22px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .presale-live-badge i,
  .presale-network i {
    animation: none;
  }

  .presale-intro,
  .presale-swap,
  .meme-gallery-heading,
  .meme-lightbox,
  .meme-card,
  .meme-media img {
    transition: none;
  }

}


/* Final cascade overrides */

.nav-x-link img,
.footer-x-link img {
  width: 20px;
  height: 20px;

  object-fit: contain;
  filter: invert(1);
}

.nav-x-link:hover img,
.footer-x-link:hover img {
  filter: none;
}

.presale-address-featured {
  width: min(620px, 100%);

  margin: 30px 0 28px;
  padding: 18px;

  border-color: rgba(255, 224, 138, 0.38);
  background:
    linear-gradient(110deg, rgba(255, 224, 138, 0.08), transparent 48%),
    rgba(5, 30, 45, 0.86);

  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.presale-address-featured code {
  color: #ffffff;

  font-size: 12px;
  line-height: 1.35;
}

.presale-swap-header {
  justify-content: flex-start;
}

.froggo-mark {
  border: 2px solid rgba(131, 239, 181, 0.75);
  background: #51c48a;
}

.froggo-mark img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 50% 31%;
}

.meme-gallery-heading {
  display: block;

  width: min(1000px, 100%);

  margin: 0 auto 48px;

  text-align: center;
}

.meme-gallery-heading h2 {
  max-width: none;

  margin: 0;
}

.meme-frame-controls {
  min-height: 54px;

  justify-content: center;
}

.meme-dots {
  margin: 0 auto;
}

.meme-slide > img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.site-footer nav {
  flex-wrap: wrap;
}

.footer-x-link {
  flex: 1 0 100%;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 8px;
}

.footer-x-link img {
  width: 17px;
  height: 17px;
}

@media (max-width: 760px) {

  .presale-address-featured {
    margin: 24px auto 26px;

    text-align: left;
  }

  .meme-gallery-heading {
    margin-bottom: 30px;
  }

  .meme-gallery-heading h2 {
    font-size: 44px;
    line-height: 0.9;
  }

  .meme-frame-controls {
    justify-content: center;
  }

  .meme-dots {
    margin: 0 auto;
  }

  .footer-x-link {
    justify-content: center;

    margin-top: 4px;
  }

}

@media (max-width: 480px) {

  .presale-address-featured {
    grid-template-columns: 1fr;

    padding: 15px;
  }

  .presale-address-featured code {
    font-size: 10px;
  }

  .presale-address-featured .presale-address-copy {
    width: 100%;
  }

  .meme-gallery-heading h2 {
    font-size: 39px;
  }

}


/* Final navigation and presale cascade */

.presale-intro {
  min-height: 720px;

  padding-right: 48px;
}

.presale-facts {
  margin-top: 28px;
}

@media (max-width: 1100px) {

  .presale-intro {
    min-height: 0;

    padding-right: 0;
  }

  .presale-caps {
    margin-right: auto;
    margin-left: auto;

    text-align: left;
  }

}

@media (max-width: 760px) {

  body.nav-open {
    overscroll-behavior: none;
  }

  .navbar {
    height: 74px;

    justify-content: space-between;

    padding: 0 18px;
  }

  .navbar.is-menu-open,
  .navbar.is-menu-open.is-scrolled {
    height: 74px;

    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .navbar.is-menu-open .logo {
    position: relative;
    z-index: 3;

    color: #ffffff;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;

    display: grid;

    margin-left: auto;

    border-color: rgba(255, 255, 255, 0.3);
  }

  .navbar.is-menu-open .nav-toggle {
    border-color: transparent;
    background: transparent;
  }

  .navbar.is-menu-open .nav-toggle span {
    background: #ffffff;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 2;

    width: 100vw;
    height: 100vh;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 92px 24px 128px;

    visibility: hidden;
    opacity: 1;

    border: 0;
    border-radius: 0;
    background: #4bc98a;

    box-shadow: none;
    backdrop-filter: none;

    clip-path: inset(0 0 100% 0);
    transform: none;

    pointer-events: none;

    transition:
      visibility 0s linear 0.62s,
      clip-path 0.62s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .navbar.is-menu-open .nav-links {
    visibility: visible;
    opacity: 1;

    clip-path: inset(0);
    transform: none;

    pointer-events: auto;

    transition:
      visibility 0s linear 0s,
      clip-path 0.62s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .nav-links > a {
    width: auto;

    display: block;

    padding: 3px 8px;

    opacity: 0;

    color: #061b16;
    border: 0;

    font-family: "Baloo 2", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 0.98;
    text-align: center;
    text-transform: uppercase;

    transform: translateX(-78px);

    transition:
      color 0.2s ease,
      opacity 0.44s ease,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links > a:nth-child(even) {
    transform: translateX(78px);
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-links > a[aria-current="page"] {
    color: #ffffff;
  }

  .navbar.is-menu-open .nav-links > a {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar.is-menu-open .nav-links > a:nth-child(1) {
    transition-delay: 0.16s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(2) {
    transition-delay: 0.22s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(3) {
    transition-delay: 0.28s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(4) {
    transition-delay: 0.34s;
  }

  .navbar.is-menu-open .nav-links > a:nth-child(5) {
    transition-delay: 0.4s;
  }

  .mobile-menu-footer {
    position: absolute;
    right: 24px;
    bottom: max(24px, env(safe-area-inset-bottom));
    left: 24px;

    display: grid;
    grid-template-columns: auto minmax(180px, 270px);
    align-items: center;
    justify-content: center;

    gap: 16px;

    opacity: 0;
    transform: translateY(24px);

    transition:
      opacity 0.42s 0.45s ease,
      transform 0.58s 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .navbar.is-menu-open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-x {
    min-height: 48px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 0;

    color: #061b16;

    font-size: 12px;
    font-weight: 900;
  }

  .mobile-menu-x img {
    width: 23px;
    height: 23px;

    object-fit: contain;
  }

  .mobile-menu-buy {
    min-height: 52px;

    display: grid;
    place-items: center;

    padding: 0 22px;

    color: #07100d;
    border: 2px solid #ffffff;
    border-radius: 6px;
    background: #ffffff;

    font-size: 13px;
    font-weight: 900;
  }

}

@media (max-width: 480px) {

  .nav-links {
    gap: 3px;

    padding-right: 18px;
    padding-bottom: 122px;
    padding-left: 18px;
  }

  .nav-links > a {
    font-size: 36px;
  }

  .mobile-menu-footer {
    right: 18px;
    left: 18px;

    grid-template-columns: 1fr;

    gap: 8px;
  }

  .mobile-menu-x {
    min-height: 34px;

    justify-self: center;
  }

  .mobile-menu-buy {
    width: min(290px, 100%);

    justify-self: center;
  }

}

@media (max-width: 760px) and (max-height: 620px) {

  .nav-links {
    justify-content: flex-start;

    gap: 0;

    padding-top: 82px;
  }

  .nav-links > a {
    font-size: 31px;
  }

  .mobile-menu-footer {
    grid-template-columns: auto minmax(170px, 230px);
  }

  .mobile-menu-buy {
    min-height: 46px;
  }

}


/* =====================================================
   FROGGO EDITORIAL REBUILD
===================================================== */

.nav-actions {
  display: none !important;
}

.navbar,
.navbar.is-scrolled {
  height: 76px;

  justify-content: space-between;

  padding: 0 40px;

  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(0);

  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    backdrop-filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.navbar[data-theme="dark"],
.navbar[data-theme="dark"].is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 18, 42, 0.46);
  backdrop-filter: blur(15px);
}

.navbar[data-theme="light"],
.navbar[data-theme="light"].is-scrolled {
  border-bottom-color: rgba(7, 11, 10, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
}

.navbar[data-theme="green"],
.navbar[data-theme="green"].is-scrolled {
  border-bottom-color: rgba(7, 27, 22, 0.12);
  background: rgba(75, 201, 138, 0.94);
  backdrop-filter: blur(15px);
}

.navbar[data-theme="light"] .logo,
.navbar[data-theme="green"] .logo {
  color: #07100d;

  text-shadow: none;
}

.nav-toggle {
  position: relative;
  z-index: 3;

  width: 48px;
  height: 48px;

  display: grid;
  place-content: center;

  gap: 5px;

  margin-left: auto;

  cursor: pointer;

  border: 1px solid rgba(131, 239, 181, 0.36);
  border-radius: 6px;
  background: rgba(5, 29, 53, 0.42);
}

.nav-toggle span {
  width: 22px;
  height: 2px;

  display: block;

  border-radius: 2px;
  background: #a4f7c7;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.navbar[data-theme="light"] .nav-toggle,
.navbar[data-theme="green"] .nav-toggle {
  border-color: rgba(7, 16, 13, 0.24);
  background: transparent;
}

.navbar[data-theme="light"] .nav-toggle span,
.navbar[data-theme="green"] .nav-toggle span {
  background: #07100d;
}

.navbar.is-menu-open,
.navbar.is-menu-open.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.navbar.is-menu-open .logo {
  position: relative;
  z-index: 3;

  color: #ffffff;
}

.navbar.is-menu-open .nav-toggle {
  border-color: transparent;
  background: transparent;
}

.navbar.is-menu-open .nav-toggle span {
  background: #ffffff;
}

.navbar.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: fixed;
  inset: 0;
  z-index: 2;

  width: 100vw;
  height: 100vh;
  height: 100dvh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;

  padding: 104px 40px 132px;

  visibility: hidden;
  opacity: 1;

  border: 0;
  border-radius: 0;
  background: #4bc98a;

  box-shadow: none;
  backdrop-filter: none;

  clip-path: inset(0 0 100% 0);
  transform: none;

  pointer-events: none;

  transition:
    visibility 0s linear 0.68s,
    clip-path 0.68s cubic-bezier(0.76, 0, 0.24, 1);
}

.navbar.is-menu-open .nav-links {
  visibility: visible;
  opacity: 1;

  clip-path: inset(0);
  transform: none;

  pointer-events: auto;

  transition:
    visibility 0s linear 0s,
    clip-path 0.68s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-links > a {
  width: auto;

  display: block;

  padding: 1px 10px;

  opacity: 0;

  color: #061b16;
  border: 0;

  font-family: "Baloo 2", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;

  transform: translateX(-110px);

  transition:
    color 0.2s ease,
    opacity 0.45s ease,
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links > a:nth-child(even) {
  transform: translateX(110px);
}

.nav-links > a::after {
  display: none;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"] {
  color: #ffffff;
}

.navbar.is-menu-open .nav-links > a {
  opacity: 1;
  transform: translateX(0);
}

.navbar.is-menu-open .nav-links > a:nth-child(1) {
  transition-delay: 0.16s;
}

.navbar.is-menu-open .nav-links > a:nth-child(2) {
  transition-delay: 0.23s;
}

.navbar.is-menu-open .nav-links > a:nth-child(3) {
  transition-delay: 0.3s;
}

.navbar.is-menu-open .nav-links > a:nth-child(4) {
  transition-delay: 0.37s;
}

.mobile-menu-footer {
  position: absolute;
  right: 32px;
  bottom: max(28px, env(safe-area-inset-bottom));
  left: 32px;

  display: grid;
  grid-template-columns: 54px minmax(220px, 330px);
  align-items: center;
  justify-content: center;

  gap: 16px;

  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity 0.42s 0.46s ease,
    transform 0.58s 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.is-menu-open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-x {
  width: 54px;
  height: 54px;
  min-height: 0;

  display: grid;
  place-items: center;

  padding: 0;

  color: #061b16;
}

.mobile-menu-x img {
  width: 25px;
  height: 25px;

  object-fit: contain;
}

.nav-links .mobile-menu-buy {
  min-height: 54px;

  display: grid;
  place-items: center;

  padding: 0 24px;

  color: #07100d;
  border: 2px solid #ffffff;
  border-radius: 6px;
  background: #ffffff;

  font-size: 13px;
  font-weight: 900;
}


/* MEET THE FROG */

.meet-frog-section {
  min-height: 820px;

  padding: 124px 24px 24px;

  scroll-margin-top: 76px;
}

.meet-frog-copy h2 {
  font-size: 78px;
}

.meet-frog-art {
  width: min(760px, 100%);
  height: 310px;

  margin-top: 18px;
}


/* LIGHT PRESALE */

.presale-section {
  min-height: 980px;

  color: #07100d;
  border-top: 0;
  background: #ffffff;

  scroll-margin-top: 76px;
}

.presale-atmosphere {
  display: none;
}

.presale-live-badge {
  color: #176744;
  border-color: rgba(23, 103, 68, 0.3);
  background: #e8f8ef;
}

.presale-intro h2 {
  color: #07100d;

  text-shadow: none;
}

.presale-section .section-kicker,
.presale-swap-header > div > span,
.presale-address span,
.presale-field-topline label,
.presale-field-topline span,
.presale-rate-row span {
  color: #23825c;
}

.presale-lead {
  color: #303936;
}

.presale-address-featured {
  border-color: #cfd8d3;
  background: #f2f4f3;

  box-shadow: none;
}

.presale-address-featured code {
  color: #07100d;
}

.presale-address-copy {
  color: #07100d;
  border-color: #4bc98a;
  background: #4bc98a;
}

.presale-caps {
  border-top-color: rgba(7, 16, 13, 0.2);
  border-bottom-color: rgba(7, 16, 13, 0.2);
}

.presale-caps > div + div {
  border-left-color: rgba(7, 16, 13, 0.2);
}

.presale-caps span {
  color: #23825c;
}

.presale-caps strong {
  color: #07100d;
}

.presale-caps small {
  color: #66706c;
}

.presale-facts div {
  border-top-color: rgba(7, 16, 13, 0.18);
}

.presale-facts dt {
  color: #66706c;
}

.presale-facts dd {
  color: #07100d;
}

.presale-swap {
  border-color: #d6ddd9;
  background: #f1f3f2;

  box-shadow: none;
}

.presale-swap::before {
  display: none;
}

.presale-swap-header strong {
  color: #07100d;
}

.presale-token-field {
  border-color: #d8dfdc;
  background: #ffffff;
}

.presale-token-field-output {
  border-color: #b9dcca;
  background: #edf9f2;
}

.presale-amount-row input,
.presale-amount-row output {
  color: #07100d;
}

.presale-token-field small {
  color: #66706c;
}

.presale-token {
  color: #07100d;
  border-color: #d3dad6;
  background: #f1f3f2;
}

.presale-swap-arrow span {
  color: #07100d;
  border-color: #ffffff;
  background: #4bc98a;
}

.presale-quick-amounts {
  border-color: #d5dcd8;
}

.presale-quick-amounts button {
  color: #27302d;
  border-color: #d5dcd8;
  background: #ffffff;
}

.presale-quick-amounts button.is-active {
  color: #07100d;
  background: #4bc98a;
}

.presale-rate-row {
  border-top-color: #d2d9d5;
  border-bottom-color: #d2d9d5;
}

.presale-rate-row strong {
  color: #07100d;
}


/* FROGGO TOKEN */

.froggo-token-section {
  position: relative;
  z-index: 32;

  padding: 128px 24px 136px;

  scroll-margin-top: 76px;

  color: #07100d;
  background: #4bc98a;
}

.froggo-token-heading {
  width: min(820px, 100%);

  margin: 0 auto 64px;

  text-align: center;
}

.froggo-token-heading > p,
.froggo-army-heading > p {
  margin-bottom: 14px;

  color: #155b3d;

  font-size: 11px;
  font-weight: 900;
}

.froggo-token-heading h2,
.froggo-army-heading h2 {
  margin: 0;

  color: #07100d;

  font-family: "Baloo 2", sans-serif;
  font-size: 82px;
  font-weight: 800;
  line-height: 0.9;
}

.froggo-token-heading > span,
.froggo-army-heading > span {
  max-width: 720px;

  display: block;

  margin: 24px auto 0;

  color: #163329;

  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
}

.froggo-token-layout {
  width: min(1240px, 100%);

  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.45fr);

  gap: 38px;

  margin: 0 auto;
}

.froggo-token-visual {
  min-height: 620px;
  overflow: hidden;

  margin: 0;

  border: 2px solid #07100d;
  border-radius: 8px;
  background: #ffffff;
}

.froggo-token-visual img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: 50% 42%;
}

.froggo-token-panel {
  display: flex;
  flex-direction: column;

  padding: 48px;

  border: 2px solid #07100d;
  border-radius: 8px;
  background: #f2f3f2;
}

.froggo-supply {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;

  column-gap: 12px;
}

.froggo-supply > span {
  grid-column: 1 / -1;

  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 900;
}

.froggo-supply strong {
  color: #07100d;

  font-family: "Baloo 2", sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 0.9;
}

.froggo-supply small {
  padding-bottom: 7px;

  color: #23825c;

  font-size: 14px;
  font-weight: 900;
}

.froggo-token-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;

  margin-top: 34px;
}

.froggo-token-tags span {
  padding: 9px 13px;

  color: #ffffff;
  border-radius: 999px;
  background: #07100d;

  font-size: 10px;
  font-weight: 900;
}

.froggo-token-copy {
  margin-top: 44px;
}

.froggo-token-copy h3 {
  margin: 0 0 12px;

  color: #07100d;

  font-family: "Baloo 2", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.froggo-token-copy p {
  max-width: 680px;

  margin: 0;

  color: #303936;

  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.froggo-network-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;

  gap: 14px;

  margin-top: auto;
  padding: 20px;

  border: 1px solid #d5dcd8;
  border-radius: 8px;
  background: #ffffff;
}

.froggo-network-row img {
  width: 48px;
  height: 48px;

  object-fit: cover;

  border-radius: 8px;
}

.froggo-network-row div {
  display: grid;

  gap: 2px;
}

.froggo-network-row strong {
  font-size: 17px;
  font-weight: 900;
}

.froggo-network-row div span,
.froggo-network-row small {
  color: #68716e;

  font-size: 9px;
  font-weight: 900;
}


/* FROGGO ARMY */

.froggo-army-section {
  position: relative;
  z-index: 32;
  overflow: hidden;

  padding: 118px 24px 50px;

  scroll-margin-top: 76px;

  color: #07100d;
  background: #ffffff;
}

.froggo-army-heading {
  position: relative;
  z-index: 2;

  width: min(920px, 100%);

  margin: 0 auto 54px;

  text-align: center;
}

.froggo-army-heading > span {
  max-width: 820px;

  color: #303936;
}

.froggo-army-peek {
  position: absolute;
  top: 270px;
  left: -75px;
  z-index: 0;

  width: 300px;
  height: auto;

  display: block;

  pointer-events: none;
  user-select: none;
}

.froggo-army-grid {
  position: relative;
  z-index: 1;

  width: min(1180px, calc(100% - 180px));

  display: grid;
  grid-template-columns: 1fr 0.96fr 1.18fr 0.96fr 1fr;
  align-items: start;

  gap: 16px;

  margin: 0 0 0 auto;
}

.froggo-army-grid > * {
  min-width: 0;
}

.army-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;

  gap: 16px;
}

.army-column-one {
  padding-top: 116px;
}

.army-column-two {
  padding-top: 0;
}

.army-column-three {
  padding-top: 74px;
}

.army-column-four {
  padding-top: 38px;
}

.army-column-five {
  padding-top: 108px;
}

.army-media-card {
  width: 100%;
  overflow: hidden;

  display: block;

  margin: 0;

  border-radius: 6px;
  background: #e9edeb;
}

.army-media-card img,
.army-media-card video {
  width: 100%;
  height: auto;

  display: block;
}

.army-video-card video {
  aspect-ratio: 848 / 464;

  object-fit: cover;
  background: #07100d;
}

.army-social-card {
  position: relative;

  width: min(176px, 78%);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  box-sizing: border-box;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 20px;

  color: #ffffff;

  border-radius: 6px;
}

.army-social-tg {
  align-self: flex-end;

  background: #279ed3;
}

.army-social-x {
  align-self: center;

  background: #07100d;
}

.army-social-icon {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 20px;
  height: 20px;

  object-fit: contain;
}

.army-social-icon-tg {
  top: 5px;
  right: 5px;

  width: 44px;
  height: 44px;
}

.army-social-x .army-social-icon {
  filter: invert(1);
}

.army-social-card strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 0.95;
}

.army-manifesto {
  position: relative;

  width: min(176px, 78%);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  box-sizing: border-box;
  overflow: hidden;

  display: flex;
  align-items: center;
  align-self: flex-end;

  margin: 0;
  padding: 20px;

  color: #ffffff;
  background: #23825c;

  border-radius: 6px;

  font-family: "Baloo 2", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

@media (min-width: 1101px) {

  .froggo-army-grid {
    width: min(1180px, 100%);

    margin-right: auto;
    margin-left: auto;
  }

  .froggo-army-peek {
    left: -90px;
  }

  .army-manifesto {
    width: 100%;

    padding: 22px;

    font-size: 17px;
    white-space: nowrap;
  }

}


/* THE END + FOOTER */

.the-end-section {
  position: relative;
  isolation: isolate;

  height: 360px;
  min-height: 0;
  overflow: hidden;

  display: block;

  padding: 0 24px;

  border-top: 0;
  background: #ffffff;
}

.the-end-section::before {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;

  height: 1px;

  background: #07100d;
}

.the-end-section img {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;

  width: min(390px, 72vw);
  height: auto;

  display: block;

  transform: translate(-50%, 10.3%);
}

.site-footer {
  color: #07100d;
  border-top: 0;
  background: #ffffff;

  padding-bottom: calc(38px + env(safe-area-inset-bottom));
}

.footer-logo,
.site-footer nav a {
  color: #07100d;
}

.site-footer p,
.site-footer small {
  color: #5d6662;
}

.site-footer nav {
  flex-wrap: wrap;
}

.footer-x-link {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  box-sizing: border-box;

  display: grid;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  gap: 0;

  border: 1px solid #07100d;
  border-radius: 50%;

  line-height: 0;
}

.footer-x-link img {
  width: 18px;
  height: 18px;

  display: block;

  margin: 0;

  filter: none;
  object-fit: contain;
  object-position: center;
  transform: none;
}


@media (max-width: 1100px) {

  .froggo-token-heading h2,
  .froggo-army-heading h2 {
    font-size: 68px;
  }

  .froggo-token-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.2fr);
  }

  .froggo-token-panel {
    padding: 34px;
  }

  .froggo-supply strong {
    font-size: 54px;
  }

  .froggo-army-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .froggo-army-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .army-column-one {
    padding-top: 64px;
  }

  .army-column-three {
    padding-top: 38px;
  }

  .army-column-four {
    grid-column: 2 !important;

    padding-top: 0;
  }

  .army-column-five {
    grid-column: 3 !important;

    padding-top: 44px;
  }

}

@media (max-width: 820px) {

  .navbar,
  .navbar.is-scrolled {
    padding: 0 20px;
  }

  .nav-links > a {
    font-size: 48px;
  }

  .froggo-token-section {
    padding: 104px 20px 112px;
  }

  .froggo-army-section {
    padding: 96px 20px 46px;
  }

  .froggo-army-peek {
    top: 250px;
    left: -68px;

    width: 270px;
  }

  .froggo-army-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
  }

  .army-column-one {
    padding-top: 48px;
  }

  .army-column-three {
    padding-top: 28px;
  }

  .army-column-four {
    grid-column: auto !important;
  }

  .army-column-five {
    grid-column: 1 / -1 !important;

    width: calc(50% - 6px);

    justify-self: center;

    padding-top: 28px;
  }

  .froggo-token-layout {
    grid-template-columns: 1fr;
  }

  .froggo-token-visual {
    min-height: 0;

    aspect-ratio: 4 / 3;
  }

  .froggo-token-panel {
    min-height: 540px;
  }

}

@media (max-width: 760px) {

  html,
  body {
    overflow-x: clip;
  }

  html {
    background: #ffffff;
  }

  body {
    background: transparent;
  }

  .navbar,
  .navbar.is-scrolled,
  .navbar[data-theme="dark"],
  .navbar[data-theme="dark"].is-scrolled,
  .navbar[data-theme="light"],
  .navbar[data-theme="light"].is-scrolled,
  .navbar[data-theme="green"],
  .navbar[data-theme="green"].is-scrolled {
    position: fixed;
    top: 0;

    height: calc(70px + env(safe-area-inset-top));

    padding:
      env(safe-area-inset-top)
      16px
      0;

    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(5, 18, 42, 0.78);
    backdrop-filter: blur(16px);
  }

  .navbar[data-theme="light"],
  .navbar[data-theme="light"].is-scrolled {
    border-bottom-color: rgba(7, 11, 10, 0.1);
    background: rgba(255, 255, 255, 0.94);
  }

  .navbar[data-theme="green"],
  .navbar[data-theme="green"].is-scrolled {
    border-bottom-color: rgba(7, 27, 22, 0.12);
    background: rgba(75, 201, 138, 0.94);
  }

  .navbar.is-menu-open,
  .navbar.is-menu-open.is-scrolled {
    border-bottom-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    gap: 4px;

    padding: 88px 18px 126px;
  }

  .nav-links > a {
    font-size: 37px;
  }

  .mobile-menu-footer {
    right: 18px;
    left: 18px;

    grid-template-columns: 48px minmax(190px, 290px);

    gap: 10px;
  }

  .mobile-menu-x {
    width: 48px;
    height: 48px;
  }

  .nav-links .mobile-menu-buy {
    min-height: 50px;
  }

  .meet-frog-section,
  .presale-section,
  .froggo-token-section,
  .froggo-army-section {
    scroll-margin-top:
      calc(70px + env(safe-area-inset-top));
  }

  .meet-frog-section {
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 92px 18px 28px;
  }

  .meet-frog-copy h2 {
    font-size: 52px;
  }

  .meet-frog-art {
    width: min(520px, 100%);
    height: 230px;

    margin-top: 10px;
  }

  .presale-section {
    padding-top: 104px;
  }

  .presale-caps > div + div {
    border-left-color: rgba(7, 16, 13, 0.2);
  }

  .froggo-token-heading,
  .froggo-army-heading {
    margin-bottom: 38px;
  }

  .froggo-token-heading h2,
  .froggo-army-heading h2 {
    font-size: 52px;
  }

  .froggo-token-heading > span,
  .froggo-army-heading > span {
    font-size: 16px;
  }

  .froggo-token-panel {
    min-height: 0;

    padding: 26px;
  }

  .froggo-supply strong {
    font-size: 46px;
  }

  .froggo-network-row {
    grid-template-columns: 42px 1fr;

    margin-top: 40px;
  }

  .froggo-network-row img {
    width: 42px;
    height: 42px;
  }

  .froggo-network-row > small {
    grid-column: 1 / -1;
  }

  .froggo-army-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  .froggo-army-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .froggo-army-section {
    padding-bottom: 28px;
  }

  .froggo-army-heading {
    margin-bottom: 28px;
  }

  .froggo-army-peek {
    display: none;
  }

  .froggo-army-grid {
    width: 100%;

    margin: 0 auto;
  }

  .army-column {
    display: contents;
  }

  .army-media-card,
  .army-social-card,
  .army-manifesto {
    width: 100%;

    align-self: stretch;
  }

  .army-media-fighter,
  .army-media-portal,
  .army-media-mount,
  .army-social-card,
  .army-manifesto {
    aspect-ratio: 1 / 1;
  }

  .army-media-fighter img,
  .army-media-portal img,
  .army-media-mount img {
    height: 100%;

    object-fit: cover;
  }

  .army-media-fighter {
    order: 1;
  }

  .army-media-portal {
    order: 2;
  }

  .army-social-tg {
    order: 3;
  }

  .army-social-x {
    order: 4;
  }

  .army-media-video {
    grid-column: 1 / -1;

    order: 5;
  }

  .froggo-army-grid .army-manifesto {
    grid-column: auto !important;

    order: 6;
  }

  .army-media-mount {
    grid-column: auto !important;

    order: 7;
  }

  .army-media-samurai {
    grid-column: 1 / -1;

    order: 8;
  }

  .army-column-one {
    padding-top: 38px;
  }

  .army-column-three {
    padding-top: 22px;
  }

  .army-column-five {
    grid-column: 1 / -1 !important;

    width: calc(50% - 5px);

    padding-top: 22px;
  }

  .froggo-army-peek {
    top: 225px;
    left: -142px;

    width: 360px;
  }

  .army-social-card,
  .army-manifesto {
    width: 100%;

    padding: 16px;
  }

  .army-social-card strong {
    font-size: 18px;
  }

  .army-manifesto {
    padding: 12px;

    font-size: clamp(14px, 4vw, 16px);
    white-space: nowrap;
  }

  .army-social-icon {
    top: 13px;
    right: 13px;

    width: 18px;
    height: 18px;
  }

  .army-social-icon-tg {
    top: 2px;
    right: 2px;

    width: 40px;
    height: 40px;
  }

  .the-end-section {
    height: 330px;
    min-height: 0;

    padding-top: 0;
  }

  .the-end-section img {
    width: min(330px, 86vw);
  }

  .footer-x-link {
    margin: 8px auto 0;
  }

  .site-footer {
    padding-bottom: calc(34px + env(safe-area-inset-bottom));
  }

}

@media (max-width: 440px) {

  .nav-links > a {
    font-size: 34px;
  }

  .meet-frog-copy h2 {
    font-size: 44px;
  }

  .meet-frog-copy > p:last-child {
    font-size: 14px;
  }

  .presale-caps > div + div {
    border-top-color: rgba(7, 16, 13, 0.18);
    border-left: 0;
  }

  .froggo-token-section,
  .froggo-army-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .froggo-army-section {
    padding-top: 88px;
    padding-bottom: 24px;
  }

  .froggo-token-heading h2,
  .froggo-army-heading h2 {
    font-size: 44px;
  }

  .froggo-token-visual {
    aspect-ratio: 1 / 1;
  }

  .froggo-token-panel {
    padding: 22px;
  }

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

  .froggo-supply strong {
    overflow-wrap: anywhere;

    font-size: 39px;
  }

  .froggo-supply small {
    padding-top: 6px;
    padding-bottom: 0;
  }

  .froggo-token-copy h3 {
    font-size: 28px;
  }

  .froggo-army-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .froggo-army-grid > * {
    grid-column: auto !important;
  }

  .army-column-five {
    grid-column: 1 / -1 !important;

    width: calc(50% - 5px);
  }

  .army-social-card,
  .army-manifesto {
    width: 100%;

    padding: 14px;
  }

  .army-social-card strong {
    font-size: 16px;
  }

  .army-manifesto {
    padding: 12px;

    font-size: clamp(14px, 4vw, 16px);
  }

  .the-end-section {
    height: 300px;
    min-height: 0;
  }

}

@media (prefers-reduced-motion: reduce) {

  .navbar,
  .nav-toggle span,
  .nav-links,
  .nav-links > a,
  .mobile-menu-footer {
    transition: none;
  }

}

@media (max-width: 360px) {

  .army-social-card,
  .army-manifesto {
    width: 100%;
  }

}


/* =====================================================
   PRESALE COUNTDOWN
===================================================== */

.presale-section.presale-coming-soon {
  min-height: 820px;

  display: grid;
  place-items: center;

  padding: 150px 24px 400px;

  color: #07100d;
  background: #ffffff;
}

.presale-coming-inner {
  width: min(1040px, 100%);

  margin: 0 auto;

  text-align: center;
}

.presale-coming-badge {
  width: max-content;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 30px;
  padding: 10px 16px;

  color: #a94408;
  border: 1px solid #f2a066;
  border-radius: 999px;
  background: #fff1e7;

  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.presale-coming-badge i {
  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  border-radius: 50%;
  background: #f47a2a;

  box-shadow: 0 0 0 5px rgba(244, 122, 42, 0.13);
}

.presale-coming-badge.is-live {
  color: #176744;
  border-color: rgba(23, 103, 68, 0.3);
  background: #e8f8ef;
}

.presale-coming-badge.is-live i {
  background: #34b779;
  box-shadow: 0 0 0 5px rgba(52, 183, 121, 0.13);
}

.presale-coming-soon h2 {
  margin: 0;

  color: #07100d;

  font-family: "Baloo 2", sans-serif;
  font-size: 88px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}

.presale-countdown {
  width: min(880px, 100%);

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin: 58px auto 0;

  color: #07100d;
  border-top: 1px solid #cfd6d2;
  border-bottom: 1px solid #cfd6d2;
}

.presale-countdown-unit {
  min-width: 0;
  min-height: 154px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  padding: 24px 12px 20px;
}

.presale-countdown-unit +
.presale-countdown-unit {
  border-left: 1px solid #cfd6d2;
}

.presale-countdown-unit strong {
  color: #07100d;

  font-family: "Baloo 2", sans-serif;
  font-size: 72px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  letter-spacing: 0;
}

.presale-countdown-unit small {
  color: #68716e;

  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 900px) {

  .presale-coming-soon h2 {
    font-size: 64px;
  }

  .presale-countdown-unit strong {
    font-size: 56px;
  }

}

@media (max-width: 760px) {

  .presale-section.presale-coming-soon {
    min-height: 0;

    margin-top: clamp(
      -96px,
      calc(748px - 100svh),
      0px
    );
    padding: 104px 16px 200px;
  }

  .presale-coming-badge {
    margin-bottom: 26px;
  }

  .presale-coming-soon h2 {
    font-size: 48px;
  }

  .presale-coming-soon h2 span {
    display: block;
  }

  .presale-countdown {
    margin-top: 42px;
  }

  .presale-countdown-unit {
    min-height: 112px;

    gap: 7px;

    padding: 20px 5px 16px;
  }

  .presale-countdown-unit strong {
    font-size: 40px;
  }

  .presale-countdown-unit small {
    font-size: 8px;
  }

}

@media (max-width: 440px) {

  .presale-coming-soon h2 {
    font-size: 43px;
  }

  .presale-countdown-unit strong {
    font-size: 34px;
  }

  .presale-countdown-unit small {
    font-size: 7px;
  }

}


/* =====================================================
   MENU FOOTER + TOKEN EDGE ART
===================================================== */

.mobile-menu-footer {
  grid-template-columns: minmax(220px, 330px);
  justify-items: center;

  gap: 10px;
}

.mobile-menu-x {
  justify-self: center;
}

.nav-links .mobile-menu-buy {
  width: 100%;
}

.froggo-token-section {
  isolation: isolate;
}

.froggo-token-edge-art {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;

  width: clamp(300px, 28vw, 430px);
  height: auto;

  transform: translateY(-100%);

  pointer-events: none;
  user-select: none;
}

.froggo-token-heading,
.froggo-token-layout {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {

  .mobile-menu-footer {
    grid-template-columns: minmax(190px, 290px);

    gap: 8px;
  }

  .mobile-menu-x {
    width: 42px;
    height: 42px;
  }

  .mobile-menu-x img {
    width: 26px;
    height: 26px;
  }

  .froggo-token-edge-art {
    width: clamp(195px, 54vw, 235px);
  }

}

@media (max-width: 760px) and (max-height: 620px) {

  .nav-links {
    padding-bottom: 150px;
  }

  .nav-links > a {
    font-size: 30px;
  }

  .mobile-menu-footer {
    bottom: max(10px, env(safe-area-inset-bottom));

    gap: 4px;
  }

  .mobile-menu-x {
    width: 34px;
    height: 34px;
  }

  .nav-links .mobile-menu-buy {
    min-height: 44px;
  }

}
