:root {
  --forest: #073f3a;
  --pine: #0f5b4f;
  --leaf: #6f8c3e;
  --sage: #a8b58b;
  --cream: #fbf5eb;
  --cream-2: #f3eadc;
  --gold: #e3ad3f;
  --coral: #ef775f;
  --rose: #d95f6d;
  --ink: #1f2624;
  --muted: #6d7770;
  --shadow: 0 24px 70px rgba(27, 31, 28, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

[data-garden-product] {
  --garden-seed-accent: #56783e;
  --garden-seed-accent-dark: #315d37;
  --garden-seed-accent-soft: rgba(111, 140, 62, 0.18);
  --garden-seed-bloom: #ef775f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 119, 95, .18), transparent 28%),
    radial-gradient(circle at 82% 6%, rgba(227, 173, 63, .22), transparent 26%),
    linear-gradient(180deg, #fff9f1 0%, #fbf5eb 38%, #f7f0e5 100%);
}

.announcement {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  background: linear-gradient(90deg, var(--forest), #0b5c4f);
  color: #fff8eb;
  font-size: 13px;
  letter-spacing: .02em;
}
.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f6d27a;
  font-weight: 800;
}

.site-header {
  position: relative;
  padding: 26px 7vw 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 32%, rgba(227, 173, 63, 0.22), transparent 36%),
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.98) 0%, rgba(248, 241, 229, 0.96) 100%);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 70, 60, .10);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("/assets/live-rooted/mockup/assets/live-rooted-icon.png") left -70px top -92px / 270px auto no-repeat,
    url("/assets/live-rooted/mockup/assets/live-rooted-icon.png") right -76px top -92px / 270px auto no-repeat;
  opacity: 0.055;
  filter: saturate(0.5);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -1px;
  z-index: -1;
  height: 22px;
  background:
    radial-gradient(ellipse at center, rgba(7, 63, 58, 0.13), transparent 68%);
  opacity: 0.45;
  pointer-events: none;
}
.header-tools {
  position: absolute;
  right: 7vw;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: min(620px, 55vw);
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
}

.brand-logo::before {
  content: "";
  position: absolute;
  inset: -34px -110px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(227, 173, 63, 0.26), rgba(255, 250, 239, 0.18) 40%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}
.brand-logo img { width: 100%; }
.icon-button, .mobile-toggle, .mobile-close {
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}
.community-button {
  background: linear-gradient(135deg, #064b3a, #083f36);
  color: #fffaf0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow:
    0 16px 34px rgba(7, 63, 58, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 0 32px rgba(227, 173, 63, 0.1);
}
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 104px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(7, 63, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.8);
  box-shadow: 0 14px 32px rgba(44, 31, 18, 0.1);
  color: var(--forest);
  font-weight: 900;
}

.mobile-toggle::after {
  content: "Menu";
  font-size: 14px;
}

.desktop-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 7vw;
  background: rgba(255, 250, 242, .94);
  border-bottom: 1px solid rgba(12, 70, 60, .11);
  backdrop-filter: blur(18px);
  user-select: none;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 58px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #1f2927;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .01em;
}
.nav-link:hover { color: var(--coral); }
.nav-dropdown-wrap { position: relative; }
.mega-menu {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 360px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 50;
  user-select: none;
}
.nav-dropdown-wrap.is-open .mega-menu,
.mega-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 252, 247, .98);
  border: 1px solid rgba(7,63,58,.12);
  box-shadow: var(--shadow);
}
.mega-item {
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  transition: background .18s ease, transform .18s ease;
}
.mega-item:hover {
  background: #f4eadc;
  transform: translateY(-1px);
}
.mega-item span {
  display: block;
  color: var(--forest);
  font-weight: 900;
}
.mega-item small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.35;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
  min-height: 680px;
  padding: 74px 7vw 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 48, 45, .96), rgba(52, 43, 55, .86)),
    url('./assets/kids-museum-wide.jpg') center/cover;
  color: #fff8ed;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}
.hero-copy, .hero-media { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--coral);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .16em;
}
.hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.055em;
}
.hero-text {
  margin: 28px 0 0;
  max-width: 630px;
  color: rgba(255, 248, 237, .88);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.primary-cta, .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.primary-cta {
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #2b2015;
  box-shadow: 0 20px 48px rgba(239,119,95,.28);
}
.secondary-cta {
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}
.primary-cta:hover, .secondary-cta:hover { transform: translateY(-2px); }
.secondary-cta.light { color: var(--forest); background: #fff; border-color: rgba(7,63,58,.14); }
.primary-cta:disabled,
.secondary-cta:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.hero-media {
  min-height: 560px;
}
.video-card {
  position: absolute;
  inset: 20px 72px 20px 42px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 88px rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.22);
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 63, 58, .24), transparent 36%),
    linear-gradient(180deg, transparent 50%, rgba(7, 44, 39, .48));
}
.play-button {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 38px);
  bottom: clamp(22px, 4vw, 38px);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.50);
  background: rgba(7,63,58,.68);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
}
.video-caption {
  position: absolute;
  left: clamp(22px, 4vw, 44px);
  bottom: clamp(22px, 4vw, 38px);
  z-index: 2;
  max-width: min(410px, 56%);
  padding: 14px 16px 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 18px;
  background: rgba(6, 41, 36, .78);
  box-shadow: 0 16px 38px rgba(0,0,0,.30);
  backdrop-filter: blur(12px);
}
.video-caption span {
  display: block;
  margin-bottom: 5px;
  color: #f6c35f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.video-caption strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.05;
  text-wrap: balance;
}
.stacked-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  border: 8px solid #fff7ef;
  box-shadow: 0 25px 60px rgba(0,0,0,.24);
}
.stacked-photo img { width: 100%; height: 100%; object-fit: cover; }
.stacked-photo.one { width: 210px; height: 270px; left: 0; bottom: 0; transform: rotate(-4deg); }
.stacked-photo.two { width: 260px; height: 190px; right: 0; top: 0; transform: rotate(3deg); }

.mission-strip {
  position: relative;
  z-index: 4;
  width: min(1180px, 82vw);
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 34px 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(255, 249, 239, 0.92)),
    rgba(255, 252, 247, .96);
  border: 1px solid rgba(7,63,58,.1);
  border-radius: 24px;
  box-shadow:
    0 28px 90px rgba(41, 31, 20, 0.16),
    0 8px 24px rgba(41, 31, 20, 0.08);
  backdrop-filter: blur(18px);
}
.mission-strip img {
  width: 84px;
  align-self: center;
  filter: drop-shadow(0 16px 22px rgba(7, 63, 58, 0.12));
}
.mission-strip > div {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.68fr);
  column-gap: 26px;
  align-items: center;
}
.mission-strip span {
  grid-column: 1;
  color: #b47423;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
}
.mission-strip h2 {
  grid-column: 1;
  margin: 4px 0 6px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--forest);
  font-size: clamp(30px, 2.65vw, 40px);
  line-height: 1;
  white-space: nowrap;
}
.mission-strip p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(7, 63, 58, 0.13);
  color: var(--muted);
  line-height: 1.58;
}

.pillars-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 72px 7vw 48px;
}
.pillar-card {
  padding: 25px 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(7,63,58,.10);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 18px 40px rgba(50, 36, 26, .07);
}
.pillar-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15,91,79,.12), rgba(227,173,63,.22));
  color: var(--forest);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 { margin: 0 0 10px; color: var(--forest); }
.pillar-card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.content-band {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  padding: 58px 7vw;
  background: linear-gradient(180deg, rgba(244,235,220,.86), rgba(255,249,241,.72));
}
.section-intro h2, .center-heading h2, .podcast-card h2, .shop-card h2, .community-copy h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.section-intro p, .podcast-card p, .shop-card p, .community-copy p { color: var(--muted); line-height: 1.7; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 950;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.story-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fffdfa;
  border: 1px solid rgba(7,63,58,.10);
  box-shadow: 0 18px 48px rgba(50, 36, 26, .10);
}
.story-card img { width: 100%; height: 230px; object-fit: cover; }
.story-card div { padding: 22px; }
.story-card span {
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 950;
}
.story-card h3 {
  margin: 8px 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--forest);
  font-size: 26px;
  line-height: 1.08;
}
.story-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.55; }
.story-card a { display: inline-flex; align-items: center; gap: 6px; color: var(--forest); font-weight: 900; }

.explore-section { padding: 64px 7vw 42px; }
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.center-heading .eyebrow { justify-content: center; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.explore-card {
  position: relative;
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(7,63,58,.16);
}
.explore-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.explore-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(7,45,40,.86));
}
.explore-card:hover img { transform: scale(1.05); }
.explore-card div { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 16px; color: #fff; }
.explore-card strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 24px; }
.explore-card span { color: rgba(255,255,255,.78); font-size: 13px; }

.two-column-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 48px 7vw 72px;
}
.podcast-card, .shop-card {
  min-height: 360px;
  padding: 42px;
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 64px rgba(50, 36, 26, .10);
}
.podcast-card {
  background:
    linear-gradient(135deg, rgba(7,63,58,.92), rgba(14,83,72,.86)),
    url('./assets/kids-museum-wide-2.jpg') center/cover;
  color: #fff;
}
.podcast-card h2, .podcast-card p { color: #fff; }
.shop-card {
  background:
    radial-gradient(circle at 86% 20%, rgba(239,119,95,.22), transparent 26%),
    linear-gradient(135deg, #fffdf7, #f5eadb);
}
.podcast-card > svg, .shop-card > svg {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--gold);
}

.community-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 70px 7vw;
  background: var(--forest);
  color: #fff8ed;
}
.community-copy h2, .community-copy p { color: #fff8ed; }
.signup-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
}
.signup-form input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  outline: none;
}
.signup-form button {
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #2b2015;
  font-weight: 950;
  cursor: pointer;
}

.signup-status {
  min-height: 20px;
  margin: 0;
  color: #fff8ed;
  font-size: 14px;
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px 7vw;
  background: #fff9f1;
  color: var(--forest);
}
footer div { display: flex; align-items: center; gap: 12px; }
footer img { width: 52px; }
footer strong { font-family: Georgia, 'Times New Roman', serif; font-size: 25px; }
footer span, footer p { color: var(--muted); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: auto;
  padding: 28px 24px 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(227, 173, 63, 0.2), transparent 30%),
    linear-gradient(180deg, #fffaf2, #f6eadb);
}
.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(7, 63, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 14px 34px rgba(44, 31, 18, 0.12);
}
.mobile-logo { width: 136px; margin: 12px auto 24px; }
.mobile-menu details {
  border-bottom: 1px solid rgba(7,63,58,.12);
  padding: 14px 0;
}
.mobile-menu summary {
  cursor: pointer;
  font-weight: 950;
  color: var(--forest);
}
.mobile-menu a {
  display: block;
  margin: 10px 0;
  padding: 16px 18px;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 14px 34px rgba(44, 31, 18, 0.08);
}
.mobile-menu a strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}
.mobile-menu a small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .brand-logo { margin: 0; width: min(520px, 58vw); }
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .community-button, .icon-button { display: none; }
  .hero-section, .content-band, .two-column-cta, .community-section { grid-template-columns: 1fr; }
  .hero-media { min-height: 520px; }
  .pillars-section { grid-template-columns: repeat(2, 1fr); }
  .explore-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .announcement { height: auto; padding: 10px 20px; gap: 8px; flex-direction: column; text-align: center; }
  .site-header { padding: 20px; }
  .brand-logo { width: 230px; }
  .header-tools { right: 20px; top: 20px; }
  .hero-section { padding: 46px 20px 78px; min-height: auto; }
  .hero-media { min-height: 430px; }
  .video-card { inset: 0; }
  .video-card img { object-position: center 35%; }
  .video-card::after {
    background:
      linear-gradient(180deg, transparent 42%, rgba(7, 44, 39, .54));
  }
  .play-button {
    right: 18px;
    top: 18px;
    bottom: auto;
    width: 62px;
    height: 62px;
  }
  .video-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 128px);
    padding: 13px 15px 15px;
  }
  .stacked-photo { display: none; }
  .mission-strip { grid-template-columns: 1fr; width: min(92vw, 520px); text-align: center; margin-top: -42px; padding: 24px; }
  .mission-strip img { margin: 0 auto; }
  .mission-strip > div { display: block; }
  .mission-strip h2 { white-space: normal; }
  .mission-strip p { padding-left: 0; border-left: 0; }
  .pillars-section, .feature-grid, .explore-grid, .two-column-cta, .community-section, .content-band { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .pillars-section { padding-top: 52px; }
  footer { flex-direction: column; text-align: center; }
footer div { flex-direction: column; }
}

[hidden] {
  display: none !important;
}

.site-header .brand-logo img {
  max-height: 190px;
  object-fit: contain;
}

.mobile-menu {
  display: block;
}

.mobile-menu details > a {
  line-height: 1.4;
}

.mobile-menu details > a strong {
  display: block;
}

.lrl-icon {
  display: inline-grid;
  width: 1em;
  height: 1em;
  place-items: center;
  color: currentColor;
}

.lrl-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Public website v2: calm structure, no dropdown-heavy browsing */
.public-home .site-shell {
  background:
    radial-gradient(circle at 8% 6%, rgba(227, 173, 63, 0.16), transparent 26%),
    radial-gradient(circle at 92% 9%, rgba(143, 177, 135, 0.24), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #f8efe2 48%, #fffaf4 100%);
}

.public-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
}

.public-header .brand-logo {
  width: min(420px, 48vw);
  margin: 0;
}

.public-home .announcement {
  display: none;
}

.public-home .public-header {
  min-height: 116px;
  padding: 18px 7vw 18px;
}

.public-home .public-header .brand-logo {
  width: min(300px, 42vw);
  margin: 0 auto;
}

.public-home .header-tools {
  top: 36px;
}

.memory-intro {
  position: absolute;
  inset: 0;
  z-index: 20;
  overflow: hidden;
  background: #082f29;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 900ms ease,
    visibility 0s linear 900ms,
    transform 1200ms ease;
}

.memory-intro.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 900ms ease,
    visibility 0s,
    transform 1200ms ease;
}

.memory-intro.is-leaving {
  opacity: 0;
  transform: scale(1.018);
}

.memory-intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.memory-intro::before,
.memory-intro::after,
.memory-intro-atmosphere {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.memory-intro::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 224, 156, 0.44), transparent 28%),
    radial-gradient(circle at 86% 17%, rgba(255, 248, 224, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(7, 63, 58, 0.36), transparent 40%, rgba(7, 63, 58, 0.25)),
    linear-gradient(180deg, rgba(255, 248, 232, 0.16), rgba(7, 63, 58, 0.34));
}

.memory-intro::after {
  background:
    linear-gradient(rgba(255, 248, 232, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 232, 0.052) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.7;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

.memory-intro-atmosphere {
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 8% 16%, rgba(250, 223, 162, 0.6), transparent 30%),
    radial-gradient(ellipse at 2% 70%, rgba(255, 249, 229, 0.38), transparent 36%),
    linear-gradient(132deg, transparent 0 14%, rgba(255, 251, 239, 0.14) 14.4% 15.1%, transparent 15.8% 100%),
    linear-gradient(158deg, transparent 0 9%, rgba(78, 99, 57, 0.28) 9.4% 10.1%, transparent 10.8% 100%);
  filter: blur(0.4px);
}

.memory-intro-brand {
  position: absolute;
  left: clamp(22px, 5vw, 76px);
  top: clamp(28px, 5vw, 56px);
  display: grid;
  justify-items: start;
  gap: 10px;
  width: min(360px, 76vw);
  color: rgba(255, 248, 232, 0.92);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.memory-intro-brand img {
  width: min(300px, 72vw);
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.28));
}

.memory-intro-brand span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 248, 232, 0.36);
  border-radius: 999px;
  background: rgba(7, 63, 58, 0.32);
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.memory-intro-skip {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 46px);
  z-index: 2;
  border: 1px solid rgba(255, 248, 232, 0.4);
  border-radius: 999px;
  padding: 12px 17px;
  background: rgba(7, 63, 58, 0.48);
  color: #fff8ed;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.memory-intro-skip:hover {
  transform: translateY(-1px);
}

.memory-hero-final {
  opacity: 1;
  transition:
    opacity 950ms ease,
    filter 950ms ease,
    transform 950ms ease;
}

body.memory-intro-active .memory-hero-final {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.012);
}

body.memory-intro-active .public-mission {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
}

body.memory-intro-complete .memory-hero-copy,
body.memory-intro-complete .memory-photo-wall,
body.memory-intro-complete .memory-hero-note,
body.memory-intro-complete .public-mission {
  animation: memorySettleIn 900ms ease both;
}

body.memory-intro-complete .memory-photo-wall {
  animation-delay: 120ms;
}

body.memory-intro-complete .public-mission {
  animation-delay: 260ms;
}

@keyframes memorySettleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.public-home .public-nav {
  display: flex;
}

.public-nav {
  position: sticky;
  top: 10px;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: calc(100% - 36px);
  min-height: 58px;
  margin: 10px auto 12px;
  padding: 8px 12px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.86), rgba(251, 245, 235, 0.76));
  border: 1px solid rgba(7, 63, 58, 0.13);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(42, 35, 25, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  backdrop-filter: blur(16px);
}

.public-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(300px, 48vw);
  height: 18px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 42% 58%, rgba(111, 140, 62, 0.18) 0 12%, transparent 13%),
    radial-gradient(ellipse at 58% 42%, rgba(111, 140, 62, 0.16) 0 12%, transparent 13%),
    linear-gradient(90deg, transparent, rgba(7, 63, 58, 0.18) 18%, rgba(227, 173, 63, 0.22) 50%, rgba(7, 63, 58, 0.18) 82%, transparent);
  mask-image: linear-gradient(180deg, black, transparent 84%);
  opacity: 0.72;
  pointer-events: none;
}

.public-nav::-webkit-scrollbar {
  display: none;
}

.public-nav::-webkit-scrollbar-thumb {
  display: none;
  border-radius: 999px;
  background: rgba(7, 63, 58, 0.22);
}

.public-nav .nav-link {
  position: relative;
  overflow: visible;
  height: 40px;
  padding: 0 14px;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #173a35;
  font-size: 12px;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.public-nav .nav-link::before,
.public-nav .nav-link::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 13px;
  border-radius: 100% 0 100% 0;
  background:
    linear-gradient(135deg, rgba(168, 181, 139, 0.96), rgba(111, 140, 62, 0.74));
  box-shadow:
    17px 5px 0 -2px rgba(227, 173, 63, 0.34),
    -13px 8px 0 -3px rgba(111, 140, 62, 0.26);
  filter: drop-shadow(0 5px 7px rgba(7, 63, 58, 0.12));
  opacity: 0;
  pointer-events: none;
  transform-origin: 50% 100%;
}

.public-nav .nav-link::before {
  left: 28%;
  top: -8px;
  transform: translate3d(0, 4px, 0) rotate(-28deg) scale(0.62);
}

.public-nav .nav-link::after {
  right: 24%;
  top: -11px;
  width: 7px;
  height: 12px;
  transform: translate3d(0, 4px, 0) rotate(32deg) scale(0.58);
}

.public-nav .nav-link:hover,
.public-nav .nav-link:focus-visible {
  color: var(--forest);
  border-color: rgba(7, 63, 58, 0.13);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 10px 24px rgba(44, 31, 18, 0.09);
  transform: translateY(-1px);
  outline: none;
}

.public-nav .nav-link:hover::before,
.public-nav .nav-link:focus-visible::before {
  animation: rootedNavLeafFall 960ms cubic-bezier(0.22, 0.72, 0.24, 1) both;
}

.public-nav .nav-link:hover::after,
.public-nav .nav-link:focus-visible::after {
  animation: rootedNavLeafFallTwo 1040ms cubic-bezier(0.22, 0.72, 0.24, 1) 80ms both;
}

.public-nav .nav-link.is-active,
.public-nav .nav-link[aria-current="page"] {
  color: #fffaf0;
  border-color: rgba(7, 63, 58, 0.12);
  background: linear-gradient(135deg, #064b3a, var(--pine));
  box-shadow:
    0 12px 28px rgba(7, 63, 58, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

@keyframes rootedNavLeafFall {
  0% {
    opacity: 0;
    transform: translate3d(-2px, -5px, 0) rotate(-28deg) scale(0.54);
  }
  24% {
    opacity: 0.88;
  }
  100% {
    opacity: 0;
    transform: translate3d(8px, 25px, 0) rotate(28deg) scale(0.82);
  }
}

@keyframes rootedNavLeafFallTwo {
  0% {
    opacity: 0;
    transform: translate3d(2px, -7px, 0) rotate(32deg) scale(0.52);
  }
  28% {
    opacity: 0.78;
  }
  100% {
    opacity: 0;
    transform: translate3d(-10px, 23px, 0) rotate(-24deg) scale(0.76);
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-nav .nav-link:hover::before,
  .public-nav .nav-link:focus-visible::before,
  .public-nav .nav-link:hover::after,
  .public-nav .nav-link:focus-visible::after,
  .memory-root-garden-hook,
  .memory-root-garden-beacon,
  .memory-root-garden-beacon::before {
    animation: none;
  }
}

@media (max-width: 1260px) {
  .public-nav {
    gap: 3px;
    padding-inline: 8px;
  }

  .public-nav .nav-link {
    padding-inline: 10px;
    font-size: 11px;
  }
}

@media (max-width: 1100px) {
  .public-home .public-nav {
    display: none;
  }
}

.public-hero {
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(7, 43, 38, 0.94), rgba(7, 43, 38, 0.7) 45%, rgba(7, 43, 38, 0.18)),
    url("./assets/school-family.jpg") center/cover;
}

.public-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
}

.public-hero .hero-copy h1 {
  letter-spacing: 0;
}

.public-hero-media {
  min-height: 600px;
}

.public-photo-card {
  inset: 30px 70px 44px 24px;
}

.public-hero.memory-hero {
  display: block;
  min-height: clamp(700px, calc(100svh - 170px), 760px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 6% 18%, rgba(250, 214, 141, 0.48), transparent 31%),
    linear-gradient(90deg, #fff3dc 0%, #f8eddc 34%, #60745f 62%, #173f36 100%);
}

.memory-hero::before {
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(7, 63, 58, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 58, 0.1) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.memory-hero-stage,
.memory-hero-scrim {
  position: absolute;
  inset: 0;
}

.memory-hero-stage {
  z-index: 0;
  overflow: hidden;
}

.memory-hero-stage::before {
  content: "";
  position: absolute;
  inset: -36px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 16%, rgba(245, 192, 91, 0.42), transparent 24%),
    radial-gradient(circle at 28% 86%, rgba(112, 140, 101, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(255, 246, 224, 0.88), rgba(255, 246, 224, 0.42) 38%, rgba(255, 246, 224, 0.06) 56%, rgba(7, 63, 58, 0.12) 82%);
  opacity: 0.9;
  transform: scale(1.04);
}

.memory-hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at -2% 7%, rgba(236, 169, 62, 0.58), transparent 23%),
    radial-gradient(ellipse at 6% 0%, rgba(97, 111, 66, 0.26), transparent 22%),
    radial-gradient(ellipse at 12% 90%, rgba(78, 99, 57, 0.2), transparent 26%),
    linear-gradient(115deg, rgba(255, 244, 218, 0.42) 0%, rgba(255, 244, 218, 0.18) 34%, transparent 50%);
  opacity: 0.38;
}

.memory-botanical-shadows {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.memory-botanical-shadows::before,
.memory-botanical-shadows::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}

.memory-botanical-shadows::before {
  left: -72px;
  top: -68px;
  width: min(44vw, 720px);
  height: 430px;
  opacity: 0.36;
  background:
    radial-gradient(ellipse at 10% 30%, rgba(90, 106, 60, 0.42) 0 6%, transparent 6.8%),
    radial-gradient(ellipse at 18% 22%, rgba(90, 106, 60, 0.34) 0 5%, transparent 5.9%),
    radial-gradient(ellipse at 26% 34%, rgba(90, 106, 60, 0.36) 0 5.8%, transparent 6.5%),
    radial-gradient(ellipse at 34% 20%, rgba(90, 106, 60, 0.3) 0 5%, transparent 5.8%),
    radial-gradient(ellipse at 43% 31%, rgba(90, 106, 60, 0.32) 0 5.5%, transparent 6.3%),
    radial-gradient(ellipse at 53% 17%, rgba(90, 106, 60, 0.26) 0 4.7%, transparent 5.5%),
    linear-gradient(132deg, transparent 0 8%, rgba(102, 88, 47, 0.23) 8.4% 9.2%, transparent 9.6% 100%),
    linear-gradient(155deg, transparent 0 16%, rgba(102, 88, 47, 0.2) 16.4% 17%, transparent 17.4% 100%),
    radial-gradient(circle at 7% 16%, rgba(235, 178, 82, 0.2), transparent 30%);
  filter: blur(0.6px);
  transform: rotate(-8deg);
}

.memory-botanical-shadows::after {
  left: -104px;
  bottom: -58px;
  width: min(36vw, 580px);
  height: 340px;
  opacity: 0.24;
  background:
    radial-gradient(ellipse at 19% 65%, rgba(68, 91, 56, 0.42) 0 8%, transparent 8.8%),
    radial-gradient(ellipse at 31% 52%, rgba(68, 91, 56, 0.32) 0 6.2%, transparent 7%),
    radial-gradient(ellipse at 43% 66%, rgba(68, 91, 56, 0.34) 0 6.5%, transparent 7.4%),
    radial-gradient(ellipse at 54% 48%, rgba(68, 91, 56, 0.26) 0 5.7%, transparent 6.5%),
    linear-gradient(24deg, transparent 0 16%, rgba(70, 80, 44, 0.22) 16.4% 17.2%, transparent 17.6% 100%),
    linear-gradient(42deg, transparent 0 25%, rgba(70, 80, 44, 0.16) 25.4% 26%, transparent 26.5% 100%);
  filter: blur(1px);
  transform: rotate(6deg);
}

.memory-tree-shadow,
.memory-leaf-shadow {
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.memory-tree-shadow {
  background-image: url("/assets/live-rooted/mockup/assets/live-rooted-icon.png");
  filter:
    sepia(0.65)
    saturate(0.7)
    hue-rotate(28deg)
    brightness(0.78);
  mix-blend-mode: multiply;
}

.memory-tree-shadow-left {
  left: -170px;
  top: -125px;
  width: clamp(420px, 38vw, 700px);
  height: clamp(420px, 38vw, 700px);
  opacity: 0.24;
  transform: rotate(-18deg);
}

.memory-tree-shadow-lower {
  left: -96px;
  bottom: -210px;
  width: clamp(360px, 32vw, 560px);
  height: clamp(360px, 32vw, 560px);
  opacity: 0.17;
  transform: rotate(13deg);
}

.memory-leaf-shadow-top {
  left: 18px;
  top: -56px;
  width: min(34vw, 540px);
  height: 230px;
  opacity: 0.3;
  background:
    radial-gradient(ellipse at 11% 42%, rgba(89, 106, 56, 0.58) 0 7%, transparent 8%),
    radial-gradient(ellipse at 23% 32%, rgba(89, 106, 56, 0.46) 0 6%, transparent 7%),
    radial-gradient(ellipse at 35% 50%, rgba(89, 106, 56, 0.48) 0 7%, transparent 8%),
    radial-gradient(ellipse at 50% 30%, rgba(89, 106, 56, 0.42) 0 6%, transparent 7%),
    radial-gradient(ellipse at 64% 48%, rgba(89, 106, 56, 0.38) 0 6%, transparent 7%),
    linear-gradient(110deg, transparent 0 12%, rgba(89, 106, 56, 0.5) 13% 14%, transparent 15% 100%);
  filter: blur(1.2px);
  transform: rotate(-11deg);
}

.memory-photo-wall {
  position: absolute;
  inset: -18px -22px -24px 0;
  z-index: 1;
}

.memory-photo-wall::before {
  content: "";
  position: absolute;
  inset: 0 0 0 28%;
  background:
    radial-gradient(circle at 36% 12%, rgba(255, 247, 224, 0.4), transparent 22%),
    radial-gradient(circle at 76% 46%, rgba(255, 247, 224, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(255, 246, 224, 0.34), rgba(9, 62, 48, 0.1) 56%, transparent 88%);
  opacity: 0.7;
  transform: scale(1.02);
}

.memory-tile {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 3px solid rgba(255, 250, 239, 0.72);
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.42);
  box-shadow: 0 24px 66px rgba(35, 42, 34, 0.27);
  opacity: 1;
}

.memory-tile img,
.memory-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memory-tile-left-bloom {
  left: -1.5%;
  top: -8%;
  width: min(32vw, 520px);
  height: 38%;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 22px 54px rgba(35, 42, 34, 0.08);
  opacity: 1;
  transform: rotate(-6deg) scale(1.04);
}

.memory-tile-left-bloom img {
  object-position: 52% 56%;
}

.memory-tile-main {
  z-index: 2;
  left: 49.5%;
  top: -2%;
  width: min(39vw, 670px);
  height: min(35vw, 430px);
  min-height: 360px;
  border-radius: 34px;
  transform: rotate(0.65deg);
}

.memory-tile-main img {
  object-position: 52% 48%;
}

.memory-tile-grad {
  z-index: 3;
  left: 36.5%;
  top: -4%;
  width: min(18vw, 305px);
  height: 34%;
  transform: rotate(-2.4deg);
}

.memory-tile-grad img {
  object-position: 48% 42%;
}

.memory-tile-beach {
  z-index: 3;
  right: 1.2%;
  top: 22%;
  width: min(16vw, 270px);
  height: 40%;
  transform: rotate(2.6deg);
}

.memory-tile-beach img {
  object-position: 54% 34%;
}

.memory-tile-grass {
  z-index: 1;
  right: 2.4%;
  bottom: 1%;
  width: min(18vw, 305px);
  height: 31%;
  transform: rotate(-2.2deg);
}

.memory-tile-grass img {
  object-position: 47% 50%;
}

.memory-tile-swing {
  z-index: 4;
  left: 38.5%;
  top: 41%;
  width: min(24vw, 410px);
  height: 37%;
  transform: rotate(1.6deg);
}

.memory-tile-swing img {
  object-position: 53% 46%;
}

.memory-tile-dog {
  z-index: 4;
  left: 58%;
  bottom: 10%;
  width: min(31vw, 535px);
  height: 28%;
  transform: rotate(-0.8deg);
}

.memory-tile-dog img {
  object-position: 47% 31%;
}

.memory-tile-flower {
  z-index: 4;
  right: 17%;
  bottom: -3%;
  width: min(16vw, 270px);
  height: 20%;
  transform: rotate(1.8deg);
}

.memory-tile-flower img {
  object-position: 54% 47%;
}

.memory-tile-family {
  z-index: 2;
  left: 1.5%;
  bottom: -2%;
  width: min(36vw, 610px);
  height: 34%;
  transform: rotate(-2.2deg);
}

.memory-tile-family img {
  object-position: 52% 47%;
}

.memory-hero-scrim {
  z-index: 3;
  background:
    radial-gradient(circle at 2% 15%, rgba(250, 207, 122, 0.46), transparent 24%),
    radial-gradient(circle at 4% 30%, rgba(255, 247, 229, 0.98) 0%, rgba(255, 247, 229, 0.9) 18%, rgba(255, 247, 229, 0.52) 31%, transparent 47%),
    linear-gradient(90deg, rgba(255, 245, 222, 0.97) 0%, rgba(255, 246, 229, 0.82) 24%, rgba(255, 246, 229, 0.26) 38%, rgba(255, 246, 229, 0.02) 49%, transparent 60%),
    linear-gradient(180deg, rgba(250, 219, 151, 0.1), rgba(7, 63, 58, 0.01) 52%, rgba(7, 63, 58, 0.14));
}

.memory-hero-watermark {
  position: absolute;
  z-index: 4;
  right: min(3vw, 54px);
  bottom: 42px;
  width: clamp(220px, 21vw, 380px);
  opacity: 0.28;
  filter: brightness(0) invert(1) drop-shadow(0 18px 32px rgba(0, 0, 0, 0.22));
}

.memory-hero-copy {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 0;
  height: clamp(700px, calc(100svh - 170px), 760px);
  max-width: min(760px, 51vw);
  align-content: center;
  padding: clamp(52px, 6vw, 78px) 6.5vw clamp(110px, 10vw, 150px);
}

.memory-brand-line {
  display: none;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(7, 63, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.48);
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 44px rgba(50, 36, 26, 0.08);
  backdrop-filter: blur(16px);
}

.memory-brand-line img {
  width: 36px;
  height: 36px;
}

.memory-hero .hero-copy h1 {
  max-width: 840px;
  color: var(--forest);
  font-size: clamp(64px, 6vw, 96px);
  text-shadow: 0 16px 50px rgba(255, 253, 247, 0.72);
}

.memory-hero .hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.memory-hero .hero-text {
  max-width: 580px;
  color: #173a35;
  font-size: 19px;
  text-shadow: 0 12px 32px rgba(255, 253, 247, 0.72);
}

.memory-hero .primary-cta {
  background: linear-gradient(135deg, var(--forest), var(--pine));
  color: #fff8ed;
  box-shadow: 0 20px 48px rgba(7, 63, 58, 0.26);
}

.memory-hero .secondary-cta {
  background: rgba(255, 253, 247, 0.76);
  border-color: rgba(7, 63, 58, 0.28);
  color: var(--forest);
  box-shadow: 0 16px 40px rgba(50, 36, 26, 0.08);
}

.memory-root-garden-hook {
  position: absolute;
  z-index: 6;
  right: clamp(28px, 5vw, 86px);
  bottom: clamp(44px, 5.6vw, 92px);
  display: grid;
  gap: 12px;
  width: clamp(300px, 25vw, 390px);
  min-height: 342px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 24px;
  padding: 18px;
  color: #fff8ed;
  text-decoration: none;
  box-shadow: 0 26px 70px rgba(7, 38, 32, 0.34), 0 0 0 0 rgba(227, 173, 63, 0.28);
  isolation: isolate;
  animation: gardenHookPulse 2800ms ease-in-out infinite;
}

.memory-root-garden-card-link {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.memory-root-garden-hook::before,
.memory-root-garden-hook::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.memory-root-garden-hook::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 63, 58, 0.08), rgba(7, 63, 58, 0.78)),
    radial-gradient(circle at 12% 12%, rgba(255, 253, 247, 0.34), transparent 42%);
}

.memory-root-garden-hook::after {
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.24);
}

