:root {
  --page: #f6faf0;
  --panel: #fffdf2;
  --panel-strong: #fff8cf;
  --ink: #26323f;
  --muted: #647167;
  --lemon: #f5d547;
  --lemon-strong: #ffd23c;
  --leaf: #62bf6e;
  --leaf-deep: #1f8a5b;
  --coral: #ff705e;
  --teal: #37b7a8;
  --shadow: 0 22px 55px rgba(49, 75, 55, 0.15);
  --soft-shadow: 0 12px 30px rgba(49, 75, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 213, 71, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 24%, rgba(55, 183, 168, 0.16), transparent 28rem),
    var(--page);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-style: normal;
}

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

.site-header {
  --header-safe-top: 22px;
  --header-stop-y: var(--header-safe-top);
  position: fixed;
  top: var(--header-safe-top);
  left: 50%;
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1160px;
  transform: translateX(-50%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-released {
  position: absolute;
  top: var(--header-stop-y);
}

.site-header.is-solid .header-nav {
  background: rgba(255, 253, 242, 0.9);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 14px 30px rgba(35, 68, 52, 0.11);
}

.header-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: rgba(255, 253, 242, 0.82);
  box-shadow: 0 18px 44px rgba(35, 68, 52, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 2px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-header.is-solid .nav-links a {
  color: #234434;
  text-shadow: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-height: 54px;
  padding: 4px;
  border-radius: 17px;
  background: rgba(35, 68, 52, 0.045);
}

.nav-links a {
  position: relative;
  border: 0;
  border-radius: 14px;
  padding: 11px 15px 12px;
  color: #314c3a;
  font-size: 1.02rem;
  font-weight: 800;
  text-shadow: none;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lemon), var(--leaf));
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: #1e5c3c;
  transform: translateY(-2px);
}

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

.site-header.is-solid .nav-links a:hover {
  background: rgba(98, 191, 110, 0.12);
}

.play-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.play-button {
  position: relative;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: #ffd84d;
  color: #294233;
  box-shadow: 0 10px 20px rgba(111, 82, 17, 0.18);
  overflow: hidden;
}

.play-button:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.play-button:hover {
  background: #ffe36a;
  box-shadow: 0 12px 22px rgba(111, 82, 17, 0.2);
}

.hero-section {
  min-height: 100vh;
  padding: 20px;
}

.hero-inner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 40px);
  overflow: hidden;
  border-radius: 50px;
  background:
    linear-gradient(180deg, rgba(22, 54, 43, 0.02), rgba(15, 35, 32, 0.18)),
    url("../images/hero/beach-background-static.png") center calc(100% + 34px) / 116% auto no-repeat,
    #9bd7d0;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-person,
.hero-umbrella,
.hero-float {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.hero-person,
.hero-umbrella {
  bottom: 0;
}

.hero-girl {
  left: 7%;
  width: 25%;
  z-index: 3;
}

.hero-umbrella {
  left: 42%;
  right: auto;
  bottom: 12%;
  width: 54%;
  z-index: 3;
  transform: rotate(5deg);
  transform-origin: 55% 70%;
  opacity: 0.94;
}

.hero-boy {
  left: 58%;
  right: auto;
  width: 24%;
  z-index: 4;
}

.hero-float {
  z-index: 8;
  will-change: transform;
  transition: none;
  animation: air-drift 6.4s ease-in-out infinite;
}

.float-icecream {
  top: 18%;
  left: 13%;
  width: 11.5%;
}

.float-cup {
  top: 14%;
  right: 15%;
  width: 11.5%;
  animation-delay: -1.4s;
}

@keyframes air-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(180deg, rgba(24, 57, 46, 0.05), rgba(18, 40, 34, 0.26)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(21, 45, 39, 0.18) 74%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 6;
  width: min(1120px, calc(100% - 40px));
  margin-top: 72px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 10px;
  color: #fffadf;
  font-family: "Rubik", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(25, 48, 34, 0.26);
}

.hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Rubik", sans-serif;
  font-size: clamp(4.4rem, 13vw, 9.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 24px 55px rgba(24, 57, 46, 0.32);
}

.hero-date {
  margin: 18px auto 28px;
  color: #fff8b5;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  font-weight: 900;
  text-shadow: 0 10px 30px rgba(25, 48, 34, 0.28);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 150px));
  justify-content: center;
  gap: 14px;
  width: min(100%, 642px);
  margin: 0 auto;
}

.count-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  min-height: 118px;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 35px rgba(31, 49, 35, 0.12);
}

.count-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px) saturate(1.04);
  -webkit-backdrop-filter: blur(4px) saturate(1.04);
}

.count-card span {
  position: relative;
  display: block;
  color: #ffffff;
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  font-weight: 900;
  line-height: 1;
}

.count-card small {
  position: relative;
  display: block;
  margin-top: 8px;
  color: #fffadf;
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-social {
  --social-accent: #ffffff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-family: "Rubik", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(22, 48, 42, 0.16);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.hero-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--social-accent) 72%, transparent), transparent 68%);
  opacity: 0.78;
}

.hero-social span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(20, 34, 34, 0.2);
}

.hero-social-vk {
  --social-accent: #4c88ef;
}

.hero-social-tg {
  --social-accent: #2aa9e0;
}

.hero-social-ds {
  --social-accent: #5865f2;
}

.hero-social:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 32px rgba(22, 48, 42, 0.2);
}

.scroll-cue {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  animation: down 1.2s infinite ease-in-out;
}

.scroll-cue span {
  width: 16px;
  height: 16px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(45deg) translate(-2px, -2px);
}

@keyframes down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}

.section-heading {
  width: min(1180px, calc(100% - 32px));
  margin: 94px auto 34px;
  text-align: center;
}

.label-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.label-row p {
  margin: 0;
  color: var(--leaf-deep);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 850;
}

.label-icon {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 48% 50%;
  background:
    radial-gradient(circle at 38% 36%, #fffef0 0 18%, transparent 19%),
    linear-gradient(135deg, var(--lemon), var(--leaf));
  box-shadow: 0 10px 22px rgba(96, 146, 52, 0.16);
  animation: icon-shake 3.2s infinite ease-in-out;
}

.label-icon-alt {
  border-radius: 13px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, var(--coral), var(--lemon));
}

.lemon-eye-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50% 46% 52% 48%;
  background: linear-gradient(145deg, #fff06a 0%, #ffd32f 58%, #f7b928 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(-7deg);
  animation: lemon-eye-bob 3.4s ease-in-out infinite;
}

.lemon-eye-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 7px;
  width: 9px;
  height: 7px;
  border-radius: 8px 12px 8px 2px;
  background: #6fc36d;
  transform: rotate(22deg);
}

.lemon-eye-icon span {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
}

.lemon-eye-icon span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #2a2a2f;
  animation: lemon-eye-look 3.4s ease-in-out infinite;
}

