:root {
  --forest: #173628;
  --forest-soft: #224837;
  --leaf: #9fcb87;
  --leaf-deep: #7aaa63;
  --cream: #f7f1df;
  --cream-deep: #e7ddc5;
  --text-dark: #173628;
  --text-light: rgba(247, 241, 223, 0.9);
  --surface: rgba(247, 241, 223, 0.78);
  --surface-strong: rgba(255, 249, 236, 0.95);
  --border-soft: rgba(23, 54, 40, 0.12);
  --shadow-large: 0 24px 70px rgba(16, 41, 30, 0.18);
  --shadow-card: 0 16px 40px rgba(16, 41, 30, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --section-offset: 108px;
  --page-scroll-rail-top: 108px;
  --cursor-pixel: 4px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: auto;
}

::selection {
  color: var(--forest);
  background: rgba(159, 203, 135, 0.34);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  cursor: auto;
  user-select: none;
  -webkit-user-select: none;
  background:
    radial-gradient(circle at top left, rgba(159, 203, 135, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 54, 40, 0.2), transparent 24%),
    linear-gradient(180deg, #f6efdd 0%, #efe7cf 100%);
}

input,
textarea,
select,
option,
[contenteditable="true"],
[contenteditable="plaintext-only"] {
  user-select: text;
  -webkit-user-select: text;
}

img,
a,
button {
  -webkit-user-drag: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 54, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 54, 40, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 32px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 24px;
  background: rgba(247, 241, 223, 0.72);
  border: 1px solid rgba(23, 54, 40, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(23, 54, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--forest), var(--leaf-deep));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 24px rgba(23, 54, 40, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong,
.nav-links a,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text small {
  opacity: 0.72;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  min-height: 52px;
  min-width: min(100%, 290px);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(23, 54, 40, 0.12);
  background: rgba(255, 252, 244, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.auth-status,
.auth-profile {
  width: 100%;
}

.auth-status {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(23, 54, 40, 0.78);
  background: rgba(247, 241, 223, 0.88);
}

.auth-google-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100%, 236px);
  min-height: 44px;
  position: relative;
  margin-left: auto;
  border-radius: 999px;
}

.auth-google-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 8px 14px 8px 12px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.98), rgba(247, 241, 223, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(23, 54, 40, 0.12),
    0 10px 18px rgba(23, 54, 40, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  pointer-events: none;
}

.auth-google-button:hover .auth-google-custom,
.auth-google-button:focus-within .auth-google-custom {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(23, 54, 40, 0.16),
    0 14px 24px rgba(23, 54, 40, 0.18);
}

.auth-google-button:active .auth-google-custom {
  transform: translateY(0);
}

.auth-google-custom__badge {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(255, 252, 245, 0.96);
  box-shadow:
    inset 0 0 0 4px var(--forest),
    0 0 0 4px rgba(247, 241, 223, 0.46);
}

.auth-google-custom__pixel {
  position: absolute;
  width: 6px;
  height: 6px;
}

.auth-google-custom__pixel--blue {
  top: 4px;
  left: 4px;
  background: #4285f4;
}

.auth-google-custom__pixel--red {
  top: 4px;
  right: 4px;
  background: #ea4335;
}

.auth-google-custom__pixel--yellow {
  bottom: 4px;
  left: 4px;
  background: #fbbc05;
}

.auth-google-custom__pixel--green {
  right: 4px;
  bottom: 4px;
  background: #34a853;
}

.auth-google-custom__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  gap: 1px;
}

.auth-google-custom__copy strong,
.auth-google-custom__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-google-custom__copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: var(--forest);
}

.auth-google-custom__copy small {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(23, 54, 40, 0.64);
}

.auth-google-gis-mount {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 44px;
  opacity: 0.015;
  overflow: hidden;
  pointer-events: auto;
  z-index: 2;
  border-radius: 999px;
}

.auth-google-gis-mount > div,
.auth-google-gis-mount iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  cursor: none !important;
}

.auth-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 6px;
  border-radius: 999px;
  background: rgba(247, 241, 223, 0.9);
}

.auth-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(159, 203, 135, 0.22);
  border: 1px solid rgba(23, 54, 40, 0.12);
}

.auth-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.auth-copy strong,
.auth-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-copy strong {
  font-size: 0.92rem;
}

.auth-copy small {
  font-size: 0.76rem;
  color: rgba(23, 54, 40, 0.7);
}

.auth-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--cream);
  background: linear-gradient(135deg, var(--forest-soft), var(--forest));
  box-shadow: 0 10px 18px rgba(23, 54, 40, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.auth-logout:hover,
.auth-logout:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(23, 54, 40, 0.22);
}

.auth-shell[data-auth-state="setup"] .auth-status,
.auth-shell[data-auth-state="error"] .auth-status {
  border: 1px solid rgba(23, 54, 40, 0.08);
}

.auth-shell[data-auth-state="ready"] .auth-status,
.auth-shell[data-auth-state="ready"] .auth-profile,
.auth-shell[data-auth-state="signed-in"] .auth-status,
.auth-shell[data-auth-state="signed-in"] .auth-google-button {
  display: none !important;
}

.auth-shell[data-auth-state="loading"] .auth-status {
  color: rgba(23, 54, 40, 0.72);
  background:
    linear-gradient(90deg, rgba(247, 241, 223, 0.92), rgba(231, 221, 197, 0.9), rgba(247, 241, 223, 0.92));
  background-size: 200% 100%;
  animation: authStatusFlow 1.2s linear infinite;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  background: rgba(159, 203, 135, 0.28);
  transform: translateY(-2px);
  border-color: rgba(23, 54, 40, 0.22);
}

.nav-links a.active {
  color: #1d462b;
}