.memory-root-garden-hook video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.08);
}

.memory-root-garden-live {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 248, 237, 0.9);
  color: var(--forest);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.memory-root-garden-beacon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 253, 247, 0.96), rgba(244, 210, 124, 0.88) 44%, rgba(111, 140, 62, 0.76));
  box-shadow: 0 16px 34px rgba(7, 38, 32, 0.3), 0 0 0 0 rgba(244, 210, 124, 0.24);
  animation: gardenBeaconPulse 1800ms ease-in-out infinite;
}

.memory-root-garden-beacon::before,
.memory-root-garden-beacon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.memory-root-garden-beacon::before {
  inset: -9px;
  border: 1px solid rgba(244, 210, 124, 0.36);
  animation: gardenBeaconRing 1800ms ease-out infinite;
}

.memory-root-garden-beacon::after {
  width: 18px;
  height: 30px;
  border-radius: 70% 5px 70% 5px;
  background: linear-gradient(145deg, #315d37, #6f8c3e);
  transform: rotate(24deg);
  box-shadow: -10px 6px 0 -5px rgba(49, 93, 55, 0.82);
}

.memory-root-garden-beacon i {
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.8), transparent 28%);
}

.memory-root-garden-hook strong,
.memory-root-garden-hook small,
.memory-root-garden-path,
.memory-root-garden-mini-form {
  position: relative;
  z-index: 2;
}

.memory-root-garden-hook strong {
  max-width: 290px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 0.98;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.memory-root-garden-hook small {
  max-width: 290px;
  color: rgba(255, 248, 237, 0.92);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.memory-root-garden-hook small b {
  color: #fff8ed;
}

.memory-root-garden-return {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: 280px;
  align-items: center;
  border: 1px solid rgba(244, 210, 124, 0.32);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(7, 63, 58, 0.58);
  color: #fff8ed;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.16);
}

.memory-root-garden-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 7px;
  width: min(220px, 100%);
  margin-top: 4px;
}

.memory-root-garden-path i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.52);
  box-shadow: 0 0 18px rgba(255, 248, 237, 0.12);
}

.memory-root-garden-path i:first-child,
.memory-root-garden-path i:nth-child(2) {
  background: linear-gradient(90deg, #f4d27c, #fff8ed);
}

.memory-root-garden-hook:hover,
.memory-root-garden-hook:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 76px rgba(7, 38, 32, 0.38), 0 0 0 8px rgba(227, 173, 63, 0.16);
}

.memory-root-garden-card-link:focus-visible,
.memory-root-garden-mini-form input:focus-visible,
.memory-root-garden-mini-form button:focus-visible {
  outline: 3px solid rgba(255, 248, 237, 0.88);
  outline-offset: 3px;
}

.memory-root-garden-mini-form {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 18px;
  background: rgba(7, 63, 58, 0.58);
  box-shadow: 0 16px 34px rgba(7, 38, 32, 0.24);
  backdrop-filter: blur(14px);
}

.memory-root-garden-mini-form label {
  display: grid;
  gap: 5px;
  margin: 0;
}

.memory-root-garden-mini-form label > span {
  color: rgba(255, 248, 237, 0.92);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
}

.memory-root-garden-mini-form input[type="email"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 248, 237, 0.54);
  border-radius: 13px;
  padding: 0 12px;
  background: rgba(255, 253, 247, 0.94);
  color: var(--forest);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.memory-root-garden-mini-form input[type="email"]::placeholder {
  color: rgba(45, 60, 37, 0.6);
}

.memory-root-garden-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 7px !important;
  color: rgba(255, 248, 237, 0.92);
  font-size: 12px;
  font-weight: 850;
}

.memory-root-garden-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--sunset);
}

.memory-root-garden-mini-form button {
  min-height: 42px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #e15b44, #c74937);
  color: #fff8ed;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(79, 31, 22, 0.24);
}

.memory-root-garden-mini-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.memory-root-garden-mini-form p {
  margin: 0;
  color: rgba(255, 248, 237, 0.86);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.memory-hero-note {
  display: none;
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(58px, 7vw, 86px);
  max-width: 430px;
  padding: 18px 22px 20px;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 22px;
  background: rgba(6, 41, 36, 0.76);
  color: #fff8ed;
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: translateX(-8%);
}

.memory-hero-note span {
  display: block;
  margin-bottom: 6px;
  color: #f6d27a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.memory-hero-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

@keyframes gardenHookPulse {
  0%,
  100% {
    box-shadow: 0 26px 70px rgba(7, 38, 32, 0.34), 0 0 0 0 rgba(227, 173, 63, 0.28);
  }
  52% {
    box-shadow: 0 30px 76px rgba(7, 38, 32, 0.38), 0 0 0 10px rgba(227, 173, 63, 0.12);
  }
}

@keyframes gardenBeaconPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 34px rgba(7, 38, 32, 0.3), 0 0 0 0 rgba(244, 210, 124, 0.24);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 38px rgba(7, 38, 32, 0.34), 0 0 0 9px rgba(244, 210, 124, 0.12);
  }
}

@keyframes gardenBeaconRing {
  0% {
    opacity: 0.82;
    transform: scale(0.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.public-mission {
  margin-top: -86px;
}

.public-path-section,
.guide-showcase,
.resource-lane,
.rooted-finds-section,
.story-soft-section,
.library-preview-section,
.shop-tease,
.life-montage-section {
  padding: 72px 7vw;
}

.public-path-section .center-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.public-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.public-path-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 18px 44px rgba(50, 36, 26, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.public-path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 63, 58, 0.22);
  box-shadow: 0 24px 58px rgba(50, 36, 26, 0.12);
}

.path-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(168, 181, 139, 0.28);
  color: var(--forest);
  font-weight: 950;
}

.public-path-card strong,
.guide-feature-card h3,
.resource-row strong,
.find-card strong,
.story-note-stack strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.public-path-card strong {
  font-size: 27px;
  line-height: 1.08;
}

.public-path-card small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.life-montage-section {
  display: grid;
  grid-template-columns: 0.56fr 1fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.86), rgba(238, 245, 232, 0.72)),
    #fffaf2;
}

.montage-copy h2,
.guide-showcase-copy h2,
.resource-lane h2,
.rooted-finds-section h2,
.story-soft-section h2,
.library-preview-section h2,
.shop-tease h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 500;
  line-height: 1.02;
}

.montage-copy p,
.guide-showcase-copy p,
.resource-lane p,
.rooted-finds-section p,
.story-soft-section p,
.library-preview-section p,
.shop-tease p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.montage-reel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  grid-auto-rows: 150px;
  gap: 14px;
}

.montage-frame {
  overflow: hidden;
  margin: 0;
  border: 9px solid rgba(255, 253, 247, 0.88);
  border-radius: 30px;
  box-shadow: 0 22px 58px rgba(50, 36, 26, 0.16);
}

.montage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.montage-frame.is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.montage-frame.is-tall {
  grid-row: span 2;
}

.guide-showcase {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(520px, 1.28fr);
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 14%, rgba(227, 173, 63, 0.19), transparent 24%),
    linear-gradient(135deg, #fffdf8, #f2eadb);
}

.guide-showcase-copy {
  display: grid;
  gap: 22px;
}

.guide-feature-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 34px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 26px 70px rgba(50, 36, 26, 0.13);
}

.guide-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.guide-feature-card > div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.guide-feature-card span,
.resource-row span,
.find-card small {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guide-feature-card h3 {
  margin: 0;
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.02;
}

.guide-feature-card p,
.guide-feature-card li,
.find-card p,
.resource-row p,
.story-note-stack span {
  color: var(--muted);
  line-height: 1.55;
}

.guide-feature-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.resource-lane {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  background: rgba(255, 250, 242, 0.74);
}

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

.resource-row article,
.find-card {
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 18px 46px rgba(50, 36, 26, 0.08);
}

.resource-row strong {
  display: block;
  font-size: 25px;
  line-height: 1.08;
}

.rooted-finds-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(239, 119, 95, 0.14), transparent 25%),
    linear-gradient(180deg, #fbf5eb, #fffaf3);
}

.find-card {
  display: grid;
  gap: 14px;
}

.find-card img {
  width: 100%;
  height: 230px;
  border-radius: 20px;
  object-fit: cover;
}

.find-card strong {
  font-size: 28px;
  line-height: 1.08;
}

.story-soft-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(420px, 1.24fr);
  gap: 34px;
  background:
    linear-gradient(135deg, rgba(7, 63, 58, 0.94), rgba(9, 87, 75, 0.84)),
    url("./assets/kids-museum-wide-2.jpg") center/cover;
  color: #fff8ed;
}

.story-soft-section h2,
.story-soft-section p {
  color: #fff8ed;
}

.story-note-stack {
  display: grid;
  gap: 14px;
}

.story-note-stack article {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.story-note-stack strong {
  color: #fff8ed;
  font-size: 25px;
}

.story-note-stack span {
  color: rgba(255, 248, 237, 0.78);
}

.library-preview-section,
.shop-tease {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fffaf2;
}

.library-preview-section > div,
.shop-tease p {
  max-width: 760px;
}

.shop-tease {
  display: grid;
  text-align: center;
  justify-items: center;
}

.shop-funnel {
  align-items: start;
  text-align: left;
  justify-items: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(227, 173, 63, 0.14), transparent 26%),
    linear-gradient(180deg, #fffaf2, #eef5e8);
}

.shop-funnel .section-intro {
  max-width: 880px;
}

.shop-funnel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.shop-funnel-grid article {
  display: grid;
  gap: 12px;
  min-height: 250px;
  align-content: start;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 46px rgba(50, 36, 26, 0.08);
}

.shop-funnel-grid span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.shop-funnel-grid strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.05;
}

.shop-funnel-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.shop-funnel-grid a {
  align-self: end;
  justify-self: start;
  margin-top: auto;
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  background: var(--forest);
  color: #fff8ed;
  font-weight: 900;
}

.root-garden-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(320px, 0.48fr);
  grid-template-areas:
    "copy panel"
    "play panel";
  gap: clamp(22px, 3vw, 38px);
  min-height: 820px;
  padding: clamp(58px, 7vw, 92px) 7vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(227, 173, 63, 0.34), transparent 24%),
    linear-gradient(130deg, rgba(255, 250, 240, 0.98) 0%, rgba(253, 244, 225, 0.9) 34%, rgba(219, 234, 205, 0.7) 100%);
  isolation: isolate;
}

.root-garden-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 63, 58, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 63, 58, 0.05) 1px, transparent 1px);
  background-size: 96px 100%, 100% 86px;
  opacity: 0.34;
}

.root-garden-art {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.root-garden-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.02);
}

.root-garden-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 247, 229, 0.94) 0%, rgba(255, 247, 229, 0.86) 22%, rgba(255, 247, 229, 0.48) 39%, transparent 56%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.96) 0%, rgba(255, 247, 229, 0.78) 32%, rgba(255, 247, 229, 0.22) 53%, rgba(255, 247, 229, 0.04) 74%),
    linear-gradient(180deg, rgba(7, 63, 58, 0.02), rgba(7, 63, 58, 0.2));
}

.root-garden-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 700px;
}

.root-garden-title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.root-garden-title-row img {
  width: 32px;
  height: 32px;
}

.root-garden-copy h2,
.course-economy-section h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.root-garden-copy p,
.course-economy-section p,
.garden-panel small,
.garden-shop-preview span,
.garden-chapter-list {
  color: var(--muted);
  line-height: 1.62;
}

.root-garden-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #31423b;
  font-size: clamp(17px, 1.55vw, 20px);
}

.root-garden-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.root-garden-actions button {
  cursor: pointer;
}

.root-garden-gateway {
  position: relative;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(560px, 100%);
  margin-top: 18px;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 20px;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 18px 52px rgba(23, 46, 31, 0.16);
  color: var(--forest);
  text-decoration: none;
}

.root-garden-gateway::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(239, 119, 95, 0.46);
  opacity: 0;
  pointer-events: none;
  animation: rootGatewayPulse 2.8s ease-in-out infinite;
}

.root-garden-gateway video {
  width: 148px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.gateway-pulse {
  position: absolute;
  left: 127px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(227, 173, 63, 0.48);
  animation: rootGatewayDot 2s ease-out infinite;
}

.gateway-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.gateway-copy small {
  color: #946320;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gateway-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1;
}

.gateway-copy em {
  color: #40564c;
  font-style: normal;
  line-height: 1.35;
}

.root-garden-gateway:hover,
.root-garden-gateway:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(23, 46, 31, 0.2);
}

.root-garden-gateway--feature {
  grid-template-columns: minmax(178px, 0.48fr) minmax(0, 1fr);
  width: min(680px, 100%);
  min-height: 168px;
  margin-top: 22px;
  border-color: rgba(227, 173, 63, 0.42);
  border-radius: 24px;
  padding: 12px;
  background:
    radial-gradient(circle at 18% 8%, rgba(227, 173, 63, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(255, 248, 235, 0.78));
  box-shadow:
    0 22px 58px rgba(23, 46, 31, 0.18),
    0 0 0 0 rgba(239, 119, 95, 0.2);
  animation: rootGatewayGlow 3.4s ease-in-out infinite;
}

.root-garden-gateway--feature::after {
  border-color: rgba(239, 119, 95, 0.58);
  animation-duration: 2.3s;
}

.gateway-video-stage {
  position: relative;
  display: block;
  min-height: 142px;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe9dc;
  box-shadow: 0 18px 38px rgba(23, 46, 31, 0.16);
}

.root-garden-gateway--feature video {
  width: 100%;
  height: 100%;
  min-height: 142px;
  border-radius: inherit;
  object-fit: cover;
}

.root-garden-gateway--feature .gateway-pulse {
  left: auto;
  right: 16px;
  top: 14px;
  background: #fff8ed;
  box-shadow:
    0 0 0 0 rgba(255, 248, 237, 0.6),
    0 8px 18px rgba(23, 46, 31, 0.22);
}

.gateway-stone-row {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.gateway-stone-row i {
  display: grid;
  min-height: 28px;
  place-items: center;
  border: 2px solid rgba(255, 248, 237, 0.78);
  border-radius: 999px;
  background: rgba(38, 70, 45, 0.72);
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(23, 46, 31, 0.22);
}

.gateway-stone-row i.is-done {
  background: linear-gradient(135deg, var(--garden-seed-accent), var(--garden-seed-accent-dark));
}

.root-garden-gateway--feature .gateway-copy {
  gap: 7px;
}

.root-garden-gateway--feature .gateway-copy strong {
  font-size: clamp(28px, 2.8vw, 39px);
}

.root-garden-gateway--feature .gateway-copy em {
  max-width: 390px;
}

.gateway-reward-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 5px;
}

.gateway-reward-row b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--forest);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
}

@keyframes rootGatewayGlow {
  0%, 100% {
    box-shadow:
      0 22px 58px rgba(23, 46, 31, 0.18),
      0 0 0 0 rgba(239, 119, 95, 0);
  }
  48% {
    box-shadow:
      0 28px 68px rgba(23, 46, 31, 0.22),
      0 0 0 12px rgba(239, 119, 95, 0.08);
  }
}

@keyframes rootGatewayPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.98);
  }
  45% {
    opacity: 0.78;
    transform: scale(1);
  }
}

@keyframes rootGatewayDot {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 173, 63, 0.5);
  }
  80%, 100% {
    box-shadow: 0 0 0 18px rgba(227, 173, 63, 0);
  }
}

.garden-panel {
  grid-area: panel;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  align-self: center;
  width: min(420px, 100%);
  justify-self: end;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 30px;
  padding: 16px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: 0 28px 74px rgba(23, 46, 31, 0.22);
  backdrop-filter: blur(18px);
}

.root-garden-playfield {
  grid-area: play;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(320px, 1fr);
  gap: 14px;
  align-self: end;
  max-width: 880px;
}

.garden-path-card,
.garden-tending-card {
  border: 1px solid rgba(255, 253, 247, 0.7);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 22px 58px rgba(23, 46, 31, 0.16);
  backdrop-filter: blur(16px);
}

.garden-path-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.garden-path-card span,
.garden-tending-head span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.garden-path-card strong,
.garden-tending-head strong {
  display: block;
  margin-top: 5px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.05;
}

.garden-path-card p {
  max-width: 390px;
  margin: 12px 0 0;
  color: rgba(7, 63, 58, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.garden-path-map {
  position: relative;
  min-height: 226px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 30%, rgba(239, 119, 95, 0.18), transparent 22%),
    radial-gradient(circle at 76% 18%, rgba(227, 173, 63, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(111, 140, 62, 0.22), rgba(255, 248, 237, 0.84));
}

.path-thread {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 82px;
  height: 12px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(7, 63, 58, 0.65) 0 18px, rgba(7, 63, 58, 0.12) 18px 34px),
    rgba(255, 253, 247, 0.78);
  background-size: 68px 100%;
  box-shadow: inset 0 0 0 1px rgba(7, 63, 58, 0.1);
  animation: path-flow 2.4s linear infinite;
}

.path-stone {
  position: absolute;
  top: 54px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 5px solid rgba(255, 253, 247, 0.9);
  border-radius: 50%;
  background: linear-gradient(180deg, #f6edd9, #d9c59d);
  color: var(--forest);
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(23, 46, 31, 0.18);
}

.path-stone:nth-of-type(2) {
  left: 8%;
}

.path-stone:nth-of-type(3) {
  left: 28%;
  top: 75px;
}

.path-stone:nth-of-type(4) {
  left: 50%;
  top: 45px;
}

.path-stone:nth-of-type(5) {
  left: 70%;
  top: 76px;
}

.path-stone:nth-of-type(6) {
  right: 5%;
}

.path-stone.is-active {
  background: linear-gradient(180deg, var(--leaf), var(--forest));
  color: #fff8ed;
  animation: stone-breathe 2.1s ease-in-out infinite;
}

.path-stone--next {
  background: linear-gradient(180deg, #f7d88e, #ef775f);
}

@keyframes path-flow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 68px 0;
  }
}

@keyframes stone-breathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 24px rgba(23, 46, 31, 0.18);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(23, 46, 31, 0.28);
  }
}

.garden-tending-card {
  display: grid;
  gap: 14px;
}

.garden-tending-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.garden-tending-head small {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(111, 140, 62, 0.14);
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.garden-return-loop {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 92% 8%, var(--garden-seed-accent-soft), transparent 44%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(248, 241, 229, 0.78));
  box-shadow: 0 16px 38px rgba(45, 61, 42, 0.08);
}

.garden-return-loop > div:first-child {
  display: grid;
  gap: 4px;
}

.garden-return-loop span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-return-loop strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.garden-return-loop p,
.garden-return-loop > small {
  margin: 0;
  color: #40564c;
  line-height: 1.42;
}

.garden-return-loop > small {
  font-size: 12px;
  font-weight: 850;
}

.garden-return-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.garden-return-steps li {
  display: grid;
  gap: 5px;
  min-height: 92px;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 14px;
  padding: 11px;
  background: rgba(255, 253, 247, 0.74);
}

.garden-return-steps li > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(7, 63, 58, 0.1);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.garden-return-steps strong {
  font-family: inherit;
  font-size: 14px;
  font-weight: 950;
}

.garden-return-steps small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.garden-return-steps li.is-complete {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 38%, #fff8ed);
  background: color-mix(in srgb, var(--garden-seed-accent) 12%, #fffdfa);
}

.garden-return-steps li.is-complete > span {
  background: var(--garden-seed-accent);
  color: #fff8ed;
}

.garden-return-steps li.is-active {
  border-color: rgba(183, 122, 45, 0.38);
  background: rgba(255, 244, 214, 0.82);
  box-shadow: 0 0 0 4px rgba(227, 173, 63, 0.14);
}

.garden-return-steps li.is-locked {
  opacity: 0.62;
}

.garden-return-loop-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 63, 58, 0.09);
}

.garden-return-loop-meter i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--garden-seed-accent), var(--garden-seed-bloom));
  box-shadow: 0 0 20px var(--garden-seed-accent-soft);
  transition: width 420ms ease;
}

.garden-plot {
  position: relative;
  min-height: clamp(520px, 54vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(7, 63, 58, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(12, 42, 27, 0.32), transparent 28%, rgba(255, 250, 230, 0.08)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(18, 52, 31, 0.28)),
    url("/assets/live-rooted/root-garden-hero.png") center 55% / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 247, 0.58),
    inset 0 -44px 92px rgba(7, 63, 58, 0.2),
    0 24px 62px rgba(23, 46, 31, 0.14);
  isolation: isolate;
}

.garden-plot::before {
  content: "";
  position: absolute;
  inset: 11% 5% 11% 18%;
  border-radius: 55% 45% 48% 42%;
  background:
    radial-gradient(circle at 18% 90%, rgba(255, 253, 247, 0.96) 0 7px, transparent 8px),
    radial-gradient(circle at 29% 79%, rgba(247, 231, 196, 0.96) 0 9px, transparent 10px),
    radial-gradient(circle at 40% 67%, rgba(255, 253, 247, 0.94) 0 8px, transparent 9px),
    radial-gradient(circle at 52% 55%, rgba(236, 211, 169, 0.94) 0 10px, transparent 11px),
    radial-gradient(circle at 63% 43%, rgba(255, 253, 247, 0.94) 0 8px, transparent 9px),
    radial-gradient(circle at 74% 31%, rgba(236, 211, 169, 0.94) 0 10px, transparent 11px),
    radial-gradient(circle at 84% 20%, rgba(255, 253, 247, 0.92) 0 7px, transparent 8px);
  opacity: 0.76;
  filter: drop-shadow(0 8px 10px rgba(46, 36, 24, 0.18));
  transform: rotate(-10deg);
  z-index: 1;
}

.garden-plot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(55, 91, 43, 0.34) 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 82%, rgba(36, 78, 42, 0.26) 0 24%, transparent 25%),
    radial-gradient(ellipse at 81% 72%, rgba(52, 84, 38, 0.3) 0 20%, transparent 21%),
    linear-gradient(180deg, transparent, rgba(19, 54, 29, 0.22));
  opacity: 0.86;
  z-index: 0;
}

.garden-plot[data-garden-care-stage="sprouting"],
.garden-plot[data-garden-care-stage="lush"],
.garden-plot[data-garden-care-stage="full"] {
  background:
    radial-gradient(circle at 68% 78%, var(--garden-seed-accent-soft) 0 120px, transparent 124px),
    linear-gradient(90deg, rgba(12, 42, 27, 0.26), transparent 30%, rgba(255, 250, 230, 0.1)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.06), rgba(18, 52, 31, 0.22)),
    url("/assets/live-rooted/root-garden-hero.png") center 55% / cover no-repeat;
}

.garden-plot[data-garden-watered-today="true"] {
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 247, 0.58),
    inset 0 -44px 92px rgba(7, 63, 58, 0.16),
    0 0 0 3px rgba(130, 174, 191, 0.22),
    0 26px 66px rgba(23, 46, 31, 0.16);
}

.garden-plot[data-garden-room-theme="orchard"] {
  background:
    radial-gradient(circle at 83% 20%, rgba(232, 106, 66, 0.28) 0 150px, transparent 154px),
    radial-gradient(circle at 72% 72%, rgba(227, 173, 63, 0.22) 0 150px, transparent 154px),
    linear-gradient(90deg, rgba(55, 67, 28, 0.28), transparent 32%, rgba(255, 250, 230, 0.08)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(57, 77, 31, 0.3)),
    url("/assets/live-rooted/root-garden-hero.png") center 55% / cover no-repeat;
}

.garden-plot[data-garden-room-theme="pond"] {
  background:
    radial-gradient(ellipse at 48% 78%, rgba(126, 184, 194, 0.34) 0 170px, transparent 176px),
    radial-gradient(circle at 74% 28%, rgba(227, 173, 63, 0.16) 0 130px, transparent 134px),
    linear-gradient(90deg, rgba(10, 58, 74, 0.24), transparent 36%, rgba(255, 250, 230, 0.08)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(15, 74, 88, 0.26)),
    url("/assets/live-rooted/root-garden-hero.png") center 58% / cover no-repeat;
}

.garden-plot[data-garden-room-theme="wildflower"] {
  background:
    radial-gradient(circle at 28% 70%, rgba(239, 119, 95, 0.26) 0 150px, transparent 154px),
    radial-gradient(circle at 58% 62%, rgba(167, 116, 176, 0.2) 0 140px, transparent 144px),
    linear-gradient(90deg, rgba(52, 84, 38, 0.26), transparent 31%, rgba(255, 250, 230, 0.1)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(72, 105, 45, 0.26)),
    url("/assets/live-rooted/root-garden-hero.png") center 56% / cover no-repeat;
}

.garden-plot[data-garden-room-theme="seasonal"] {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 224, 165, 0.3) 0 150px, transparent 154px),
    radial-gradient(circle at 34% 68%, rgba(211, 129, 100, 0.22) 0 150px, transparent 154px),
    linear-gradient(90deg, rgba(95, 62, 39, 0.24), transparent 34%, rgba(255, 250, 230, 0.1)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(96, 73, 39, 0.28)),
    url("/assets/live-rooted/root-garden-hero.png") center 54% / cover no-repeat;
}

.garden-plot[data-garden-room-theme="full"] {
  background:
    radial-gradient(circle at 24% 64%, rgba(239, 119, 95, 0.22) 0 150px, transparent 154px),
    radial-gradient(circle at 78% 22%, rgba(227, 173, 63, 0.26) 0 150px, transparent 154px),
    radial-gradient(ellipse at 48% 78%, rgba(126, 184, 194, 0.2) 0 170px, transparent 176px),
    linear-gradient(90deg, rgba(7, 63, 58, 0.26), transparent 34%, rgba(255, 250, 230, 0.1)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(20, 74, 55, 0.3)),
    url("/assets/live-rooted/root-garden-hero.png") center 55% / cover no-repeat;
}

.garden-plot.is-room-traveling {
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 247, 0.64),
    inset 0 -44px 92px rgba(7, 63, 58, 0.18),
    0 0 0 4px color-mix(in srgb, var(--garden-seed-accent) 30%, transparent),
    0 28px 70px rgba(23, 46, 31, 0.18);
}

.garden-game-nav,
.garden-game-hud,
.garden-game-actions,
.garden-inventory-belt,
.garden-move-pad,
.garden-move-hint {
  position: absolute;
  z-index: 10;
}

.garden-game-nav,
.garden-game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.garden-game-nav {
  top: 14px;
  left: 50%;
  max-width: calc(100% - 360px);
  transform: translateX(-50%);
}

.garden-game-nav button,
.garden-game-actions button {
  border: 1px solid rgba(255, 253, 247, 0.7);
  border-radius: 999px;
  min-height: 38px;
  padding: 9px 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 253, 247, 0.9), transparent 36%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(237, 214, 174, 0.88));
  color: var(--forest);
  box-shadow: 0 12px 26px rgba(23, 46, 31, 0.22);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.garden-game-nav button:hover,
.garden-game-actions button:hover {
  transform: translateY(-1px);
}

.garden-game-nav button:disabled,
.garden-game-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.garden-game-hud {
  top: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 7px;
  max-width: min(420px, 44%);
}