.lemon-nod-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50% 48% 52% 47%;
  background: linear-gradient(145deg, #fff06a 0%, #ffd32f 58%, #f7b928 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform-origin: 50% 92%;
  animation: lemon-nod-approve 2.4s ease-in-out infinite;
}

.lemon-nod-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 7px;
  width: 9px;
  height: 7px;
  border-radius: 8px 12px 8px 2px;
  background: #6fc36d;
  transform: rotate(22deg);
}

.lemon-nod-icon span {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
  animation: lemon-nod-blink 2.4s ease-in-out infinite;
}

.lemon-nod-icon span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #2a2a2f;
  animation: lemon-nod-look 2.4s ease-in-out infinite;
}

.lemon-grimace-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 3px;
  width: 38px;
  height: 38px;
  border-radius: 48% 52% 47% 53%;
  background: linear-gradient(145deg, #fff06a 0%, #ffd230 58%, #f4b425 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(7deg);
  animation: lemon-grimace-wobble 3.1s ease-in-out infinite;
}

.lemon-grimace-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 6px;
  width: 10px;
  height: 7px;
  border-radius: 10px 12px 8px 2px;
  background: #62bf6e;
  transform: rotate(28deg);
}

.grimace-eye {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
}

.grimace-eye:nth-child(2) {
  width: 10px;
  height: 13px;
  margin-top: -2px;
}

.grimace-eye::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 5px;
  height: 6px;
  border-radius: 999px;
  background: #2a2a2f;
  animation: lemon-surprise-look 3.1s ease-in-out infinite;
}

.lemon-tech-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 52% 46% 50% 48%;
  background: linear-gradient(145deg, #fff36b 0%, #ffd43a 58%, #f2b72a 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(-5deg);
  animation: lemon-tech-tilt 3s ease-in-out infinite;
}

.lemon-tech-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 7px;
  width: 10px;
  height: 7px;
  border-radius: 10px 12px 8px 2px;
  background: #59b96d;
  transform: rotate(26deg);
}

.tech-eye {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
}

.tech-eye:nth-child(2) {
  width: 10px;
  height: 13px;
  margin-top: 3px;
}

.tech-eye::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #2a2a2f;
  animation: lemon-tech-look 3s ease-in-out infinite;
}

.tech-eye:nth-child(2)::after {
  left: 3px;
  top: 5px;
}

.lemon-adv-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 3px;
  width: 38px;
  height: 38px;
  border-radius: 49% 52% 47% 53%;
  background: linear-gradient(145deg, #fff36b 0%, #ffd43a 58%, #f0b92d 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(4deg);
  animation: lemon-adv-scan 3.2s ease-in-out infinite;
}

.lemon-adv-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 6px;
  width: 10px;
  height: 7px;
  border-radius: 10px 12px 8px 2px;
  background: #55b96a;
  transform: rotate(24deg);
}

.adv-eye {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 12px;
  border: 2px solid rgba(42, 58, 58, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
}

.adv-eye::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #2a2a2f;
  animation: lemon-adv-look 3.2s ease-in-out infinite;
}

.lemon-menu-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 51% 47% 50% 48%;
  background: linear-gradient(145deg, #fff36b 0%, #ffd63d 58%, #f2b62a 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(-3deg);
  animation: lemon-menu-pop 3s ease-in-out infinite;
}

.lemon-menu-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 6px;
  width: 10px;
  height: 7px;
  border-radius: 10px 12px 8px 2px;
  background: #5bc36d;
  transform: rotate(24deg);
}

.menu-eye {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
}

.menu-eye::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #2a2a2f;
  animation: lemon-menu-look 3s ease-in-out infinite;
}

.lemon-shop-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50% 48% 52% 47%;
  background: linear-gradient(145deg, #fff36b 0%, #ffd33a 58%, #efb62b 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(5deg);
  animation: lemon-shop-jolt 2.8s ease-in-out infinite;
}

.lemon-shop-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 6px;
  width: 10px;
  height: 7px;
  border-radius: 10px 12px 8px 2px;
  background: #5fc36f;
  transform: rotate(25deg);
}

.shop-eye {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
  transform-origin: center;
  animation: lemon-shop-eye-pop 2.8s ease-in-out infinite;
}

.shop-eye::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #2a2a2f;
  transform-origin: center;
  animation: lemon-shop-pupil-pop 2.8s ease-in-out infinite;
}

.lemon-trading-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50% 47% 52% 48%;
  background: linear-gradient(145deg, #fff36b 0%, #ffd63b 58%, #f0b42a 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(-4deg);
  animation: lemon-trading-groove 3.2s ease-in-out infinite;
}

.lemon-trading-icon::before {
  content: "";
  position: absolute;
  right: -3px;
  top: 6px;
  width: 10px;
  height: 7px;
  border-radius: 10px 12px 8px 2px;
  background: #5fc36f;
  transform: rotate(25deg);
}

.trading-glasses {
  position: absolute;
  left: 7px;
  top: 13px;
  z-index: 2;
  display: flex;
  gap: 3px;
}

.trading-glasses::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 4px;
  width: 4px;
  height: 2px;
  border-radius: 999px;
  background: #1e2528;
}

.trading-glasses span {
  position: relative;
  width: 11px;
  height: 9px;
  border-radius: 3px 3px 7px 7px;
  background: linear-gradient(145deg, #283133, #0d1112 68%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 1px 0 rgba(80, 62, 18, 0.12);
}

.trading-glasses span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-18deg);
}

.trading-gum {
  position: absolute;
  right: 7px;
  bottom: 6px;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 34% 28%, #ffd5e7 0 20%, #ff8fc4 52%, #e45d9f 100%);
  box-shadow: 0 5px 10px rgba(204, 80, 143, 0.22);
  transform-origin: 38% 42%;
  animation: lemon-trading-bubble 3.2s ease-in-out infinite;
}

.trading-gum::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.lemon-gateway-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 49% 51% 48% 52%;
  background: linear-gradient(145deg, #fff36b 0%, #ffd63b 58%, #f0b42a 100%);
  box-shadow: 0 10px 22px rgba(159, 123, 24, 0.18);
  transform: rotate(3deg);
  animation: lemon-gateway-idle 3.4s ease-in-out infinite;
}

.lemon-gateway-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 6px;
  width: 10px;
  height: 7px;
  border-radius: 10px 12px 8px 2px;
  background: #5fc36f;
  transform: rotate(25deg);
}

.gateway-eye {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(80, 62, 18, 0.08);
  transform-origin: center;
  animation: lemon-gateway-blink 3.4s ease-in-out infinite;
}

.gateway-eye::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #2a2a2f;
  animation: lemon-gateway-look 3.4s ease-in-out infinite;
}

@keyframes icon-shake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(20deg); }
  20% { transform: rotate(-13deg); }
  30% { transform: rotate(0deg); }
}

@keyframes lemon-eye-bob {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-2px); }
}