.nav-links a:active {
  transform: translateY(0);
}

.custom-cursor {
  --cursor-x: 0px;
  --cursor-y: 0px;
  --cursor-whatsapp-angle: 0deg;
  --cursor-whatsapp-tilt: 0deg;
  --cursor-whatsapp-reach: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  display: none;
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%);
  transition: opacity 160ms ease, filter 180ms ease;
  filter: drop-shadow(0 10px 18px rgba(16, 41, 30, 0.18));
}

.custom-cursor__shadow {
  position: absolute;
  left: 19px;
  top: 50px;
  width: 28px;
  height: 8px;
  background: rgba(23, 54, 40, 0.2);
  border-radius: 999px;
  filter: blur(4px);
  transition: transform 160ms ease, opacity 160ms ease;
}

.custom-cursor__sprite,
.custom-cursor__block {
  position: absolute;
  transition: transform 160ms steps(3, end), filter 160ms ease, opacity 140ms ease;
}

.custom-cursor__sprite {
  left: 12px;
  top: 8px;
  width: 44px;
  height: 48px;
  transform-origin: 50% 86%;
}

.custom-cursor__head,
.custom-cursor__body,
.custom-cursor__leaf,
.custom-cursor__eye,
.custom-cursor__cheek,
.custom-cursor__feet,
.custom-cursor__spark,
.custom-cursor__caret,
.custom-cursor__arm,
.custom-cursor__arm-track,
.custom-cursor__arm-hand,
.custom-cursor__download,
.custom-cursor__download-tray,
.custom-cursor__download-arrow,
.custom-cursor__google,
.custom-cursor__google-frame,
.custom-cursor__google-pixel,
.custom-cursor__scrolly,
.custom-cursor__scrolly-up,
.custom-cursor__scrolly-bar,
.custom-cursor__scrolly-down,
.custom-cursor__block-shell,
.custom-cursor__block-core,
.custom-cursor__block-shine,
.custom-cursor__block-flash {
  position: absolute;
  border-radius: 0;
}

.custom-cursor__head {
  top: 6px;
  left: 10px;
  width: 24px;
  height: 20px;
  background: linear-gradient(180deg, #fffaf0, var(--cream));
  border: 4px solid var(--forest);
  box-shadow: inset 0 -4px 0 rgba(159, 203, 135, 0.4);
}

.custom-cursor__body {
  top: 30px;
  left: 14px;
  width: 16px;
  height: 10px;
  background: linear-gradient(180deg, #b6da9d, var(--leaf));
  border: 4px solid var(--forest);
  border-top: 0;
}

.custom-cursor__leaf {
  top: 0;
  left: 30px;
  width: 8px;
  height: 8px;
  background: var(--leaf-deep);
  box-shadow: 0 0 0 4px var(--forest);
  transform: rotate(-18deg);
  animation: cursorLeafWave 1.6s steps(2, end) infinite;
}

.custom-cursor__eye {
  top: 16px;
  width: 4px;
  height: 4px;
  background: var(--forest);
}

.custom-cursor__eye--left {
  left: 18px;
}

.custom-cursor__eye--right {
  left: 26px;
}

.custom-cursor__cheek {
  top: 20px;
  width: 4px;
  height: 4px;
  background: rgba(122, 170, 99, 0.75);
}

.custom-cursor__cheek--left {
  left: 14px;
}

.custom-cursor__cheek--right {
  left: 30px;
}

.custom-cursor__feet {
  top: 40px;
  left: 16px;
  width: 4px;
  height: 4px;
  background: var(--forest);
  box-shadow: 12px 0 0 var(--forest);
}

.custom-cursor__caret {
  top: 10px;
  left: 36px;
  width: 4px;
  height: 22px;
  background: rgba(23, 54, 40, 0.96);
  opacity: 0;
  box-shadow: 0 0 0 4px rgba(247, 241, 223, 0.72);
}

.custom-cursor__arm {
  top: 27px;
  left: 26px;
  width: calc(10px + var(--cursor-whatsapp-reach));
  height: 8px;
  opacity: 0;
  transform-origin: 4px 4px;
  transform: rotate(-14deg) scaleX(0.72);
  transition:
    width 160ms steps(4, end),
    transform 160ms steps(3, end),
    opacity 140ms ease;
}

.custom-cursor__arm-track {
  top: 2px;
  left: 0;
  width: calc(100% - 8px);
  height: 4px;
  background: var(--forest);
  box-shadow: 0 0 0 4px rgba(247, 241, 223, 0.55);
}

.custom-cursor__arm-hand {
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--leaf);
  box-shadow: 0 0 0 4px var(--forest);
}

.custom-cursor__download {
  top: 19px;
  left: 31px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform-origin: 28% 70%;
  transform: translate(8px, 8px) rotate(-18deg) scale(0.76);
  transition: transform 160ms steps(3, end), opacity 140ms ease;
}

.custom-cursor__download-tray {
  bottom: 0;
  left: 0;
  width: 16px;
  height: 4px;
  background: var(--cream);
  box-shadow:
    0 0 0 4px var(--forest),
    16px 0 0 0 var(--forest),
    20px 0 0 0 var(--cream),
    20px 4px 0 0 var(--forest);
}

.custom-cursor__download-arrow {
  top: 0;
  left: 6px;
  width: 6px;
  height: 10px;
  background: var(--leaf-deep);
  box-shadow: 0 0 0 4px var(--forest);
}

.custom-cursor__download-arrow::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 10px;
  width: 14px;
  height: 4px;
  background: var(--leaf-deep);
  box-shadow:
    0 0 0 4px var(--forest),
    4px 4px 0 0 var(--leaf-deep),
    4px 4px 0 4px var(--forest);
}