.garden-game-hud span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 253, 247, 0.64);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--forest);
  box-shadow: 0 10px 22px rgba(23, 46, 31, 0.18);
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.garden-game-hud strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
}

.garden-game-actions {
  left: 50%;
  bottom: 16px;
  justify-content: center;
  width: min(560px, calc(100% - 32px));
  transform: translateX(-50%);
}

.garden-game-actions button {
  min-width: 96px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 253, 247, 0.86), transparent 34%),
    linear-gradient(180deg, #f5dfb5, #c46a50);
  color: #fffdf7;
  text-shadow: 0 1px 0 rgba(75, 39, 28, 0.28);
}

.garden-game-actions button:nth-child(1) {
  background: linear-gradient(180deg, #dcecc9, #5f8a60);
}

.garden-game-actions button:nth-child(2) {
  background: linear-gradient(180deg, #f7dda4, #be7b2c);
}

.garden-game-actions button:nth-child(4) {
  background: linear-gradient(180deg, #f4eee0, #466d57);
}

.garden-inventory-belt {
  left: 18px;
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: min(420px, calc(100% - 190px));
  min-height: 54px;
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 18px;
  padding: 7px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 239, 184, 0.5), transparent 36%),
    rgba(255, 253, 247, 0.46);
  box-shadow: 0 16px 30px rgba(23, 46, 31, 0.18);
  backdrop-filter: blur(12px);
}

.garden-inventory-belt-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 12px;
  padding: 0 8px;
  color: rgba(7, 63, 58, 0.78);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.garden-inventory-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  min-width: 48px;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 14px;
  padding: 4px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 253, 247, 0.92), transparent 36%),
    linear-gradient(180deg, rgba(246, 231, 196, 0.94), rgba(76, 119, 89, 0.84));
  color: var(--forest);
  box-shadow:
    0 10px 18px rgba(23, 46, 31, 0.18),
    inset 0 1px 0 rgba(255, 253, 247, 0.72);
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.garden-inventory-slot:hover,
.garden-inventory-slot:focus-visible,
.garden-inventory-slot.is-dragging {
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    0 12px 22px rgba(23, 46, 31, 0.22),
    0 0 0 3px rgba(255, 244, 191, 0.28);
}

.garden-inventory-slot.is-dragging {
  cursor: grabbing;
  opacity: 0.72;
}

.garden-inventory-slot img {
  display: block;
  width: 36px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 5px 5px rgba(23, 46, 31, 0.22));
}

.garden-inventory-slot span {
  overflow: hidden;
  width: 1px;
  height: 1px;
  position: absolute;
}

.garden-inventory-slot--empty {
  color: rgba(7, 63, 58, 0.8);
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 253, 247, 0.9), transparent 36%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.86), rgba(210, 225, 205, 0.84));
}

.garden-inventory-slot--empty strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.garden-move-pad {
  right: 18px;
  bottom: 64px;
  display: grid;
  grid-template-columns: repeat(3, 38px);
  grid-template-rows: repeat(3, 34px);
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 253, 247, 0.55);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.42);
  box-shadow: 0 16px 30px rgba(23, 46, 31, 0.18);
  backdrop-filter: blur(10px);
  touch-action: none;
}

.garden-move-pad button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 253, 247, 0.92), transparent 34%),
    linear-gradient(180deg, rgba(246, 231, 196, 0.92), rgba(76, 119, 89, 0.9));
  color: #fffdf7;
  box-shadow:
    0 10px 18px rgba(23, 46, 31, 0.2),
    inset 0 1px 0 rgba(255, 253, 247, 0.72);
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(26, 56, 39, 0.24);
  touch-action: none;
}

.garden-move-pad button::before {
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.garden-move-pad button:hover,
.garden-move-pad button:focus-visible,
.garden-move-pad button.is-held {
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    0 12px 22px rgba(23, 46, 31, 0.24),
    0 0 0 3px rgba(255, 244, 191, 0.36);
}

.garden-move-pad button.is-held {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 253, 247, 0.92), transparent 34%),
    linear-gradient(180deg, rgba(255, 226, 158, 0.96), rgba(68, 109, 87, 0.94));
}

.garden-move-pad [data-helper-nudge="up"] {
  grid-column: 2;
  grid-row: 1;
}

.garden-move-pad [data-helper-nudge="left"] {
  grid-column: 1;
  grid-row: 2;
}

.garden-move-pad [data-helper-joystick] {
  grid-column: 2;
  grid-row: 2;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 253, 247, 0.96) 0 13%, transparent 14%),
    radial-gradient(circle, rgba(255, 230, 163, 0.7) 0 34%, rgba(63, 105, 80, 0.95) 35% 100%);
  box-shadow:
    0 12px 20px rgba(23, 46, 31, 0.24),
    inset 0 2px 0 rgba(255, 253, 247, 0.78),
    inset 0 -6px 9px rgba(31, 58, 41, 0.24);
}

.garden-move-pad [data-helper-joystick]::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fffdf7;
  box-shadow:
    0 0 0 4px rgba(255, 253, 247, 0.18),
    0 4px 8px rgba(23, 46, 31, 0.2);
}

.garden-move-pad [data-helper-joystick].is-joystick-active {
  transform: scale(0.96);
}

.garden-move-pad [data-helper-nudge="right"] {
  grid-column: 3;
  grid-row: 2;
}

.garden-move-pad [data-helper-nudge="down"] {
  grid-column: 2;
  grid-row: 3;
}

.garden-move-pad [data-helper-nudge="up"]::before { content: "▲"; }
.garden-move-pad [data-helper-nudge="left"]::before { content: "◀"; }
.garden-move-pad [data-helper-nudge="right"]::before { content: "▶"; }
.garden-move-pad [data-helper-nudge="down"]::before { content: "▼"; }

.garden-move-pad [data-helper-nudge="up"]::before { content: "\25B2"; }
.garden-move-pad [data-helper-nudge="left"]::before { content: "\25C0"; }
.garden-move-pad [data-helper-nudge="right"]::before { content: "\25B6"; }
.garden-move-pad [data-helper-nudge="down"]::before { content: "\25BC"; }

.garden-move-hint {
  left: 18px;
  bottom: 16px;
  max-width: min(280px, calc(100% - 36px));
  border: 1px solid rgba(255, 253, 247, 0.62);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 253, 247, 0.78);
  color: rgba(7, 63, 58, 0.78);
  box-shadow: 0 10px 22px rgba(23, 46, 31, 0.16);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.garden-plot-stage-card {
  position: absolute;
  top: 72px;
  left: 18px;
  z-index: 5;
  display: grid;
  gap: 4px;
  max-width: min(280px, calc(100% - 36px));
  border: 1px solid rgba(255, 253, 247, 0.55);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 14px 30px rgba(23, 46, 31, 0.2);
  color: var(--forest);
  backdrop-filter: blur(10px);
}

.garden-plot-stage-card small {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.garden-plot-stage-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.04;
}

.garden-fence-build {
  position: absolute;
  right: 4%;
  bottom: 14%;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 4px;
  width: min(48%, 430px);
  height: 104px;
  padding: 0 10px 20px;
  pointer-events: none;
  transform: perspective(620px) rotateX(50deg) rotateZ(-2deg);
  transform-origin: center bottom;
  filter: drop-shadow(0 18px 18px rgba(32, 27, 20, 0.34));
}

.garden-fence-build::before,
.garden-fence-build::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff4d8, #b8753f 82%);
  box-shadow: inset 0 2px 0 rgba(255, 253, 247, 0.58);
}

.garden-fence-build::before { bottom: 48px; }
.garden-fence-build::after { bottom: 20px; }

.garden-fence-build i {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  max-width: 48px;
  height: 92px;
  border-radius: 18px 18px 8px 8px;
  background:
    radial-gradient(circle at 50% 10%, #fff9e8 0 10px, transparent 11px),
    linear-gradient(90deg, rgba(108, 66, 34, 0.26) 0 2px, transparent 2px calc(100% - 2px), rgba(108, 66, 34, 0.2) calc(100% - 2px)),
    linear-gradient(180deg, #fff3d4, #d59c61 72%, #9a6137);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.72),
    inset 0 -8px 0 rgba(112, 66, 36, 0.14);
  opacity: 0.34;
  transform: translateY(16px) scaleY(0.72);
  transition: opacity 360ms ease, transform 360ms ease;
}

.garden-fence-build i:nth-child(1),
.garden-fence-build i:nth-child(2) {
  opacity: 0.9;
  transform: translateY(0) scaleY(1);
}

.garden-plot[data-garden-care-stage="sprouting"] .garden-fence-build i:nth-child(-n + 4),
.garden-plot[data-garden-care-stage="lush"] .garden-fence-build i:nth-child(-n + 5),
.garden-plot[data-garden-care-stage="full"] .garden-fence-build i {
  opacity: 0.96;
  transform: translateY(0) scaleY(1);
}

.garden-water-shimmer,
.garden-growth-glow {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 360ms ease, transform 360ms ease;
}

.garden-water-shimmer {
  left: 42%;
  bottom: 24%;
  width: 30%;
  height: 34%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 38%, rgba(232, 250, 255, 0.88) 0 5px, transparent 6px),
    radial-gradient(circle at 54% 58%, rgba(232, 250, 255, 0.78) 0 4px, transparent 5px),
    radial-gradient(circle at 66% 28%, rgba(232, 250, 255, 0.72) 0 3px, transparent 4px),
    linear-gradient(120deg, transparent, rgba(173, 217, 226, 0.28), transparent);
  transform: rotate(-12deg) translateY(12px);
  filter: blur(0.2px);
}

.garden-growth-glow {
  inset: auto 9% 7% 8%;
  height: 40%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 24% 42%, rgba(255, 218, 128, 0.3), transparent 36%),
    radial-gradient(ellipse at 70% 54%, var(--garden-seed-accent-soft), transparent 44%);
  mix-blend-mode: screen;
  transform: translateY(10px);
}

.garden-plot[data-garden-watered-today="true"] .garden-water-shimmer,
.garden-plot[data-garden-care-stage="sprouting"] .garden-growth-glow,
.garden-plot[data-garden-care-stage="lush"] .garden-growth-glow,
.garden-plot[data-garden-care-stage="full"] .garden-growth-glow {
  opacity: 1;
  transform: translateY(0);
}

.garden-helper {
  position: absolute;
  left: 18%;
  top: 76%;
  z-index: 8;
  width: clamp(74px, 6.7vw, 118px);
  aspect-ratio: 0.62;
  pointer-events: none;
  transform: translate(-50%, -100%) rotate(-1deg);
  transform-origin: 50% 100%;
  filter: drop-shadow(0 20px 20px rgba(23, 46, 31, 0.32));
  transition: left 850ms cubic-bezier(0.2, 0.86, 0.22, 1), top 850ms cubic-bezier(0.2, 0.86, 0.22, 1);
}

.garden-plot[data-helper-mode="free"] .garden-helper {
  left: var(--helper-free-x, 18%);
  top: var(--helper-free-y, 76%);
}

.garden-helper img {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  transform-origin: 50% 100%;
  translate: 0 0;
  rotate: 0deg;
}

.garden-helper[data-helper-facing="left"] img {
  transform: scaleX(-1);
}

.garden-helper::before,
.garden-helper::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1%;
  z-index: 3;
  display: block;
  width: 22%;
  height: 7%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 35%, rgba(255, 236, 191, 0.58), transparent 34%),
    linear-gradient(180deg, rgba(137, 91, 48, 0.94), rgba(47, 31, 21, 0.78));
  box-shadow:
    0 4px 8px rgba(23, 46, 31, 0.34),
    inset 0 1px 0 rgba(255, 253, 247, 0.2);
  opacity: 0;
  transform-origin: 50% 50%;
}

.garden-helper::before {
  transform: translateX(-115%) rotate(5deg);
}

.garden-helper::after {
  transform: translateX(18%) rotate(-5deg);
}

.garden-plot.is-helper-walking .garden-helper::before,
.garden-plot.is-helper-free-moving .garden-helper::before {
  width: 27%;
  height: 8.5%;
  bottom: -0.5%;
}

.garden-plot.is-helper-walking .garden-helper::after,
.garden-plot.is-helper-free-moving .garden-helper::after {
  width: 27%;
  height: 8.5%;
  bottom: -0.5%;
}

.garden-plot.is-helper-walking .garden-helper img,
.garden-plot.is-helper-free-moving .garden-helper img {
  animation: helperSpriteWalk 520ms ease-in-out infinite;
}

.garden-plot.is-helper-walking .garden-helper::before,
.garden-plot.is-helper-walking .garden-helper::after,
.garden-plot.is-helper-free-moving .garden-helper::before,
.garden-plot.is-helper-free-moving .garden-helper::after {
  opacity: 0.96;
}

.garden-plot.is-helper-walking .garden-helper::before,
.garden-plot.is-helper-free-moving .garden-helper::before {
  animation: helperLeftFoot 520ms ease-in-out infinite;
}

.garden-plot.is-helper-walking .garden-helper::after,
.garden-plot.is-helper-free-moving .garden-helper::after {
  animation: helperRightFoot 520ms ease-in-out infinite;
}

.garden-helper[data-helper-state="plant"] {
  width: clamp(80px, 6.5vw, 112px);
}

.garden-helper[data-helper-state="water"] {
  width: clamp(80px, 6.4vw, 110px);
}

.garden-helper[data-helper-state="harvest"] {
  width: clamp(84px, 6.8vw, 118px);
}

.garden-helper[data-helper-state="celebrate"] {
  width: clamp(76px, 6.2vw, 108px);
}

.garden-helper i,
.garden-helper b {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.garden-helper i {
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 253, 247, 0.9), transparent 32%),
    #d9a16a;
  box-shadow: inset 0 -4px 0 rgba(104, 65, 42, 0.18);
}

.garden-helper b {
  top: 25px;
  width: 42px;
  height: 48px;
  border-radius: 18px 18px 14px 14px;
  background:
    radial-gradient(circle at 50% 6%, #fff8e8 0 8px, transparent 9px),
    linear-gradient(180deg, var(--garden-seed-accent), var(--garden-seed-accent-dark));
}

.garden-helper b::before,
.garden-helper b::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: #d9a16a;
}

.garden-helper b::before {
  left: -12px;
  transform: rotate(22deg);
}

.garden-helper b::after {
  right: -12px;
  transform: rotate(-22deg);
}

.garden-plot.is-helper-walking .garden-helper {
  left: var(--helper-target-x, 50%);
  top: var(--helper-target-y, 72%);
  animation: helperBob 420ms ease-in-out infinite;
}

.garden-plot.is-helper-planting .garden-helper {
  left: var(--helper-target-x, 50%);
  top: var(--helper-target-y, 72%);
  animation: helperPlant 720ms ease-in-out 1;
}

.garden-plot.is-helper-watering .garden-helper {
  left: 34%;
  top: 82%;
  animation: helperWater 960ms ease-in-out infinite;
}

.garden-plot.is-helper-harvesting .garden-helper {
  left: 72%;
  top: 72%;
  animation: helperHarvest 900ms ease-in-out infinite;
}

.garden-plot.is-helper-celebrating .garden-helper {
  animation: helperCelebrate 860ms ease-in-out infinite;
}

.garden-plot.is-helper-free-moving .garden-helper {
  animation: helperBob 420ms ease-in-out infinite;
}

.garden-plot.is-helper-blocked .garden-helper {
  filter:
    drop-shadow(0 20px 20px rgba(23, 46, 31, 0.32))
    drop-shadow(0 0 12px rgba(255, 239, 176, 0.78));
}

.garden-plot.is-helper-blocked .garden-helper::before,
.garden-plot.is-helper-blocked .garden-helper::after {
  background: linear-gradient(180deg, rgba(255, 239, 176, 0.9), rgba(107, 79, 42, 0.64));
}

.garden-plot.is-helper-blocked .garden-move-target {
  border-color: rgba(255, 239, 176, 0.95);
  background:
    radial-gradient(circle, rgba(255, 253, 247, 0.92) 0 8%, rgba(255, 239, 176, 0.45) 9% 48%, transparent 49%),
    rgba(7, 63, 58, 0.08);
  box-shadow:
    0 0 0 6px rgba(255, 239, 176, 0.18),
    0 16px 30px rgba(23, 46, 31, 0.24);
}

.garden-plot.is-helper-walking::after,
.garden-plot.is-helper-free-moving::after,
.garden-plot.is-placement-pending::after,
.garden-plot[data-pending-placement="true"]::after {
  background:
    radial-gradient(ellipse at var(--helper-free-x, 50%) var(--helper-free-y, 76%), rgba(255, 247, 205, 0.3) 0 8%, transparent 18%),
    radial-gradient(ellipse at 20% 70%, rgba(55, 91, 43, 0.34) 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 82%, rgba(36, 78, 42, 0.26) 0 24%, transparent 25%),
    radial-gradient(ellipse at 81% 72%, rgba(52, 84, 38, 0.3) 0 20%, transparent 21%),
    linear-gradient(180deg, transparent, rgba(19, 54, 29, 0.22));
  opacity: 0.94;
}

.garden-magic-burst {
  position: absolute;
  left: var(--magic-x, 50%);
  top: var(--magic-y, 72%);
  z-index: 7;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 247, 0.96) 0 5px, transparent 6px),
    radial-gradient(circle at 22% 36%, #fff0a6 0 4px, transparent 5px),
    radial-gradient(circle at 74% 34%, #fff0a6 0 5px, transparent 6px),
    radial-gradient(circle at 36% 72%, #f6b9a9 0 5px, transparent 6px),
    radial-gradient(circle at 66% 72%, #d7f2c0 0 5px, transparent 6px),
    radial-gradient(circle, rgba(255, 235, 159, 0.5), transparent 62%);
  filter: drop-shadow(0 0 18px rgba(255, 229, 150, 0.72));
}

.garden-move-target {
  position: absolute;
  left: var(--helper-move-target-x, 50%);
  top: var(--helper-move-target-y, 76%);
  z-index: 5;
  width: 82px;
  height: 34px;
  border: 2px solid rgba(255, 253, 247, 0.82);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) perspective(280px) rotateX(58deg) scale(0.64);
  background:
    radial-gradient(ellipse at center, rgba(255, 247, 205, 0.34), rgba(129, 166, 92, 0.16), transparent 72%),
    repeating-radial-gradient(ellipse at center, rgba(255, 253, 247, 0.34) 0 2px, transparent 3px 8px);
  box-shadow:
    0 0 24px rgba(255, 239, 176, 0.5),
    inset 0 0 0 1px rgba(75, 106, 61, 0.16);
}

.garden-move-target::before,
.garden-move-target::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 253, 247, 0.64);
  border-radius: inherit;
}

.garden-move-target::after {
  inset: 13px;
  background: rgba(255, 253, 247, 0.64);
  box-shadow: 0 0 12px rgba(255, 239, 176, 0.72);
}

.garden-plot.is-helper-targeting .garden-move-target {
  opacity: 1;
  animation: gardenMoveTargetPulse 920ms ease-in-out infinite;
}

.garden-action-reward {
  position: absolute;
  left: var(--garden-action-x, 50%);
  top: var(--garden-action-y, 66%);
  z-index: 14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 34px;
  border: 1px solid rgba(255, 253, 247, 0.76);
  border-radius: 999px;
  padding: 8px 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 253, 247, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 246, 203, 0.96), rgba(95, 138, 96, 0.9));
  color: #fffdf7;
  box-shadow:
    0 18px 26px rgba(23, 46, 31, 0.26),
    0 0 22px rgba(255, 239, 176, 0.52),
    inset 0 1px 0 rgba(255, 253, 247, 0.44);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  text-shadow: 0 1px 0 rgba(23, 46, 31, 0.22);
  transform: translate(-50%, -88%) scale(0.72);
}

.garden-action-reward::before,
.garden-action-reward::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 0 12px rgba(255, 239, 176, 0.8);
}

.garden-action-reward::before {
  width: 7px;
  height: 7px;
  left: 12px;
  top: -7px;
}

.garden-action-reward::after {
  width: 5px;
  height: 5px;
  right: 13px;
  bottom: -6px;
}

.garden-action-reward[data-reward-action="harvest"] {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 253, 247, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 205, 118, 0.96), rgba(180, 101, 43, 0.95));
}

.garden-action-reward[data-reward-action="water"] {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 253, 247, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(181, 220, 190, 0.96), rgba(75, 121, 91, 0.94));
}

.garden-plot.is-action-reward-visible .garden-action-reward {
  animation: gardenActionRewardPop 1450ms ease-out both;
}

.garden-seed-flight {
  position: absolute;
  left: var(--garden-action-x, 50%);
  top: var(--garden-action-y, 66%);
  z-index: 15;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

.garden-seed-flight i {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 10px;
  height: 15px;
  border-radius: 76% 24% 70% 30% / 60% 28% 72% 40%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 253, 247, 0.92), transparent 32%),
    linear-gradient(145deg, #f5f0a3, #6e9c55 52%, #315f39);
  box-shadow:
    0 5px 10px rgba(23, 46, 31, 0.24),
    0 0 12px rgba(255, 239, 176, 0.72);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-22deg) scale(0.68);
}

.garden-seed-flight i:nth-child(1) { --seed-dx: 42vw; --seed-dy: -58vh; --seed-delay: 0ms; }
.garden-seed-flight i:nth-child(2) { --seed-dx: 48vw; --seed-dy: -52vh; --seed-delay: 90ms; }
.garden-seed-flight i:nth-child(3) { --seed-dx: 53vw; --seed-dy: -60vh; --seed-delay: 170ms; }
.garden-seed-flight i:nth-child(4) { --seed-dx: 38vw; --seed-dy: -48vh; --seed-delay: 250ms; }
.garden-seed-flight i:nth-child(5) { --seed-dx: 58vw; --seed-dy: -54vh; --seed-delay: 330ms; }

.garden-plot.is-seed-flight-visible .garden-seed-flight {
  opacity: 1;
}

.garden-plot.is-seed-flight-visible .garden-seed-flight i {
  animation: gardenSeedFlyToWallet 1450ms cubic-bezier(0.2, 0.84, 0.22, 1) var(--seed-delay, 0ms) both;
}

.garden-placement-target {
  position: absolute;
  left: var(--placement-x, var(--helper-free-x, 50%));
  top: var(--placement-y, var(--helper-free-y, 76%));
  z-index: 6;
  width: 96px;
  height: 42px;
  border: 2px dashed rgba(255, 253, 247, 0.84);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) perspective(260px) rotateX(58deg);
  background: radial-gradient(ellipse at center, rgba(255, 236, 171, 0.28), rgba(111, 140, 62, 0.12), transparent 72%);
  box-shadow: 0 0 26px rgba(255, 229, 150, 0.38);
  transition: left 120ms ease-out, top 120ms ease-out, border-color 180ms ease, background 180ms ease;
}

.garden-placement-target img {
  position: absolute;
  left: 50%;
  bottom: 64%;
  display: block;
  width: 88px;
  max-width: 120%;
  height: 88px;
  object-fit: contain;
  opacity: 0;
  transform: translate(-50%, 0) scale(0.92);
  filter:
    drop-shadow(0 18px 18px rgba(23, 46, 31, 0.34))
    drop-shadow(0 0 18px rgba(255, 253, 247, 0.9))
    drop-shadow(0 0 22px rgba(255, 239, 176, 0.72));
  transition: opacity 160ms ease, transform 160ms ease;
}

.garden-plot-zones {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.garden-plot-zones span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 118px;
  height: 52px;
  border: 2px dashed rgba(255, 253, 247, 0.5);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 253, 247, 0.16), rgba(111, 140, 62, 0.1), transparent 70%);
  color: rgba(255, 253, 247, 0.86);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(23, 46, 31, 0.55);
  opacity: 0;
  transform: translate(-50%, -50%) perspective(280px) rotateX(58deg) scale(0.9);
  transition: opacity 220ms ease, transform 220ms ease;
}

.garden-plot-zones [data-plot-zone="wildflower-bed"] { left: 33.5%; top: 72%; }
.garden-plot-zones [data-plot-zone="entry-gate"] { left: 78%; top: 76%; }
.garden-plot-zones [data-plot-zone="quiet-corner"] { left: 61%; top: 79%; }
.garden-plot-zones [data-plot-zone="orchard-edge"] { left: 84%; top: 57%; }

.garden-plot[data-pending-placement="true"] .garden-plot-zones span,
.garden-plot.is-placement-pending .garden-plot-zones span {
  opacity: 1;
  transform: translate(-50%, -50%) perspective(280px) rotateX(58deg) scale(1);
}

.garden-plot[data-pending-placement="true"] .garden-plot-zones span.is-occupied,
.garden-plot.is-placement-pending .garden-plot-zones span.is-occupied {
  border-color: rgba(196, 106, 80, 0.82);
  background:
    radial-gradient(ellipse at center, rgba(255, 238, 218, 0.24), rgba(196, 106, 80, 0.18), transparent 72%);
  color: rgba(255, 244, 232, 0.92);
  opacity: 0.72;
}

.garden-plot[data-pending-placement="true"] .garden-plot-zones span.is-active-placement,
.garden-plot.is-placement-pending .garden-plot-zones span.is-active-placement {
  border-color: rgba(255, 253, 247, 0.96);
  background:
    radial-gradient(ellipse at center, rgba(255, 253, 247, 0.62), rgba(255, 224, 153, 0.32), transparent 72%);
  color: var(--forest);
  opacity: 1;
  transform: translate(-50%, -50%) perspective(280px) rotateX(58deg) scale(1.12);
  box-shadow:
    0 0 0 4px rgba(255, 244, 191, 0.2),
    0 16px 28px rgba(23, 46, 31, 0.18);
  text-shadow: none;
}

.garden-plot[data-pending-placement="true"],
.garden-plot.is-placement-pending {
  cursor: crosshair;
}

.garden-plot[data-pending-placement="true"] .garden-placement-target,
.garden-plot.is-placement-pending .garden-placement-target {
  opacity: 1;
  animation: placementPulse 1.4s ease-in-out infinite;
}

.garden-plot[data-pending-placement="true"] .garden-placement-target img,
.garden-plot.is-placement-pending .garden-placement-target img {
  opacity: 0.94;
  transform: translate(-50%, 0) scale(1);
  animation: placementGhostFloat 1.4s ease-in-out infinite;
}

.garden-plot[data-placement-blocked="true"] .garden-placement-target {
  border-color: rgba(255, 207, 145, 0.92);
  background: radial-gradient(ellipse at center, rgba(255, 223, 174, 0.34), rgba(196, 106, 80, 0.16), transparent 72%);
}

.garden-placement-mission {
  position: absolute;
  left: 50%;
  bottom: clamp(82px, 10vw, 118px);
  z-index: 12;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(620px, calc(100% - 32px));
  min-height: 82px;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 20px;
  padding: 10px 12px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 239, 184, 0.62), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.93), rgba(232, 248, 224, 0.86));
  box-shadow:
    0 20px 55px rgba(23, 46, 31, 0.28),
    inset 0 0 0 1px rgba(255, 253, 247, 0.36);
  transform: translateX(-50%) translateY(14px) scale(0.98);
  opacity: 0;
  pointer-events: none;
}

.garden-placement-mission:not([hidden]),
.garden-placement-mission.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  transition: opacity 180ms ease, transform 180ms ease;
}

.garden-placement-mission img {
  display: block;
  width: clamp(54px, 6vw, 76px);
  height: clamp(54px, 6vw, 76px);
  object-fit: contain;
  filter: drop-shadow(0 11px 12px rgba(23, 46, 31, 0.22));
}

.garden-placement-mission small {
  display: block;
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.garden-placement-mission strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1.05;
}

.garden-placement-mission span {
  display: block;
  margin-top: 3px;
  color: #40564c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.garden-placement-mission-actions {
  display: grid;
  gap: 7px;
  min-width: 106px;
}

.garden-placement-mission-actions button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--garden-seed-accent, #b9654d), var(--garden-seed-accent-dark, #873d35));
  color: #fff8ed;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(110, 67, 22, 0.2);
}

.garden-placement-mission-actions button + button {
  border: 1px solid rgba(7, 63, 58, 0.16);
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
  box-shadow: none;
}

.garden-placed-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.garden-placed-reward {
  position: absolute;
  left: var(--placed-x, 50%);
  top: var(--placed-y, 80%);
  display: grid;
  justify-items: center;
  min-width: 110px;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 18px 18px rgba(23, 46, 31, 0.22));
  animation: placedObjectArrive 520ms ease-out both;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
}

.garden-placed-reward:hover,
.garden-placed-reward:focus-visible {
  outline: none;
  filter:
    drop-shadow(0 18px 18px rgba(23, 46, 31, 0.22))
    drop-shadow(0 0 16px rgba(255, 230, 154, 0.72));
}

.garden-placed-reward.is-selected {
  z-index: 3;
  filter:
    drop-shadow(0 18px 18px rgba(23, 46, 31, 0.22))
    drop-shadow(0 0 20px rgba(255, 230, 154, 0.86));
}

.garden-placed-reward.is-dragging {
  z-index: 12;
  cursor: grabbing;
  animation: none;
  filter:
    drop-shadow(0 24px 24px rgba(23, 46, 31, 0.26))
    drop-shadow(0 0 22px rgba(255, 230, 154, 0.9));
  transform: translate(-50%, -106%) scale(1.05);
}

.garden-placed-reward.is-dragging span {
  background: rgba(255, 253, 247, 0.94);
}

.garden-placed-reward.is-selected::after {
  content: none;
}