@keyframes lemon-eye-look {
  0%, 18%, 100% { transform: translate(0, 0); }
  38%, 56% { transform: translate(2px, -1px); }
  72%, 86% { transform: translate(-2px, 1px); }
}

@keyframes lemon-nod-approve {
  0%, 100% { transform: perspective(80px) rotateX(0deg) translateY(0) scaleY(1); }
  22% { transform: perspective(80px) rotateX(18deg) translateY(3px) scaleY(0.9); }
  42% { transform: perspective(80px) rotateX(-4deg) translateY(-1px) scaleY(1.03); }
  62% { transform: perspective(80px) rotateX(14deg) translateY(2px) scaleY(0.93); }
  82% { transform: perspective(80px) rotateX(0deg) translateY(0) scaleY(1); }
}

@keyframes lemon-nod-blink {
  0%, 18%, 42%, 100% { transform: scaleY(1); }
  24%, 64% { transform: scaleY(0.72); }
}

@keyframes lemon-nod-look {
  0%, 100% { transform: translate(0, 0); }
  22%, 64% { transform: translate(0, 2px); }
  42% { transform: translate(0, -1px); }
}

@keyframes lemon-grimace-wobble {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  45% { transform: rotate(2deg) translateY(-2px); }
  70% { transform: rotate(10deg) translateY(1px); }
}

@keyframes lemon-surprise-look {
  0%, 100% { transform: translate(0, 0); }
  35%, 52% { transform: translate(1px, -2px); }
  74%, 88% { transform: translate(-1px, 1px); }
}

@keyframes lemon-tech-tilt {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  38% { transform: rotate(-9deg) translateY(-1px); }
  64% { transform: rotate(1deg) translateY(1px); }
}

@keyframes lemon-tech-look {
  0%, 18%, 100% { transform: translate(0, 0); }
  34%, 52% { transform: translate(2px, 0); }
  72%, 86% { transform: translate(-2px, 1px); }
}

@keyframes lemon-adv-scan {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  36% { transform: rotate(-2deg) translateY(-1px); }
  68% { transform: rotate(7deg) translateY(1px); }
}

@keyframes lemon-adv-look {
  0%, 16%, 100% { transform: translate(0, 0); }
  34%, 56% { transform: translate(2px, -1px); }
  74%, 88% { transform: translate(-2px, 1px); }
}

@keyframes lemon-menu-pop {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  42% { transform: rotate(2deg) translateY(-2px); }
  68% { transform: rotate(-6deg) translateY(1px); }
}

@keyframes lemon-menu-look {
  0%, 18%, 100% { transform: translate(0, 0); }
  35%, 55% { transform: translate(1px, -1px); }
  74%, 88% { transform: translate(-2px, 1px); }
}

@keyframes lemon-shop-jolt {
  0%, 12%, 100% { transform: rotate(5deg) translateY(0) scale(1); }
  18% { transform: rotate(-2deg) translateY(-2px) scale(1.04); }
  26% { transform: rotate(7deg) translateY(1px) scale(0.98); }
}

@keyframes lemon-shop-eye-pop {
  0%, 12%, 34%, 100% { transform: scale(1); }
  18%, 25% { transform: scale(1.82, 1.72); }
}

@keyframes lemon-shop-pupil-pop {
  0%, 12%, 34%, 100% { transform: translate(0, 0) scale(1); }
  18%, 25% { transform: translate(0, 1px) scale(0.72); }
}

@keyframes lemon-trading-groove {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  34% { transform: rotate(2deg) translateY(-2px); }
  58% { transform: rotate(-7deg) translateY(1px); }
}

@keyframes lemon-trading-bubble {
  0%, 18%, 100% { transform: scale(0.48); opacity: 0.86; }
  38%, 58% { transform: scale(1.9); opacity: 0.98; }
  70% { transform: scale(0.62); opacity: 0.9; }
}

@keyframes lemon-gateway-idle {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  45% { transform: rotate(-2deg) translateY(-1px); }
  70% { transform: rotate(5deg) translateY(1px); }
}

@keyframes lemon-gateway-blink {
  0%, 8%, 34%, 42%, 100% { transform: scaleY(1); }
  11%, 38% { transform: scaleY(0.12); }
}

@keyframes lemon-gateway-look {
  0%, 18%, 100% { transform: translate(0, 0); }
  36%, 54% { transform: translate(2px, -1px); }
  74%, 88% { transform: translate(-2px, 1px); }
}

.section-heading h2 {
  margin: 8px 0 16px;
  background: linear-gradient(150deg, var(--lemon-strong) 12%, var(--leaf) 48%, var(--teal));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Rubik", sans-serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 750;
  line-height: 1.35;
}

.feature-grid,
.prepare-grid,
.server-band,
.lemonmenu-showcase,
.lemonshop-showcase,
.lemontrading-showcase,
.lemongateway-showcase,
.lemonitems-showcase,
.matter-showcase,
.advmechanism-showcase,
.tech-showcase,
.wide-panel,
.final-section {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.feature-card,
.server-mini {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 310px;
  padding: 30px;
  border-radius: 46px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.feature-card::after,
.server-mini::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 190px;
  height: 190px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(16deg);
}

.card-yellow {
  background: linear-gradient(150deg, #ffe677 8%, #f1a51d 100%);
}

.card-green {
  background: linear-gradient(150deg, #80df77 8%, #187a55 100%);
}

.card-coral {
  background: linear-gradient(150deg, #ff9a68 8%, #e64254 100%);
}

.card-teal {
  background: linear-gradient(150deg, #60d6c7 8%, #166a8a 100%);
}

.card-blue {
  background: linear-gradient(150deg, #76c7ff 8%, #2760b8 100%);
}

.feature-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 40px;
  border-radius: 24px 38px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Rubik", sans-serif;
  font-size: 2.15rem;
  font-weight: 900;
}

.feature-card h3,
.prepare-card h3,
.server-mini h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.04;
}

.feature-card p,
.server-mini p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
  font-weight: 750;
  line-height: 1.35;
}

.announcement-grid {
  align-items: stretch;
}

.announcement-grid > .announcement-button:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.announcement-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 136px;
  padding: 24px 26px;
  border-radius: 34px 46px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow);
  animation: announcement-drift 6.2s ease-in-out infinite;
  transition: translate 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.announcement-button:nth-child(2) {
  animation-delay: -1.1s;
}

.announcement-button:nth-child(3) {
  animation-delay: -2.2s;
}

.announcement-button:nth-child(4) {
  animation-delay: -3.3s;
}

.announcement-button::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -55%;
  z-index: -1;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.22s ease;
}

.announcement-button::after {
  content: "→";
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px 26px;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.94);
  font-family: "Rubik", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.announcement-button:hover {
  translate: 0 -6px;
  transform: scale(1.015);
  box-shadow: 0 30px 54px rgba(39, 74, 58, 0.24);
}

.announcement-button:hover::before {
  opacity: 1;
  transform: translateX(340%) skewX(-18deg);
}

.announcement-button:hover::after {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.94);
  color: #184938;
}