.custom-cursor__google {
  top: 16px;
  left: 30px;
  width: 22px;
  height: 22px;
  opacity: 0;
  transform-origin: 26% 72%;
  transform: translate(8px, 8px) rotate(-12deg) scale(0.76);
  transition: transform 160ms steps(3, end), opacity 140ms ease;
}

.custom-cursor__google-frame {
  inset: 0;
  background: rgba(247, 241, 223, 0.92);
  box-shadow:
    inset 0 0 0 4px var(--forest),
    0 0 0 4px rgba(247, 241, 223, 0.34);
}

.custom-cursor__google-pixel {
  width: 6px;
  height: 6px;
}

.custom-cursor__google-pixel--blue {
  left: 4px;
  top: 4px;
  background: #4285f4;
}

.custom-cursor__google-pixel--red {
  right: 4px;
  top: 4px;
  background: #ea4335;
}

.custom-cursor__google-pixel--yellow {
  left: 4px;
  bottom: 4px;
  background: #fbbc05;
}

.custom-cursor__google-pixel--green {
  right: 4px;
  bottom: 4px;
  background: #34a853;
}

.custom-cursor__scrolly {
  top: 11px;
  left: 31px;
  width: 18px;
  height: 30px;
  opacity: 0;
  transform-origin: 32% 80%;
  transform: translate(8px, 8px) rotate(-6deg) scale(0.74);
  transition: transform 160ms steps(3, end), opacity 140ms ease;
}

.custom-cursor__scrolly-up,
.custom-cursor__scrolly-down {
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--leaf-deep);
  box-shadow: 0 0 0 4px var(--forest);
}

.custom-cursor__scrolly-up {
  top: 0;
}

.custom-cursor__scrolly-up::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 4px;
  width: 16px;
  height: 4px;
  background: var(--leaf-deep);
  box-shadow: 0 0 0 4px var(--forest);
}

.custom-cursor__scrolly-bar {
  top: 10px;
  left: 7px;
  width: 4px;
  height: 10px;
  background: var(--cream);
  box-shadow: 0 0 0 4px var(--forest);
}

.custom-cursor__scrolly-down {
  bottom: 0;
}

.custom-cursor__scrolly-down::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 4px;
  width: 16px;
  height: 4px;
  background: var(--leaf-deep);
  box-shadow: 0 0 0 4px var(--forest);
}

.custom-cursor__spark {
  width: 4px;
  height: 4px;
  background: var(--leaf);
  opacity: 0.62;
}

.custom-cursor__spark--one {
  top: 6px;
  left: 2px;
  box-shadow: 4px 0 0 rgba(247, 241, 223, 0.95), 0 4px 0 rgba(247, 241, 223, 0.95);
}

.custom-cursor__spark--two {
  top: 10px;
  left: 38px;
  box-shadow: -4px 0 0 rgba(247, 241, 223, 0.95), 0 4px 0 rgba(247, 241, 223, 0.95);
}

.custom-cursor__block {
  left: 14px;
  top: 10px;
  width: 44px;
  height: 44px;
  transform-origin: 50% 72%;
  opacity: 0;
  transform: translateY(10px) scale(0.72);
}