.garden-placed-reward-menu {
  position: absolute;
  left: 50%;
  top: -56px;
  z-index: 4;
  display: flex;
  gap: 5px;
  width: auto;
  max-width: none;
  border: 1px solid rgba(255, 253, 247, 0.78);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow:
    0 14px 26px rgba(23, 46, 31, 0.2),
    inset 0 0 0 1px rgba(255, 253, 247, 0.42);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.garden-placed-reward-menu button {
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 6px 9px;
  background: linear-gradient(180deg, #dcecc9, #5f8a60);
  color: #fffdf7;
  box-shadow: 0 8px 14px rgba(23, 46, 31, 0.14);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(23, 46, 31, 0.18);
}

.garden-placed-reward-menu button:nth-child(2) {
  background: linear-gradient(180deg, #f4eee0, #466d57);
}

.garden-placed-reward-menu button:nth-child(3) {
  border: 1px solid rgba(7, 63, 58, 0.14);
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
  box-shadow: none;
  text-shadow: none;
}

.garden-placed-reward img {
  display: block;
  width: clamp(76px, 8vw, 132px);
  max-height: 128px;
  object-fit: contain;
}

.garden-placed-reward span {
  margin-top: -4px;
  max-width: 190px;
  border: 1px solid rgba(255, 253, 247, 0.68);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--forest);
  box-shadow: 0 8px 16px rgba(23, 46, 31, 0.16);
  font-size: 10px;
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
  backdrop-filter: blur(8px);
}

.garden-plot.is-magic-appearing .garden-magic-burst {
  animation: magicPlantBurst 1200ms ease-out both;
}

@keyframes placementPulse {
  0%, 100% { transform: translate(-50%, -50%) perspective(260px) rotateX(58deg) scale(0.94); opacity: 0.58; }
  50% { transform: translate(-50%, -50%) perspective(260px) rotateX(58deg) scale(1.08); opacity: 1; }
}

@keyframes placementGhostFloat {
  0%, 100% { transform: translate(-50%, 0) translateY(0) scale(0.98); }
  50% { transform: translate(-50%, 0) translateY(-5px) scale(1.03); }
}

@keyframes placedObjectArrive {
  0% { opacity: 0; transform: translate(-50%, -96%) scale(0.82); }
  100% { opacity: 1; transform: translate(-50%, -100%) scale(1); }
}

@keyframes helperBob {
  0%, 100% { transform: translate(-50%, -100%) translateY(0) rotate(-1.5deg) scaleX(1); }
  24% { transform: translate(-50%, -100%) translateY(-3px) rotate(1.5deg) scaleX(0.99); }
  50% { transform: translate(-50%, -100%) translateY(-6px) rotate(2deg) scaleX(0.985); }
  76% { transform: translate(-50%, -100%) translateY(-2px) rotate(-1deg) scaleX(1); }
}

@keyframes helperSpriteWalk {
  0%, 100% {
    translate: 0 0;
    rotate: -1deg;
    filter: drop-shadow(0 0 0 rgba(255, 239, 176, 0));
  }
  25% {
    translate: -2px -2px;
    rotate: 1.2deg;
    filter: drop-shadow(0 6px 6px rgba(23, 46, 31, 0.14));
  }
  50% {
    translate: 0 -4px;
    rotate: 2deg;
    filter: drop-shadow(0 8px 8px rgba(23, 46, 31, 0.12));
  }
  75% {
    translate: 2px -1px;
    rotate: -1deg;
    filter: drop-shadow(0 5px 5px rgba(23, 46, 31, 0.12));
  }
}

@keyframes helperLeftFoot {
  0%, 100% { transform: translateX(-170%) translateY(3px) rotate(15deg) scaleX(1.28); opacity: 1; }
  22% { transform: translateX(-128%) translateY(-1px) rotate(5deg) scaleX(1.08); opacity: 0.92; }
  50% { transform: translateX(-60%) translateY(-9px) rotate(-18deg) scaleX(0.78); opacity: 0.52; }
  76% { transform: translateX(-112%) translateY(0) rotate(-5deg) scaleX(1.1); opacity: 0.86; }
}

@keyframes helperRightFoot {
  0%, 100% { transform: translateX(42%) translateY(-9px) rotate(-18deg) scaleX(0.78); opacity: 0.52; }
  22% { transform: translateX(4%) translateY(0) rotate(-5deg) scaleX(1.1); opacity: 0.86; }
  50% { transform: translateX(-52%) translateY(3px) rotate(15deg) scaleX(1.28); opacity: 1; }
  76% { transform: translateX(-8%) translateY(-1px) rotate(5deg) scaleX(1.08); opacity: 0.92; }
}

@keyframes gardenMoveTargetPulse {
  0%, 100% { transform: translate(-50%, -50%) perspective(280px) rotateX(58deg) scale(0.68); opacity: 0.78; }
  46% { transform: translate(-50%, -50%) perspective(280px) rotateX(58deg) scale(1); opacity: 1; }
  72% { transform: translate(-50%, -50%) perspective(280px) rotateX(58deg) scale(0.86); opacity: 0.9; }
}

@keyframes gardenActionRewardPop {
  0% { opacity: 0; transform: translate(-50%, -72%) scale(0.62); }
  16% { opacity: 1; transform: translate(-50%, -112%) scale(1.04); }
  44% { opacity: 1; transform: translate(-50%, -128%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -176%) scale(0.88); }
}

@keyframes gardenSeedFlyToWallet {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-22deg) scale(0.48); }
  14% { opacity: 1; transform: translate(calc(-50% - 12px), calc(-50% - 28px)) rotate(12deg) scale(0.9); }
  62% { opacity: 0.95; transform: translate(calc(-50% + (var(--seed-dx) * 0.68)), calc(-50% + (var(--seed-dy) * 0.62))) rotate(208deg) scale(0.72); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--seed-dx)), calc(-50% + var(--seed-dy))) rotate(310deg) scale(0.28); }
}

@keyframes walletRewardPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 24px rgba(23, 46, 31, 0.08);
  }
  18% {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 18px 28px rgba(23, 46, 31, 0.16),
      0 0 24px rgba(255, 239, 176, 0.76);
  }
  56% {
    transform: translateY(0) scale(1.015);
    box-shadow:
      0 14px 24px rgba(23, 46, 31, 0.12),
      0 0 18px rgba(255, 239, 176, 0.54);
  }
}

@keyframes helperPlant {
  0%, 100% { transform: translate(-50%, -100%) translateY(0) rotate(-1deg); }
  42% { transform: translate(-50%, -100%) translateY(10px) rotate(5deg) scale(0.98); }
  68% { transform: translate(-50%, -100%) translateY(2px) rotate(-3deg) scale(1.01); }
}

@keyframes helperWater {
  0%, 100% { transform: translate(-50%, -100%) translateY(0) rotate(-2deg); }
  50% { transform: translate(-50%, -100%) translateY(4px) rotate(3deg); }
}

@keyframes helperHarvest {
  0%, 100% { transform: translate(-50%, -100%) translateY(0) rotate(1deg); }
  50% { transform: translate(-50%, -100%) translateY(-5px) rotate(-2deg) scale(1.02); }
}

@keyframes helperCelebrate {
  0%, 100% { transform: translate(-50%, -100%) translateY(0) rotate(-2deg) scale(1); }
  45% { transform: translate(-50%, -100%) translateY(-9px) rotate(3deg) scale(1.03); }
}

@keyframes magicPlantBurst {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4) rotate(0deg); }
  28% { opacity: 1; transform: translate(-50%, -50%) scale(0.9) rotate(20deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55) rotate(72deg); }
}

@keyframes placedSparkle {
  0%, 100% { opacity: 0.55; transform: translateY(0) scale(0.82) rotate(0deg); }
  45% { opacity: 1; transform: translateY(-4px) scale(1.06) rotate(12deg); }
}

.garden-plot-path-stones {
  position: absolute;
  inset: 8% 8% 9% 9%;
  z-index: 1;
  pointer-events: none;
}

.garden-plot-path-stones i {
  position: absolute;
  width: 17px;
  height: 13px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 253, 247, 0.96), transparent 42%),
    linear-gradient(180deg, #f5e7c8, #d1b98e);
  box-shadow:
    0 4px 9px rgba(75, 54, 35, 0.16),
    inset 0 -2px 3px rgba(112, 78, 46, 0.12);
}

.garden-plot-path-stones i:nth-child(1) { left: 23%; bottom: 0%; transform: rotate(-8deg) scale(1.05); }
.garden-plot-path-stones i:nth-child(2) { left: 32%; bottom: 15%; transform: rotate(12deg) scale(0.95); }
.garden-plot-path-stones i:nth-child(3) { left: 41%; bottom: 28%; transform: rotate(-14deg); }
.garden-plot-path-stones i:nth-child(4) { left: 52%; bottom: 42%; transform: rotate(9deg) scale(1.08); }
.garden-plot-path-stones i:nth-child(5) { left: 65%; bottom: 55%; transform: rotate(-4deg) scale(0.92); }
.garden-plot-path-stones i:nth-child(6) { left: 76%; bottom: 65%; transform: rotate(16deg); }
.garden-plot-path-stones i:nth-child(7) { left: 86%; bottom: 76%; transform: rotate(-10deg) scale(1.12); }

.garden-plot-room-badge,
.garden-plot-expansion-sign,
.garden-plot-harvest-burst {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 10px 18px rgba(23, 46, 31, 0.16);
}

.garden-plot-room-badge,
.garden-plot-expansion-sign {
  display: grid;
  gap: 2px;
  max-width: 170px;
  border: 2px solid rgba(129, 82, 44, 0.32);
  border-radius: 6px;
  padding: 8px 10px;
  background:
    linear-gradient(90deg, rgba(141, 92, 49, 0.24) 0 3px, transparent 3px calc(100% - 3px), rgba(141, 92, 49, 0.24) calc(100% - 3px)),
    linear-gradient(180deg, #f8dda4, #e4b870);
  color: #4e3020;
  text-align: center;
}

.garden-plot-room-badge small,
.garden-plot-expansion-sign small {
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.garden-plot-room-badge strong,
.garden-plot-expansion-sign strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.05;
}

.garden-plot-room-badge {
  top: 17%;
  left: 42%;
  transform: rotate(1.5deg);
}

.garden-plot-expansion-sign {
  right: 7%;
  bottom: 27%;
  transform: rotate(-2deg);
}

.garden-plot-harvest-burst {
  top: 12%;
  right: 22%;
  border: 1px solid rgba(255, 253, 247, 0.74);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
  font-size: 11px;
  font-weight: 950;
  transform: rotate(-4deg);
  transition: opacity 260ms ease, transform 260ms ease;
}

.garden-plot-harvest-burst.is-empty {
  opacity: 0;
  transform: translateY(6px) rotate(-4deg) scale(0.9);
}

.plot-tile {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: end center;
  width: 120px;
  min-height: 86px;
  border: 0;
  border-radius: 0;
  padding: 0 6px 2px;
  background: none;
  color: rgba(7, 63, 58, 0.76);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 253, 247, 0.8);
  transform-origin: center bottom;
}

.plot-tile::before,
.plot-tile::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.plot-tile--fence {
  top: 6%;
  left: 3%;
  width: 48%;
  min-height: 94px;
  color: #5c3c23;
}

.plot-tile--fence::before {
  inset: 8px 0 34px;
  border-radius: 10px 10px 5px 5px;
  background:
    repeating-linear-gradient(90deg, #fff8e7 0 11px, #c89057 11px 15px, #fff8e7 15px 28px),
    linear-gradient(180deg, #f6d7a0, #94663d);
  box-shadow: inset 0 -8px 0 rgba(106, 70, 42, 0.18), 0 10px 18px rgba(23, 46, 31, 0.16);
}

.plot-tile--fence::after {
  left: 36%;
  right: 20%;
  bottom: 23px;
  height: 30px;
  border: 2px solid rgba(111, 68, 36, 0.5);
  border-radius: 5px;
  background: rgba(247, 218, 160, 0.94);
  box-shadow: 0 8px 12px rgba(23, 46, 31, 0.12);
}

.plot-tile--seed {
  left: 26%;
  bottom: 14%;
  width: 110px;
}

.plot-tile--seed::before {
  left: 22px;
  right: 22px;
  bottom: 25px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 70%, rgba(94, 59, 35, 0.52), rgba(94, 59, 35, 0.1) 68%, transparent 70%);
}

.plot-tile--seed::after {
  left: 45px;
  bottom: 36px;
  width: 34px;
  height: 48px;
  border-radius: 60% 5px 60% 5px;
  background:
    radial-gradient(ellipse at 70% 28%, rgba(255, 253, 247, 0.56) 0 22%, transparent 23%),
    linear-gradient(145deg, var(--garden-seed-accent), var(--garden-seed-accent-dark));
  transform: rotate(28deg);
  box-shadow: -18px 10px 0 -7px rgba(111, 140, 62, 0.88);
}

.plot-tile--flower {
  left: 4%;
  bottom: 21%;
  width: 132px;
  min-height: 108px;
}

.plot-tile--flower::before {
  inset: 8px 5px 26px;
  background:
    radial-gradient(circle at 18% 65%, var(--garden-seed-bloom) 0 8px, transparent 9px),
    radial-gradient(circle at 26% 52%, #f7d56d 0 7px, transparent 8px),
    radial-gradient(circle at 39% 68%, #ef775f 0 8px, transparent 9px),
    radial-gradient(circle at 54% 52%, #fff3d8 0 7px, transparent 8px),
    radial-gradient(circle at 67% 65%, var(--garden-seed-bloom) 0 8px, transparent 9px),
    linear-gradient(90deg, transparent 16%, rgba(52, 100, 55, 0.64) 17% 19%, transparent 20% 32%, rgba(52, 100, 55, 0.64) 33% 35%, transparent 36% 51%, rgba(52, 100, 55, 0.64) 52% 54%, transparent 55% 64%, rgba(52, 100, 55, 0.64) 65% 67%, transparent 68%);
  filter: saturate(0.9);
}

.plot-tile--tree {
  right: 10%;
  top: 10%;
  width: 142px;
  min-height: 178px;
}

.plot-tile--tree::before {
  left: 54px;
  bottom: 36px;
  width: 26px;
  height: 82px;
  border-radius: 10px;
  background: linear-gradient(90deg, #6a442d, #9b6b43 52%, #5d3a26);
  box-shadow: 0 16px 18px rgba(23, 46, 31, 0.18);
}

.plot-tile--tree::after {
  left: 10px;
  right: 6px;
  top: 0;
  height: 118px;
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(circle at 34% 40%, #ef775f 0 5px, transparent 6px),
    radial-gradient(circle at 57% 28%, #f2c85d 0 5px, transparent 6px),
    radial-gradient(circle at 66% 56%, #ef775f 0 5px, transparent 6px),
    radial-gradient(circle at 38% 70%, #f2c85d 0 4px, transparent 5px),
    radial-gradient(circle at 38% 48%, rgba(23, 92, 65, 0.96) 0 42px, transparent 43px),
    radial-gradient(circle at 61% 42%, rgba(91, 134, 65, 0.96) 0 42px, transparent 43px),
    radial-gradient(circle at 51% 68%, rgba(53, 108, 65, 0.96) 0 42px, transparent 43px);
  opacity: 0.62;
  transform: scale(0.86);
  transform-origin: center bottom;
}

.plot-tile--bench {
  right: 29%;
  bottom: 16%;
  width: 112px;
  min-height: 82px;
}

.plot-tile--bench::before {
  left: 8px;
  right: 8px;
  bottom: 30px;
  height: 44px;
  border-radius: 9px 9px 6px 6px;
  background:
    linear-gradient(180deg, transparent 0 10px, #9a5a37 10px 18px, transparent 18px 25px, #9a5a37 25px 33px, transparent 33px),
    linear-gradient(90deg, transparent 0 10px, #6b3e27 10px 16px, transparent 16px calc(100% - 16px), #6b3e27 calc(100% - 16px) calc(100% - 10px), transparent calc(100% - 10px));
  box-shadow: 0 10px 15px rgba(23, 46, 31, 0.16);
}

.plot-tile--locked {
  right: 3%;
  bottom: 4%;
  width: 132px;
  min-height: 112px;
  color: rgba(7, 63, 58, 0.56);
}

.plot-tile--locked::before {
  left: 19px;
  right: 19px;
  bottom: 32px;
  height: 68px;
  border: 5px solid rgba(7, 63, 58, 0.24);
  border-bottom-width: 12px;
  border-radius: 48px 48px 12px 12px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 253, 247, 0.62) 0 10px, transparent 11px),
    repeating-linear-gradient(90deg, rgba(255, 253, 247, 0.6) 0 10px, rgba(7, 63, 58, 0.13) 10px 13px);
}

.plot-tile--locked::after {
  left: 52px;
  bottom: 52px;
  width: 27px;
  height: 23px;
  border-radius: 5px;
  background: rgba(7, 63, 58, 0.22);
  box-shadow: inset 0 0 0 2px rgba(255, 253, 247, 0.36);
}

.garden-plot .plot-tile {
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 92px;
  min-height: 0;
  border: 1px solid rgba(255, 253, 247, 0.55);
  border-radius: 999px;
  padding: 8px 12px 8px 30px;
  background: rgba(255, 253, 247, 0.74);
  color: var(--forest);
  box-shadow: 0 12px 24px rgba(23, 46, 31, 0.18);
  font-size: 11px;
  text-align: left;
  text-shadow: none;
  backdrop-filter: blur(8px);
}

.garden-plot .plot-tile::before {
  display: block;
  inset: auto;
  left: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 253, 247, 0.9), transparent 38%),
    var(--garden-seed-accent);
  box-shadow:
    0 0 0 4px var(--garden-seed-accent-soft),
    0 8px 12px rgba(23, 46, 31, 0.18);
  transform: translateY(-50%);
}

.garden-plot .plot-tile::after {
  display: none;
}

.garden-plot .plot-tile:has([data-reward-sprite]) {
  min-width: 118px;
  min-height: 118px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: var(--forest);
  overflow: visible;
  backdrop-filter: none;
}

.garden-plot .plot-tile:has([data-reward-sprite])::before {
  display: none;
}

.garden-plot .plot-tile:has([data-reward-sprite])::after {
  display: block;
}

.garden-plot .plot-tile [data-reward-sprite] {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 1;
  display: block;
  width: clamp(86px, 9.5vw, 150px);
  height: auto;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 12px) scale(0.82);
  transform-origin: center bottom;
  filter: drop-shadow(0 18px 18px rgba(23, 46, 31, 0.24));
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

.garden-plot .plot-tile [data-plot-tile-label] {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 1px solid rgba(255, 253, 247, 0.62);
  border-radius: 999px;
  padding: 6px 10px 6px 26px;
  background: rgba(255, 253, 247, 0.8);
  box-shadow: 0 9px 18px rgba(23, 46, 31, 0.16);
  backdrop-filter: blur(8px);
}

.garden-plot .plot-tile [data-plot-tile-label]::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 253, 247, 0.9), transparent 38%),
    var(--garden-seed-accent);
  box-shadow:
    0 0 0 4px var(--garden-seed-accent-soft),
    0 8px 12px rgba(23, 46, 31, 0.18);
  transform: translateY(-50%);
}

.garden-plot .plot-tile:not(:has([data-reward-sprite])) [data-plot-tile-label]::before {
  display: none;
}

.garden-plot .plot-tile.is-owned [data-reward-sprite],
.garden-plot .plot-tile.is-unlocked [data-reward-sprite] {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.garden-plot .plot-tile.is-owned [data-plot-tile-label],
.garden-plot .plot-tile.is-unlocked [data-plot-tile-label] {
  background: rgba(255, 253, 247, 0.9);
}

.garden-plot .plot-tile.is-owned [data-plot-tile-label]::before {
  width: 14px;
  height: 14px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 253, 247, 0.96), transparent 32%),
    linear-gradient(145deg, #c15464, #8d3c49);
  box-shadow:
    0 0 0 5px rgba(255, 232, 219, 0.68),
    0 0 22px rgba(193, 84, 100, 0.28),
    0 8px 14px rgba(23, 46, 31, 0.18);
}

.garden-plot .plot-tile--fence {
  top: auto;
  left: auto;
  right: 5%;
  bottom: 39%;
}

.garden-plot .plot-tile--seed {
  left: 22%;
  bottom: 24%;
}

.garden-plot .plot-tile--flower {
  left: 5%;
  bottom: 31%;
}

.garden-plot .plot-tile--tree {
  top: 20%;
  right: 13%;
}

.garden-plot .plot-tile--bench {
  right: 34%;
  bottom: 18%;
}

.garden-plot .plot-tile--prompt {
  left: 37%;
  bottom: 13%;
}

.garden-plot .plot-tile--locked {
  right: 6%;
  bottom: 8%;
}

.garden-plot .plot-tile:not(.is-owned):not(.is-unlocked) {
  opacity: 0.72;
}

.garden-plot .plot-tile.is-owned,
.garden-plot .plot-tile.is-unlocked {
  background: rgba(255, 253, 247, 0.88);
  box-shadow:
    0 12px 24px rgba(23, 46, 31, 0.2),
    0 0 0 4px var(--garden-seed-accent-soft);
  transform: translateY(-3px);
}

.garden-plot .plot-tile.is-owned::before {
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 253, 247, 0.96), transparent 32%),
    linear-gradient(145deg, #c15464, #8d3c49);
  box-shadow:
    0 0 0 5px rgba(255, 232, 219, 0.68),
    0 0 22px rgba(193, 84, 100, 0.28),
    0 8px 14px rgba(23, 46, 31, 0.18);
}

.garden-plot .plot-tile.is-owned::after {
  display: block;
  left: 18px;
  top: -12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 248, 213, 0.95) 0 18%, transparent 20%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.85) 0 10%, transparent 12%),
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.78) 0 9%, transparent 11%);
  filter: drop-shadow(0 0 12px rgba(255, 228, 159, 0.74));
  animation: placedSparkle 2.8s ease-in-out infinite;
}

.garden-plot .plot-tile.is-owned:has([data-reward-sprite]),
.garden-plot .plot-tile.is-unlocked:has([data-reward-sprite]) {
  background: transparent;
  box-shadow: none;
}

.garden-plot .plot-tile.is-owned:has([data-reward-sprite])::before,
.garden-plot .plot-tile.is-unlocked:has([data-reward-sprite])::before {
  display: none;
}

.root-garden-section.is-tended .plot-tile,
.is-tended .plot-tile {
  filter: saturate(1.06) brightness(1.02);
}

.plot-tile.is-owned,
.plot-tile.is-unlocked {
  color: var(--forest);
  filter: saturate(1.12);
}

.plot-tile--seed.is-unlocked {
  transform: translateY(-5px) scale(1.03);
}

.plot-tile--flower.is-unlocked::before,
.garden-plot[data-garden-watered-today="true"] .plot-tile--flower::before {
  filter: saturate(1.25) brightness(1.05);
  transform: translateY(-3px);
}

.plot-tile--tree.is-unlocked::after,
.garden-plot[data-garden-harvest-ready="true"] .plot-tile--tree::after {
  opacity: 1;
  transform: scale(1);
}

.plot-tile--bench.is-owned {
  transform: translateY(-3px);
}

.plot-tile--prompt.is-owned {
  transform: translateY(-5px) rotate(-2deg);
}

.plot-tile--prompt.is-owned::before {
  border-radius: 6px 6px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 244, 190, 0.98), rgba(209, 119, 84, 0.95));
}

.plot-tile--locked.is-owned,
.plot-tile--locked.is-unlocked {
  color: var(--forest);
}

.plot-tile--locked.is-owned::before,
.plot-tile--locked.is-unlocked::before {
  border-color: color-mix(in srgb, var(--garden-seed-accent-dark) 58%, #073f3a);
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 253, 247, 0.78) 0 10px, transparent 11px),
    repeating-linear-gradient(90deg, rgba(255, 253, 247, 0.8) 0 10px, rgba(227, 173, 63, 0.3) 10px 13px);
}

.garden-care-feedback {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--garden-seed-accent) 26%, transparent);
  border-radius: 18px;
  padding: 11px 12px;
  background: rgba(255, 253, 247, 0.76);
  color: rgba(7, 63, 58, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.garden-care-feedback p {
  margin: 0;
}

.garden-harvest-meter {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
}

.garden-harvest-meter span {
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--garden-seed-accent-soft);
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.garden-care-tray {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.garden-upgrade-dock {
  position: fixed;
  z-index: 30;
  top: clamp(92px, 9vw, 132px);
  right: clamp(22px, 4vw, 68px);
  display: grid;
  gap: 14px;
  width: min(520px, calc(100% - 40px));
  max-height: min(520px, 72vh);
  overflow: auto;
  border: 1px solid rgba(255, 253, 247, 0.7);
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 231, 159, 0.48), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 242, 220, 0.9));
  box-shadow:
    0 30px 90px rgba(23, 46, 31, 0.28),
    0 0 0 8px rgba(255, 253, 247, 0.22);
  backdrop-filter: blur(18px);
}

.garden-upgrade-dock[hidden] {
  display: none;
}

.garden-upgrade-dock-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.garden-upgrade-dock-head span,
.garden-upgrade-list article span {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.garden-upgrade-dock-head strong {
  display: block;
  margin-top: 4px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 500;
  line-height: 1;
}

.garden-upgrade-dock-head button {
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--forest);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.garden-upgrade-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.garden-upgrade-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 10px;
  min-height: 184px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(circle at 88% 8%, var(--garden-seed-accent-soft), transparent 36%),
    rgba(255, 253, 247, 0.82);
  box-shadow: 0 14px 30px rgba(23, 46, 31, 0.1);
  cursor: grab;
  touch-action: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  user-select: none;
}

.garden-upgrade-list article:hover,
.garden-upgrade-list article:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--garden-seed-accent) 44%, rgba(7, 63, 58, 0.12));
  box-shadow:
    0 16px 34px rgba(23, 46, 31, 0.14),
    0 0 0 4px rgba(255, 238, 184, 0.2);
  transform: translateY(-1px);
}

.garden-upgrade-list article.is-dragging {
  cursor: grabbing;
  opacity: 0.74;
  transform: translateY(1px) scale(0.985);
}

.garden-upgrade-list article img {
  grid-row: span 4;
  align-self: start;
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  padding: 5px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: inset 0 0 0 1px rgba(7, 63, 58, 0.08), 0 12px 20px rgba(23, 46, 31, 0.12);
}

.garden-upgrade-list article.is-ready {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 42%, rgba(7, 63, 58, 0.12));
}

.garden-upgrade-list article.is-owned {
  background: rgba(238, 245, 232, 0.88);
}

.garden-upgrade-list article strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.garden-upgrade-list article p {
  margin: 0;
  color: #40564c;
  font-size: 12px;
  line-height: 1.35;
}

.garden-upgrade-list article small {
  color: var(--forest);
  font-weight: 950;
}

.garden-upgrade-list article button {
  grid-column: 1 / -1;
  align-self: end;
  min-height: 38px;
  border: 0 !important;
  border-radius: 10px;
  padding: 9px 10px;
  background: linear-gradient(135deg, var(--garden-seed-accent, #b9654d), var(--garden-seed-accent-dark, #873d35)) !important;
  color: #fff8ed !important;
  font-size: 12px;
  font-weight: 950;
  text-shadow: 0 1px 0 rgba(7, 63, 58, 0.22);
  box-shadow: 0 10px 20px rgba(110, 67, 22, 0.18);
  cursor: pointer;
}

.garden-upgrade-list article button:disabled {
  cursor: not-allowed;
  background: rgba(67, 82, 77, 0.24) !important;
  color: rgba(7, 63, 58, 0.82) !important;
  text-shadow: none;
  box-shadow: none;
}

.garden-upgrade-drag-ghost {
  position: fixed;
  left: var(--drag-x, 50vw);
  top: var(--drag-y, 50vh);
  z-index: 80;
  display: grid;
  justify-items: center;
  width: 118px;
  pointer-events: none;
  transform: translate(-50%, -92%) scale(1.02);
  filter:
    drop-shadow(0 24px 24px rgba(23, 46, 31, 0.28))
    drop-shadow(0 0 22px rgba(255, 235, 163, 0.9));
}

.garden-upgrade-drag-ghost img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
  animation: placementGhostFloat 1.2s ease-in-out infinite;
}

.garden-upgrade-drag-ghost span {
  max-width: 140px;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
  box-shadow: 0 10px 18px rgba(23, 46, 31, 0.16);
  font-size: 9px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.garden-care-tray article {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 17px;
  padding: 13px;
  background:
    radial-gradient(circle at 92% 8%, rgba(227, 173, 63, 0.14), transparent 36%),
    rgba(255, 253, 247, 0.78);
  box-shadow: 0 14px 28px rgba(23, 46, 31, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.garden-care-tray article.is-ready {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 36%, rgba(7, 63, 58, 0.12));
  background:
    radial-gradient(circle at 90% 8%, var(--garden-seed-accent-soft), transparent 38%),
    rgba(255, 253, 247, 0.88);
}

.garden-care-tray article.is-done {
  background:
    radial-gradient(circle at 90% 8%, rgba(111, 140, 62, 0.18), transparent 38%),
    rgba(238, 245, 232, 0.84);
}

.garden-care-tray article.is-locked {
  opacity: 0.72;
  filter: saturate(0.78);
}

.garden-care-tray span {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.garden-care-tray strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.04;
}

.garden-care-tray small {
  color: #40564c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
}

.garden-care-tray button,
.garden-care-tray a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 9px 10px;
  background: var(--garden-seed-accent);
  color: #fff8ed;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
  cursor: pointer;
}

.garden-care-tray a {
  background: linear-gradient(135deg, #8a641e, #b97735);
}

.garden-care-tray button:disabled {
  cursor: not-allowed;
  background: rgba(67, 82, 77, 0.24);
  color: rgba(7, 63, 58, 0.6);
}

.garden-identity-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.garden-identity-panel article {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 253, 247, 0.68);
}

.garden-identity-panel span {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.garden-identity-panel strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.08;
}

.garden-expansion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.garden-expansion-strip button {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px dashed rgba(7, 63, 58, 0.22);
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 253, 247, 0.62);
  color: rgba(7, 63, 58, 0.68);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.garden-expansion-strip span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px dashed rgba(7, 63, 58, 0.22);
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 253, 247, 0.62);
  color: rgba(7, 63, 58, 0.68);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.garden-expansion-strip button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.garden-expansion-strip .is-open {
  border-style: solid;
  background: var(--garden-seed-accent-soft);
  color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(227, 173, 63, 0.28);
}

.garden-expansion-strip .is-active {
  background: linear-gradient(180deg, var(--garden-seed-accent), var(--garden-seed-accent-dark));
  color: #fff8ed;
  box-shadow: 0 12px 22px rgba(23, 46, 31, 0.2);
}

.garden-expansion-permit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.4fr);
  gap: 10px 14px;
  align-items: center;
  border: 1px solid rgba(227, 173, 63, 0.26);
  border-radius: 16px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(248, 233, 199, 0.72)),
    var(--garden-seed-accent-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.62);
}