.announcement-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px 30px;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Rubik", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.announcement-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 7px;
}

.announcement-copy strong {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.7rem, 2.55vw, 2.08rem);
  font-weight: 900;
  line-height: 1;
}

.announcement-copy span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

@keyframes announcement-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

.lemonmenu-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.lemonmenu-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1856 / 953;
  border: 3px solid var(--lemon);
  border-radius: 34px;
  background: #10141d;
  box-shadow: var(--shadow), 0 0 0 8px rgba(245, 213, 71, 0.08);
}

.lemonmenu-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 -70px 90px rgba(7, 12, 18, 0.18);
}

.lemonmenu-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.lemonmenu-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lemonmenu-point {
  --menu-accent: var(--lemon);
  position: relative;
  overflow: hidden;
  min-height: 195px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--menu-accent) 28%, transparent), transparent 8rem),
    linear-gradient(145deg, #fffdf2, #edf8e8);
  box-shadow: var(--shadow);
}

.lemonmenu-point:nth-child(2) {
  --menu-accent: #5bc4d1;
}

.lemonmenu-point:nth-child(3) {
  --menu-accent: #86d96c;
}

.lemonmenu-point span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 16px 24px;
  background: color-mix(in srgb, var(--menu-accent) 24%, #ffffff);
  color: #284733;
  font-family: "Rubik", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.lemonmenu-point h3 {
  margin: 0 0 8px;
  color: #2d3c38;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  font-weight: 900;
  line-height: 1.05;
}

.lemonmenu-point p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.36;
}

.lemonshop-showcase {
  display: grid;
  gap: 24px;
}

.lemontrading-showcase {
  display: grid;
  gap: 24px;
}

.lemongateway-showcase {
  display: grid;
  gap: 24px;
}

.lemonshop-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lemonshop-summary-card {
  --shop-accent: var(--lemon);
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--shop-accent) 28%, transparent), transparent 8rem),
    linear-gradient(145deg, #fffdf2, #edf8e8);
  box-shadow: var(--shadow);
}

.lemonshop-summary-card:nth-child(2) {
  --shop-accent: #ffcf4c;
}

.lemonshop-summary-card:nth-child(3) {
  --shop-accent: #5bc4d1;
}

.lemonshop-summary-card:nth-child(4) {
  --shop-accent: #86d96c;
}

.lemontrading-summary-card {
  --shop-accent: #39e785;
}

.lemontrading-summary-card:nth-child(2) {
  --shop-accent: #f6d64a;
}

.lemontrading-summary-card:nth-child(3) {
  --shop-accent: #5bc4d1;
}

.lemontrading-summary-card:nth-child(4) {
  --shop-accent: #b88cff;
}

.lemongateway-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lemongateway-summary-card {
  --shop-accent: #63e89c;
}

.lemongateway-summary-card:nth-child(2) {
  --shop-accent: #5bc4d1;
}

.lemongateway-summary-card:nth-child(3) {
  --shop-accent: #f6d64a;
}

.lemonshop-summary-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 16px 24px;
  background: color-mix(in srgb, var(--shop-accent) 24%, #ffffff);
  color: #284733;
  font-family: "Rubik", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.lemonshop-summary-card h3 {
  margin: 0 0 8px;
  color: #2d3c38;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.05;
}

.lemonshop-summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.36;
}

.lemonshop-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  isolation: isolate;
}

.lemonshop-shot-card {
  position: relative;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--lemon) 82%, #ffffff);
  border-radius: 34px;
  background: #111419;
  box-shadow: var(--shadow), 0 0 0 8px rgba(245, 213, 71, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.lemonshop-shot-wide {
  grid-column: 1 / -1;
}

.lemonshop-shot-heading {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 36px);
  pointer-events: none;
}

.lemonshop-shot-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--lemon);
  color: #26323f;
  font-family: "Rubik", sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.lemonshop-shot-heading p {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(245, 213, 71, 0.44);
  border-radius: 999px;
  background: rgba(17, 20, 25, 0.78);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.lemonshop-shot-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.32s ease;
}

.lemontrading-gallery .lemonshop-shot-card {
  border-color: color-mix(in srgb, #39e785 56%, var(--lemon));
}

.lemontrading-gallery .lemonshop-shot-heading span {
  background: linear-gradient(135deg, var(--lemon), #39e785);
  color: #18261e;
}

.lemongateway-gallery .lemonshop-shot-card {
  border-color: color-mix(in srgb, #63e89c 58%, var(--lemon));
}

.lemongateway-gallery .lemonshop-shot-heading span {
  background: linear-gradient(135deg, #63e89c, var(--lemon));
  color: #18261e;
}

@media (hover: hover) and (pointer: fine) {
  .lemonshop-shot-card:not(.lemonshop-shot-wide) {
    cursor: zoom-in;
    transform-origin: center center;
  }

  .lemonshop-shot-card:not(.lemonshop-shot-wide):hover {
    z-index: 5;
    transform: scale(1.28);
    box-shadow: 0 34px 78px rgba(33, 41, 38, 0.24), 0 0 0 8px rgba(245, 213, 71, 0.12);
  }

  .lemonshop-shot-card:not(.lemonshop-shot-wide):hover img {
    filter: brightness(1.04) contrast(1.04);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1021px) {
  .lemonshop-shot-card:nth-child(3) {
    transform-origin: left center;
  }

  .lemonshop-shot-card:nth-child(4) {
    transform-origin: right center;
  }

  .lemonshop-shot-card:not(.lemonshop-shot-wide):hover {
    transform: scale(1.55);
  }
}

.lemonitems-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.lemonitem-card {
  --item-accent: var(--leaf);
  --item-accent-deep: var(--leaf-deep);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(250px, 1fr);
  min-height: 470px;
  padding: 32px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--item-accent) 24%, transparent), transparent 15rem),
    linear-gradient(145deg, #fffdf2, #edf8e8);
  box-shadow: var(--shadow);
}

.lemonitem-card::before {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -80px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 52px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), color-mix(in srgb, var(--item-accent) 42%, transparent));
  transform: rotate(18deg);
}

.lemonitem-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 22px auto;
  z-index: -1;
  width: 62%;
  height: 54%;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  transform: rotate(-4deg);
}

.lemonitem-anti {
  --item-accent: #b45de8;
  --item-accent-deep: #6c3395;
}

.lemonitem-flora {
  --item-accent: #f1d747;
  --item-accent-deep: #288d58;
}

.lemonitem-soul {
  --item-accent: #7b4de2;
  --item-accent-deep: #37246f;
}

.lemonitem-smeltery {
  --item-accent: #e98958;
  --item-accent-deep: #8c442e;
}

.lemonitem-ring {
  --item-accent: #42c7d0;
  --item-accent-deep: #185f7d;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.38fr);
  grid-template-rows: auto;
  align-items: center;
  min-height: 280px;
}