.custom-cursor__block-shell {
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  background: linear-gradient(180deg, #fffaf0, var(--cream));
  border: 4px solid var(--forest);
  box-shadow: inset 0 -4px 0 rgba(159, 203, 135, 0.34);
}

.custom-cursor__block-core {
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: var(--forest-soft);
  box-shadow: 8px 0 0 var(--leaf);
}

.custom-cursor__block-shine {
  top: 4px;
  left: 28px;
  width: 4px;
  height: 4px;
  background: rgba(247, 241, 223, 0.96);
  box-shadow: -8px 4px 0 rgba(247, 241, 223, 0.72), 4px 8px 0 rgba(247, 241, 223, 0.52);
}

.custom-cursor__block-flash {
  inset: 0;
  border: 4px solid rgba(247, 241, 223, 0.74);
  opacity: 0;
  transform: scale(0.82);
}

.custom-cursor.cursor-hide {
  opacity: 0;
}

.custom-cursor[data-cursor-variant="mascot"] .custom-cursor__sprite {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-cursor[data-cursor-variant="mascot"] .custom-cursor__block {
  opacity: 0;
  transform: translateY(10px) scale(0.72);
}

.custom-cursor[data-cursor-variant="block"] .custom-cursor__sprite {
  opacity: 0;
  transform: translateY(8px) scale(0.72);
}

.custom-cursor[data-cursor-variant="block"] .custom-cursor__block {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-cursor[data-cursor-mode="pointer"] .custom-cursor__sprite {
  transform: translateY(-2px) scale(1.08) rotate(-8deg);
  filter: saturate(1.06);
}

.custom-cursor[data-cursor-mode="pointer"] .custom-cursor__spark {
  opacity: 1;
  animation: cursorSpark 420ms steps(2, end) infinite;
}

.custom-cursor[data-cursor-mode="default"] .custom-cursor__spark {
  opacity: 0.52;
}

.custom-cursor[data-cursor-mode="text"] .custom-cursor__sprite {
  transform: translateY(2px) scale(0.9) rotate(3deg);
}

.custom-cursor[data-cursor-mode="text"] .custom-cursor__leaf,
.custom-cursor[data-cursor-mode="text"] .custom-cursor__spark,
.custom-cursor[data-cursor-mode="text"] .custom-cursor__body,
.custom-cursor[data-cursor-mode="text"] .custom-cursor__feet {
  opacity: 0.32;
}

.custom-cursor[data-cursor-mode="text"] .custom-cursor__caret {
  opacity: 1;
  animation: cursorCaretBlink 720ms steps(2, end) infinite;
}

.custom-cursor[data-cursor-mode="move"] .custom-cursor__sprite {
  transform: translateY(-1px) scale(1.02) rotate(6deg);
}

.custom-cursor[data-cursor-mode="move"] .custom-cursor__shadow {
  transform: translateX(3px) scale(1.04);
}

.custom-cursor[data-cursor-mode="download"] .custom-cursor__sprite {
  transform: translateY(-3px) scale(1.08) rotate(-10deg);
  filter: saturate(1.08);
}

.custom-cursor[data-cursor-mode="download"] .custom-cursor__arm {
  opacity: 1;
  width: 22px;
  transform: translateX(3px) translateY(-2px) rotate(-18deg) scaleX(1);
}

.custom-cursor[data-cursor-mode="download"] .custom-cursor__download {
  opacity: 1;
  transform: translate(0, -1px) rotate(-10deg) scale(1);
}

.custom-cursor[data-cursor-mode="download"] .custom-cursor__spark {
  opacity: 1;
}

.custom-cursor[data-cursor-mode="google"] .custom-cursor__sprite {
  transform: translateY(-2px) scale(1.06) rotate(-7deg);
  filter: saturate(1.08);
}

.custom-cursor[data-cursor-mode="google"] .custom-cursor__google {
  opacity: 1;
  transform: translate(0, -1px) rotate(-4deg) scale(1);
}

.custom-cursor[data-cursor-mode="google"] .custom-cursor__spark {
  opacity: 1;
  animation: cursorSpark 420ms steps(2, end) infinite;
}

.custom-cursor[data-cursor-mode="whatsapp"] .custom-cursor__sprite {
  transform: translateY(-1px) scale(1.06) rotate(var(--cursor-whatsapp-tilt));
  filter: saturate(1.08);
}

.custom-cursor[data-cursor-mode="whatsapp"] .custom-cursor__arm {
  opacity: 1;
  transform: translateX(4px) translateY(-1px) rotate(var(--cursor-whatsapp-angle)) scaleX(1);
}

.custom-cursor[data-cursor-mode="whatsapp"] .custom-cursor__spark {
  opacity: 1;
  animation: cursorSpark 420ms steps(2, end) infinite;
}

.custom-cursor[data-cursor-mode="whatsapp"] .custom-cursor__shadow {
  transform: translateX(2px) scale(1.02);
}

.custom-cursor[data-cursor-mode="scroll-y"] .custom-cursor__sprite {
  transform: translateY(-1px) scale(1.04) rotate(4deg);
  filter: saturate(1.04);
}

.custom-cursor[data-cursor-mode="scroll-y"] .custom-cursor__scrolly {
  opacity: 1;
  transform: translate(0, 0) rotate(-1deg) scale(1);
}

.custom-cursor[data-cursor-mode="scroll-y"] .custom-cursor__shadow {
  transform: translateX(1px) scale(1.03);
}

.custom-cursor[data-cursor-mode="disabled"] .custom-cursor__shadow {
  opacity: 0.14;
  transform: scale(0.88);
}

.custom-cursor[data-cursor-mode="disabled"] .custom-cursor__block-flash {
  opacity: 0.28;
}

.custom-cursor.cursor-pressed:not([data-cursor-mode="disabled"]) .custom-cursor__sprite {
  transform: translateY(3px) scale(0.94);
}

.custom-cursor.cursor-popup[data-cursor-variant="mascot"] .custom-cursor__sprite {
  animation: cursorMascotPop 200ms steps(3, end);
}

.custom-cursor.cursor-popup[data-cursor-variant="mascot"] .custom-cursor__spark {
  opacity: 1;
}

.custom-cursor.cursor-popup[data-cursor-mode="download"] .custom-cursor__download {
  animation: cursorDownloadPop 200ms steps(3, end);
}

.custom-cursor.cursor-popup[data-cursor-mode="download"] .custom-cursor__arm {
  animation: cursorDownloadGrip 200ms steps(3, end);
}

.custom-cursor.cursor-popup[data-cursor-mode="google"] .custom-cursor__google {
  animation: cursorGooglePop 200ms steps(3, end);
}

.custom-cursor.cursor-popup[data-cursor-mode="scroll-y"] .custom-cursor__scrolly {
  animation: cursorScrollYPop 200ms steps(3, end);
}

.custom-cursor.cursor-popup[data-cursor-mode="whatsapp"] .custom-cursor__arm {
  animation: cursorWhatsappArmDeploy 210ms steps(3, end);
}

.custom-cursor.cursor-popup[data-cursor-variant="block"] .custom-cursor__block {
  animation: cursorBlockPop 210ms steps(3, end);
}

.custom-cursor.cursor-popup[data-cursor-variant="block"] .custom-cursor__block-flash {
  animation: cursorBlockFlash 210ms steps(2, end);
}

.cursor-hide {
  visibility: hidden;
}

main {
  display: grid;
  gap: 28px;
  position: relative;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--section-offset, 108px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 54, 40, 0.08);
  box-shadow: var(--shadow-large);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  min-height: 78vh;
  align-items: stretch;
  background:
    radial-gradient(circle at 80% 18%, rgba(159, 203, 135, 0.3), transparent 24%),
    linear-gradient(145deg, rgba(23, 54, 40, 0.96), rgba(34, 72, 55, 0.92));
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 241, 223, 0.18), transparent 62%);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(10px, 2vw, 18px);
  color: var(--text-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(247, 241, 223, 0.12);
  border: 1px solid rgba(247, 241, 223, 0.16);
  border-radius: var(--radius-sm);
}

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

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(247, 241, 223, 0.8);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--forest);
  background: linear-gradient(135deg, var(--leaf), #b9df9d);
  box-shadow: 0 12px 28px rgba(159, 203, 135, 0.2);
}