.garden-expansion-permit span {
  display: block;
  margin-bottom: 4px;
  color: rgba(7, 63, 58, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.garden-expansion-permit strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.garden-expansion-permit p {
  margin: 6px 0 0;
  color: rgba(7, 63, 58, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.garden-expansion-meter {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: rgba(7, 63, 58, 0.1);
}

.garden-expansion-meter i {
  display: block;
  width: 0;
  min-width: 8px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--garden-seed-accent), #6f8f47);
  transition: width 320ms ease;
}

.garden-expansion-permit small {
  color: rgba(7, 63, 58, 0.66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.garden-expansion-permit button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--forest);
  color: #fff8ed;
  font-weight: 900;
  cursor: pointer;
}

.garden-expansion-permit button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.garden-expansion-permit[data-expansion-state="ready"] {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 54%, transparent);
  box-shadow: 0 14px 30px rgba(23, 46, 31, 0.12), inset 0 0 0 1px rgba(255, 253, 247, 0.76);
}

.garden-expansion-permit[data-expansion-state="owned"] {
  border-color: rgba(96, 123, 67, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(225, 239, 204, 0.7)),
    var(--garden-seed-accent-soft);
}

.garden-room-order {
  margin: 0;
  border: 1px dashed color-mix(in srgb, var(--garden-seed-accent) 32%, transparent);
  border-radius: 16px;
  padding: 10px 12px;
  background: var(--garden-seed-accent-soft);
  color: var(--forest);
  font-size: 13px;
  line-height: 1.4;
}

.garden-room-note {
  margin: 0;
  border: 1px solid rgba(7, 63, 58, 0.1);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 253, 247, 0.66);
  color: rgba(7, 63, 58, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.garden-tending-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.garden-tending-actions button {
  min-height: 40px;
  border: 1px solid rgba(7, 63, 58, 0.16);
  border-radius: 6px;
  padding: 10px 14px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.garden-tending-actions button:first-child {
  background: var(--forest);
  color: #fff8ed;
}

.garden-tending-actions button:disabled {
  cursor: not-allowed;
  background: rgba(211, 219, 196, 0.58);
  color: rgba(7, 63, 58, 0.46);
  box-shadow: none;
  opacity: 0.72;
}

.garden-seed-card,
.garden-stats-grid article,
.garden-course-card,
.garden-shop-preview {
  border: 1px solid rgba(7, 63, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 14px 34px rgba(50, 36, 26, 0.08);
}

.garden-seed-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 18px;
}

.garden-seed-card span,
.garden-stats-grid span,
.garden-course-head span,
.garden-shop-preview strong,
.course-economy-grid span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.garden-seed-card strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.garden-seed-card small {
  grid-column: 1 / -1;
  font-size: 13px;
}

.garden-seed-note {
  color: #36554a;
  font-weight: 780;
}

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

.garden-stats-grid article {
  display: grid;
  gap: 5px;
  min-height: 120px;
  padding: 15px;
}

.garden-stats-grid strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.garden-stats-grid small {
  font-size: 12px;
}

.garden-course-card {
  padding: 18px;
}

.garden-course-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.garden-course-head strong {
  color: var(--forest);
}

.garden-progress-track {
  overflow: hidden;
  height: 10px;
  margin: 14px 0 16px;
  border-radius: 999px;
  background: rgba(7, 63, 58, 0.12);
}

.garden-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--gold), var(--coral));
  transition: width 260ms ease;
}

.garden-chapter-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
}

.garden-chapter-list li::marker {
  color: var(--leaf);
  font-weight: 900;
}

.garden-chapter-list .is-done {
  color: var(--forest);
  font-weight: 850;
}

.garden-shop-preview {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.garden-shop-preview button {
  justify-self: start;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--forest);
  color: #fff8ed;
  font-weight: 900;
  cursor: pointer;
}

.garden-sign {
  position: absolute;
  right: clamp(28px, 6vw, 100px);
  bottom: clamp(88px, 11vw, 150px);
  z-index: 1;
  display: grid;
  width: min(260px, 22vw);
  gap: 5px;
  border: 4px solid rgba(100, 65, 33, 0.62);
  border-radius: 8px;
  padding: 14px 18px 16px;
  background: linear-gradient(180deg, rgba(193, 132, 70, 0.96), rgba(158, 98, 50, 0.92));
  color: #442818;
  text-align: center;
  box-shadow: 0 18px 42px rgba(30, 24, 16, 0.18);
  transform: rotate(1.5deg);
}

.garden-sign span {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.garden-sign strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1.05;
}

.garden-glimmer {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff5bd;
  box-shadow:
    0 0 0 7px rgba(255, 245, 189, 0.24),
    0 0 28px rgba(255, 245, 189, 0.9);
  animation: garden-pulse 2.6s ease-in-out infinite;
}

.garden-glimmer-one {
  right: 23%;
  top: 28%;
}

.garden-glimmer-two {
  right: 15%;
  bottom: 34%;
  animation-delay: 900ms;
}

@keyframes garden-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.course-economy-section {
  padding: 72px 7vw;
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 119, 95, 0.13), transparent 26%),
    linear-gradient(180deg, #fffaf2, #eef5e8);
}

.course-economy-section .section-intro {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.course-economy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(7, 63, 58, 0.14);
  background: rgba(7, 63, 58, 0.14);
}

.course-economy-grid article {
  display: grid;
  gap: 11px;
  min-height: 250px;
  align-content: start;
  padding: 26px;
  background: rgba(255, 253, 247, 0.92);
}

.course-economy-grid strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.04;
}

.root-garden-detail-page main {
  background:
    radial-gradient(circle at 12% 6%, rgba(227, 173, 63, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf2, #eef5e8 48%, #fffaf2);
  overflow-x: hidden;
}

.root-garden-detail-page .announcement {
  display: none;
}

.root-garden-detail-page .public-header {
  min-height: 82px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.root-garden-detail-page .public-header .brand-logo img {
  max-height: 58px;
}

.root-garden-detail-page .public-nav {
  top: 10px;
  margin-top: -8px;
}

.root-garden-detail-page .announcement {
  display: none;
}

.root-garden-detail-page .public-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 80px;
  padding: 0 4vw;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(7, 63, 58, 0.13);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.root-garden-detail-page .public-header::before,
.root-garden-detail-page .public-header::after,
.root-garden-detail-page .brand-logo::before {
  display: none;
}

.root-garden-detail-page .public-header .brand-logo {
  width: min(300px, 24vw);
  margin: 0;
}

.root-garden-detail-page .public-header .brand-logo img {
  max-height: 56px;
}

.root-garden-detail-page .header-tools {
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
  z-index: 31;
}

.root-garden-detail-page .garden-header-wallet span {
  min-height: 42px;
  border-radius: 13px;
  background: rgba(255, 253, 247, 0.82);
}

.root-garden-detail-page .rooted-you-button {
  border-radius: 999px;
  padding: 12px 18px;
  background: #315d37;
  box-shadow: 0 14px 30px rgba(7, 63, 58, 0.18);
}

.root-garden-detail-page .desktop-nav {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  width: auto;
  height: 80px;
  gap: clamp(18px, 2.4vw, 46px);
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.root-garden-detail-page .desktop-nav .nav-link {
  height: 80px;
  padding: 0;
  background: transparent;
  color: #1f2927;
  font-size: 16px;
  font-weight: 760;
}

.root-garden-detail-page .desktop-nav .nav-link.is-active {
  color: #d84931;
  background: transparent;
}

.root-garden-detail-page .site-shell {
  position: relative;
}

.root-garden-detail-page .announcement {
  display: none;
}

.root-garden-detail-page .site-header.public-header {
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 4vw;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 1px 0 rgba(7, 63, 58, 0.1);
}

.root-garden-detail-page .site-header::before,
.root-garden-detail-page .site-header::after,
.root-garden-detail-page .brand-logo::before {
  display: none;
}

.root-garden-detail-page .site-header .brand-logo {
  position: relative;
  z-index: 31;
  width: min(315px, 30vw);
  margin: 0;
}

.root-garden-detail-page .site-header .brand-logo img {
  max-height: 56px;
}

.root-garden-detail-page .header-tools {
  position: static;
  z-index: 31;
  transform: none;
}

.root-garden-detail-page .desktop-nav.public-nav {
  position: absolute;
  top: 0;
  left: clamp(310px, 25vw, 430px);
  right: clamp(310px, 24vw, 390px);
  z-index: 30;
  height: 82px;
  border: 0;
  background: transparent;
  transform: none;
  pointer-events: none;
}

.root-garden-detail-page .desktop-nav.public-nav .nav-link {
  height: 82px;
  pointer-events: auto;
}

.garden-product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.43fr) minmax(560px, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 28px);
  height: calc(100vh - 82px);
  min-height: 760px;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(34px, 4.2vw, 62px) 4vw 0;
  isolation: isolate;
  overflow-x: clip;
}

.garden-product-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.garden-product-backdrop img,
.garden-scene-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.garden-scene-video {
  z-index: 1;
  opacity: 0.72;
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
  transform: scale(1.05);
  transform-origin: 62% 50%;
  transition: object-position 620ms ease, transform 620ms ease, opacity 420ms ease, filter 620ms ease;
}

.garden-product-backdrop img {
  z-index: 0;
  opacity: 0.92;
  transform: scale(1.02);
  transform-origin: 62% 50%;
  transition: object-position 620ms ease, transform 620ms ease, filter 620ms ease, opacity 420ms ease;
}

.garden-product-hero[data-garden-scene="0"] .garden-product-backdrop img {
  object-position: 52% center;
  transform: scale(1.02);
}

.garden-product-hero[data-garden-scene="0"] .garden-scene-video {
  object-position: 50% center;
  transform: scale(1.06);
  opacity: 0.66;
}

.garden-product-hero[data-garden-scene="1"] .garden-product-backdrop img {
  object-position: 62% 48%;
  transform: scale(1.08);
}

.garden-product-hero[data-garden-scene="1"] .garden-scene-video {
  object-position: 58% center;
  transform: scale(1.1);
  opacity: 0.72;
}

.garden-product-hero[data-garden-scene="2"] .garden-product-backdrop img {
  object-position: 72% 42%;
  transform: scale(1.14);
}

.garden-product-hero[data-garden-scene="2"] .garden-scene-video {
  object-position: 66% center;
  transform: scale(1.15);
  opacity: 0.76;
}

.garden-product-hero[data-garden-scene="3"] .garden-product-backdrop img {
  object-position: 82% 34%;
  transform: scale(1.2);
  filter: saturate(1.08) brightness(1.04);
}

.garden-product-hero[data-garden-scene="3"] .garden-scene-video {
  object-position: 72% center;
  transform: scale(1.2);
  opacity: 0.8;
  filter: saturate(1.16) contrast(1.08) brightness(1.05);
}

.garden-product-hero.is-scene-traveling .garden-scene-video {
  opacity: 0.9;
  filter: saturate(1.22) contrast(1.1) brightness(1.08);
}

.garden-product-hero.is-scene-traveling .garden-product-backdrop img {
  filter: saturate(1.08) brightness(1.04);
}

.garden-advance-burst {
  position: absolute;
  left: 63%;
  top: 49%;
  z-index: 2;
  width: clamp(140px, 15vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
  background:
    radial-gradient(circle, rgba(255, 247, 184, 0.68), rgba(255, 247, 184, 0.18) 38%, transparent 72%);
  filter: blur(0.2px);
}

.garden-product-hero.is-scene-traveling .garden-advance-burst {
  animation: gardenAdvanceBurst 1100ms ease both;
}

.garden-product-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 247, 229, 0.99) 0%, rgba(255, 247, 229, 0.94) 30%, rgba(255, 247, 229, 0.52) 52%, transparent 74%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.98) 0%, rgba(255, 247, 229, 0.82) 30%, rgba(255, 247, 229, 0.22) 58%, rgba(7, 63, 58, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 247, 229, 0.1), rgba(7, 63, 58, 0.22));
}

.garden-product-copy {
  position: relative;
  z-index: 4;
  max-width: 540px;
  align-self: start;
  min-height: 0;
  padding-bottom: clamp(54px, 6vw, 86px);
}

.garden-product-copy::before {
  content: "";
  position: absolute;
  inset: -42px -36px -36px -4vw;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0.78) 42%, transparent 72%);
  pointer-events: none;
}

.root-garden-detail-page .garden-product-copy .root-garden-title-row {
  display: none;
}

.garden-header-wallet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.garden-header-wallet span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 12px;
  padding: 8px 12px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(23, 46, 31, 0.08);
}

.garden-header-wallet strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.is-wallet-rewarding .garden-header-wallet span:has([data-garden-seeds]),
.is-wallet-rewarding .garden-hero-stats article:has([data-garden-seeds]) {
  animation: walletRewardPulse 1450ms ease-out both;
}

.is-wallet-rewarding [data-garden-seeds] {
  color: #315f39;
  text-shadow:
    0 0 14px rgba(255, 239, 176, 0.88),
    0 1px 0 rgba(255, 253, 247, 0.74);
}

.garden-passport-card {
  display: grid;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--garden-seed-accent, #56783e) 28%, transparent);
  border-radius: 18px;
  padding: 13px 14px;
  background:
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--garden-seed-accent-soft, rgba(111, 140, 62, 0.18)) 75%, transparent), transparent 34%),
    rgba(255, 253, 247, 0.86);
  color: rgba(7, 63, 58, 0.78);
  box-shadow: 0 16px 32px rgba(23, 46, 31, 0.1);
}

.garden-passport-card--hero {
  margin-top: 14px;
  max-width: 520px;
  padding: 11px 13px;
}

.garden-passport-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.garden-passport-card span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-passport-card strong {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.garden-passport-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.42;
}

.garden-passport-card b {
  color: var(--forest);
}

.garden-product-copy h1,
.garden-product-section h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.garden-product-copy h1 {
  max-width: 540px;
  font-size: clamp(52px, 4.1vw, 66px);
}

.root-garden-detail-page .garden-product-copy .root-garden-actions .secondary-cta {
  display: none;
}

.garden-product-copy p,
.garden-product-section p {
  color: #31423b;
  line-height: 1.65;
}

.garden-product-copy p {
  max-width: 430px;
  margin: 20px 0 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.garden-hero-promise {
  color: var(--forest);
  font-weight: 850;
}

.garden-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.6vw, 32px);
}

.garden-hero-stats article {
  display: grid;
  gap: 6px;
  min-height: 92px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 14px;
  padding: 12px 13px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 18px 48px rgba(23, 46, 31, 0.14);
  backdrop-filter: blur(12px);
}

.garden-hero-stats span,
.garden-checkin-card span,
.garden-hero-sign span,
.garden-seed-bubble span {
  color: #244c2c;
  font-size: 13px;
  font-weight: 900;
}

.garden-hero-stats strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.45vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.garden-hero-stats small,
.garden-seed-bubble small {
  color: #40564c;
  line-height: 1.35;
}

.garden-hero-gameboard {
  position: relative;
  z-index: 3;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  grid-column: 2;
  grid-row: 1;
  transition: transform 620ms ease;
}

.garden-checkin-card,
.garden-hero-sign,
.garden-seed-bubble,
.garden-scene-atlas {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(7, 63, 58, 0.15);
  background: rgba(255, 253, 247, 0.83);
  box-shadow: 0 22px 60px rgba(23, 46, 31, 0.2);
  backdrop-filter: blur(14px);
}

.garden-checkin-card {
  top: 5%;
  left: 3%;
  display: grid;
  gap: 12px;
  width: min(280px, 42vw);
  border-radius: 16px;
  padding: 20px;
}

.garden-checkin-card strong {
  color: #203429;
  font-size: 18px;
  line-height: 1.3;
}

.garden-mood-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.garden-mood-row button {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(7, 63, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.garden-mood-row button.is-selected,
.garden-mood-row button:hover {
  border-color: rgba(7, 63, 58, 0.42);
  background: rgba(111, 140, 62, 0.14);
}

.garden-checkin-submit {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--garden-seed-accent);
  color: #fff8ed;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.garden-hero-path {
  position: absolute;
  inset: 5% 0 3% 4%;
  z-index: 10;
  pointer-events: none;
  transition: transform 620ms ease, filter 620ms ease;
}

.garden-product-hero[data-garden-scene="1"] .garden-hero-path {
  transform: translate(-2%, 1%) scale(1.03);
}

.garden-product-hero[data-garden-scene="2"] .garden-hero-path {
  transform: translate(-5%, 2%) scale(1.06);
}

.garden-product-hero[data-garden-scene="3"] .garden-hero-path {
  transform: translate(-8%, 3%) scale(1.09);
}

.garden-hero-path .path-thread {
  left: 26%;
  right: 19%;
  top: 58%;
  height: 12px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 247, 0.92) 0 13px, transparent 13px 34px);
  box-shadow: none;
  transform: rotate(-47deg);
  opacity: 0.92;
}

.garden-hero-path .path-thread::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--garden-path-progress, 0%);
  border-radius: inherit;
  background:
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--garden-seed-accent) 78%, #fff8ed) 0 13px, transparent 13px 34px);
  filter: drop-shadow(0 0 10px var(--garden-seed-accent-soft));
  transition: width 520ms ease;
}

.garden-hero-path .path-pebble {
  position: absolute;
  z-index: 2;
  width: clamp(10px, 1.1vw, 16px);
  height: clamp(10px, 1.1vw, 16px);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 3px 8px rgba(23, 46, 31, 0.22);
}

.path-pebble--one {
  left: 27%;
  top: 77%;
}

.path-pebble--two {
  left: 33%;
  top: 70%;
}

.path-pebble--three {
  left: 43%;
  top: 58%;
}

.path-pebble--four {
  left: 50%;
  top: 47%;
}

.path-pebble--five {
  left: 57%;
  top: 35%;
}

.garden-hero-path .path-stone {
  position: absolute;
  display: grid;
  pointer-events: auto;
  place-items: center;
  width: clamp(64px, 7vw, 98px);
  height: clamp(64px, 7vw, 98px);
  border: 5px solid rgba(255, 252, 241, 0.78);
  border-radius: 50%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--garden-seed-accent) 70%, #fff8ed), var(--garden-seed-accent-dark));
  box-shadow: 0 18px 32px rgba(23, 46, 31, 0.28), inset 0 3px 10px rgba(255, 255, 255, 0.35);
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.2vw, 35px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.garden-hero-path .path-stone:hover,
.garden-hero-path .path-stone:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 42px rgba(23, 46, 31, 0.34), inset 0 3px 10px rgba(255, 255, 255, 0.4);
}

.garden-hero-path .path-stone.is-active {
  filter: saturate(1.22) brightness(1.08);
  animation: activeGardenStone 1800ms ease-in-out infinite;
}

.garden-hero-path .path-stone[data-story-stone="0"] {
  left: 50%;
  top: 68%;
}

.garden-hero-path .path-stone[data-story-stone="1"] {
  left: 62%;
  top: 51%;
}

.garden-hero-path .path-stone[data-story-stone="2"] {
  left: 72%;
  top: 33%;
}

.garden-hero-path .path-stone[data-story-stone="3"] {
  left: 80%;
  top: 15%;
}

.garden-hero-path .path-stone--locked {
  background: linear-gradient(180deg, rgba(74, 69, 62, 0.82), rgba(50, 48, 45, 0.84));
  color: rgba(255, 248, 237, 0.72);
  font-size: clamp(11px, 1.2vw, 14px);
}

.garden-hero-path .path-stone--preview {
  background: linear-gradient(180deg, #f4d28a, #b97735);
  color: #432a16;
}

.path-traveler {
  position: absolute;
  z-index: 7;
  display: grid;
  place-items: center;
  width: clamp(38px, 3.4vw, 52px);
  height: clamp(38px, 3.4vw, 52px);
  border: 3px solid rgba(255, 253, 247, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 253, 247, 0.96), rgba(243, 234, 220, 0.86));
  box-shadow: 0 16px 32px rgba(23, 46, 31, 0.24), 0 0 0 8px var(--garden-seed-accent-soft);
  transition: left 620ms ease, top 620ms ease, transform 620ms ease, box-shadow 300ms ease;
}

.path-traveler img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(23, 46, 31, 0.18));
}

.garden-product-hero[data-garden-scene="0"] .path-traveler {
  left: 54%;
  top: 63%;
}

.garden-product-hero[data-garden-scene="1"] .path-traveler {
  left: 66%;
  top: 46%;
}

.garden-product-hero[data-garden-scene="2"] .path-traveler {
  left: 76%;
  top: 27%;
}

.garden-product-hero[data-garden-scene="3"] .path-traveler {
  left: 84%;
  top: 9%;
}

.garden-product-hero.is-scene-traveling .path-traveler {
  animation: pathTravelerArrive 900ms ease both;
  box-shadow: 0 20px 42px rgba(23, 46, 31, 0.28), 0 0 0 12px var(--garden-seed-accent-soft);
}

.path-growth {
  position: absolute;
  z-index: 6;
  width: clamp(18px, 2vw, 30px);
  height: clamp(18px, 2vw, 30px);
  border-radius: 50% 50% 50% 10%;
  background:
    radial-gradient(circle at 38% 34%, #fff7cf 0 12%, transparent 13%),
    linear-gradient(135deg, var(--garden-seed-bloom), var(--garden-seed-accent));
  box-shadow: 0 10px 18px rgba(23, 46, 31, 0.2), 0 0 0 7px var(--garden-seed-accent-soft);
  opacity: 0;
  transform: rotate(-22deg) scale(0.5);
  transition: opacity 420ms ease, transform 520ms ease;
}

.path-growth--one {
  left: 58%;
  top: 66%;
}

.path-growth--two {
  left: 69%;
  top: 48%;
}

.path-growth--three {
  left: 79%;
  top: 27%;
}

.garden-product-hero[data-garden-scene="1"] .path-growth--one,
.garden-product-hero[data-garden-scene="2"] .path-growth--one,
.garden-product-hero[data-garden-scene="2"] .path-growth--two,
.garden-product-hero[data-garden-scene="3"] .path-growth--one,
.garden-product-hero[data-garden-scene="3"] .path-growth--two,
.garden-product-hero[data-garden-scene="3"] .path-growth--three {
  opacity: 1;
  transform: rotate(-22deg) scale(1);
}

.garden-product-hero.is-scene-traveling .path-growth {
  animation: pathGrowthPop 900ms ease both;
}

.garden-scene-status {
  position: absolute;
  z-index: 4;
  right: 2%;
  top: 7%;
  display: grid;
  gap: 4px;
  width: min(240px, 22vw);
  border: 1px solid rgba(7, 63, 58, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 18px 50px rgba(23, 46, 31, 0.18);
  backdrop-filter: blur(14px);
}

.garden-scene-status span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-scene-status strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 500;
  line-height: 1.04;
}

.garden-scene-status small {
  color: #40564c;
  font-size: 12px;
  line-height: 1.35;
}

.garden-scene-status em,
.garden-story-access,
.course-path-option em,
.course-access-panel span,
.course-access-panel small {
  font-style: normal;
}

.garden-scene-status em,
.garden-story-access {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 26px;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--garden-seed-accent-soft);
  color: var(--garden-seed-accent-dark);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
}

.garden-scene-atlas {
  right: 5%;
  top: 22%;
  display: grid;
  gap: 4px;
  width: min(220px, 20vw);
  border-radius: 15px;
  padding: 13px 15px;
  background:
    radial-gradient(circle at 92% 8%, var(--garden-seed-accent-soft), transparent 44%),
    rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 50px rgba(23, 46, 31, 0.16);
  backdrop-filter: blur(14px);
}

.garden-scene-atlas span,
.garden-scene-atlas small {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.garden-scene-atlas strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.3vw, 23px);
  font-weight: 500;
  line-height: 1.05;
}

.garden-scene-atlas em {
  color: #40564c;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
}

.garden-camera-rail {
  position: absolute;
  z-index: 4;
  left: 32%;
  bottom: 23%;
  display: grid;
  gap: 8px;
  width: min(330px, 29vw);
  border: 1px solid rgba(7, 63, 58, 0.16);
  border-radius: 16px;
  padding: 12px 14px 13px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 20px 54px rgba(23, 46, 31, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 620ms ease, left 620ms ease, bottom 620ms ease;
}

.garden-product-hero[data-garden-scene="1"] .garden-camera-rail {
  left: 36%;
  bottom: 24%;
}

.garden-product-hero[data-garden-scene="2"] .garden-camera-rail {
  left: 40%;
  bottom: 25%;
}

.garden-product-hero[data-garden-scene="3"] .garden-camera-rail {
  left: 43%;
  bottom: 23%;
}

.garden-camera-rail span {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-camera-rail strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.garden-camera-rail small {
  color: #40564c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.garden-camera-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  min-height: 34px;
}

.garden-camera-track::before,
.garden-camera-track i {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.garden-camera-track::before {
  background: rgba(7, 63, 58, 0.12);
}

.garden-camera-track i {
  right: auto;
  width: var(--garden-camera-progress, 8%);
  background: linear-gradient(90deg, var(--garden-seed-accent), var(--garden-seed-bloom));
  box-shadow: 0 0 18px var(--garden-seed-accent-soft);
  transition: width 620ms ease;
}

.garden-camera-track b {
  position: relative;
  z-index: 2;
  display: grid;
  justify-self: center;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 253, 247, 0.92);
  background: #efe3d1;
  color: #5c594f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.garden-camera-track b.is-open {
  background: color-mix(in srgb, var(--garden-seed-accent) 70%, #fff8ed);
  color: #fffaf0;
}

.garden-camera-track b.is-active {
  transform: scale(1.18);
  background: var(--garden-seed-accent-dark);
}

.garden-product-hero.is-scene-traveling .garden-camera-track i {
  animation: cameraRailGlow 900ms ease both;
}

.garden-cinematic-card {
  position: absolute;
  z-index: 12;
  right: 4%;
  bottom: 29%;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  width: min(390px, 30vw);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.7);
  border-radius: 18px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(255, 247, 229, 0.78)),
    rgba(255, 253, 247, 0.86);
  box-shadow: 0 26px 70px rgba(23, 46, 31, 0.24);
  backdrop-filter: blur(16px);
  transform: translateY(0) scale(1);
  transition: right 620ms ease, bottom 620ms ease, transform 620ms ease, box-shadow 420ms ease;
}

.garden-product-hero[data-garden-scene="1"] .garden-cinematic-card {
  right: 5%;
  bottom: 31%;
}

.garden-product-hero[data-garden-scene="2"] .garden-cinematic-card {
  right: 6%;
  bottom: 34%;
}

.garden-product-hero[data-garden-scene="3"] .garden-cinematic-card {
  right: 7%;
  bottom: 36%;
}

.garden-product-hero.is-cinematic-playing .garden-cinematic-card {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 34px 90px rgba(23, 46, 31, 0.34), 0 0 0 7px var(--garden-seed-accent-soft);
}

.garden-product-hero.is-cinematic-playing .garden-scene-filmstrip {
  opacity: 0.34;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

@media (min-width: 761px) {
  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-scene-status,
  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-scene-atlas,
  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-camera-rail {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
  }

  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-cinematic-card {
    right: 23%;
    bottom: 20%;
    width: min(340px, 24vw);
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 10px;
  }

  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-cinematic-media,
  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-cinematic-media video {
    min-height: 88px;
  }

  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-cinematic-copy p {
    display: none;
  }

  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-cinematic-copy strong {
    font-size: clamp(17px, 1.1vw, 20px);
  }

  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-story-card {
    width: min(430px, 34vw);
  }

  .garden-product-hero.is-focus-mode.is-cinematic-playing:not(.is-system-expanded) .garden-cinematic-card {
    width: min(420px, 31vw);
    grid-template-columns: 116px minmax(0, 1fr);
    right: 21%;
    bottom: 25%;
  }

  .garden-product-hero.is-focus-mode.is-cinematic-playing:not(.is-system-expanded) .garden-cinematic-media,
  .garden-product-hero.is-focus-mode.is-cinematic-playing:not(.is-system-expanded) .garden-cinematic-media video {
    min-height: 106px;
  }

  .garden-product-hero.is-focus-mode.is-cinematic-playing:not(.is-system-expanded) .garden-cinematic-copy p {
    display: block;
  }
}

.garden-product-hero.is-cinematic-playing .garden-cinematic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.44) 42%, transparent 70%);
  transform: translateX(-120%);
  animation: cinematicSweep 1800ms ease both;
}

.garden-cinematic-media {
  position: relative;
  min-height: 106px;
  overflow: hidden;
  border-radius: 13px;
  background: #dfe8dc;
  box-shadow: inset 0 0 0 1px rgba(7, 63, 58, 0.08);
}

.garden-cinematic-media video {
  width: 100%;
  height: 100%;
  min-height: 106px;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.garden-cinematic-media span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
  border-radius: 999px;
  padding: 5px 7px;
  background: rgba(255, 253, 247, 0.88);
  color: var(--forest);
  font-size: 10px;
  font-weight: 950;
}

.garden-cinematic-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.garden-cinematic-copy span {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-cinematic-copy strong {
  margin-top: 4px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 500;
  line-height: 1.02;
}

.garden-cinematic-copy p {
  margin: 6px 0 0;
  color: #40564c;
  font-size: 12px;
  line-height: 1.34;
}

.garden-cinematic-copy small {
  margin-top: 7px;
  color: var(--garden-seed-accent-dark);
  font-size: 11px;
  font-weight: 950;
}

.garden-video-toggle {
  justify-self: start;
  min-height: 32px;
  margin-top: 8px;
  border: 1px solid rgba(7, 63, 58, 0.16);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 253, 247, 0.88);
  color: var(--forest);
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}

.garden-video-toggle:hover,
.garden-video-toggle:focus-visible {
  border-color: var(--garden-seed-accent);
  box-shadow: 0 0 0 4px var(--garden-seed-accent-soft);
}

.garden-cinematic-track {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 63, 58, 0.1);
}

.garden-cinematic-track i {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--garden-seed-accent), var(--garden-seed-bloom));
  box-shadow: 0 0 20px var(--garden-seed-accent-soft);
  transition: width 620ms ease;
}

.garden-product-hero.is-cinematic-playing .garden-cinematic-track i {
  animation: cinematicTrackPulse 1800ms ease both;
}

.garden-world-advance {
  position: absolute;
  z-index: 13;
  left: 37%;
  top: 30%;
  display: grid;
  gap: 7px;
  width: min(310px, 28vw);
  border: 1px solid rgba(255, 253, 247, 0.64);
  border-radius: 16px;
  padding: 13px 14px;
  background:
    radial-gradient(circle at 90% 10%, var(--garden-seed-accent-soft), transparent 46%),
    rgba(255, 253, 247, 0.86);
  box-shadow: 0 22px 60px rgba(23, 46, 31, 0.2);
  backdrop-filter: blur(14px);
  outline: 5px solid rgba(255, 253, 247, 0.18);
  transition: transform 620ms ease, left 620ms ease, top 620ms ease, box-shadow 320ms ease;
}

.garden-product-hero[data-garden-scene="1"] .garden-world-advance {
  left: 39%;
  top: 34%;
}

.garden-product-hero[data-garden-scene="2"] .garden-world-advance {
  left: 43%;
  top: 35%;
}

.garden-product-hero[data-garden-scene="3"] .garden-world-advance {
  left: 46%;
  top: 34%;
}

.garden-product-hero.is-scene-traveling .garden-world-advance {
  animation: worldAdvanceArrive 900ms ease both;
}

.garden-world-advance span {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-world-advance strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 500;
  line-height: 1.04;
}

.garden-world-advance p {
  margin: 0;
  color: #40564c;
  font-size: 12px;
  line-height: 1.34;
}