.lemonitem-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(100%, 470px);
  max-width: 470px;
}

.lemonitem-copy .badge {
  background: color-mix(in srgb, var(--item-accent) 18%, #ffffff);
  color: var(--item-accent-deep);
}

.lemonitem-copy h3 {
  margin: 0 0 12px;
  color: #2d3c38;
  font-family: "Rubik", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.02;
}

.lemonitem-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.38;
}

.lemonitem-media {
  position: relative;
  min-height: 260px;
  margin-top: 16px;
}

.lemonitem-object,
.lemonitem-gui,
.lemonitem-ring-stage img {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.lemonitem-object {
  left: 0;
  bottom: 4px;
  z-index: 2;
  width: min(38%, 178px);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 22px 22px rgba(30, 44, 36, 0.22)) contrast(1.06) saturate(1.08);
  animation: lemonitem-pulse 3.2s ease-in-out infinite;
}

.lemonitem-gui {
  right: 0;
  bottom: 8px;
  z-index: 1;
  width: min(66%, 340px);
  max-height: 230px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 20px 26px rgba(30, 44, 36, 0.18));
  transform: rotate(-3deg);
}

.lemonitem-gui-wide {
  width: min(72%, 410px);
  max-height: 220px;
}

.lemonitem-ring-stage {
  position: relative;
  min-height: 190px;
}

.lemonitem-ring-stage span {
  position: absolute;
  inset: 18px 6px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--item-accent) 34%, #ffffff), #ffffff);
  box-shadow: inset 0 0 0 1px rgba(24, 95, 125, 0.08), 0 18px 38px rgba(38, 50, 63, 0.11);
}

.lemonitem-ring-stage img {
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 128px;
  height: 128px;
  image-rendering: pixelated;
  filter: drop-shadow(0 18px 18px rgba(15, 53, 70, 0.28));
  transform: translate(-50%, -50%);
  animation: lemonitem-pulse 3.2s ease-in-out infinite;
}

@keyframes lemonitem-pulse {
  0%, 100% { scale: 0.96; }
  50% { scale: 1.04; }
}

.matter-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.matter-card {
  --matter-accent: #f1d747;
  --matter-accent-deep: #7c7423;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(220px, auto) auto;
  min-height: 500px;
  padding: 30px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--matter-accent) 34%, transparent), transparent 15rem),
    linear-gradient(145deg, #fffdf2, #edf7ee);
  box-shadow: var(--shadow);
}

.matter-card::before {
  content: "";
  position: absolute;
  inset: 28px 24px auto;
  z-index: -1;
  height: 245px;
  border-radius: 34px 46px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--matter-accent) 38%, #ffffff), rgba(255, 255, 255, 0.7));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.matter-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -82px;
  z-index: -1;
  width: 210px;
  height: 210px;
  border-radius: 48px;
  background: color-mix(in srgb, var(--matter-accent) 26%, transparent);
  transform: rotate(16deg);
}

.matter-imp {
  --matter-accent: #e6dc4d;
  --matter-accent-deep: #68651f;
}

.matter-adv {
  --matter-accent: #9c5cff;
  --matter-accent-deep: #5c2ab4;
}

.matter-enh {
  --matter-accent: #4f7cff;
  --matter-accent-deep: #274aa6;
}

.matter-tier {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px 28px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--matter-accent-deep);
  font-family: "Rubik", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.matter-card img {
  align-self: center;
  justify-self: center;
  z-index: 1;
  width: min(76%, 245px);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 24px 24px rgba(30, 44, 36, 0.24)) contrast(1.06) saturate(1.08);
  animation: lemonitem-pulse 3.2s ease-in-out infinite;
}

.matter-card div {
  position: relative;
  z-index: 2;
}

.matter-card .badge {
  background: color-mix(in srgb, var(--matter-accent) 18%, #ffffff);
  color: var(--matter-accent-deep);
}

.matter-card h3 {
  margin: 0 0 12px;
  color: #2d3c38;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  font-weight: 900;
  line-height: 1.03;
}

.matter-card p:not(.badge) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.36;
}

.advmechanism-showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

.advmechanism-card {
  --adv-accent: #29c2cc;
  --adv-accent-deep: #11616a;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(285px, auto) auto;
  min-height: 520px;
  padding: 34px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--adv-accent) 28%, transparent), transparent 15rem),
    linear-gradient(145deg, #fffdf2, #ecf7f0);
  box-shadow: var(--shadow);
}

.advmechanism-enrichment,
.advmechanism-compressing,
.advmechanism-compacter {
  grid-column: span 2;
}

.advmechanism-card::before {
  content: "";
  position: absolute;
  inset: 32px 30px auto;
  z-index: -1;
  height: 285px;
  border-radius: 36px 48px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(145deg, color-mix(in srgb, var(--adv-accent) 32%, #ffffff), rgba(255, 255, 255, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64);
}

.advmechanism-card::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -88px;
  z-index: -1;
  width: 230px;
  height: 230px;
  border-radius: 50px;
  background:
    linear-gradient(135deg, transparent 0 42%, color-mix(in srgb, var(--adv-accent) 24%, transparent) 43% 57%, transparent 58%),
    color-mix(in srgb, var(--adv-accent) 16%, transparent);
  transform: rotate(18deg);
}

.advmechanism-enrichment {
  --adv-accent: #23c6d0;
  --adv-accent-deep: #0f6570;
}

.advmechanism-compressing {
  --adv-accent: #4f7f8f;
  --adv-accent-deep: #273f4e;
}

.advmechanism-compacter {
  --adv-accent: #a58bd7;
  --adv-accent-deep: #5b4489;
}

.advmechanism-syn {
  --adv-accent: #89d86e;
  --adv-accent-deep: #2f7f3c;
  grid-column: span 2;
  grid-template-rows: minmax(215px, auto) auto;
  min-height: 430px;
  padding: 28px;
}

.advmechanism-syn::before {
  inset: 26px 24px auto;
  height: 215px;
  border-radius: 30px 40px;
}

.advmechanism-syn::after {
  right: -64px;
  bottom: -70px;
  width: 180px;
  height: 180px;
}

.advmechanism-syn-ec {
  --adv-accent: #ff72df;
  --adv-accent-deep: #9c247c;
}

.advmechanism-syn-ore {
  --adv-accent: #83d35e;
  --adv-accent-deep: #356f2a;
}

.advmechanism-syn-loon {
  --adv-accent: #c1a052;
  --adv-accent-deep: #6f5620;
}

.advmechanism-tier {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 78px;
  height: 44px;
  padding: 0 14px;
  border-radius: 16px 24px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--adv-accent-deep);
  font-family: "Rubik", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.advmechanism-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.advmechanism-visual::before,
.advmechanism-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: color-mix(in srgb, var(--adv-accent) 24%, transparent);
}