.button-secondary {
  color: var(--cream);
  background: rgba(247, 241, 223, 0.08);
  border: 1px solid rgba(247, 241, 223, 0.18);
}

.hero-panel {
  display: grid;
  align-content: center;
  gap: 20px;
}

.hero-card,
.mini-card,
.product-card,
.credit-card {
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--text-dark);
  background: linear-gradient(180deg, rgba(247, 241, 223, 0.96), rgba(231, 221, 197, 0.92));
  box-shadow: var(--shadow-card);
}

.floating-card {
  animation: floatCard 6s ease-in-out infinite;
}

.pill,
.credit-role {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill {
  margin-bottom: 14px;
  color: var(--forest);
  background: rgba(159, 203, 135, 0.28);
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.hero-card p {
  line-height: 1.7;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.spec-list div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(23, 54, 40, 0.07);
}

.spec-list dt {
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.spec-list dd {
  margin: 0;
  font-weight: 800;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  padding: 18px;
  border-radius: var(--radius-md);
  color: var(--cream);
  background: rgba(247, 241, 223, 0.08);
  border: 1px solid rgba(247, 241, 223, 0.12);
}

.mini-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.mini-card p {
  line-height: 1.7;
  color: rgba(247, 241, 223, 0.8);
}

.catalog-section,
.credits-section {
  background: linear-gradient(180deg, rgba(247, 241, 223, 0.86), rgba(255, 251, 242, 0.94));
}

.catalog-section {
  position: relative;
  overflow: hidden;
}

.catalog-section::before,
.catalog-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.76;
}

.catalog-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(247, 241, 223, 0.94), rgba(247, 241, 223, 0.12));
}

.catalog-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(247, 241, 223, 0.94), rgba(247, 241, 223, 0.12));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 24px;
}

.section-heading .eyebrow {
  color: var(--forest);
  background: rgba(159, 203, 135, 0.25);
  border-color: rgba(23, 54, 40, 0.08);
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin-top: 12px;
  line-height: 1.8;
  opacity: 0.82;
}

.catalog-grid,
.credits-grid {
  gap: 18px;
}

.catalog-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.catalog-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(352px, 34vw, 392px);
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 52px 18px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 52px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable both-edges;
  gap: 18px;
  min-height: clamp(430px, 58vh, 486px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 54, 40, 0.08);
  background: linear-gradient(180deg, rgba(231, 221, 197, 0.58), rgba(247, 241, 223, 0.42));
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 54, 40, 0.3) rgba(247, 241, 223, 0.12);
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.catalog-grid.is-pointer-down,
.catalog-grid.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}

.catalog-grid.is-dragging {
  box-shadow: inset 0 0 0 1px rgba(23, 54, 40, 0.08);
}

.catalog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(23, 54, 40, 0.22);
  background: rgba(247, 241, 223, 0.58);
  color: var(--forest);
  font-size: 1.7rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(16, 41, 30, 0.12);
  cursor: pointer;
  z-index: 5;
  opacity: 0.84;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.catalog-nav:hover,
.catalog-nav:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 28px rgba(16, 41, 30, 0.18);
  transform: translateY(-50%) scale(1.05);
}

.catalog-nav.is-disabled {
  opacity: 0.38;
  transform: translateY(-50%) scale(0.96);
  box-shadow: 0 8px 16px rgba(16, 41, 30, 0.08);
}

.catalog-nav.is-disabled:hover,
.catalog-nav.is-disabled:focus-visible,
.catalog-nav:disabled:hover,
.catalog-nav:disabled:focus-visible {
  opacity: 0.38;
  background: rgba(247, 241, 223, 0.58);
  box-shadow: 0 8px 16px rgba(16, 41, 30, 0.08);
  transform: translateY(-50%) scale(0.96);
}

.catalog-nav-left {
  left: 6px;
}

.catalog-nav-right {
  right: 6px;
}

.catalog-grid::-webkit-scrollbar {
  height: 10px;
}

.catalog-grid::-webkit-scrollbar-thumb {
  background: rgba(23, 54, 40, 0.28);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
}

.catalog-grid::-webkit-scrollbar-track {
  background: rgba(247, 241, 223, 0.12);
  border-radius: 999px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: clamp(430px, 58vh, 476px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 54, 40, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 245, 236, 0.75));
  box-shadow: 0 16px 26px rgba(20, 34, 30, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  scroll-snap-align: start;
  overflow: hidden;
  --card-fade-color: rgba(255, 250, 242, 0.98);
}

.credit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    filter 240ms ease,
    background 240ms ease;
}

.product-card-body {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  padding: 20px 18px 0;
}

.product-card-body::before,
.product-card-body::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 34px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card-body::before {
  top: 0;
  background: linear-gradient(180deg, var(--card-fade-color), rgba(255, 255, 255, 0));
}

.product-card-body::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--card-fade-color), rgba(255, 255, 255, 0));
}

.product-card-body[data-fade-top="true"]::before {
  opacity: 1;
}

.product-card-body[data-fade-bottom="true"]::after {
  opacity: 1;
}

.product-card-scroll {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 8px 18px 2px;
  overscroll-behavior: contain;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 54, 40, 0.18) transparent;
}

.product-card-scroll::-webkit-scrollbar {
  width: 6px;
}

.product-card-scroll::-webkit-scrollbar-thumb {
  background: rgba(23, 54, 40, 0.18);
  border-radius: 999px;
}

.product-card-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scroll-rail {
  --scroll-thumb-top: 0px;
  --scroll-thumb-height: 48px;
  position: absolute;
  width: 14px;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
  z-index: 4;
}

.custom-scroll-rail[hidden] {
  display: none;
}

.custom-scroll-rail.is-visible {
  opacity: 0.84;
  transform: translateX(0);
}