.garden-world-rooms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.garden-world-rooms i {
  display: grid;
  place-items: center;
  min-height: 28px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  background: rgba(7, 63, 58, 0.06);
  color: rgba(49, 66, 59, 0.72);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.garden-world-rooms i.is-open {
  background: color-mix(in srgb, var(--garden-seed-accent) 18%, #fff8ed);
  color: var(--garden-seed-accent-dark);
}

.garden-world-rooms i.is-active {
  background: var(--garden-seed-accent);
  color: #fff8ed;
  box-shadow: 0 0 0 4px var(--garden-seed-accent-soft);
}

.garden-world-rooms i.is-next {
  border-color: rgba(183, 122, 45, 0.32);
  background: rgba(244, 210, 138, 0.44);
  color: #5f3a18;
}

.garden-scene-filmstrip {
  position: absolute;
  z-index: 8;
  left: 37%;
  bottom: 12%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(360px, 26vw);
  pointer-events: auto;
}

.garden-scene-filmstrip button {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 14px;
  padding: 10px;
  background: rgba(7, 63, 58, 0.28);
  color: #fffaf0;
  text-align: left;
  box-shadow: 0 16px 38px rgba(23, 46, 31, 0.18);
  cursor: pointer;
  isolation: isolate;
}

.garden-scene-filmstrip button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 63, 58, 0.02), rgba(7, 63, 58, 0.68)),
    radial-gradient(circle at 14% 16%, rgba(255, 253, 247, 0.28), transparent 46%);
}

.garden-scene-filmstrip video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.04);
}

.garden-scene-filmstrip span,
.garden-scene-filmstrip strong,
.garden-scene-filmstrip small {
  position: relative;
  z-index: 1;
  display: block;
}

.garden-scene-filmstrip span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 800;
}

.garden-scene-filmstrip strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.05;
}

.garden-scene-filmstrip small {
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.18;
}

.garden-scene-filmstrip button.is-active {
  border-color: rgba(255, 253, 247, 0.96);
  box-shadow: 0 18px 44px rgba(23, 46, 31, 0.24), 0 0 0 5px var(--garden-seed-accent-soft);
}

.garden-scene-filmstrip button.is-preview-next {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 66%, #fff8ed);
}

.garden-scene-filmstrip button.is-locked {
  cursor: not-allowed;
  opacity: 0.62;
}

.garden-scene-filmstrip button.is-locked video {
  filter: saturate(0.68) contrast(0.94) brightness(0.82);
}

.garden-product-hero[data-garden-scene="1"] .garden-scene-filmstrip {
  left: 37%;
  bottom: 12%;
}

.garden-product-hero[data-garden-scene="2"] .garden-scene-filmstrip {
  left: 38%;
  bottom: 12%;
}

.garden-product-hero[data-garden-scene="3"] .garden-scene-filmstrip {
  left: 39%;
  bottom: 12%;
}

.garden-story-card {
  position: absolute;
  z-index: 4;
  left: 3%;
  bottom: 16%;
  display: grid;
  grid-template-columns: minmax(138px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  width: min(500px, 44vw);
  border: 1px solid rgba(7, 63, 58, 0.16);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 24px 68px rgba(23, 46, 31, 0.24);
  backdrop-filter: blur(16px);
  pointer-events: none;
  transition: left 620ms ease, right 620ms ease, top 620ms ease, bottom 620ms ease, transform 620ms ease;
}

.garden-product-hero[data-garden-scene="1"] .garden-story-card {
  left: 18%;
  bottom: 28%;
}

.garden-product-hero[data-garden-scene="2"] .garden-story-card {
  left: 29%;
  bottom: 42%;
  transform: scale(0.96);
}

.garden-product-hero[data-garden-scene="3"] .garden-story-card {
  left: 40%;
  bottom: 54%;
  transform: scale(0.92);
}

.garden-story-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -16px;
  width: 30px;
  height: 30px;
  border-right: 1px solid rgba(7, 63, 58, 0.16);
  border-bottom: 1px solid rgba(7, 63, 58, 0.16);
  background: rgba(255, 253, 247, 0.9);
  transform: rotate(45deg);
  box-shadow: 10px 10px 22px rgba(23, 46, 31, 0.08);
}

.garden-story-media {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  border-radius: 14px;
  background: #dfe9dc;
  pointer-events: auto;
}

.garden-story-video {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
}

.garden-story-media span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--forest);
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(23, 46, 31, 0.14);
}

.garden-story-copy {
  display: grid;
  align-content: center;
  gap: 7px;
}

.garden-story-copy span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.garden-story-copy strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 500;
  line-height: 1.05;
}

.garden-story-copy p {
  margin: 0;
  color: #40564c;
  font-size: 14px;
  line-height: 1.35;
}

.garden-story-progress {
  display: grid;
  gap: 5px;
}

.garden-story-progress small,
.garden-story-reward {
  color: #40564c;
  font-size: 12px;
  line-height: 1.25;
}

.garden-story-progress b,
.garden-story-reward b {
  color: var(--forest);
}

.garden-story-progress > span {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(111, 140, 62, 0.16);
}

.garden-story-progress i {
  display: block;
  width: var(--garden-path-progress, 8%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--garden-seed-accent), #e3ad3f);
  transition: width 520ms ease;
}

.garden-story-copy button {
  justify-self: start;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 9px 14px;
  background: var(--garden-seed-accent);
  color: #fff8ed;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  pointer-events: auto;
}

.chapter-sign {
  position: absolute;
  z-index: 3;
  border: 2px solid rgba(96, 62, 35, 0.45);
  border-radius: 3px;
  padding: 9px 14px;
  background: rgba(213, 170, 106, 0.9);
  color: #4a2f1d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 1.3vw, 18px);
  box-shadow: 0 12px 24px rgba(23, 46, 31, 0.2);
  transform: rotate(2deg);
}

.chapter-sign--one {
  left: 57%;
  top: 73%;
}

.chapter-sign--two {
  left: 70%;
  top: 51%;
}

.garden-hero-sign {
  right: 4%;
  top: 53%;
  display: grid;
  gap: 4px;
  max-width: 250px;
  pointer-events: none;
  border-color: rgba(96, 62, 35, 0.34);
  border-radius: 6px;
  padding: 18px 22px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--garden-seed-accent) 18%, #e2b570), color-mix(in srgb, var(--garden-seed-accent-dark) 22%, #b27f46));
  color: #4a2f1d;
  text-align: center;
  transform: rotate(3deg);
}

.garden-hero-sign span {
  color: #4a2f1d;
}

.garden-hero-sign strong {
  color: #4a2f1d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.05;
}

.garden-seed-bubble {
  right: 5%;
  bottom: 9%;
  display: grid;
  place-items: center;
  width: clamp(150px, 13vw, 190px);
  min-height: clamp(150px, 13vw, 190px);
  border-radius: 50%;
  padding: 22px;
  text-align: center;
  border-color: color-mix(in srgb, var(--garden-seed-accent) 28%, rgba(7, 63, 58, 0.15));
  background:
    radial-gradient(circle at 50% 10%, var(--garden-seed-accent-soft), transparent 58%),
    rgba(255, 253, 247, 0.88);
}

.garden-system-dock {
  position: absolute;
  right: 4.5%;
  bottom: 30%;
  z-index: 5;
  display: grid;
  gap: 7px;
  width: min(246px, 21vw);
  border: 1px solid color-mix(in srgb, var(--garden-seed-accent) 34%, rgba(7, 63, 58, 0.14));
  border-radius: 16px;
  padding: 14px 15px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 253, 247, 0.72), transparent 42%),
    color-mix(in srgb, var(--garden-seed-accent-soft) 46%, rgba(255, 253, 247, 0.9));
  box-shadow: 0 18px 48px rgba(23, 46, 31, 0.2);
  backdrop-filter: blur(14px);
}

.garden-system-dock span {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-system-dock strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 500;
  line-height: 1.05;
}

.garden-system-dock b {
  font: inherit;
}

.garden-system-dock small {
  color: #40564c;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.garden-system-dock a {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  min-height: 34px;
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--garden-seed-accent);
  color: #fff8ed;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(23, 46, 31, 0.16);
}

.garden-seed-expansion {
  font-weight: 850;
}

.garden-seed-expansion b {
  color: var(--forest);
  font-weight: 950;
}

.garden-seed-tend-link {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--garden-seed-accent);
  color: #fff8ed;
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 46, 31, 0.16);
}

[data-garden-path-theme="orchard"] .garden-hero-path .path-pebble,
[data-garden-path-theme="herb"] .garden-hero-path .path-pebble {
  border-radius: 55% 45% 60% 40%;
}

[data-garden-path-theme="pond"] .garden-hero-path .path-pebble {
  background: rgba(232, 246, 247, 0.95);
  transform: scaleX(1.2);
}

[data-garden-path-theme="wildflower"] .garden-hero-path .path-pebble,
[data-garden-path-theme="rose"] .garden-hero-path .path-pebble {
  box-shadow:
    0 3px 8px rgba(23, 46, 31, 0.22),
    0 0 0 4px var(--garden-seed-accent-soft);
}

.root-garden-chapter-ribbon {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(14px, 2vw, 34px);
  align-items: center;
  width: min(1440px, 92vw);
  margin: 0 auto -1px;
  transform: translateY(8px);
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  padding: clamp(18px, 2.5vw, 28px) clamp(22px, 4vw, 52px);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 -18px 54px rgba(23, 46, 31, 0.14);
  backdrop-filter: blur(15px);
}

.root-garden-chapter-ribbon article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
}

.root-garden-chapter-ribbon article:first-child {
  display: block;
}

.root-garden-chapter-ribbon i {
  grid-row: 1 / span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(86, 120, 62, 0.15);
  color: #315d37;
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 700;
}

.root-garden-chapter-ribbon strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 27px);
  font-weight: 500;
  line-height: 1.05;
}

.root-garden-chapter-ribbon span {
  color: #40564c;
  font-size: 14px;
  line-height: 1.35;
}

.garden-seed-bubble strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.1;
}

.root-garden-detail-page .site-header.public-header {
  min-height: 82px;
  padding: 0 clamp(46px, 4vw, 68px);
  background: rgba(255, 251, 244, 0.95);
  border-bottom: 1px solid rgba(52, 76, 49, 0.16);
  box-shadow: 0 8px 26px rgba(49, 63, 46, 0.08);
}

.root-garden-detail-page .site-header .brand-logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
  text-decoration: none;
}

.root-garden-detail-page .site-header .brand-logo img {
  width: 238px;
  max-width: 20vw;
  max-height: 58px;
  object-fit: contain;
}

.root-garden-detail-page .site-header .brand-logo::after {
  content: "Life";
  margin-left: 5px;
  color: #244326;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.15vw, 36px);
  font-weight: 600;
  line-height: 1;
}

.root-garden-detail-page .desktop-nav.public-nav {
  left: 50%;
  right: auto;
  display: flex;
  justify-content: center;
  width: min(590px, 40vw);
  min-width: 500px;
  gap: clamp(24px, 2.2vw, 44px);
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.root-garden-detail-page .desktop-nav.public-nav .nav-link {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1f2927;
  font-size: 16px;
  font-weight: 760;
}

.root-garden-detail-page .desktop-nav.public-nav .nav-link.is-active {
  color: #d84931;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.root-garden-detail-page .garden-header-wallet span {
  min-height: 46px;
  border-radius: 14px;
  padding: 8px 14px;
}

.garden-product-hero {
  grid-template-columns: minmax(390px, 0.38fr) minmax(620px, 1fr);
  gap: clamp(8px, 1.4vw, 22px);
  min-height: 820px;
  padding: clamp(46px, 5vw, 74px) clamp(40px, 4vw, 66px) 0;
}

.garden-product-backdrop::after {
  background:
    radial-gradient(circle at 8% 19%, rgba(255, 247, 229, 0.98) 0%, rgba(255, 247, 229, 0.9) 25%, rgba(255, 247, 229, 0.48) 45%, rgba(255, 247, 229, 0.1) 64%, transparent 78%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.93) 0%, rgba(255, 247, 229, 0.54) 25%, rgba(255, 247, 229, 0.08) 44%, rgba(7, 63, 58, 0.04) 100%),
    radial-gradient(circle at 84% 4%, rgba(255, 227, 128, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 247, 229, 0.02), rgba(7, 63, 58, 0.14));
}

.garden-product-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 67% 13%, rgba(255, 236, 158, 0.5) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 71% 17%, rgba(255, 236, 158, 0.42) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 76% 11%, rgba(255, 236, 158, 0.46) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 82% 18%, rgba(255, 236, 158, 0.4) 0 1.4px, transparent 2.5px);
  background-size: 100% 100%;
  opacity: 0.78;
  animation: gardenLanternTwinkle 2400ms ease-in-out infinite alternate;
}

.garden-product-copy {
  max-width: 510px;
  padding-bottom: 156px;
}

.garden-product-copy::before {
  inset: -54px -70px -120px -6vw;
  background:
    radial-gradient(ellipse at 10% 28%, rgba(255, 253, 247, 0.9), rgba(255, 253, 247, 0.64) 40%, rgba(255, 253, 247, 0.24) 62%, transparent 78%);
}

.garden-product-copy h1 {
  max-width: 500px;
  font-size: clamp(56px, 4.15vw, 72px);
}

.garden-product-copy p {
  max-width: 430px;
  margin-top: 22px;
}

.root-garden-detail-page .root-garden-actions {
  margin-top: 32px;
}

.root-garden-detail-page .primary-cta {
  min-height: 58px;
  border-radius: 9px;
  padding-inline: 28px;
  background: linear-gradient(135deg, #df563d, #e3a32f);
  box-shadow: 0 18px 34px rgba(198, 76, 46, 0.22);
}

.garden-hero-promise {
  margin-top: 28px;
}

.garden-hero-stats {
  max-width: 500px;
}

.garden-passport-card--hero {
  display: none;
}

.garden-checkin-card {
  top: 6%;
  left: 4%;
  width: min(268px, 28vw);
  padding: 19px 20px;
}

.garden-scene-status {
  right: 3.5%;
  top: 6%;
  width: 196px;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 14px;
}

.garden-scene-status small {
  display: none;
}

.garden-scene-status strong {
  font-size: 20px;
}

.garden-scene-status em {
  min-height: 22px;
  padding: 4px 7px;
  font-size: 10px;
}

.garden-scene-atlas {
  right: 4.2%;
  top: 22%;
  width: 198px;
  padding: 11px 13px;
}

.garden-scene-atlas strong {
  font-size: 19px;
}

.garden-scene-atlas em {
  font-size: 11px;
}

.garden-story-card {
  left: 2.5%;
  bottom: 9%;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  width: min(440px, 34vw);
  padding: 10px;
  border-radius: 16px;
  pointer-events: auto;
}

.garden-product-hero[data-garden-scene="1"] .garden-story-card {
  left: 7%;
  bottom: 22%;
}

.garden-product-hero[data-garden-scene="2"] .garden-story-card {
  left: 12%;
  bottom: 31%;
}

.garden-product-hero[data-garden-scene="3"] .garden-story-card {
  left: 17%;
  bottom: 39%;
}

.garden-story-media,
.garden-story-video {
  min-height: 128px;
}

.garden-story-copy {
  gap: 5px;
}

.garden-story-copy strong {
  font-size: clamp(18px, 1.34vw, 23px);
}

.garden-story-copy p {
  font-size: 12px;
}

.garden-story-copy button {
  min-height: 36px;
  padding: 0 12px;
}

.garden-hero-path {
  inset: 2% -2% 2% 1%;
  filter: drop-shadow(0 20px 30px rgba(23, 46, 31, 0.18));
}

.garden-hero-path .path-thread {
  left: 33%;
  right: 13%;
  top: 59%;
  height: 14px;
}

.path-pebble--one {
  left: 32%;
  top: 79%;
}

.path-pebble--two {
  left: 39%;
  top: 71%;
}

.path-pebble--three {
  left: 48%;
  top: 59%;
}

.path-pebble--four {
  left: 57%;
  top: 47%;
}

.path-pebble--five {
  left: 66%;
  top: 34%;
}

.garden-hero-path .path-stone[data-story-stone="0"] {
  left: 47%;
  top: 69%;
}

.garden-hero-path .path-stone[data-story-stone="1"] {
  left: 60%;
  top: 52%;
}

.garden-hero-path .path-stone[data-story-stone="2"] {
  left: 71%;
  top: 33%;
}

.garden-hero-path .path-stone[data-story-stone="3"] {
  left: 80%;
  top: 14%;
}

.chapter-sign--one {
  left: 55%;
  top: 73%;
}

.chapter-sign--two {
  left: 68%;
  top: 51%;
}

.garden-hero-path .path-stone {
  box-shadow:
    0 22px 34px rgba(23, 46, 31, 0.32),
    0 0 0 9px rgba(255, 253, 247, 0.24),
    inset 0 3px 10px rgba(255, 255, 255, 0.36);
}

.garden-hero-path .path-stone.is-active {
  box-shadow:
    0 24px 42px rgba(23, 46, 31, 0.36),
    0 0 0 11px var(--garden-seed-accent-soft),
    0 0 26px rgba(255, 236, 158, 0.42),
    inset 0 3px 10px rgba(255, 255, 255, 0.36);
}

.garden-scene-filmstrip {
  left: auto;
  right: 3.5%;
  top: 12%;
  bottom: auto;
  width: min(420px, 30vw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  opacity: 0.96;
}

.garden-product-hero[data-garden-scene="1"] .garden-scene-filmstrip {
  left: auto;
  right: 3.5%;
  top: 12%;
  bottom: auto;
}

.garden-product-hero[data-garden-scene="2"] .garden-scene-filmstrip {
  left: auto;
  right: 3.5%;
  top: 12%;
  bottom: auto;
}

.garden-product-hero[data-garden-scene="3"] .garden-scene-filmstrip {
  left: auto;
  right: 3.5%;
  top: 12%;
  bottom: auto;
}

.garden-scene-filmstrip button {
  min-height: 74px;
}

.garden-camera-rail {
  left: 35%;
  bottom: 19%;
}

.garden-product-hero[data-garden-scene="1"] .garden-camera-rail {
  left: 39%;
  bottom: 20%;
}

.garden-product-hero[data-garden-scene="2"] .garden-camera-rail {
  left: 43%;
  bottom: 21%;
}

.garden-product-hero[data-garden-scene="3"] .garden-camera-rail {
  left: 46%;
  bottom: 20%;
}

@keyframes gardenLanternTwinkle {
  from {
    opacity: 0.48;
    filter: blur(0.2px);
  }
  to {
    opacity: 0.9;
    filter: blur(0.65px);
  }
}

.garden-hero-sign {
  right: 3%;
  top: 49%;
  max-width: 232px;
  padding: 17px 20px;
  z-index: 3;
}

.garden-hero-sign strong {
  font-size: clamp(20px, 1.8vw, 28px);
}

.garden-seed-bubble {
  right: 5%;
  bottom: 9%;
  width: clamp(142px, 12vw, 178px);
  min-height: clamp(142px, 12vw, 178px);
  padding: 20px;
}

.root-garden-chapter-ribbon {
  position: absolute;
  left: clamp(46px, 4vw, 68px);
  right: clamp(46px, 4vw, 68px);
  bottom: 0;
  grid-template-columns: minmax(300px, 1.25fr) repeat(3, minmax(170px, 0.8fr));
  width: auto;
  margin: 0;
  transform: none;
  border-radius: 18px 18px 0 0;
  padding: 18px clamp(24px, 3vw, 44px);
}

.root-garden-chapter-ribbon article {
  column-gap: 10px;
}

.root-garden-chapter-ribbon i {
  width: 44px;
  height: 44px;
}

.root-garden-chapter-ribbon strong {
  font-size: clamp(18px, 1.35vw, 25px);
}

.root-garden-chapter-ribbon span {
  font-size: 13px;
}

@keyframes activeGardenStone {
  0%, 100% {
    box-shadow:
      0 18px 32px rgba(23, 46, 31, 0.28),
      0 0 0 0 rgba(255, 253, 247, 0.58),
      inset 0 3px 10px rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 24px 42px rgba(23, 46, 31, 0.34),
      0 0 0 12px rgba(255, 253, 247, 0),
      inset 0 3px 10px rgba(255, 255, 255, 0.42);
  }
}

@keyframes pathTravelerArrive {
  0% {
    transform: translate(-18px, 10px) scale(0.86);
  }
  55% {
    transform: translate(4px, -7px) scale(1.08);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes cameraRailGlow {
  0%, 100% {
    filter: saturate(1);
  }
  48% {
    filter: saturate(1.35) drop-shadow(0 0 10px var(--garden-seed-accent-soft));
  }
}

@keyframes cinematicSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes cinematicTrackPulse {
  0%, 100% {
    filter: brightness(1);
  }
  45% {
    filter: brightness(1.24);
  }
}

@keyframes gardenAdvanceBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.58);
  }
  24% {
    opacity: 0.86;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22);
  }
}

@keyframes pathGrowthPop {
  0% {
    transform: rotate(-22deg) scale(0.55);
  }
  48% {
    transform: rotate(-22deg) scale(1.2);
  }
  100% {
    transform: rotate(-22deg) scale(1);
  }
}

@keyframes worldAdvanceArrive {
  0% {
    opacity: 0.76;
    transform: translateY(8px) scale(0.98);
  }
  62% {
    opacity: 1;
    transform: translateY(-3px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 761px) {
  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-scene-status,
  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-scene-atlas,
  .garden-product-hero.is-focus-mode:not(.is-system-expanded) .garden-camera-rail {
    opacity: 0 !important;
    animation: none !important;
    pointer-events: none;
  }
}

.garden-product-section {
  padding: 78px 7vw;
}

.garden-product-section .section-intro {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.garden-product-section h2 {
  font-size: clamp(40px, 4.6vw, 72px);
}

.garden-product-section .section-intro p {
  max-width: 820px;
  margin: 0;
  font-size: 18px;
}

.garden-product-workspace {
  background:
    radial-gradient(circle at 86% 18%, rgba(239, 119, 95, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf2, #f1eadb);
}

.garden-workspace-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(360px, 0.58fr);
  gap: 20px;
  align-items: stretch;
}

.course-path-picker {
  display: grid;
  gap: 12px;
}

.course-path-option,
.course-builder-card,
.reward-shop-grid article,
.pricing-path-grid article,
.garden-preference-card {
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 46px rgba(50, 36, 26, 0.08);
}

.course-path-option {
  display: grid;
  gap: 7px;
  min-height: 124px;
  padding: 20px;
  color: var(--forest);
  text-align: left;
  cursor: pointer;
}

.course-path-option em {
  justify-self: start;
  min-height: 26px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 253, 247, 0.88);
  color: var(--forest);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
}

.course-path-option[data-access-state="open"] em,
.course-path-option[data-access-state="ready"] em {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 34%, rgba(7, 63, 58, 0.12));
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.96), var(--garden-seed-accent-soft));
}

.course-path-option[data-access-state="requested"] em {
  border-color: rgba(201, 150, 75, 0.34);
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.98), rgba(227, 173, 63, 0.2));
  color: #6b4714;
}

.course-path-option[data-access-state="locked"] em {
  color: rgba(7, 63, 58, 0.58);
  background: rgba(238, 235, 227, 0.8);
}

.course-path-option.is-active {
  border-color: rgba(239, 119, 95, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(239, 119, 95, 0.12));
  box-shadow: 0 22px 54px rgba(50, 36, 26, 0.12);
}

.course-path-option span,
.course-builder-head span,
.reward-shop-grid span,
.pricing-path-grid span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.course-path-option strong,
.course-builder-card h3,
.reward-shop-grid strong,
.pricing-path-grid strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.course-path-option strong {
  font-size: 28px;
}

.course-path-option small {
  color: var(--muted);
  line-height: 1.45;
}

.course-builder-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
}

.course-builder-card h3 {
  margin: 8px 0 0;
  font-size: clamp(38px, 4vw, 62px);
}

.course-builder-card p {
  max-width: 640px;
  margin: 14px 0 0;
}

.course-chapter-stack {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-chapter-stack li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(7, 63, 58, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(248, 244, 235, 0.7);
  color: #43524d;
  font-weight: 760;
}

.course-chapter-stack li::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(7, 63, 58, 0.24);
  border-radius: 50%;
}

.course-chapter-stack .is-done {
  color: var(--forest);
  background: rgba(111, 140, 62, 0.13);
}

.course-chapter-stack .is-done::before {
  border-color: var(--leaf);
  background: var(--leaf);
  box-shadow: inset 0 0 0 3px #fffaf2;
}

.course-builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-builder-actions button,
.course-builder-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 11px 16px;
  background: var(--forest);
  color: #fff8ed;
  font-weight: 900;
  cursor: pointer;
}

.course-builder-actions button:last-child,
.course-builder-actions a {
  border: 1px solid rgba(7, 63, 58, 0.18);
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
}

.course-monetization-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.course-monetization-panel article {
  display: grid;
  gap: 5px;
  min-height: 118px;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 18px;
  padding: 15px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(238, 245, 232, 0.72));
}

.course-monetization-panel span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-monetization-panel strong,
.course-monetization-panel small {
  display: block;
}

.course-monetization-panel strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.06;
}

.course-monetization-panel small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.course-access-panel {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 253, 247, 0.76);
}

.course-access-panel[data-access-state="open"],
.course-access-panel[data-access-state="ready"] {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 34%, rgba(7, 63, 58, 0.12));
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.96), var(--garden-seed-accent-soft));
}

.course-access-panel[data-access-state="requested"] {
  border-color: rgba(201, 150, 75, 0.34);
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.98), rgba(227, 173, 63, 0.2));
}

.course-access-panel span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-access-panel strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.course-access-panel small {
  color: var(--muted);
  line-height: 1.4;
}

.garden-product-play {
  background:
    radial-gradient(circle at 12% 18%, rgba(227, 173, 63, 0.16), transparent 28%),
    linear-gradient(180deg, #eef5e8, #fffaf2);
  padding-top: clamp(34px, 4vw, 58px);
}

.garden-world-system-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(360px, 1.25fr) minmax(250px, 0.8fr);
  gap: 16px;
  align-items: stretch;
  width: min(1180px, 92vw);
  margin: 0 auto clamp(22px, 3vw, 38px);
}

.garden-seed-dna-card,
.garden-world-map-card,
.garden-room-detail-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(7, 63, 58, 0.13);
  border-radius: 20px;
  padding: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 94% 8%, var(--garden-seed-accent-soft), transparent 38%),
    rgba(255, 253, 247, 0.9);
  box-shadow: 0 22px 58px rgba(23, 46, 31, 0.12);
}

.garden-seed-dna-card::after,
.garden-world-map-card::after,
.garden-room-detail-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--garden-seed-accent) 13%, transparent);
  pointer-events: none;
}

.garden-seed-dna-card > span,
.garden-world-map-card > div > span,
.garden-room-detail-card > span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-seed-dna-card > strong,
.garden-world-map-card > div > strong,
.garden-room-detail-card > strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.02;
}

.garden-world-map-card > div,
.garden-room-detail-card {
  align-content: start;
}

.garden-world-map-card small,
.garden-room-detail-card p {
  color: #40564c;
  line-height: 1.45;
}

.garden-seed-dna-card dl,
.garden-room-detail-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.garden-seed-dna-card dl div,
.garden-room-detail-card dl div {
  display: grid;
  grid-template-columns: minmax(94px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  min-height: 34px;
  border-bottom: 1px solid rgba(7, 63, 58, 0.08);
  padding-bottom: 8px;
}

.garden-seed-dna-card dt,
.garden-room-detail-card dt {
  color: rgba(7, 63, 58, 0.58);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.garden-seed-dna-card dd,
.garden-room-detail-card dd {
  margin: 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.28;
}

.garden-world-room-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.garden-world-room-board button {
  display: grid;
  gap: 6px;
  min-height: 92px;
  border: 1px dashed rgba(7, 63, 58, 0.2);
  border-radius: 16px;
  padding: 13px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.76), rgba(238, 245, 232, 0.62));
  color: var(--forest);
  text-align: left;
  cursor: pointer;
}

.garden-world-room-board button span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.06;
}

.garden-world-room-board button small {
  align-self: end;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(7, 63, 58, 0.08);
  color: rgba(7, 63, 58, 0.66);
  font-size: 11px;
  font-weight: 950;
}

.garden-world-room-board button.is-open {
  border-style: solid;
  border-color: color-mix(in srgb, var(--garden-seed-accent) 34%, rgba(7, 63, 58, 0.14));
  background:
    radial-gradient(circle at 88% 10%, var(--garden-seed-accent-soft), transparent 42%),
    rgba(255, 253, 247, 0.92);
}

.garden-world-room-board button.is-active {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 253, 247, 0.38), transparent 42%),
    linear-gradient(180deg, var(--garden-seed-accent), var(--garden-seed-accent-dark));
  color: #fff8ed;
  box-shadow: 0 18px 38px rgba(23, 46, 31, 0.18);
}

.garden-world-room-board button.is-active small {
  background: rgba(255, 253, 247, 0.2);
  color: #fff8ed;
}

.garden-world-room-board button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.garden-world-map-card p {
  margin: 0;
  color: #40564c;
  font-size: 13px;
  line-height: 1.45;
}

.garden-world-map-card p strong {
  color: var(--forest);
}

@media (max-width: 1100px) {
  .garden-world-system-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garden-room-detail-card {
    grid-column: 1 / -1;
  }

  .garden-product-play .root-garden-playfield {
    grid-template-columns: 1fr;
  }

  .garden-plot {
    min-height: clamp(460px, 70vw, 620px);
  }
}

.garden-product-play .root-garden-playfield {
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
  width: min(1720px, 96vw);
  gap: clamp(18px, 2.2vw, 34px);
}

.garden-product-play .garden-tending-card {
  position: relative;
  grid-column: 1 / -1;
  align-self: start;
  border-radius: 30px;
  padding: clamp(16px, 2vw, 24px);
  background:
    radial-gradient(circle at 82% 4%, var(--garden-seed-accent-soft), transparent 30%),
    rgba(255, 253, 247, 0.66);
  box-shadow: 0 28px 80px rgba(23, 46, 31, 0.12);
}

.root-game-system {
  background:
    radial-gradient(circle at 16% 18%, rgba(239, 119, 95, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(227, 173, 63, 0.22), transparent 28%),
    linear-gradient(180deg, #fffaf2, #edf5e8);
}

.root-game-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 1fr) minmax(260px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.root-game-hud,
.root-game-quests,
.root-game-expansions {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 22px 58px rgba(23, 46, 31, 0.12);
}

.root-game-hud span,
.root-game-quests > div span,
.root-game-expansions > span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.root-game-hud strong,
.root-game-quests > div strong,
.root-game-expansions > strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}

.root-game-hud p,
.root-game-hud small,
.root-game-quests > div small,
.root-game-expansions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.root-game-quests > div small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
}

.root-game-xp-track {
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  background: rgba(219, 234, 205, 0.72);
}