.advmechanism-visual::before {
  width: 156px;
  height: 156px;
  transform: translate(-74px, -18px);
}

.advmechanism-visual::after {
  width: 92px;
  height: 92px;
  transform: translate(108px, 72px);
}

.advmechanism-visual img {
  width: min(70%, 230px);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 26px 24px rgba(30, 44, 36, 0.25)) contrast(1.05) saturate(1.08);
  animation: lemonitem-pulse 3.2s ease-in-out infinite;
}

.advmechanism-compacter .advmechanism-visual img {
  width: min(72%, 238px);
}

.advmechanism-syn .advmechanism-visual img {
  width: min(68%, 190px);
}

.advmechanism-copy {
  position: relative;
  z-index: 2;
}

.advmechanism-copy .badge {
  background: color-mix(in srgb, var(--adv-accent) 18%, #ffffff);
  color: var(--adv-accent-deep);
}

.advmechanism-copy h3 {
  margin: 0 0 12px;
  color: #2d3c38;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.5rem, 2.35vw, 2.12rem);
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.advmechanism-syn .advmechanism-copy h3 {
  font-size: clamp(1.36rem, 2vw, 1.8rem);
  overflow-wrap: break-word;
}

.advmechanism-copy p:not(.badge) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.36;
}

.tech-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tech-card {
  --tech-accent: var(--lemon);
  --tech-accent-deep: var(--leaf-deep);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 210px;
  padding: 26px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 24%, color-mix(in srgb, var(--tech-accent) 30%, transparent), transparent 11rem),
    linear-gradient(145deg, #fffdf2, #edf8e8);
  box-shadow: var(--shadow);
}

.tech-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -52px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 34px;
  background: color-mix(in srgb, var(--tech-accent) 22%, transparent);
  transform: rotate(15deg);
}

.tech-nether {
  --tech-accent: #b45de8;
  --tech-accent-deep: #6c3395;
}

.tech-winter {
  --tech-accent: #62c8ff;
  --tech-accent-deep: #176b9a;
}

.tech-desert {
  --tech-accent: #efc65b;
  --tech-accent-deep: #8c6a1f;
}

.tech-plains {
  --tech-accent: #7bd86d;
  --tech-accent-deep: #2e8f3b;
}

.tech-jungle {
  --tech-accent: #32b66d;
  --tech-accent-deep: #166b3d;
}

.tech-ignore {
  --tech-accent: #ffb448;
  --tech-accent-deep: #955b14;
}

.minecraft-texture {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  padding: 12px;
  border-radius: 24px 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88), transparent 42%),
    color-mix(in srgb, var(--tech-accent) 18%, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68), 0 16px 26px rgba(30, 44, 36, 0.13);
  image-rendering: pixelated;
}

.tech-card .badge {
  margin-bottom: 12px;
  background: color-mix(in srgb, var(--tech-accent) 18%, #ffffff);
  color: var(--tech-accent-deep);
}

.tech-card > div {
  min-width: 0;
}

.tech-card h3 {
  margin: 0 0 9px;
  color: #2d3c38;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.34rem, 1.78vw, 1.68rem);
  font-weight: 900;
  line-height: 1.05;
}

.tech-ignore h3 {
  font-size: clamp(1.2rem, 1.55vw, 1.48rem);
}

.tech-card p:not(.badge) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.32;
}

.wide-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  margin-top: 84px;
  padding: 38px;
  border-radius: 50px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.season-panel {
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 213, 71, 0.28), transparent 20rem),
    linear-gradient(135deg, #fffdf2, #effae6);
}

.panel-copy {
  align-self: center;
}