.custom-scroll-rail:hover,
.custom-scroll-rail.is-dragging {
  opacity: 1;
}

.custom-scroll-rail__track,
.custom-scroll-rail__thumb {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 999px;
}

.custom-scroll-rail__track {
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 241, 223, 0.55),
    rgba(247, 241, 223, 0.22)
  );
  box-shadow:
    inset 0 0 0 1px rgba(23, 54, 40, 0.14),
    0 8px 18px rgba(16, 41, 30, 0.08);
  backdrop-filter: blur(12px);
}

.custom-scroll-rail__thumb {
  top: var(--scroll-thumb-top);
  left: 2px;
  right: 2px;
  height: var(--scroll-thumb-height);
  min-height: 34px;
  background: linear-gradient(180deg, rgba(159, 203, 135, 0.98), rgba(122, 170, 99, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(23, 54, 40, 0.14),
    0 6px 14px rgba(16, 41, 30, 0.16);
}

.custom-scroll-rail--page {
  position: fixed;
  top: var(--page-scroll-rail-top, 108px);
  right: 10px;
  bottom: 18px;
  z-index: 110;
}

.custom-scroll-rail--inner {
  top: 18px;
  right: 8px;
  bottom: 18px;
  width: 12px;
}

.custom-scroll-rail--inner .custom-scroll-rail__thumb {
  left: 1px;
  right: 1px;
  min-height: 28px;
}

.card-actions {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 0 18px 18px;
}

.card-actions .button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 50px;
  padding: 0 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.88rem;
  line-height: 1.15;
}

.card-actions .button-secondary {
  color: var(--forest);
  background: rgba(23, 54, 40, 0.06);
  border: 1px solid rgba(23, 54, 40, 0.14);
}

.product-card:hover,
.credit-card:hover,
.hero-card:hover,
.mini-card:hover {
  transform: translateY(-6px) scale(1.004);
  box-shadow: 0 18px 42px rgba(16, 41, 30, 0.2);
  border-color: rgba(23, 54, 40, 0.18);
}

.featured {
  background:
    radial-gradient(circle at top right, rgba(159, 203, 135, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.96), rgba(247, 241, 223, 0.88));
  --card-fade-color: rgba(255, 249, 236, 0.98);
}

.paid {
  background:
    radial-gradient(circle at top right, rgba(152, 79, 52, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 243, 0.96), rgba(247, 241, 223, 0.92));
  --card-fade-color: rgba(255, 247, 239, 0.98);
}

.product-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf-deep);
  box-shadow: 0 0 0 8px rgba(122, 170, 99, 0.12);
}

.product-card h3,
.credit-card h3 {
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.product-description,
.credit-card p {
  line-height: 1.8;
  opacity: 0.86;
}

.product-points {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

.product-points li {
  line-height: 1.6;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-meta span {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest-soft);
  background: rgba(159, 203, 135, 0.18);
}

.update-notice {
  font-size: 0.92rem;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(28, 96, 40, 0.3);
  color: #16582f;
  background: rgba(144, 215, 129, 0.15);
}

.update-notice.update-available {
  border-color: rgba(60, 125, 44, 0.5);
  color: #1b6032;
  background: rgba(149, 207, 132, 0.24);
}

.update-notice.fallback {
  border-color: rgba(23, 54, 40, 0.14);
  color: rgba(23, 54, 40, 0.78);
  background: rgba(247, 241, 223, 0.76);
}

.update-notice.error {
  border-color: rgba(152, 41, 44, 0.4);
  color: #8f1d2a;
  background: rgba(255, 231, 232, 0.35);
}

.status-dot.status-paid {
  background: #984f34;
  box-shadow: 0 0 0 8px rgba(152, 79, 52, 0.15);
}

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

.credit-role {
  color: var(--forest);
  background: rgba(159, 203, 135, 0.26);
}

.credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  min-height: 46px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(23, 54, 40, 0.14);
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
  background: rgba(159, 203, 135, 0.2);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.credit-link:hover,
.credit-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(159, 203, 135, 0.3);
  border-color: rgba(23, 54, 40, 0.22);
}

.credit-stats-card {
  background:
    radial-gradient(circle at top right, rgba(159, 203, 135, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(247, 241, 223, 0.92));
}

.credit-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.credit-stat {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(23, 54, 40, 0.05);
}

.credit-stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}

.credit-stat span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(23, 54, 40, 0.72);
}

.credit-note {
  margin-top: auto;
  font-size: 0.92rem;
}

.social-bar-ad {
  position: fixed;
  top: calc(var(--page-scroll-rail-top, 108px) + 28px);
  right: 42px;
  z-index: 15;
  display: none;
  width: min(246px, calc(100vw - 112px));
  padding: 12px;
  border-radius: 26px;
  border: 1px solid rgba(23, 54, 40, 0.12);
  background:
    radial-gradient(circle at top right, rgba(159, 203, 135, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 241, 223, 0.94));
  box-shadow:
    0 18px 34px rgba(20, 34, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
}

.social-bar-ad[hidden] {
  display: none !important;
}

.social-bar-ad__head {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.social-bar-ad__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(159, 203, 135, 0.22);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-bar-ad__meta {
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 54, 40, 0.08);
}

.social-bar-ad h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.05;
}

.social-bar-ad__copy {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.42;
  color: rgba(23, 54, 40, 0.78);
}