.root-game-xp-track span {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef775f, #e3ad3f, #6f8c3e);
  transition: width 220ms ease;
}

.root-game-quests button {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 56px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--forest);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.root-game-quests button:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 140, 62, 0.35);
  background: rgba(238, 245, 232, 0.95);
}

.root-game-quests button:disabled {
  cursor: default;
  opacity: 0.78;
}

.root-game-quests button:disabled:hover {
  transform: none;
}

.root-game-quests button span {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(111, 140, 62, 0.14);
  color: #48662d;
  font-size: 12px;
  font-weight: 950;
}

.root-game-quests button.is-done {
  border-color: rgba(111, 140, 62, 0.42);
  background:
    linear-gradient(90deg, rgba(111, 140, 62, 0.12), rgba(255, 253, 247, 0.94));
}

.root-game-quests button.is-done span {
  background: rgba(111, 140, 62, 0.22);
}

.root-game-quests button.is-locked {
  border-style: dashed;
  background: rgba(255, 253, 247, 0.62);
}

.root-game-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.root-game-map span,
.root-game-map button {
  display: grid;
  min-height: 78px;
  place-items: center;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 16px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.84), rgba(237, 226, 207, 0.72));
  color: rgba(7, 63, 58, 0.56);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  cursor: pointer;
}

.root-game-map button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.root-game-map span.is-open,
.root-game-map button.is-open {
  background:
    radial-gradient(circle at 50% 22%, rgba(227, 173, 63, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(234, 243, 215, 0.96), rgba(111, 140, 62, 0.32));
  color: var(--forest);
  box-shadow: inset 0 0 0 2px rgba(255, 253, 247, 0.72);
}

.root-game-map button.is-active {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 56%, rgba(7, 63, 58, 0.16));
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 247, 0.7), transparent 36%),
    linear-gradient(180deg, var(--garden-seed-accent), var(--garden-seed-accent-dark));
  color: #fff8ed;
  box-shadow: 0 16px 28px rgba(23, 46, 31, 0.2), inset 0 0 0 2px rgba(255, 253, 247, 0.72);
}

.root-game-receipt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  border: 1px solid color-mix(in srgb, var(--garden-seed-accent) 38%, rgba(7, 63, 58, 0.14));
  border-radius: 22px;
  padding: clamp(18px, 3vw, 24px);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 253, 247, 0.72), transparent 24%),
    linear-gradient(120deg, var(--garden-seed-accent-soft), rgba(255, 253, 247, 0.94) 54%, rgba(255, 248, 229, 0.9));
  box-shadow: 0 20px 48px rgba(23, 46, 31, 0.1);
}

.root-game-receipt[data-last-action="water"],
.root-game-receipt[data-last-action="tend"] {
  background:
    radial-gradient(circle at 12% 18%, rgba(134, 182, 197, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(238, 247, 241, 0.96), rgba(255, 253, 247, 0.94));
}

.root-game-receipt[data-last-action="harvest"],
.root-game-receipt[data-last-action="reward"] {
  background:
    radial-gradient(circle at 14% 20%, rgba(239, 119, 95, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(255, 247, 230, 0.96), rgba(255, 253, 247, 0.94));
}

.root-game-receipt[data-last-action="complete"],
.root-game-receipt[data-last-action="course-task"],
.root-game-receipt[data-last-action="plant"] {
  background:
    radial-gradient(circle at 10% 20%, rgba(227, 173, 63, 0.22), transparent 28%),
    linear-gradient(120deg, var(--garden-seed-accent-soft), rgba(255, 253, 247, 0.96));
}

.root-game-receipt span,
.root-game-receipt small {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.root-game-receipt span {
  color: #8a641e;
}

.root-game-receipt strong {
  display: block;
  max-width: 760px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.root-game-receipt p {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.root-game-receipt-meta {
  display: grid;
  gap: 8px;
  min-width: min(260px, 32vw);
}

.root-game-receipt small {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 247, 0.84);
  color: var(--forest);
  text-align: center;
}

.garden-next-unlock-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 119, 95, 0.14), transparent 25%),
    radial-gradient(circle at 82% 22%, rgba(227, 173, 63, 0.22), transparent 30%),
    linear-gradient(180deg, #edf5e8, #fffaf2 58%, #f7efe1);
}

.garden-next-unlock-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.garden-unlock-bridge,
.garden-unlock-form {
  border: 1px solid rgba(7, 63, 58, 0.13);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 24px 62px rgba(23, 46, 31, 0.12);
}

.garden-unlock-bridge {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(125deg, rgba(7, 63, 58, 0.9), rgba(12, 87, 68, 0.74)),
    url("/assets/live-rooted/root-garden-hero.png") center/cover;
  color: #fff8ed;
}

.garden-unlock-bridge::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 20px;
  pointer-events: none;
}

.garden-unlock-bridge::after {
  content: "Private gate";
  position: absolute;
  right: 28px;
  bottom: 26px;
  max-width: 145px;
  padding: 12px 14px;
  border: 2px solid rgba(90, 59, 28, 0.32);
  border-radius: 10px;
  background: rgba(248, 214, 151, 0.88);
  color: #5a3b1c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.04;
  text-align: center;
  transform: rotate(2deg);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.garden-unlock-bridge span,
.garden-unlock-form > label > span > small,
.garden-unlock-email > span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-unlock-bridge span {
  color: #f6d27a;
}

.garden-unlock-bridge strong {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.96;
}

.garden-unlock-bridge em {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 248, 237, 0.16);
  color: #f6d27a;
  font-style: normal;
  font-weight: 950;
}

.garden-unlock-bridge p,
.garden-unlock-bridge small {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 248, 237, 0.9);
  line-height: 1.55;
}

.garden-unlock-progress-track {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 14px;
  max-width: 430px;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 237, 0.2);
}

.garden-unlock-progress-track span {
  display: block;
  width: var(--garden-path-progress, 12%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef775f, #e3ad3f, #a8b58b);
  transition: width 220ms ease;
}

.garden-unlock-bridge.is-ready::after {
  content: "Next path open";
}

.garden-unlock-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
}

.garden-unlock-form label {
  cursor: pointer;
}

.garden-unlock-form > label:not(.garden-unlock-email) {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 250, 242, 0.84);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.garden-unlock-form > label:not(.garden-unlock-email):hover,
.garden-unlock-form > label.is-active {
  transform: translateY(-1px);
  border-color: rgba(111, 140, 62, 0.4);
  background: rgba(238, 245, 232, 0.94);
}

.garden-unlock-form input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--garden-seed-accent);
}

.garden-unlock-form strong,
.garden-unlock-form small {
  display: block;
}

.garden-unlock-form strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.06;
}

.garden-unlock-form small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.garden-unlock-email {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.garden-unlock-email > span {
  color: #8a641e;
}

.garden-unlock-email input {
  width: 100%;
  border: 1px solid rgba(7, 63, 58, 0.16);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--forest);
}

.garden-unlock-form button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--garden-seed-accent), var(--garden-seed-accent-dark));
  color: #fff8ed;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(23, 46, 31, 0.18);
}

.garden-unlock-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.garden-unlock-form [data-garden-unlock-status] {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.garden-checkout-handoff {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 96% 8%, var(--garden-seed-accent-soft), transparent 34%),
    rgba(255, 253, 247, 0.88);
}

.garden-checkout-handoff[data-handoff-state="saved"] {
  border-color: color-mix(in srgb, var(--garden-seed-accent) 42%, rgba(7, 63, 58, 0.12));
  background:
    radial-gradient(circle at 95% 8%, var(--garden-seed-accent-soft), transparent 38%),
    linear-gradient(135deg, rgba(238, 245, 232, 0.96), rgba(255, 253, 247, 0.92));
}

.garden-checkout-handoff > span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garden-checkout-handoff strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.08;
}

.garden-checkout-handoff p {
  margin: 0;
  color: #40564c;
  font-size: 14px;
  line-height: 1.45;
}

.garden-checkout-handoff dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.garden-checkout-handoff div {
  display: grid;
  gap: 3px;
  min-width: 0;
  border-radius: 13px;
  padding: 9px 10px;
  background: rgba(255, 250, 242, 0.82);
}

.garden-checkout-handoff dt,
.garden-checkout-handoff dd {
  margin: 0;
}

.garden-checkout-handoff dt {
  color: #8a641e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.garden-checkout-handoff dd {
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.reward-shop-grid,
.garden-suggestion-grid,
.template-engine-grid,
.garden-system-grid,
.pricing-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reward-shop-grid article,
.garden-suggestion-grid article,
.template-engine-grid article,
.garden-system-grid article,
.pricing-path-grid article {
  display: grid;
  gap: 12px;
  min-height: 240px;
  align-content: start;
  padding: 24px;
}

.reward-shop-grid strong,
.garden-suggestion-grid strong,
.template-engine-grid strong,
.pricing-path-grid strong {
  font-size: clamp(28px, 2.6vw, 42px);
}

.reward-shop-grid p,
.garden-suggestion-grid p,
.template-engine-grid p,
.garden-system-grid p,
.pricing-path-grid p {
  margin: 0;
}

.reward-shop-grid small {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(7, 63, 58, 0.13);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(111, 140, 62, 0.12);
  color: var(--forest);
  font-size: 12px;
  font-weight: 950;
}

.reward-shop-grid button {
  align-self: end;
  justify-self: start;
  min-width: 146px;
  border: 0;
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--forest);
  color: #fff8ed;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.reward-shop-grid button:disabled {
  cursor: not-allowed;
  background: rgba(67, 82, 77, 0.24);
  color: rgba(7, 63, 58, 0.62);
}

.reward-shop-grid article.is-owned {
  border-color: rgba(111, 140, 62, 0.42);
  background:
    radial-gradient(circle at 86% 18%, rgba(227, 173, 63, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(238, 245, 232, 0.86));
  box-shadow: 0 24px 58px rgba(23, 46, 31, 0.13);
}

.garden-owned-summary {
  margin: 18px 0 0;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--forest);
  font-weight: 850;
}

.pricing-path-grid em,
.offer-step-card em,
.offer-lead-card small[data-selected-offer-price] {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(7, 63, 58, 0.13);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 253, 247, 0.78);
  color: var(--forest);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.garden-template-engine {
  background:
    radial-gradient(circle at 18% 16%, rgba(227, 173, 63, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf2, #f4eadb);
}

.garden-suggestion-grid article {
  min-height: 230px;
}

.garden-suggestion-grid span,
.template-engine-grid span,
.garden-system-grid span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.garden-suggestion-grid strong,
.template-engine-grid strong,
.garden-system-grid strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.05;
}

.pricing-path-grid .is-featured {
  border-color: rgba(239, 119, 95, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.95), rgba(239, 119, 95, 0.14));
  box-shadow: 0 24px 64px rgba(50, 36, 26, 0.13);
}

.pricing-path-grid small {
  margin-top: auto;
  color: var(--forest);
  font-weight: 900;
}

.garden-revenue-recipe {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.35fr) minmax(260px, 0.85fr);
  gap: 16px;
  margin-top: 18px;
}

.garden-revenue-recipe article,
.revenue-active-offer {
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 18px 46px rgba(50, 36, 26, 0.08);
}

.revenue-recipe-main,
.revenue-active-offer {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
}

.revenue-recipe-main {
  background:
    radial-gradient(circle at 90% 8%, rgba(239, 119, 95, 0.16), transparent 36%),
    rgba(255, 253, 247, 0.9);
}

.revenue-recipe-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.revenue-recipe-flow article {
  display: grid;
  gap: 9px;
  min-height: 210px;
  padding: 20px;
}

.garden-revenue-recipe span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.revenue-recipe-flow span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--garden-seed-accent-soft);
  color: var(--forest);
  font-size: 14px;
  letter-spacing: 0;
}

.garden-revenue-recipe strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.06;
}

.revenue-recipe-flow strong {
  font-size: clamp(20px, 1.7vw, 28px);
}

.garden-revenue-recipe p,
.garden-revenue-recipe small {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.revenue-active-offer {
  background:
    radial-gradient(circle at 92% 8%, var(--garden-seed-accent-soft), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(238, 245, 232, 0.86));
}

.revenue-active-offer small {
  border: 1px solid rgba(7, 63, 58, 0.11);
  border-radius: 14px;
  padding: 10px 11px;
  background: rgba(255, 253, 247, 0.68);
  color: var(--forest);
  font-weight: 850;
}

.revenue-active-offer[data-revenue-state="course-path"] {
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 119, 95, 0.17), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 236, 228, 0.86));
}

.revenue-active-offer[data-revenue-state="membership"] {
  background:
    radial-gradient(circle at 92% 8%, rgba(227, 173, 63, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(248, 235, 196, 0.82));
}

.revenue-active-offer[data-revenue-state="reminders"] {
  background:
    radial-gradient(circle at 92% 8%, rgba(130, 174, 191, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(232, 242, 240, 0.86));
}

.garden-system-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(7, 63, 58, 0.12), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(239, 119, 95, 0.14), transparent 24%),
    linear-gradient(180deg, #eef5e8, #fffaf2);
}

.garden-system-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.garden-system-grid article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(238, 245, 232, 0.74));
  box-shadow: 0 18px 46px rgba(50, 36, 26, 0.08);
}

.garden-system-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 173, 63, 0.2), transparent 68%);
  pointer-events: none;
}

.garden-system-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.84);
  color: var(--forest);
  box-shadow: 0 16px 38px rgba(50, 36, 26, 0.07);
}

.garden-system-note strong {
  font-weight: 950;
}

.garden-system-note span {
  color: #43524d;
  line-height: 1.55;
}

.garden-system-note code {
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 6px;
  padding: 2px 5px;
  background: rgba(248, 244, 235, 0.82);
  color: var(--forest);
  font-size: 0.92em;
}

.garden-preferences-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(111, 140, 62, 0.14), transparent 26%),
    linear-gradient(180deg, #fffaf2, #f4eadb);
}

.garden-offer-funnel-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(239, 119, 95, 0.13), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(227, 173, 63, 0.15), transparent 24%),
    linear-gradient(180deg, #fffaf2, #eef5e8);
}

.garden-offer-funnel {
  display: grid;
  grid-template-columns: minmax(300px, 0.5fr) minmax(320px, 0.5fr);
  gap: 18px;
  align-items: stretch;
}

.offer-step-stack {
  display: grid;
  gap: 12px;
}

.offer-step-card,
.offer-lead-card {
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 46px rgba(50, 36, 26, 0.08);
}

.offer-step-card {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 22px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.offer-step-card.is-active {
  border-color: rgba(239, 119, 95, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(239, 119, 95, 0.12));
  box-shadow: 0 22px 54px rgba(50, 36, 26, 0.12);
}

.offer-step-card span,
.offer-lead-card > span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-step-card strong,
.offer-lead-card strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.offer-step-card p,
.offer-lead-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.offer-step-card button {
  align-self: end;
  justify-self: start;
  margin-top: 6px;
  min-width: 160px;
  border: 0;
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--forest);
  color: #fff8ed;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.offer-lead-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.95), rgba(238, 245, 232, 0.78));
}

.offer-lead-card label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.offer-lead-card input[type="text"],
.offer-lead-card input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7, 63, 58, 0.14);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255, 253, 247, 0.94);
  color: var(--forest);
}

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

.offer-check-grid label {
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(7, 63, 58, 0.1);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 253, 247, 0.76);
}

.offer-check-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.offer-lead-card button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #2b2015;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.offer-lead-card .offer-save-status {
  border: 1px solid rgba(7, 63, 58, 0.1);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 253, 247, 0.72);
  color: rgba(7, 63, 58, 0.72);
  font-size: 13px;
}

.garden-preference-card {
  display: grid;
  gap: 12px;
  max-width: 820px;
  padding: 22px;
}

.garden-preference-card label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid rgba(7, 63, 58, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(248, 244, 235, 0.68);
  color: var(--forest);
  font-weight: 860;
}

.garden-preference-card input {
  width: 20px;
  height: 20px;
  accent-color: var(--forest);
}

.garden-preference-card input[type="email"] {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(7, 63, 58, 0.14);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255, 253, 247, 0.94);
  color: var(--forest);
}

.garden-preference-card label:has(input[type="email"]) {
  display: grid;
  align-items: start;
}

.garden-preference-card button {
  justify-self: start;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  background: var(--forest);
  color: #fff8ed;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.garden-preference-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.garden-return-plan {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(238, 245, 232, 0.72);
}

.garden-return-plan strong {
  color: var(--forest);
  font-size: 14px;
}

.garden-return-plan p {
  margin: 0;
  line-height: 1.55;
}

.garden-next-visit-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(194, 132, 40, 0.26);
  border-radius: 18px;
  padding: 15px 16px;
  background:
    radial-gradient(circle at 94% 10%, rgba(227, 173, 63, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 232, 0.96), rgba(238, 245, 232, 0.84));
  color: var(--forest);
  box-shadow: 0 14px 34px rgba(50, 36, 26, 0.08);
}

.garden-next-visit-card span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.garden-next-visit-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
}

.garden-next-visit-card p,
.garden-next-visit-card small {
  margin: 0;
  color: #43524d;
  line-height: 1.5;
}

.garden-next-visit-card small {
  font-weight: 850;
}

.root-course-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(227, 173, 63, 0.14), transparent 28%),
    linear-gradient(180deg, #fffaf4, #eef5e8);
}

.root-course-reader {
  background:
    radial-gradient(circle at 88% 12%, rgba(227, 173, 63, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf4, #eef5e8);
}

.root-course-reader-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 42px rgba(50, 36, 26, 0.07);
}

.root-course-reader-status span,
.root-course-mini-stats span,
.root-course-next-card span,
.root-course-lesson > span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.root-course-reader-status strong {
  color: var(--forest);
  font-size: 18px;
}

.root-course-reader-status small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.root-course-reader-status b {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.root-course-reader-track {
  grid-column: 1 / -1;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(7, 63, 58, 0.12);
}

.root-course-reader-track i {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ca664d, #e5a02a);
  transition: width 240ms ease;
}

.root-course-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr) minmax(260px, 0.3fr);
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}

.root-course-lesson-stack {
  display: grid;
  gap: 14px;
}

.root-course-hero img {
  object-position: center;
}

.root-course-reward-strip p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
}

.root-course-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  padding: 7px;
  background: rgba(255, 253, 247, 0.82);
  overflow-x: auto;
}

.root-course-switcher button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 12px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.root-course-switcher button.is-active {
  background: linear-gradient(135deg, #32785d, #23634b);
  color: #fffaf0;
  box-shadow: 0 12px 26px rgba(35, 99, 75, 0.18);
}

.root-course-switcher button.is-complete {
  background: rgba(111, 140, 62, 0.16);
  color: var(--forest);
}

.root-course-switcher button.is-active.is-complete {
  background: linear-gradient(135deg, #32785d, #23634b);
  color: #fffaf0;
}

.root-course-reward-trail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.root-course-reward-trail article {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 156px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 14%, rgba(227, 173, 63, 0.14), transparent 32%),
    rgba(255, 253, 247, 0.82);
  box-shadow: 0 16px 38px rgba(50, 36, 26, 0.07);
}

.root-course-reward-trail article::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(7, 63, 58, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.8);
}

.root-course-reward-trail article.is-active {
  border-color: rgba(227, 173, 63, 0.48);
  box-shadow: 0 20px 46px rgba(50, 36, 26, 0.1);
}

.root-course-reward-trail article.is-complete {
  border-color: rgba(50, 120, 93, 0.38);
  background:
    radial-gradient(circle at 88% 14%, rgba(111, 140, 62, 0.2), transparent 32%),
    rgba(238, 245, 232, 0.9);
}

.root-course-reward-trail article.is-complete::after {
  border-color: rgba(50, 120, 93, 0.72);
  background: #32785d;
  box-shadow: inset 0 0 0 5px rgba(255, 253, 247, 0.92);
}

.root-course-reward-trail span {
  color: #8a641e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.root-course-reward-trail strong {
  max-width: 92%;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.02;
}

.root-course-reward-trail p {
  margin: 0;
  color: #43524d;
  font-size: 13px;
  line-height: 1.45;
}

.root-course-lesson {
  display: none;
  gap: 14px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 42px rgba(50, 36, 26, 0.07);
}

.root-course-lesson.is-active {
  display: grid;
}

.root-course-lesson h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.02;
}

.root-course-lesson p {
  margin: 0;
  color: #43524d;
  line-height: 1.55;
}

.root-course-lesson.is-complete {
  border-color: rgba(111, 140, 62, 0.38);
  box-shadow: inset 0 0 0 2px rgba(111, 140, 62, 0.12);
}

.root-course-task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.root-course-task-grid article,
.root-course-script-card,
.root-course-mini-stats {
  border: 1px solid rgba(7, 63, 58, 0.1);
  border-radius: 20px;
  padding: 18px;
  background: rgba(238, 245, 232, 0.72);
}

.root-course-task-grid strong,
.root-course-script-card strong {
  color: var(--forest);
  font-size: 18px;
}

.root-course-script-card {
  display: grid;
  gap: 10px;
}

.root-course-script-card button,
.root-course-complete {
  justify-self: start;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 11px 16px;
  background: var(--forest);
  color: #fff8ed;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.root-course-complete.is-complete,
.root-course-complete:disabled {
  background: rgba(111, 140, 62, 0.18);
  color: var(--forest);
  cursor: default;
}

.root-course-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.root-course-mini-stats {
  display: grid;
  gap: 8px;
}

.root-course-mini-stats strong {
  color: var(--forest);
  font-size: 18px;
}

.root-course-next-card {
  border-color: rgba(227, 173, 63, 0.28) !important;
  background:
    radial-gradient(circle at 92% 10%, rgba(227, 173, 63, 0.18), transparent 34%),
    rgba(255, 253, 247, 0.92) !important;
}

/* Customer guide preview */
.guide-detail-page {
  background:
    linear-gradient(115deg, rgba(255, 247, 229, 0.86) 0%, rgba(255, 247, 229, 0) 33%),
    linear-gradient(180deg, #fffaf4, #f6ede0);
}

.guide-reader-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.guide-reader-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.guide-reader-ambient span {
  position: absolute;
  display: block;
  border-radius: 100% 0 100% 0;
  border: 1px solid rgba(31, 100, 76, 0.12);
  background: linear-gradient(135deg, rgba(31, 100, 76, 0.1), rgba(201, 150, 75, 0.12));
  animation: rootedGuideFloat 18s ease-in-out infinite;
}

.guide-reader-ambient span:first-child {
  top: 18%;
  left: -70px;
  width: 172px;
  height: 88px;
  transform: rotate(-18deg);
}

.guide-reader-ambient span:last-child {
  right: -54px;
  top: 42%;
  width: 136px;
  height: 72px;
  transform: rotate(24deg);
  animation-delay: -8s;
}

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

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

.guide-reader-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 15px 4vw;
  border-bottom: 1px solid rgba(7, 63, 58, 0.1);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(18px);
}

.guide-reader-brand img {
  width: 230px;
}

.guide-progress-mini {
  display: grid;
  grid-template-columns: auto minmax(120px, 250px) auto;
  gap: 11px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.guide-progress-mini div {
  position: relative;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(7, 63, 58, 0.1);
}

.guide-progress-mini i {
  position: relative;
  display: block;
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2e765b, #c9964b);
}

.guide-progress-mini i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.85), transparent);
  transform: translateX(-100%);
  animation: rootedGuideShimmer 2.8s ease-in-out infinite;
}

@keyframes rootedGuideShimmer {
  100% {
    transform: translateX(130%);
  }
}

.guide-reader-topbar nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.guide-action-link {
  border: 1px solid rgba(7, 63, 58, 0.14);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--forest);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.guide-action-link:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.guide-reader-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr) minmax(250px, 0.32fr);
  gap: 20px;
  padding: 28px 4vw 46px;
}

.guide-reader-sidebar,
.guide-reader-tools {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.guide-reader-sidebar,
.guide-reader-tools article,
.guide-section-card,
.online-guide-hero,
.guide-magic-strip {
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 18px 48px rgba(50, 36, 26, 0.08);
}

.guide-reader-sidebar {
  padding: 22px;
}

.guide-reader-sidebar strong,
.guide-reader-tools h2,
.online-guide h1,
.guide-section-card h2 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.guide-reader-sidebar strong {
  font-size: 25px;
  line-height: 1.05;
}

.guide-reader-sidebar span,
.guide-reader-sidebar p,
.guide-reader-tools p,
.online-guide p,
.guide-section-card li {
  color: var(--muted);
  line-height: 1.55;
}

.guide-reader-sidebar ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.guide-reader-sidebar a {
  color: var(--forest);
  font-weight: 850;
}

.online-guide {
  display: grid;
  gap: 18px;
}

.online-guide-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.54fr;
  gap: 20px;
  overflow: hidden;
  min-height: 420px;
}

.online-guide-hero::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 34px;
  width: min(260px, 42%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 150, 75, 0.72), transparent);
}

.online-guide-hero > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 54px);
}

.online-guide-hero span,
.guide-section-card span,
.guide-reader-tools span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.online-guide h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
}

.online-guide-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-magic-strip {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.96), rgba(232, 241, 226, 0.76)),
    rgba(255, 253, 247, 0.9);
}

.guide-magic-leaf {
  width: 38px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #2e765b, #c9964b);
  transform: rotate(-22deg);
  box-shadow: 0 12px 26px rgba(46, 118, 91, 0.18);
}

.guide-magic-strip p {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.42;
}

.guide-section-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3.4vw, 44px);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.guide-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(50, 36, 26, 0.1);
}

.root-course-reader .root-course-lesson {
  display: none;
}

.root-course-reader .root-course-lesson.is-active {
  display: grid;
}

.guide-section-card h2,
.guide-reader-tools h2 {
  margin: 0;
  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.05;
}

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

.guide-tip-grid article,
.guide-section-card blockquote {
  border-radius: 20px;
  padding: 18px;
  background: rgba(238, 245, 232, 0.72);
}

.guide-section-card blockquote {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.3;
}

.guide-checklist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.guide-disclaimer {
  background: rgba(255, 248, 235, 0.92);
}

.guide-reader-tools article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.public-nav .is-active {
  color: #fffaf0;
  background: linear-gradient(135deg, var(--forest), var(--pine));
}

/* Shared online product system */
.product-reader-layout {
  align-items: start;
}

.product-section-rail p {
  border: 1px solid rgba(201, 150, 75, 0.22);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 248, 235, 0.76);
}

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

.product-hero {
  position: relative;
  grid-template-columns: 1fr;
}

.product-hero > div {
  position: relative;
  z-index: 1;
  padding-right: clamp(28px, 13vw, 120px);
}

.product-hero img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(36%, 230px);
  height: 100%;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 48%);
  mask-image: linear-gradient(90deg, transparent, #000 48%);
}

.guide-action-link.is-primary {
  border-color: rgba(31, 100, 76, 0.24);
  background: linear-gradient(135deg, #32785d, #23634b);
  color: #fffaf0;
}

.product-section-card {
  position: relative;
}

.routine-tabs,
.guide-filter-row {
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.82);
  overflow-x: auto;
}

.routine-tabs button,
.guide-filter-row button {
  flex: 1 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 11px 15px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.routine-tabs button.is-active,
.guide-filter-row button.is-active {
  background: linear-gradient(135deg, #32785d, #23634b);
  color: #fffaf0;
  box-shadow: 0 12px 26px rgba(35, 99, 75, 0.18);
}

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

.routine-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 16px 42px rgba(50, 36, 26, 0.07);
}

.routine-card h3,
.routine-card p,
.routine-card blockquote {
  margin: 0;
}

.routine-card h3 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.routine-card blockquote {
  border: 1px solid rgba(201, 150, 75, 0.22);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 248, 235, 0.78);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.4;
}

.routine-card button,
.guide-helper-card button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #32785d, #23634b);
  color: #fffaf0;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.guide-helper-card label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.guide-helper-card select,
.guide-helper-card textarea {
  width: 100%;
  border: 1px solid rgba(7, 63, 58, 0.14);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--forest);
  font: inherit;
}

.copy-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Guides and programs public shelf */
.guide-hub-page {
  background:
    linear-gradient(115deg, rgba(255, 247, 229, 0.86) 0%, rgba(255, 247, 229, 0) 33%),
    linear-gradient(180deg, #fffaf4, #f6ede0);
}

.guide-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(34px, 6vw, 76px) 4vw;
}

.guide-hub-hero > div,
.guide-hub-hero figure,
.guide-hub-filter-section,
.product-system-section {
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 18px 48px rgba(50, 36, 26, 0.08);
}

.guide-hub-hero > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 60px);
}

.guide-hub-hero h1 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.95;
}

.guide-hub-hero p,
.guide-hub-filter-section p,
.product-system-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.guide-hub-hero .secondary-cta {
  border-color: rgba(7, 63, 58, 0.14);
  background: rgba(255, 253, 247, 0.88);
  color: var(--forest);
  backdrop-filter: none;
}

.guide-hub-hero figure {
  margin: 0;
  overflow: hidden;
}

.guide-hub-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.guide-hub-filter-section {
  display: grid;
  gap: 18px;
  margin: 0 4vw 18px;
  padding: 28px;
}

.product-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 4vw 34px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 48px rgba(50, 36, 26, 0.08);
}

.product-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.product-card > div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 42px);
}

.product-card span,
.routine-card span {
  color: #8a641e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card h2,
.product-system-section h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.product-card p,
.product-card li,
.product-system-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.product-card ul {
  margin: 0;
  padding-left: 20px;
}

.product-system-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 22px;
  margin: 0 4vw 34px;
  padding: clamp(28px, 4vw, 50px);
}

.product-system-grid {
  display: grid;
  gap: 12px;
}

.product-system-grid article {
  border: 1px solid rgba(7, 63, 58, 0.12);
  border-radius: 20px;
  padding: 18px;
  background: rgba(238, 245, 232, 0.72);
}

.product-system-grid strong,
.product-system-grid span {
  display: block;
}