.panel-kicker,
.final-kicker {
  margin: 0 0 10px;
  color: var(--leaf-deep);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-copy h2,
.final-box h2 {
  margin: 0 0 18px;
  background: linear-gradient(155deg, var(--coral), var(--lemon-strong), var(--leaf));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Rubik", sans-serif;
  font-size: clamp(3rem, 7vw, 6.3rem);
  font-weight: 900;
  line-height: 1;
}

.panel-copy p:not(.panel-kicker),
.final-box p:not(.final-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.28rem;
  font-weight: 750;
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 90px;
  padding: 18px;
  border: 1px solid rgba(38, 50, 63, 0.07);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(49, 75, 55, 0.08);
}

.timeline-item span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 18px;
  background: #edf6e4;
  color: var(--leaf-deep);
  font-family: "Rubik", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.timeline-item.active span {
  background: var(--lemon);
  color: #284733;
}

.timeline-item p {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
}

.prepare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.prepare-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 34px 34px 220px;
  border-radius: 50px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: #edf6e4;
  color: var(--leaf-deep);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-light {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.prepare-card h3 {
  color: #32413b;
}

.prepare-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
  font-weight: 750;
  line-height: 1.42;
}

.pixel-scene {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 175px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 46%),
    linear-gradient(135deg, #ffde5f, #5cc66f);
  box-shadow: inset 0 -18px 36px rgba(37, 80, 50, 0.15);
}

.pixel-scene span {
  position: absolute;
  display: block;
  image-rendering: pixelated;
  filter: drop-shadow(0 12px 12px rgba(33, 55, 36, 0.24));
  animation: float-block 3.2s infinite ease-in-out;
}

.client-scene span:nth-child(1) {
  left: 12%;
  bottom: 24px;
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7dd875 0 48%, #3b9e5f 49% 100%);
}

.client-scene span:nth-child(2) {
  left: 39%;
  bottom: 52px;
  width: 118px;
  height: 96px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe46b 0 47%, #eaa323 48% 100%);
  animation-delay: 0.25s;
}

.client-scene span:nth-child(3) {
  right: 12%;
  bottom: 22px;
  width: 92px;
  height: 116px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff8d6e 0 46%, #d94452 47% 100%);
  animation-delay: 0.5s;
}

.team-scene span:nth-child(1) {
  left: 13%;
  bottom: 26px;
  width: 78px;
  height: 118px;
  border-radius: 20px 20px 14px 14px;
  background: linear-gradient(180deg, #2e4551 0 32%, #ffe46b 33% 58%, #5cc66f 59% 100%);
}

.team-scene span:nth-child(2) {
  left: 43%;
  bottom: 44px;
  width: 88px;
  height: 130px;
  border-radius: 22px 22px 14px 14px;
  background: linear-gradient(180deg, #283d48 0 30%, #ff8d6e 31% 58%, #3db8a4 59% 100%);
  animation-delay: 0.24s;
}

.team-scene span:nth-child(3) {
  right: 13%;
  bottom: 22px;
  width: 78px;
  height: 116px;
  border-radius: 20px 20px 14px 14px;
  background: linear-gradient(180deg, #2e4551 0 32%, #fff5a2 33% 58%, #f1a51d 59% 100%);
  animation-delay: 0.48s;
}

@keyframes float-block {
  0%, 100% { transform: translateY(0) scale(0.96); }
  50% { transform: translateY(-12px) scale(1.02); }
}

.server-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  margin-top: 86px;
}

.server-card {
  min-height: 100%;
  padding: 38px;
  border-radius: 50px;
  background: linear-gradient(145deg, #254237, #1c695b);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.server-card h2 {
  margin: 8px 0 18px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.server-card p:not(.badge) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.3rem;
  font-weight: 750;
  line-height: 1.45;
}

.server-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.server-mini {
  min-height: 210px;
  padding: 26px;
}

.server-mini h3 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.server-mini p {
  font-size: 1.1rem;
}

.final-section {
  margin-top: 96px;
  margin-bottom: 22px;
}

.final-box {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 58px;
  border-radius: 50px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.56), transparent 16rem),
    linear-gradient(145deg, #fffdf2, #e5f8d9 62%, #d5f5ed);
  box-shadow: var(--shadow);
}

.final-box::after {
  content: none;
}

@keyframes lemon-breathe {
  0%, 100% { transform: rotate(-12deg) scale(0.96); }
  50% { transform: rotate(-7deg) scale(1.03); }
}

.final-lemon-icon {
  position: absolute;
  right: -48px;
  bottom: -72px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 18px);
  width: min(34vw, 350px);
  aspect-ratio: 1;
  border-radius: 48% 52% 47% 53%;
  background: linear-gradient(145deg, #fff06a 0%, #ffd230 58%, #f4b425 100%);
  box-shadow: 0 24px 55px rgba(159, 123, 24, 0.18);
  transform: rotate(7deg);
  animation: final-matter-wobble 3.1s ease-in-out infinite;
}

.final-lemon-icon::before {
  content: none;
}

.final-lemon-icon::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 10%;
  width: 26%;
  height: 18%;
  border-radius: 76% 24% 70% 28%;
  background: #62bf6e;
  transform: rotate(-34deg);
}

.final-eye {
  position: relative;
  z-index: 1;
  width: clamp(36px, 5.8vw, 62px);
  height: clamp(45px, 7vw, 78px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -3px 0 rgba(80, 62, 18, 0.08);
}

.final-eye:nth-of-type(5) {
  width: clamp(30px, 5vw, 54px);
  height: clamp(39px, 6.1vw, 68px);
  margin-top: -4%;
}

.final-eye::after {
  content: "";
  position: absolute;
  left: 34%;
  top: 33%;
  width: 36%;
  height: 40%;
  border-radius: 999px;
  background: #2a2a2f;
  animation: final-matter-look 3.1s ease-in-out infinite;
}

.final-heart {
  position: absolute;
  left: 60%;
  top: 40%;
  z-index: 2;
  width: clamp(40px, 6.8vw, 82px);
  height: clamp(40px, 6.8vw, 82px);
  background: #ff5d8f;
  clip-path: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'%3E%3Cpath fill='black' d='M50 83C24 59 7 43 7 25C7 10 18 1 32 1C40 1 47 5 50 12C53 5 60 1 68 1C82 1 93 10 93 25C93 43 76 59 50 83Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'%3E%3Cpath fill='black' d='M50 83C24 59 7 43 7 25C7 10 18 1 32 1C40 1 47 5 50 12C53 5 60 1 68 1C82 1 93 10 93 25C93 43 76 59 50 83Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 8px 10px rgba(224, 75, 125, 0.22));
  transform: scale(0.2);
  opacity: 0;
  animation: final-heart-float 3.6s ease-in-out infinite;
}

.final-heart-two {
  left: 66%;
  top: 52%;
  width: clamp(34px, 5.8vw, 70px);
  height: clamp(34px, 5.8vw, 70px);
  background: #ff7aab;
  animation-delay: 0.52s;
}

.final-heart-three {
  left: 55%;
  top: 55%;
  width: clamp(36px, 6.2vw, 74px);
  height: clamp(36px, 6.2vw, 74px);
  background: #ff4f7f;
  animation-delay: 1.04s;
}

@keyframes final-matter-wobble {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  45% { transform: rotate(2deg) translateY(-2px); }
  70% { transform: rotate(10deg) translateY(1px); }
}

@keyframes final-matter-look {
  0%, 18%, 100% { transform: translate(0, 0); }
  35%, 52% { transform: translate(16%, -12%); }
  74%, 88% { transform: translate(-12%, 8%); }
}

@keyframes final-heart-float {
  0%, 18% { opacity: 0; transform: translate(0, 0) scale(0.16); }
  30% { opacity: 1; transform: translate(-24px, -28px) scale(0.92); }
  58% { opacity: 0.95; transform: translate(-92px, -98px) scale(1.18); }
  82%, 100% { opacity: 0; transform: translate(-148px, -158px) scale(0.86); }
}

.final-box h2,
.final-box p,
.final-actions,
.final-kicker {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials .hero-social {
  min-width: 58px;
  min-height: 46px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--social-accent);
  color: #ffffff;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--social-accent) 34%, rgba(38, 50, 63, 0.16));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-socials .hero-social::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 62%);
  opacity: 1;
}

.footer-socials .hero-social span {
  text-shadow: none;
}

.footer-socials .hero-social:hover {
  background: color-mix(in srgb, var(--social-accent) 88%, #ffffff);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--social-accent) 44%, rgba(38, 50, 63, 0.18));
}

.primary-action,
.secondary-action {
  min-width: 150px;
  padding: 0 22px;
  border-radius: 16px 24px;
}

.primary-action {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(38, 50, 63, 0.2);
}

.secondary-action {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(38, 50, 63, 0.1);
}

@media (max-width: 1020px) {
  .header-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 10px 10px 11px;
    font-size: 0.92rem;
  }

  .feature-grid,
  .wide-panel,
  .prepare-grid,
  .lemonmenu-showcase,
  .lemontrading-showcase,
  .lemongateway-showcase,
  .lemonitems-showcase,
  .matter-showcase,
  .advmechanism-showcase,
  .tech-showcase,
  .server-band {
    grid-template-columns: 1fr;
  }

  .advmechanism-card {
    grid-column: 1 / -1;
  }

  .lemonshop-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wide-panel {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .site-header {
    --header-safe-top: 14px;
    width: calc(100% - 20px);
  }

  .header-nav {
    grid-template-columns: auto auto;
    min-height: 118px;
    gap: 8px 12px;
    padding: 8px;
  }

  .brand {
    min-height: 54px;
    padding: 0 4px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .play-button {
    justify-self: end;
    min-height: 52px;
    padding: 0 20px;
    font-size: 0.92rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
    min-height: 42px;
    padding: 3px;
    border-radius: 14px;
  }

  .nav-links a {
    border-radius: 11px;
    padding: 8px 9px 9px;
    font-size: 0.82rem;
  }

  .nav-links a::after {
    left: 9px;
    right: 9px;
    bottom: 5px;
    height: 2px;
  }

  .hero-section {
    padding: 10px;
  }

  .hero-inner {
    min-height: calc(100vh - 20px);
    border-radius: 34px;
    background-position: 0 0, center calc(100% + 24px), 0 0;
    background-size: auto, auto 70%, auto;
  }

  .hero-content {
    width: min(620px, calc(100% - 24px));
    margin-top: 112px;
  }

  .hero-girl {
    left: 1%;
    width: 42%;
  }

  .hero-boy {
    left: 66%;
    right: auto;
    width: 39%;
  }

  .hero-umbrella {
    left: 53%;
    right: auto;
    bottom: 16%;
    width: 68%;
    opacity: 0.86;
  }

  .float-icecream {
    top: 18%;
    left: 9%;
    width: 23%;
  }

  .float-cup {
    top: 16%;
    right: 5%;
    width: 23%;
  }

  .hero-content h1 {
    font-size: clamp(2.85rem, 13.2vw, 3.45rem);
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 312px);
  }

  .count-card {
    min-height: 104px;
    border-radius: 22px;
  }

  .hero-socials {
    gap: 8px;
    margin-top: 12px;
  }

  .hero-social {
    min-width: 56px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .scroll-cue {
    margin-top: 24px;
  }

  .section-heading {
    margin-top: 74px;
  }

  .feature-card,
  .prepare-card,
  .server-card,
  .lemonitem-card,
  .matter-card,
  .tech-card,
  .server-mini,
  .final-box {
    border-radius: 34px;
  }

  .feature-card {
    min-height: 270px;
    padding: 24px;
  }

  .announcement-button {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "number spacer arrow"
      "copy copy copy";
    min-height: 136px;
    gap: 12px;
    padding: 18px;
    border-radius: 26px 34px;
  }

  .announcement-number {
    grid-area: number;
    width: 48px;
    height: 48px;
    border-radius: 16px 23px;
    font-size: 1.08rem;
  }

  .announcement-button::after {
    grid-area: arrow;
    justify-self: end;
    width: 42px;
    height: 42px;
    border-radius: 14px 20px;
    font-size: 1.2rem;
  }

  .announcement-copy {
    grid-area: copy;
    gap: 6px;
  }

  .announcement-copy strong {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .announcement-copy span {
    font-size: 0.72rem;
  }

  .lemonmenu-preview {
    border-width: 2px;
    border-radius: 28px;
  }

  .lemonmenu-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lemonmenu-point {
    min-height: 0;
    padding: 22px;
    border-radius: 28px;
  }

  .lemonmenu-point h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .lemonshop-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lemonshop-summary-card {
    min-height: 0;
    padding: 22px;
    border-radius: 28px;
  }

  .lemonshop-summary-card h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .lemonshop-gallery {
    gap: 18px;
  }

  .lemonshop-shot-card {
    border-width: 2px;
    border-radius: 28px;
  }

  .lemonshop-shot-heading {
    top: 12px;
    left: 12px;
    gap: 7px;
    max-width: calc(100% - 24px);
  }

  .lemonshop-shot-heading span,
  .lemonshop-shot-heading p {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .wide-panel,
  .server-band,
  .prepare-grid,
  .lemonmenu-showcase,
  .lemonshop-showcase,
  .lemontrading-showcase,
  .lemongateway-showcase,
  .lemonitems-showcase,
  .matter-showcase,
  .advmechanism-showcase,
  .tech-showcase,
  .feature-grid {
    gap: 18px;
  }

  .advmechanism-card {
    grid-template-rows: minmax(235px, auto) auto;
    min-height: 455px;
    padding: 24px;
  }

  .advmechanism-card::before {
    inset: 22px 20px auto;
    height: 235px;
    border-radius: 28px 38px;
  }

  .advmechanism-tier {
    top: 20px;
    left: 20px;
    min-width: 68px;
    height: 40px;
    font-size: 0.78rem;
  }

  .advmechanism-visual img {
    width: min(68%, 220px);
  }

  .advmechanism-copy h3 {
    font-size: clamp(1.6rem, 7vw, 2.35rem);
  }

  .advmechanism-syn {
    grid-template-rows: minmax(205px, auto) auto;
    min-height: 420px;
  }

  .advmechanism-syn::before {
    height: 205px;
  }

  .advmechanism-syn .advmechanism-visual img {
    width: min(64%, 190px);
  }

  .advmechanism-syn .advmechanism-copy h3 {
    font-size: clamp(1.45rem, 6.3vw, 2rem);
  }

  .advmechanism-copy p:not(.badge) {
    font-size: 1rem;
  }

  .tech-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    min-height: 180px;
    padding: 20px;
  }

  .minecraft-texture {
    width: 86px;
    height: 86px;
    padding: 10px;
    border-radius: 20px 28px;
  }

  .tech-card h3 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .tech-ignore h3 {
    font-size: clamp(1.12rem, 4.75vw, 1.36rem);
  }

  .tech-card p:not(.badge) {
    font-size: 0.95rem;
  }

  .matter-card {
    grid-template-rows: minmax(190px, auto) auto;
    min-height: 430px;
    padding: 24px;
  }

  .matter-card::before {
    inset: 22px 20px auto;
    height: 220px;
    border-radius: 28px 36px;
  }

  .matter-tier {
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.12rem;
  }

  .matter-card img {
    width: min(70%, 220px);
  }

  .matter-card h3 {
    font-size: clamp(1.55rem, 6.8vw, 2.2rem);
  }

  .matter-card p:not(.badge) {
    font-size: 1rem;
  }

  .lemonitem-card {
    grid-template-rows: auto minmax(220px, 1fr);
    min-height: 420px;
    padding: 26px 24px;
  }

  .lemonitem-card::after {
    inset: auto 18px 20px auto;
    width: 76%;
    height: 52%;
    border-radius: 30px;
  }

  .lemonitem-copy h3 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .lemonitem-copy p {
    font-size: 1.06rem;
  }

  .lemonitem-media {
    min-height: 235px;
  }

  .lemonitem-object {
    width: min(42%, 150px);
  }

  .lemonitem-gui {
    width: min(70%, 285px);
    max-height: 190px;
  }

  .lemonitem-gui-wide {
    width: min(78%, 310px);
    max-height: 176px;
  }

  .lemonitem-ring {
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .lemonitem-ring-stage {
    min-height: 205px;
    margin-top: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-item span {
    width: 96px;
  }

  .prepare-card {
    min-height: 440px;
    padding: 26px 24px 205px;
  }

  .server-mini-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .final-section {
    margin-top: 72px;
  }

  .final-box {
    min-height: 540px;
    padding: 34px 26px;
  }

  .final-lemon-icon {
    right: -80px;
    bottom: -80px;
    width: 300px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .play-button {
    max-width: 166px;
    padding-left: 17px;
    padding-right: 17px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 7px 7px 8px;
    font-size: 0.76rem;
  }

  .countdown {
    gap: 10px;
  }

  .count-card {
    min-height: 96px;
    padding: 14px 8px;
  }
}

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