.social-bar-ad__mount {
  position: relative;
  display: block;
  min-height: 228px;
  margin-top: 0;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(23, 54, 40, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 241, 223, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
}

.social-bar-ad__mount > * {
  max-width: 100%;
}

.social-bar-ad__mount iframe,
.social-bar-ad__mount ins,
.social-bar-ad__mount div,
.social-bar-ad__mount a,
.social-bar-ad__mount img {
  max-width: 100% !important;
}

.social-bar-ad__mount iframe,
.social-bar-ad__mount img {
  display: block;
  width: 100% !important;
}

.social-bar-ad__fallback {
  display: grid;
  place-items: center;
  min-height: 228px;
  padding: 16px;
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(23, 54, 40, 0.66);
}

.social-bar-ad[data-ad-state="loading"] .social-bar-ad__fallback {
  background: linear-gradient(90deg, rgba(23, 54, 40, 0.6), rgba(159, 203, 135, 0.9), rgba(23, 54, 40, 0.6));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: authStatusFlow 1.8s linear infinite;
}

.social-bar-ad[data-ad-state="ready"] .social-bar-ad__fallback {
  display: none;
}

.social-bar-ad[data-ad-state="ready"] .social-bar-ad__meta {
  background: rgba(255, 255, 255, 0.42);
}

.social-bar-ad[data-ad-state="error"] .social-bar-ad__mount {
  border-style: solid;
  border-color: rgba(152, 41, 44, 0.22);
  background: rgba(255, 241, 239, 0.62);
}

.social-bar-ad[data-ad-state="error"] .social-bar-ad__fallback {
  color: #8f1d2a;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 4px 8px;
  color: rgba(23, 54, 40, 0.8);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cursorLeafWave {
  0%,
  100% {
    transform: rotate(-18deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-2px);
  }
}

@keyframes authStatusFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes cursorSpark {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.84;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes cursorCaretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.18;
  }
}

@keyframes cursorMascotPop {
  0% {
    transform: translateY(4px) scale(0.82);
  }

  55% {
    transform: translateY(-6px) scale(1.16);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes cursorDownloadPop {
  0% {
    transform: translate(8px, 10px) rotate(-24deg) scale(0.54);
  }

  60% {
    transform: translate(-2px, -4px) rotate(-8deg) scale(1.14);
  }

  100% {
    transform: translate(0, -1px) rotate(-10deg) scale(1);
  }
}

@keyframes cursorDownloadGrip {
  0% {
    transform: translateX(1px) translateY(4px) rotate(-28deg) scaleX(0.48);
  }

  55% {
    transform: translateX(4px) translateY(-4px) rotate(-14deg) scaleX(1.08);
  }

  100% {
    transform: translateX(3px) translateY(-2px) rotate(-18deg) scaleX(1);
  }
}

@keyframes cursorGooglePop {
  0% {
    transform: translate(8px, 10px) rotate(-18deg) scale(0.52);
  }

  55% {
    transform: translate(-1px, -4px) rotate(-6deg) scale(1.14);
  }

  100% {
    transform: translate(0, -1px) rotate(-4deg) scale(1);
  }
}

@keyframes cursorScrollYPop {
  0% {
    transform: translate(8px, 10px) rotate(-10deg) scale(0.5);
  }

  55% {
    transform: translate(-1px, -2px) rotate(1deg) scale(1.12);
  }

  100% {
    transform: translate(0, 0) rotate(-1deg) scale(1);
  }
}

@keyframes cursorWhatsappArmDeploy {
  0% {
    transform: translateX(1px) translateY(2px) rotate(var(--cursor-whatsapp-angle)) scaleX(0.28);
  }

  55% {
    transform: translateX(5px) translateY(-3px) rotate(var(--cursor-whatsapp-angle)) scaleX(1.08);
  }

  100% {
    transform: translateX(4px) translateY(-1px) rotate(var(--cursor-whatsapp-angle)) scaleX(1);
  }
}

@keyframes cursorBlockPop {
  0% {
    transform: translateY(10px) scale(0.68);
  }

  55% {
    transform: translateY(-4px) scale(1.12);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes cursorBlockFlash {
  0% {
    opacity: 0;
    transform: scale(0.74);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.02);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  body *,
  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  label {
    cursor: none !important;
  }

  .custom-cursor {
    display: block;
  }

  .custom-cursor:not(.cursor-hide) {
    opacity: 1;
    visibility: visible;
  }

  html {
    scrollbar-width: none;
  }

  body {
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  .product-card-scroll::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none;
  }

  .product-card-scroll {
    scrollbar-width: none;
  }

  .auth-google-button,
  .auth-google-button *,
  .auth-google-button iframe,
  .social-bar-ad,
  .social-bar-ad *,
  .social-bar-ad iframe,
  .custom-scroll-rail,
  .custom-scroll-rail *,
  .custom-scroll-rail__track,
  .custom-scroll-rail__thumb {
    cursor: none !important;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1200px) {
  .social-bar-ad:not([hidden]) {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-section,
  .credits-grid,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .social-bar-ad {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
  }

  h1 {
    max-width: none;
  }

  .catalog-grid {
    grid-auto-columns: minmax(340px, calc(100% - 96px));
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(176px, 228px);
    grid-template-areas:
      "brand nav"
      "auth auth";
    align-items: center;
    gap: 10px 12px;
    padding: 10px 12px;
    border-radius: 20px;
  }

  .brand {
    grid-area: brand;
    width: auto;
    min-width: 0;
    gap: 10px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.74rem;
  }

  .nav-links {
    grid-area: nav;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    justify-self: end;
  }

  .nav-links a {
    width: 100%;
    min-height: 36px;
    justify-content: center;
    text-align: center;
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .auth-shell,
  .auth-google-button,
  .auth-profile {
    justify-content: flex-start;
  }

  .auth-shell {
    grid-area: auth;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    padding: 3px;
    min-height: 42px;
    border-radius: 16px;
  }

  .auth-google-custom {
    width: 100%;
    justify-content: flex-start;
  }

  .auth-profile {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 4px 6px 4px 4px;
  }

  .auth-avatar {
    width: 32px;
    height: 32px;
  }

  .auth-copy strong {
    font-size: 0.8rem;
  }

  .auth-copy small {
    display: none;
  }

  .auth-logout {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  section {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-section {
    gap: 20px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-text,
  .section-heading p,
  .product-description,
  .credit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-copy,
  .hero-panel {
    gap: 16px;
  }

  .hero-card,
  .mini-card,
  .credit-card {
    padding: 20px;
  }

  .hero-card h2,
  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

  .catalog-grid {
    grid-auto-columns: minmax(274px, calc(100vw - 72px));
    min-height: 0;
    padding: 12px 34px 16px;
    gap: 12px;
    cursor: auto;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .catalog-section::before,
  .catalog-section::after {
    width: 28px;
  }

  .catalog-nav {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-card {
    height: auto;
    min-height: 0;
  }

  .product-card-body {
    min-height: auto;
    overflow: visible;
    padding-bottom: 18px;
  }

  .product-card-body::before,
  .product-card-body::after {
    display: none;
  }

  .product-card-scroll {
    height: auto;
    overflow: visible;
    padding: 4px 0 0;
    overscroll-behavior: auto;
    touch-action: auto;
    scrollbar-width: none;
  }

  .product-card h3,
  .credit-card h3 {
    font-size: 1.35rem;
  }

  .credits-section .section-heading {
    gap: 10px;
    margin-bottom: 4px;
  }

  .credits-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    height: min(68vh, 470px);
    padding: 18px 6px;
    overflow-y: auto;
    overscroll-behavior-y: auto;
    scroll-snap-type: y mandatory;
    scroll-padding-block: 24%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-content: start;
  }

  .credits-grid::-webkit-scrollbar {
    display: none;
  }

  .credit-link {
    width: fit-content;
    min-height: 42px;
    padding: 0 14px;
  }

  .credit-card {
    gap: 12px;
    padding: 16px;
    min-height: clamp(188px, 30vh, 236px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.92);
    opacity: 0.7;
    filter: saturate(0.9);
    transform-origin: center center;
    box-shadow: 0 14px 24px rgba(20, 34, 30, 0.16);
  }

  .credit-card.is-centered {
    transform: scale(1);
    opacity: 1;
    filter: none;
    border-color: rgba(23, 54, 40, 0.22);
    box-shadow:
      0 24px 34px rgba(20, 34, 30, 0.22),
      0 0 0 1px rgba(159, 203, 135, 0.2);
  }

  .credit-card p,
  .credit-note {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .card-actions {
    gap: 8px;
    padding: 0 14px 14px;
  }

  .card-actions .button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .credit-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .credit-stat {
    gap: 4px;
    padding: 12px 10px;
  }

  .credit-stat strong {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .credit-stat span {
    font-size: 0.7rem;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 14px, 1180px);
    margin-top: 8px;
    margin-bottom: 18px;
  }

  .topbar {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) minmax(158px, 1.18fr);
    grid-template-areas:
      "brand nav"
      "auth";
    gap: 8px;
    padding: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text small {
    display: none;
  }

  .nav-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    justify-self: stretch;
  }

  .nav-links a {
    min-height: 32px;
    font-size: 0.7rem;
    padding: 6px 4px;
  }

  .auth-status {
    padding: 7px 10px;
    font-size: 0.73rem;
  }

  .auth-copy {
    width: auto;
  }

  .auth-copy small {
    display: none;
  }

  .auth-profile {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "avatar copy logout";
    gap: 5px;
  }

  .auth-avatar {
    grid-area: avatar;
    width: 30px;
    height: 30px;
  }

  .auth-copy {
    grid-area: copy;
    min-width: 0;
  }

  .auth-logout {
    grid-area: logout;
  }

  .auth-logout {
    width: auto;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.66rem;
    justify-self: auto;
  }

  section {
    padding: 16px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 2.8rem);
  }

  .eyebrow,
  .pill,
  .credit-role {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .hero-card,
  .mini-card,
  .credit-card {
    padding: 18px;
  }

  .credits-section {
    padding: 14px;
  }

  .credits-section .section-heading {
    gap: 8px;
    margin-bottom: 2px;
  }

  .credits-section .section-heading h2 {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
    line-height: 1.08;
  }

  .credits-grid {
    gap: 12px;
    height: min(66vh, 430px);
    padding: 16px 4px;
    scroll-padding-block: 26%;
  }

  .credit-card {
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    min-height: clamp(176px, 29vh, 216px);
  }

  .credit-card.is-centered {
    transform: scale(1.02);
    box-shadow:
      0 20px 28px rgba(20, 34, 30, 0.22),
      0 0 0 1px rgba(159, 203, 135, 0.22);
  }

  .credit-card h3 {
    font-size: 1.16rem;
    line-height: 1.08;
  }

  .credit-card p,
  .credit-note {
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .credit-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .catalog-grid {
    grid-auto-columns: minmax(248px, calc(100vw - 54px));
    padding: 10px 26px 14px;
  }

  .catalog-nav-left {
    left: 2px;
  }

  .catalog-nav-right {
    right: 2px;
  }

  .product-card-body {
    padding: 18px 14px 16px;
  }

  .product-card-scroll {
    gap: 12px;
  }

  .card-actions {
    padding: 0 14px 14px;
    gap: 6px;
  }

  .card-actions .button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .product-meta,
  .credit-stats {
    gap: 6px;
  }

  .product-meta span,
  .credit-stat {
    padding: 10px 8px;
  }

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

  .credit-stat {
    border-radius: 14px;
  }

  .credit-stat strong {
    font-size: clamp(1rem, 4vw, 1.18rem);
  }

  .credit-stat span {
    font-size: 0.64rem;
    line-height: 1.2;
  }
}