.product-system-grid strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media (max-width: 1180px) {
  .root-garden-detail-page .desktop-nav.public-nav {
    display: none;
  }

  .root-garden-detail-page .site-header.public-header {
    min-height: 92px;
  }

  .root-garden-detail-page .site-header .brand-logo {
    width: min(280px, 46vw);
  }

  .root-garden-detail-page .site-header .brand-logo img {
    max-width: min(230px, 42vw);
  }

  .root-garden-detail-page .site-header .brand-logo::after {
    font-size: clamp(24px, 3vw, 32px);
  }

  .public-hero,
  .life-montage-section,
  .root-garden-section,
  .garden-product-hero,
  .garden-workspace-grid,
  .garden-product-play .root-garden-playfield,
  .root-game-grid,
  .garden-next-unlock-grid,
  .garden-offer-funnel,
  .guide-showcase,
  .resource-lane,
  .story-soft-section,
  .guide-reader-layout,
  .root-course-layout,
  .guide-hub-hero,
  .product-system-section {
    grid-template-columns: 1fr;
  }

  .root-garden-section {
    grid-template-areas:
      "copy"
      "play"
      "panel";
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .root-garden-playfield {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .root-game-receipt {
    grid-template-columns: 1fr;
  }

  .root-course-reader-status {
    grid-template-columns: 1fr;
  }

  .root-game-receipt-meta {
    min-width: 0;
  }

  .root-garden-gateway {
    width: min(640px, 100%);
  }

  .root-garden-gateway--feature {
    grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1fr);
    width: min(720px, 100%);
  }

  .root-garden-art::after {
    background:
      radial-gradient(circle at 6% 13%, rgba(255, 247, 229, 0.98) 0%, rgba(255, 247, 229, 0.88) 28%, rgba(255, 247, 229, 0.48) 52%, transparent 74%),
      linear-gradient(180deg, rgba(255, 247, 229, 0.72), rgba(255, 247, 229, 0.42) 52%, rgba(7, 63, 58, 0.24));
  }

  .garden-panel {
    justify-self: start;
    width: min(660px, 100%);
  }

  .garden-sign {
    width: 230px;
    right: 30px;
    bottom: 34px;
  }

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

  .garden-product-hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .garden-product-copy,
  .garden-hero-gameboard,
  .root-garden-chapter-ribbon {
    grid-column: 1;
    grid-row: auto;
  }

  .garden-product-copy {
    padding-bottom: 0;
  }

  .garden-product-copy::before {
    inset: -32px -32px -32px -32px;
  }

  .garden-hero-gameboard {
    width: 100%;
    min-height: 540px;
  }

  .garden-checkin-card {
    left: 0;
    width: min(280px, 48vw);
  }

  .garden-scene-status {
    right: 0;
    width: min(250px, 40vw);
  }

  .garden-hero-sign {
    right: 0;
  }

  .garden-seed-bubble {
    right: 0;
    bottom: 0;
  }

  .root-garden-chapter-ribbon {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 860px);
    margin: 22px auto 0;
    border-radius: 18px;
    border-bottom: 1px solid rgba(7, 63, 58, 0.12);
  }

  .root-course-reward-trail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-path-grid,
  .garden-revenue-recipe,
  .garden-suggestion-grid,
  .garden-system-grid,
  .template-engine-grid,
  .reward-shop-grid,
  .course-monetization-panel,
  .shop-funnel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-reader-sidebar,
  .guide-reader-tools {
    position: static;
  }

  .guide-reader-layout {
    padding-inline: 22px;
  }

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

@media (max-width: 760px) {
  .public-header {
    min-height: 92px;
    justify-content: flex-start;
  }

  .public-header .brand-logo {
    width: 230px;
  }

  .public-home .public-header {
    min-height: 94px;
    justify-content: center;
    padding: 16px 16px;
  }

  .public-home .public-header .brand-logo {
    width: min(186px, 42vw);
    margin: 0 auto;
  }

  .root-garden-detail-page .site-header.public-header {
    padding: 14px 16px;
  }

  .root-garden-detail-page .site-header .brand-logo img {
    max-width: min(188px, 44vw);
  }

  .root-garden-detail-page .site-header .brand-logo::after {
    content: "Life";
    position: absolute;
    left: 298px;
    top: 25px;
    display: block;
    color: #23452b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }

  .public-home .header-tools {
    right: 14px;
    top: 22px;
  }

  .garden-header-wallet {
    display: none;
  }

  .public-home .mobile-toggle {
    min-width: 90px;
    min-height: 46px;
    padding: 0 12px;
  }

  .public-hero,
  .guide-hub-hero,
  .guide-hub-filter-section,
  .public-path-section,
  .root-garden-section,
  .course-economy-section,
  .garden-product-hero,
  .garden-product-section,
  .guide-showcase,
  .resource-lane,
  .rooted-finds-section,
  .story-soft-section,
  .library-preview-section,
  .shop-tease,
  .life-montage-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .public-hero.memory-hero {
    min-height: auto;
  }

  .memory-hero-final {
    display: flex;
    flex-direction: column;
  }

  .memory-hero-copy {
    order: 2;
    max-width: none;
    min-height: 0;
    height: auto;
    padding: 36px 20px 58px;
  }

  .memory-brand-line {
    max-width: 100%;
    padding: 9px 13px 9px 10px;
    font-size: 12px;
  }

  .memory-hero .hero-copy h1 {
    max-width: 320px;
    font-size: clamp(52px, 14vw, 62px);
  }

  .memory-hero .hero-text {
    max-width: 340px;
    font-size: 17px;
  }

  .memory-hero-scrim {
    background:
      radial-gradient(circle at 0% 24%, rgba(255, 247, 229, 0.99) 0%, rgba(255, 247, 229, 0.93) 39%, rgba(255, 247, 229, 0.56) 62%, transparent 100%),
      linear-gradient(180deg, rgba(255, 245, 222, 0.9), rgba(255, 245, 222, 0.74) 50%, rgba(255, 245, 222, 0.34) 68%, rgba(7, 63, 58, 0.28) 100%);
  }

  .memory-photo-wall {
    inset: 0;
  }

  .memory-tile {
    border-width: 1px;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(35, 42, 34, 0.2);
    opacity: 0.78;
  }

  .memory-tile-grad,
  .memory-tile-grass,
  .memory-tile-dog,
  .memory-tile-flower,
  .memory-tile-left-bloom {
    display: none;
  }

  .memory-tile-main {
    left: auto;
    right: -112px;
    top: 326px;
    width: 430px;
    min-height: 0;
    height: 280px;
    opacity: 0.74;
    transform: rotate(2deg);
  }

  .memory-tile-beach {
    display: block;
    right: -30px;
    bottom: 34px;
    width: 188px;
    height: 236px;
    opacity: 0.86;
    transform: rotate(-3deg);
  }

  .memory-tile-swing {
    left: auto;
    right: 144px;
    bottom: 120px;
    width: 158px;
    height: 108px;
    opacity: 0.72;
    transform: rotate(3deg);
  }

  .memory-tile-family {
    display: block;
    left: -34px;
    bottom: 88px;
    width: 222px;
    height: 145px;
    opacity: 0.68;
    transform: rotate(-4deg);
  }

  .memory-hero-note {
    display: none;
  }

  .memory-root-garden-hook {
    position: relative;
    order: 1;
    right: auto;
    bottom: auto;
    width: min(100%, 350px);
    min-height: 0;
    margin: 20px auto 0;
    padding: 16px;
  }

  .memory-root-garden-hook strong {
    font-size: 27px;
  }

  .memory-root-garden-mini-form {
    padding: 11px;
  }

  .public-hero-media {
    min-height: 430px;
  }

  .public-path-grid,
  .resource-row,
  .finds-grid,
  .garden-stats-grid,
  .garden-hero-stats,
  .garden-world-system-panel,
  .root-game-grid,
  .root-game-map,
  .garden-next-unlock-grid,
  .course-economy-grid,
  .pricing-path-grid,
  .garden-revenue-recipe,
  .revenue-recipe-flow,
  .garden-suggestion-grid,
  .garden-system-grid,
  .template-engine-grid,
  .reward-shop-grid,
  .course-monetization-panel,
  .shop-funnel-grid,
  .offer-check-grid,
  .guide-feature-card,
  .online-guide-hero,
  .guide-tip-grid {
    grid-template-columns: 1fr;
  }

  .root-course-task-grid,
  .root-course-reward-trail,
  .root-course-switcher {
    grid-template-columns: 1fr;
  }

  .root-course-switcher {
    border-radius: 22px;
  }

  .root-garden-section {
    gap: 18px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .root-garden-gateway {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .root-garden-gateway--feature {
    min-height: 0;
    border-radius: 22px;
  }

  .garden-unlock-bridge::after {
    display: none;
  }

  .root-garden-gateway video {
    width: 100%;
    max-height: 156px;
  }

  .root-garden-gateway--feature video,
  .gateway-video-stage {
    min-height: 172px;
    max-height: none;
  }

  .gateway-pulse {
    left: auto;
    right: 20px;
    top: 20px;
  }

  .gateway-reward-row b {
    flex: 1 1 120px;
    justify-content: center;
  }

  .garden-checkout-handoff dl {
    grid-template-columns: 1fr;
  }

  .garden-product-hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-top: 24px;
  }

  .garden-product-copy,
  .garden-hero-gameboard,
  .root-garden-chapter-ribbon {
    grid-column: 1;
    grid-row: auto;
  }

  .garden-product-backdrop img {
    object-position: 68% center;
  }

  .garden-product-backdrop::after {
    background:
      radial-gradient(circle at 8% 12%, rgba(255, 247, 229, 0.99) 0%, rgba(255, 247, 229, 0.94) 36%, rgba(255, 247, 229, 0.72) 62%, rgba(255, 247, 229, 0.32) 100%),
      linear-gradient(180deg, rgba(255, 247, 229, 0.88), rgba(255, 247, 229, 0.5) 62%, rgba(7, 63, 58, 0.22));
  }

  .garden-product-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .garden-product-copy p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .garden-product-copy .garden-hero-promise {
    margin-top: 16px;
    font-size: 14px;
  }

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

  .garden-hero-stats article {
    min-height: 76px;
    border-radius: 14px;
    padding: 9px;
  }

  .garden-hero-stats span {
    font-size: 10px;
    line-height: 1.2;
  }

  .garden-hero-stats strong {
    font-size: 21px;
  }

  .garden-hero-stats small {
    display: none;
  }

  .garden-hero-gameboard {
    display: grid;
    gap: 12px;
    height: auto;
    min-height: 0;
  }

  .root-garden-chapter-ribbon {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .garden-checkin-card,
  .garden-story-card,
  .garden-hero-sign,
  .garden-seed-bubble,
  .garden-system-dock,
  .garden-scene-atlas,
  .garden-world-advance,
  .garden-cinematic-card,
  .garden-scene-filmstrip,
  .garden-camera-rail,
  .garden-scene-status {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    border-radius: 18px;
    transform: none;
  }

  .garden-scene-status {
    order: 3;
  }

  .garden-world-advance {
    order: 4;
    left: auto;
    top: auto;
    width: 100%;
  }

  .garden-camera-rail {
    order: 5;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 14px;
  }

  .garden-care-tray,
  .garden-upgrade-list {
    grid-template-columns: 1fr;
  }

  .garden-upgrade-dock {
    position: fixed;
    inset: auto 10px 10px;
    top: auto;
    right: 10px;
    width: auto;
    max-height: min(620px, 74vh);
    margin-top: 0;
    overflow: auto;
    border-radius: 22px;
  }

  .garden-helper {
    width: 44px;
    height: 64px;
  }

  .garden-cinematic-card {
    order: 6;
    grid-template-columns: 118px minmax(0, 1fr);
    width: 100%;
    right: auto;
    bottom: auto;
  }

  .garden-product-hero[data-garden-scene="1"] .garden-cinematic-card,
  .garden-product-hero[data-garden-scene="2"] .garden-cinematic-card,
  .garden-product-hero[data-garden-scene="3"] .garden-cinematic-card {
    right: auto;
    bottom: auto;
  }

  .garden-cinematic-media,
  .garden-cinematic-media video {
    min-height: 112px;
  }

  .garden-scene-filmstrip {
    order: 7;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garden-scene-filmstrip button {
    min-height: 102px;
  }

  .garden-story-card {
    left: auto;
    bottom: auto;
    order: 8;
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .garden-product-hero[data-garden-scene="1"] .garden-story-card,
  .garden-product-hero[data-garden-scene="2"] .garden-story-card,
  .garden-product-hero[data-garden-scene="3"] .garden-story-card {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .garden-story-card::after {
    display: none;
  }

  .garden-story-media,
  .garden-story-video {
    min-height: 104px;
  }

  .garden-seed-bubble {
    padding: 14px;
  }

  .garden-system-dock {
    order: 9;
    padding: 14px;
  }

  .garden-system-dock a {
    justify-self: stretch;
  }

  .garden-world-system-panel {
    width: 100%;
    margin-bottom: 18px;
  }

  .garden-seed-dna-card,
  .garden-world-map-card,
  .garden-room-detail-card {
    border-radius: 18px;
    padding: 16px;
  }

  .garden-world-room-board {
    grid-template-columns: 1fr;
  }

  .garden-world-room-board button {
    min-height: 72px;
  }

  .garden-hero-path {
    position: relative;
    inset: auto;
    height: 210px;
    margin: 10px 0;
    border-radius: 22px;
    background:
      radial-gradient(circle at 22% 28%, rgba(239, 119, 95, 0.14), transparent 22%),
      radial-gradient(circle at 78% 20%, rgba(227, 173, 63, 0.18), transparent 24%),
      linear-gradient(135deg, rgba(111, 140, 62, 0.18), rgba(255, 248, 237, 0.76));
  }

  .garden-product-hero[data-garden-scene="1"] .garden-hero-path,
  .garden-product-hero[data-garden-scene="2"] .garden-hero-path,
  .garden-product-hero[data-garden-scene="3"] .garden-hero-path {
    transform: none;
  }

  .garden-hero-path .path-thread {
    left: 12%;
    right: 12%;
    top: 50%;
    transform: none;
  }

  .garden-hero-path .path-stone[data-story-stone="0"] {
    left: 8%;
    top: 38%;
  }

  .garden-hero-path .path-stone[data-story-stone="1"] {
    left: 31%;
    top: 52%;
  }

  .garden-hero-path .path-stone[data-story-stone="2"] {
    left: 55%;
    top: 36%;
  }

  .garden-hero-path .path-stone[data-story-stone="3"] {
    left: 76%;
    top: 52%;
  }

  .path-traveler {
    width: 38px;
    height: 38px;
  }

  .garden-product-hero[data-garden-scene="0"] .path-traveler {
    left: 13%;
    top: 28%;
  }

  .garden-product-hero[data-garden-scene="1"] .path-traveler {
    left: 36%;
    top: 42%;
  }

  .garden-product-hero[data-garden-scene="2"] .path-traveler {
    left: 60%;
    top: 26%;
  }

  .garden-product-hero[data-garden-scene="3"] .path-traveler {
    left: 81%;
    top: 42%;
  }

  .path-growth {
    width: 20px;
    height: 20px;
  }

  .path-growth--one {
    left: 24%;
    top: 38%;
  }

  .path-growth--two {
    left: 49%;
    top: 34%;
  }

  .path-growth--three {
    left: 71%;
    top: 40%;
  }

  .garden-advance-burst {
    left: 58%;
    top: 42%;
    width: 150px;
  }

  .chapter-sign--one {
    left: 17%;
    top: 68%;
  }

  .chapter-sign--two {
    left: 61%;
    top: 22%;
  }

  .root-game-quests button {
    grid-template-columns: 1fr;
  }

  .root-garden-art img {
    object-position: 62% center;
  }

  .root-garden-copy h2,
  .course-economy-section h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .root-garden-actions > * {
    flex: 1 1 190px;
  }

  .garden-path-map {
    height: 142px;
    min-height: 142px;
  }

  .path-stone {
    width: 50px;
    height: 50px;
    border-width: 4px;
  }

  .garden-tending-head {
    display: grid;
  }

  .garden-tending-head small {
    justify-self: start;
  }

  .garden-care-tray {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garden-expansion-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garden-expansion-permit {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .garden-expansion-permit button {
    width: 100%;
  }

  .offer-step-card button {
    min-width: 0;
  }

  .garden-system-note {
    grid-template-columns: 1fr;
  }

  .garden-panel {
    padding: 12px;
    border-radius: 24px;
  }

  .garden-product-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .garden-product-section h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .course-path-option,
  .course-builder-card,
  .reward-shop-grid article,
  .pricing-path-grid article,
  .garden-preference-card {
    border-radius: 20px;
  }

  .course-builder-card h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .garden-plot {
    min-height: 500px;
    background-position: 56% 55%;
  }

  .garden-game-nav {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    transform: none;
  }

  .garden-game-nav button,
  .garden-game-actions button {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .garden-game-hud {
    top: 58px;
    left: 10px;
    right: 10px;
    justify-content: start;
    max-width: none;
  }

  .garden-game-hud span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .garden-game-actions {
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 20px);
  }

  .garden-game-actions button {
    min-width: 0;
  }

  .garden-inventory-belt {
    left: 10px;
    right: auto;
    bottom: 166px;
    gap: 5px;
    width: auto;
    max-width: none;
    min-height: 44px;
    overflow-x: auto;
    border-radius: 15px;
    padding: 5px;
  }

  .garden-inventory-belt-label {
    display: none;
  }

  .garden-inventory-slot {
    width: 40px;
    height: 36px;
    min-width: 40px;
    border-radius: 12px;
  }

  .garden-inventory-slot img {
    width: 31px;
    height: 27px;
  }

  .garden-upgrade-drag-ghost {
    width: 82px;
  }

  .garden-upgrade-drag-ghost img {
    width: 66px;
    height: 66px;
  }

  .garden-upgrade-drag-ghost span {
    display: none;
  }

  .garden-move-pad {
    right: 10px;
    bottom: 116px;
    grid-template-columns: repeat(3, 30px);
    grid-template-rows: repeat(3, 28px);
    gap: 3px;
    padding: 5px;
    border-radius: 14px;
  }

  .garden-move-pad button {
    border-radius: 10px;
  }

  .garden-move-pad button::before {
    font-size: 11px;
  }

  .garden-move-hint {
    left: 10px;
    bottom: 116px;
    max-width: calc(100% - 118px);
    font-size: 10px;
  }

  .garden-placement-mission {
    bottom: 244px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    width: calc(100% - 20px);
    min-height: 74px;
    padding: 8px;
    border-radius: 16px;
  }

  .garden-placement-mission img {
    width: 48px;
    height: 48px;
  }

  .garden-placement-mission strong {
    font-size: 16px;
  }

  .garden-placement-mission span {
    font-size: 10px;
  }

  .garden-placement-mission-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .garden-plot-zones span {
    width: 84px;
    height: 38px;
    font-size: 8px;
  }

  .garden-placement-target {
    width: 78px;
    height: 34px;
  }

  .garden-move-target {
    width: 64px;
    height: 28px;
  }

  .garden-action-reward {
    top: calc(var(--garden-action-y, 66%) - 10%);
    min-width: 74px;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .garden-seed-flight {
    top: calc(var(--garden-action-y, 66%) - 10%);
  }

  .garden-seed-flight i:nth-child(1) { --seed-dx: 35vw; --seed-dy: -46vh; }
  .garden-seed-flight i:nth-child(2) { --seed-dx: 42vw; --seed-dy: -43vh; }
  .garden-seed-flight i:nth-child(3) { --seed-dx: 48vw; --seed-dy: -48vh; }
  .garden-seed-flight i:nth-child(4) { --seed-dx: 30vw; --seed-dy: -39vh; }
  .garden-seed-flight i:nth-child(5) { --seed-dx: 54vw; --seed-dy: -44vh; }

  .garden-placement-target img {
    bottom: 68%;
    width: 68px;
    height: 68px;
  }

  .garden-placed-reward-menu {
    left: 18px;
    top: -72px;
    gap: 4px;
    padding: 5px;
    border-radius: 16px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow:
      0 14px 24px rgba(23, 46, 31, 0.24),
      inset 0 0 0 1px rgba(255, 253, 247, 0.62);
    transform: none;
    backdrop-filter: blur(4px);
  }

  .garden-placed-reward-menu button {
    min-width: 42px;
    min-height: 26px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .garden-plot-stage-card {
    top: 108px;
    left: 10px;
    max-width: 168px;
    padding: 8px 9px;
  }

  .garden-helper {
    width: 52px;
    height: 76px;
  }

  .garden-helper::before,
  .garden-helper::after {
    bottom: -1%;
    width: 21%;
    height: 6%;
  }

  .garden-plot-path-stones {
    inset: 7% 4% 8% 7%;
  }

  .garden-plot-path-stones i {
    width: 13px;
    height: 10px;
  }

  .garden-plot-room-badge,
  .garden-plot-expansion-sign {
    max-width: 118px;
    padding: 6px 7px;
  }

  .garden-plot-room-badge strong,
  .garden-plot-expansion-sign strong {
    font-size: 12px;
  }

  .garden-plot-room-badge {
    top: 17%;
    left: 39%;
  }

  .garden-plot-room-badge,
  .garden-plot-harvest-burst {
    display: none;
  }

  .garden-plot-expansion-sign {
    right: 4%;
    bottom: 30%;
  }

  .garden-plot-harvest-burst {
    top: 12%;
    right: 15%;
    font-size: 9px;
    padding: 5px 7px;
  }

  .plot-tile {
    font-size: 10px;
  }

  .garden-plot .plot-tile:has([data-reward-sprite]) {
    min-width: 82px;
    min-height: 88px;
  }

  .garden-plot .plot-tile [data-reward-sprite] {
    width: 78px;
  }

  .garden-plot .plot-tile [data-plot-tile-label] {
    min-height: 23px;
    padding: 5px 8px 5px 21px;
    font-size: 9px;
  }

  .garden-placed-reward {
    min-width: 76px;
  }

  .garden-placed-reward img {
    width: clamp(52px, 18vw, 78px);
    max-height: 72px;
  }

  .garden-placed-reward span {
    display: none;
    max-width: 128px;
    white-space: normal;
    text-align: center;
  }

  .garden-placed-reward.is-selected span,
  .garden-placed-reward.is-dragging span,
  .garden-placed-reward:focus-visible span {
    display: block;
  }

  .garden-plot .plot-tile--seed,
  .garden-plot .plot-tile--flower,
  .garden-plot .plot-tile--bench,
  .garden-plot .plot-tile--prompt {
    display: none;
  }

  .plot-tile--fence {
    left: 7%;
    width: 74%;
  }

  .plot-tile--flower {
    left: 5%;
    bottom: 20%;
    width: 96px;
  }

  .plot-tile--seed {
    left: 32%;
    bottom: 12%;
    width: 82px;
  }

  .plot-tile--tree {
    right: 1%;
    top: 12%;
    width: 104px;
  }

  .plot-tile--bench {
    right: 25%;
    bottom: 20%;
    width: 86px;
  }

  .plot-tile--locked {
    right: 2%;
    bottom: 5%;
    width: 96px;
  }

  .garden-care-feedback {
    grid-template-columns: 1fr;
  }

  .garden-harvest-meter {
    justify-content: start;
  }

  .garden-expansion-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garden-sign,
  .garden-glimmer {
    display: none;
  }

  .product-card,
  .product-card.is-featured,
  .routine-card-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    min-height: 240px;
  }

  .guide-feature-card img,
  .online-guide-hero img {
    min-height: 260px;
  }

  .montage-reel {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }

  .montage-frame.is-large,
  .montage-frame.is-tall {
    grid-column: span 2;
    grid-row: span 1;
  }

  .library-preview-section {
    display: grid;
    justify-items: start;
  }

  .guide-reader-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-progress-mini {
    width: 100%;
    grid-template-columns: auto minmax(90px, 1fr) auto;
  }

  .guide-reader-topbar nav {
    flex-wrap: wrap;
  }

  .guide-reader-brand img {
    width: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .garden-hero-path .path-stone.is-active,
  .garden-product-hero.is-scene-traveling .path-traveler,
  .garden-product-hero.is-scene-traveling .garden-camera-track i,
  .garden-product-hero.is-scene-traveling .garden-advance-burst,
  .garden-product-hero.is-cinematic-playing .garden-cinematic-card::before,
  .garden-product-hero.is-cinematic-playing .garden-cinematic-track i,
  .garden-product-hero.is-scene-traveling .garden-world-advance,
  .garden-product-hero.is-scene-traveling .path-growth {
    animation: none;
  }

  .guide-reader-ambient span,
  .guide-progress-mini i::after {
    animation: none;
  }

  .guide-section-card {
    transition: none;
  }
}

@media (min-width: 981px) {
  .guide-reader-layout {
    grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr) minmax(250px, 0.32fr);
    padding: 28px 4vw 46px;
  }

  .guide-reader-sidebar,
  .guide-reader-tools {
    position: sticky;
    top: 92px;
  }

  .guide-hub-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  }
}

@media (min-width: 1181px) {
  .root-garden-detail-page .announcement {
    display: none;
  }

  .root-garden-detail-page .site-header.public-header {
    height: 82px;
    min-height: 82px;
    padding: 0 4vw;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 250, 242, 0.96);
  }

  .root-garden-detail-page .site-header .brand-logo {
    width: 380px;
    height: 82px;
    margin: 0;
  }

  .root-garden-detail-page .site-header .brand-logo img {
    display: block;
    width: auto;
    max-width: 380px;
    max-height: 58px;
    object-fit: contain;
  }

  .root-garden-detail-page .site-header .brand-logo::before {
    display: none;
  }

  .root-garden-detail-page .site-header .brand-logo::after {
    display: none;
  }

  .root-garden-detail-page .desktop-nav.public-nav {
    height: 82px;
    min-width: 520px;
  }

  .root-garden-detail-page .desktop-nav.public-nav .nav-link {
    height: 82px;
  }

  .garden-product-hero.is-mock-path-mode {
    display: block;
    height: calc(100vh - 82px);
    min-height: 840px;
    padding: 0;
    overflow: hidden;
    background: #fff7ed;
  }

  .garden-product-hero.is-mock-path-mode .garden-product-backdrop img,
  .garden-product-hero.is-mock-path-mode .garden-scene-video {
    object-fit: cover;
    object-position: center top !important;
    transform: none !important;
    filter: none !important;
  }

  .garden-product-hero.is-mock-path-mode .garden-product-backdrop img {
    opacity: 1;
  }

  .garden-product-hero.is-mock-path-mode .garden-scene-video {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 29%, rgba(0, 0, 0, 0.45) 42%, #000 62%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 29%, rgba(0, 0, 0, 0.45) 42%, #000 62%);
    opacity: 0.08;
    transition: opacity 360ms ease, filter 360ms ease;
  }

  .garden-product-hero.is-mock-path-mode[data-garden-scene="1"] .garden-scene-video {
    opacity: 0.26;
  }

  .garden-product-hero.is-mock-path-mode[data-garden-scene="2"] .garden-scene-video {
    opacity: 0.3;
  }

  .garden-product-hero.is-mock-path-mode[data-garden-scene="3"] .garden-scene-video {
    opacity: 0.34;
  }

  .garden-product-hero.is-mock-path-mode.is-scene-traveling .garden-scene-video,
  .garden-product-hero.is-mock-path-mode.is-cinematic-playing .garden-scene-video {
    opacity: 0.46;
    filter: saturate(1.08) contrast(1.05) brightness(1.03) !important;
  }

  .garden-product-hero.is-mock-path-mode .garden-product-backdrop::before,
  .garden-product-hero.is-mock-path-mode .garden-product-backdrop::after {
    opacity: 0;
  }

  .garden-product-hero.is-mock-path-mode .garden-product-copy {
    position: absolute;
    inset: 0;
    z-index: 8;
    max-width: none;
    padding: 0;
    pointer-events: none;
  }

  .garden-product-hero.is-mock-path-mode .garden-product-copy::before,
  .garden-product-hero.is-mock-path-mode .garden-product-copy > :not(.root-garden-actions) {
    display: none;
  }

  .garden-product-hero.is-mock-path-mode .root-garden-actions {
    position: absolute;
    left: 3.75%;
    top: 41.8%;
    width: 325px;
    height: 72px;
    margin: 0;
    opacity: 0.01;
    pointer-events: auto;
  }

  .garden-product-hero.is-mock-path-mode .root-garden-actions .primary-cta {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 10px;
  }

  .garden-product-hero.is-mock-path-mode .root-garden-actions .secondary-cta {
    display: none;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-gameboard {
    position: absolute;
    inset: 0;
    z-index: 7;
    width: auto;
    min-height: 0;
    pointer-events: none;
  }

  .garden-product-hero.is-mock-path-mode .garden-checkin-card {
    left: 32.5%;
    top: 6.4%;
    width: 250px;
    min-height: 210px;
    opacity: 0.01;
    pointer-events: auto;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-path {
    position: absolute;
    inset: 0;
    height: auto;
    margin: 0;
    background: none;
    filter: none;
    transform: none !important;
    pointer-events: none;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-path .path-thread,
  .garden-product-hero.is-mock-path-mode .garden-hero-path .path-pebble,
  .garden-product-hero.is-mock-path-mode .path-traveler,
  .garden-product-hero.is-mock-path-mode .path-growth,
  .garden-product-hero.is-mock-path-mode .chapter-sign {
    opacity: 0;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-path .path-stone {
    width: 118px;
    height: 118px;
    border: 0;
    opacity: 0.01;
    color: transparent;
    background: transparent;
    box-shadow: none;
    transform: translate(-50%, -50%) !important;
    pointer-events: auto;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-path .path-stone[data-story-stone="0"] {
    left: 60.1%;
    top: 59.6%;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-path .path-stone[data-story-stone="1"] {
    left: 61.7%;
    top: 43.6%;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-path .path-stone[data-story-stone="2"] {
    left: 55.5%;
    top: 31.5%;
  }

  .garden-product-hero.is-mock-path-mode .garden-hero-path .path-stone[data-story-stone="3"] {
    left: 59.2%;
    top: 21.4%;
  }

  .garden-product-hero.is-mock-path-mode .garden-scene-status,
  .garden-product-hero.is-mock-path-mode .garden-scene-atlas,
  .garden-product-hero.is-mock-path-mode .garden-scene-filmstrip,
  .garden-product-hero.is-mock-path-mode .garden-camera-rail,
  .garden-product-hero.is-mock-path-mode .garden-story-card,
  .garden-product-hero.is-mock-path-mode .garden-hero-sign {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .garden-product-hero.is-mock-path-mode .garden-cinematic-card {
    left: auto !important;
    right: 12%;
    bottom: 9%;
    width: min(430px, 30vw);
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(18px) scale(0.98) !important;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .garden-product-hero.is-mock-path-mode.is-cinematic-playing .garden-cinematic-card {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .garden-product-hero.is-mock-path-mode .garden-seed-bubble {
    right: 4.3%;
    bottom: 15.6%;
    width: 190px;
    min-height: 190px;
    opacity: 1;
    z-index: 8;
    background: rgba(255, 250, 239, 0.94);
    box-shadow: 0 18px 42px rgba(37, 44, 31, 0.18);
    pointer-events: auto;
  }

  .garden-product-hero.is-mock-path-mode .garden-seed-bubble strong {
    font-size: 20px;
    word-break: break-word;
  }

  .garden-product-hero.is-mock-path-mode .garden-seed-bubble small:not(.garden-seed-expansion) {
    display: none;
  }

  .garden-product-hero.is-mock-path-mode .root-garden-chapter-ribbon {
    opacity: 0.01;
    pointer-events: none;
  }
}
