:root {
  --green-900: #022f25;
  --green-800: #064636;
  --green-700: #0d6245;
  --lime: #c7ef5b;
  --gold: #d99826;
  --blue: #2d7fbd;
  --sand: #c9c0b4;
  --paper: #edf5e5;
  --paper-2: #eef2eb;
  --ink: #11221a;
  --muted: #65716b;
  --shadow: 0 14px 30px rgb(0 0 0 / 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: only light;
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; top: 8px; left: 12px; z-index: 100; padding: 12px 18px; background: var(--lime); color: var(--green-900); font-weight: 700; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.skip-link:focus-visible, .lang-button:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
#facts { scroll-margin-top: 100px; }

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: #f4faea;
  background:
    linear-gradient(rgb(0 63 43 / 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 63 43 / 0.055) 1px, transparent 1px),
    radial-gradient(circle at 100% 0, rgb(199 239 91 / 0.16), transparent 30rem),
    linear-gradient(180deg, #09291f 0%, #123a2a 48%, #e9f2df 100%);
  background-size: 92px 92px, 92px 92px, auto, auto;
  font-family: Arial, Helvetica, sans-serif;
}

body.intro-scroll-lock {
  overflow-y: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

body::before {
  right: -120px;
  top: 96px;
  width: 420px;
  height: 420px;
  border: 86px solid rgb(216 251 63 / 0.32);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

body::after {
  left: -160px;
  bottom: 8vh;
  width: 360px;
  height: 360px;
  border: 78px solid rgb(255 155 25 / 0.16);
  border-right-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
}

button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid rgb(0 63 43 / 0.11);
  background: rgb(6 34 26 / 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #f4faea;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgb(0 63 43 / 0.24);
}

.brand-text {
  max-width: 520px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-actions {
  display: inline-grid;
  grid-template-columns: repeat(2, 54px);
  gap: 6px;
  padding: 5px;
  border: 1px solid rgb(0 63 43 / 0.18);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
}

.mascot-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: min(690px, calc(100vh - 76px));
  padding: 48px 0 40px;
}

.intro-dialogue {
  display: grid;
  gap: 0;
  max-width: 560px;
}

.dialogue-line {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: 15px 20px 17px;
  border: 2px solid rgb(199 239 91 / 0.34);
  border-radius: 20px 20px 20px 5px;
  box-shadow: 0 10px 18px rgb(0 47 37 / 0.14);
  opacity: 0;
  transform: translateY(18px);
  grid-area: 1 / 1;
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.dialogue-line.is-visible {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dialogue-line:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

.dialogue-line::after {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 18px;
  height: 20px;
  background: var(--green-900);
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.dialogue-line--primary {
  justify-self: start;
  background: rgb(7 66 49 / 0.96);
  color: #ffffff;
}

.dialogue-line--secondary {
  justify-self: end;
  border-color: rgb(0 63 43 / 0.2);
  border-radius: 20px 20px 5px 20px;
  background: #ffffff;
  color: var(--ink);
}

.dialogue-line--secondary::after {
  background: #ffffff;
}

.dialogue-line p {
  max-width: 470px;
  margin: 0;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.28;
}

.dialogue-avatar {
  position: absolute;
  right: -58px;
  bottom: -26px;
  z-index: 2;
  width: 72px;
  height: 72px;
  padding: 3px;
  border: 2px solid rgb(199 239 91 / 0.7);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 10px 18px rgb(0 47 37 / 0.24);
  object-fit: contain;
}

.dialogue-line--secondary .dialogue-avatar {
  right: auto;
  left: -58px;
  border-color: rgb(0 63 43 / 0.18);
  background: #ffffff;
}

.dialogue-line--secondary::after {
  right: auto;
  left: -14px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.mascot-intro-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 540px;
  padding: 18px 0 0;
}

.mascot-intro-stage::after {
  position: absolute;
  right: 8%;
  bottom: 24px;
  z-index: -1;
  width: 84%;
  height: 54px;
  border-radius: 50%;
  background: rgb(199 239 91 / 0.5);
  content: "";
  filter: blur(7px);
}

.intro-mascot {
  width: 46%;
  max-width: 320px;
  height: 510px;
  object-fit: contain;
  transform-origin: bottom center;
  animation: intro-mascot-in 900ms cubic-bezier(.2, .8, .2, 1) both, intro-mascot-float 5.5s ease-in-out 1.2s infinite;
}

.intro-mascot--primary {
  transform: rotate(-3deg);
  animation-delay: 0s, 1.2s;
}

.intro-mascot--secondary {
  transform: rotate(3deg);
  animation-delay: 250ms, 1.55s;
}

.mascot-dock {
  position: fixed;
  right: max(16px, calc((100vw - 1360px) / 2));
  bottom: 18px;
  z-index: 15;
  display: grid;
  justify-items: end;
  width: min(246px, 22vw);
  pointer-events: none;
  transition: opacity 350ms ease, transform 350ms ease, visibility 350ms ease;
}

.mascot-dock.is-intro-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.96);
}

.mascot-dock.is-post-facts-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.96);
}

@media (min-width: 981px) {
  .mascot-dock.is-gift-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }
}

.mascot-bubble {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 12px 14px;
  border: 2px solid var(--green-900);
  border-radius: 20px 20px 5px 20px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 12px 26px rgb(0 47 37 / 0.2);
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transform-origin: bottom right;
}

.mascot-dock.is-speaking .mascot-bubble {
  animation: mascot-speech-in 700ms cubic-bezier(.2, .8, .2, 1) forwards;
}

.mascot-dialogue {
  display: grid;
  gap: 8px;
  width: 100%;
}

.mascot-bubble--question {
  justify-self: start;
  width: 88%;
  border-color: rgb(199 239 91 / 0.45);
  border-radius: 18px 18px 18px 5px;
  background: rgb(7 66 49 / 0.97);
  color: #ffffff;
  transform-origin: bottom left;
}

.mascot-bubble--answer {
  justify-self: end;
  width: 94%;
  border-radius: 18px 18px 5px 18px;
  transform-origin: bottom right;
  animation-delay: 0ms !important;
}

.mascot-bubble--question::after {
  right: auto;
  bottom: -8px;
  left: 28%;
  border: 0;
  background: rgb(7 66 49 / 0.97);
  transform: translate(-50%, 6px) rotate(45deg);
}

.mascot-bubble--answer::after {
  left: 72%;
}

.mascot-bubble::after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: block;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--green-900);
  border-bottom: 2px solid var(--green-900);
  background: #ffffff;
  content: "";
  transform: translate(-50%, 6px) rotate(45deg);
}

.mascot-bubble p {
  max-height: 94px;
  margin: 0;
  overflow: auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.mascot-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  width: 154px;
  height: 130px;
  margin: -1px 8px 0 0;
  filter: drop-shadow(0 14px 14px rgb(0 47 37 / 0.2));
  animation: mascot-float 4.8s ease-in-out infinite;
}

.mascot-stage::after {
  position: absolute;
  right: 7px;
  bottom: 4px;
  z-index: -1;
  width: 144px;
  height: 24px;
  border-radius: 50%;
  background: rgb(199 239 91 / 0.56);
  content: "";
  filter: blur(5px);
}

.mascot {
  position: relative;
  width: 50%;
  height: 100%;
  object-fit: contain;
  transform-origin: bottom center;
  transition: transform 550ms cubic-bezier(.2, .8, .2, 1);
}

.mascot--secondary {
  transform: translateY(2px) rotate(2deg);
}

.mascot--primary {
  transform: translateY(0) rotate(-2deg);
}

.mascot-dock.is-primary-speaking .mascot--primary {
  transform: translateY(-3px) rotate(-2deg) scale(1.015);
}

.mascot-dock.is-secondary-speaking .mascot--secondary {
  transform: translateY(-5px) rotate(2deg) scale(1.015);
}

.mascot-dock.is-primary-speaking .mascot-bubble--question::after {
  left: 28%;
}

.mascot-dock.is-secondary-speaking .mascot-bubble--answer::after {
  left: 72%;
}

.mascot-dock.is-secondary-speaking .mascot-bubble--question {
  justify-self: end;
  border-color: rgb(0 63 43 / 0.2);
  border-radius: 18px 18px 5px 18px;
  background: #ffffff;
  color: var(--ink);
  transform-origin: bottom right;
}

.mascot-dock.is-secondary-speaking .mascot-bubble--question::after {
  left: 72%;
  background: #ffffff;
}

.mascot-dock.is-secondary-speaking .mascot-bubble--answer {
  justify-self: start;
  border-color: rgb(199 239 91 / 0.45);
  border-radius: 18px 18px 18px 5px;
  background: rgb(7 66 49 / 0.97);
  color: #ffffff;
  transform-origin: bottom left;
}

.mascot-dock.is-secondary-speaking .mascot-bubble--answer::after {
  left: 28%;
  background: rgb(7 66 49 / 0.97);
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes mascot-speech-in {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dialogue-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes intro-mascot-in {
  from { opacity: 0; transform: translateY(40px) scale(.92) rotate(0); }
  to { opacity: 1; }
}

@keyframes intro-mascot-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.lang-button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f4faea;
  cursor: pointer;
  font-weight: 900;
}

.lang-button.is-active {
  background: var(--lime);
  color: var(--green-900);
  box-shadow: 0 7px 14px rgb(0 63 43 / 0.22);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 52px 0 42px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 8px 220px 80px 8px;
  background:
    radial-gradient(circle at 100% 100%, rgb(216 251 63 / 0.2), transparent 19rem),
    linear-gradient(135deg, #003723, #00523a);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -20px;
  width: 310px;
  height: 310px;
  border: 2px solid rgb(216 251 63 / 0.78);
  border-left: 0;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-visual img {
  width: 100%;
  height: 540px;
  display: block;
  border-radius: 220px 8px 80px 8px;
  filter: saturate(1.08) contrast(1.05);
  object-fit: cover;
  object-position: 70% center;
  box-shadow: var(--shadow);
}

.facts-section {
  position: relative;
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: 170px;
}

@media (min-width: 981px) {
  .facts-section {
    padding-right: 188px;
  }
}

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

.fact-card {
  display: grid;
  grid-template-columns: minmax(210px, .9fr) minmax(0, 1fr);
  column-gap: 32px;
  align-items: stretch;
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 18px 26px 22px 18px;
  border: 3px solid rgb(0 63 43 / 0.18);
  outline: 8px solid rgb(255 255 255 / 0.72);
  border-radius: 22px;
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 18px 36px rgb(0 63 43 / 0.16), 0 2px 0 rgb(255 155 25 / 0.32);
  opacity: 0;
  transform: translateY(54px) scale(.9);
  transform-origin: center top;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .8, .2, 1);
}

.fact-card.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fact-image {
  width: 100%;
  aspect-ratio: 1;
  margin: 0 24px 0 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 6px solid rgb(243 248 234 / 0.96);
  border-bottom: 6px solid var(--lime);
}

.fact-image img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  object-fit: cover;
  transform: scale(1.035);
  transition: opacity 850ms ease, transform 1200ms cubic-bezier(.2, .8, .2, 1);
  filter: saturate(1.08) contrast(1.04);
}

.fact-image img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.fact-copy,
.fact-card p {
  min-width: 0;
}

.fact-card p {
  overflow-wrap: anywhere;
}

.fact-card.featured {
  background: var(--green-900);
  color: #ffffff;
}

.fact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.fact-number {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  border: 0 !important;
  outline: 0 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  forced-color-adjust: none;
  font-weight: 900;
  box-shadow: 0 8px 14px rgb(0 63 43 / 0.22);
}

.fact-card.featured .fact-number {
  background: var(--lime);
  color: var(--green-900) !important;
  -webkit-text-fill-color: var(--green-900);
}

.fact-card p {
  margin-top: 18px;
  color: #26372f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.44;
}

.fact-card.featured p {
  color: rgb(255 255 255 / 0.9);
}

.fact-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--gold);
}

.finale {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 0 150px;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.finale.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.finale-bubble {
  position: relative;
  width: min(780px, 92%);
  padding: 22px 32px;
  border: 2px solid rgb(199 239 91 / 0.42);
  border-radius: 24px 24px 24px 6px;
  box-shadow: 0 12px 24px rgb(0 47 37 / 0.16);
}

.finale-bubble--primary {
  justify-self: start;
  background: var(--green-900);
  color: #ffffff;
}

.finale-bubble--secondary {
  justify-self: end;
  border-color: rgb(0 63 43 / 0.18);
  border-radius: 24px 24px 6px 24px;
  background: #ffffff;
  color: var(--ink);
}

.finale-bubble p {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.3;
}

.finale-bubble img {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 72px;
  padding: 3px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: var(--lime);
  object-fit: contain;
  transform: translateY(-50%);
}

.finale-bubble--primary img {
  right: -58px;
}

.finale-bubble--secondary img {
  left: -58px;
  border-color: rgb(0 63 43 / 0.18);
  background: #ffffff;
}

.sticker-gift {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  margin: 0 0 72px;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  border-top: 2px solid rgb(199 239 91 / 0.72);
  border-bottom: 2px solid rgb(199 239 91 / 0.72);
  background: #f4f8ef;
  color: var(--ink);
}

.sticker-gift::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border: 58px solid rgb(217 152 38 / 0.18);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  pointer-events: none;
}

.sticker-gift-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 300px;
  padding: 24px 18px 0;
}

.sticker-gift-visual::before {
  content: "";
  position: absolute;
  inset: 34px 0 0;
  z-index: -1;
  border-radius: 50% 50% 8px 8px;
  background: var(--lime);
  box-shadow: 0 20px 40px rgb(0 47 37 / 0.14);
}

.sticker-gift-mascot {
  width: min(54%, 190px);
  height: 280px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 16px rgb(0 47 37 / 0.18));
}

.sticker-gift-mascot--secondary {
  margin-left: -24px;
}

.sticker-gift-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.sticker-gift-kicker {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.sticker-gift h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
}

.sticker-gift-copy > p:not(.sticker-gift-kicker) {
  max-width: 520px;
  margin: 18px 0 0;
  color: #35463d;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.sticker-gift-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 26px;
  border: 2px solid var(--green-900);
  border-radius: 6px;
  background: var(--green-900);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sticker-gift-button:hover,
.sticker-gift-button:focus-visible {
  background: var(--lime);
  color: var(--green-900);
  transform: translateY(-2px);
}

.sticker-gift-button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}


@media (max-width: 980px) {
  .brand-text {
    max-width: 360px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-panel,
  .hero-visual,
  .hero-visual img {
    min-height: 0;
  }

  .hero-panel {
    border-radius: 8px 120px 120px 8px;
  }

  .hero-visual img {
    height: 420px;
  }

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

  .fact-card {
    align-items: start;
  }

  .fact-image {
    align-self: start;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    max-width: 170px;
    font-size: 13px;
    white-space: normal;
  }

  .top-actions {
    grid-template-columns: repeat(2, 46px);
  }

  .lang-button {
    min-height: 44px;
  }

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

  .mascot-intro {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 18px;
    padding: 28px 0 24px;
  }

  .mascot-intro-stage {
    order: -1;
    min-height: 270px;
    width: 100%;
    padding: 0;
  }

  .mascot-intro-stage::after {
    bottom: 6px;
    width: 82%;
    height: 34px;
  }

  .intro-mascot {
    width: 45%;
    height: 270px;
  }

  .dialogue-line {
    padding: 12px 14px 13px;
  }

  .dialogue-line--primary {
    padding-right: 54px;
  }

  .dialogue-line--secondary {
    padding-left: 54px;
  }

  .dialogue-line::after {
    top: -11px;
    right: auto;
    width: 18px;
    height: 15px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    transform: none;
  }

  .dialogue-line--primary::after {
    left: 24%;
  }

  .dialogue-line--secondary::after {
    left: 72%;
  }

  .dialogue-line p {
    font-size: 14px;
  }

  .dialogue-avatar {
    right: -10px;
    bottom: -20px;
    width: 54px;
    height: 54px;
  }

  .dialogue-line--secondary .dialogue-avatar {
    right: auto;
    left: -10px;
  }

  .mascot-dock {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(300px, calc(100vw - 24px));
    grid-template-columns: 1fr 88px;
    align-items: end;
    margin: 20px auto 0;
  }

  .mascot-dock.is-intro-hidden {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mascot-bubble {
    padding: 10px 12px;
    border-radius: 16px 16px 4px 16px;
  }

  .mascot-bubble--question,
  .mascot-bubble--answer {
    width: 100%;
  }

  .mascot-bubble p {
    max-height: 56px;
    font-size: 10px;
  }

  .mascot-bubble--question::after {
    left: 28%;
  }

  .mascot-bubble--answer::after {
    left: 72%;
  }

  .mascot-stage {
    width: 78px;
    height: 84px;
    margin: 0;
  }

  .mascot-stage::after {
    right: 0;
    width: 74px;
    height: 16px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-panel {
    min-height: 0;
    padding: 28px 22px 34px;
    border-radius: 8px 76px 76px 8px;
  }

  .hero h1 {
    font-size: 34px;
    max-width: 100%;
  }

  .hero-visual img {
    height: 330px;
    border-radius: 72px 8px 8px 72px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .facts-section {
    padding-bottom: 48px;
  }

  .fact-card {
    display: block;
    min-height: 0;
    padding: 0 22px 24px;
  }

  .fact-image {
    width: calc(100% + 28px);
    margin: 14px -14px 22px;
  }

  .finale {
    padding: 24px 0 84px;
  }

  .finale-bubble {
    width: calc(100% - 24px);
    padding: 20px 22px;
  }

  .finale-bubble--primary {
    margin-right: 12px;
  }

  .finale-bubble--secondary {
    margin-left: 12px;
  }

  .finale-bubble img {
    width: 56px;
    height: 56px;
  }

  .finale-bubble--primary img {
    right: -38px;
  }

  .finale-bubble--secondary img {
    left: -38px;
  }

  .sticker-gift {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    padding: 28px 22px 36px;
    text-align: center;
  }

  .sticker-gift-visual {
    min-height: 238px;
    padding-top: 16px;
  }

  .sticker-gift-visual::before {
    inset: 24px 5% 0;
  }

  .sticker-gift-mascot {
    width: min(48%, 158px);
    height: 222px;
  }

  .sticker-gift-mascot--secondary {
    margin-left: -18px;
  }

  .sticker-gift-copy,
  .sticker-gift-copy > p:not(.sticker-gift-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .sticker-gift-button {
    width: 100%;
  }

}

/* Speaker scene: the bubbles live beside the mascot who is speaking. */
.mascot-intro {
  position: relative;
  display: block;
  min-height: min(720px, calc(100vh - 76px));
  padding: clamp(28px, 4vw, 48px) 0 18px;
}

.intro-dialogue {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: 100%;
  max-width: none;
  pointer-events: none;
}

.dialogue-line {
  position: absolute;
  top: clamp(30px, 5vw, 72px);
  width: min(36%, 420px);
  max-width: 420px;
  grid-area: auto;
  padding: 16px 22px 18px;
  border-radius: 24px 24px 24px 8px;
}

.dialogue-line--primary {
  left: max(12px, 2vw);
  justify-self: auto;
}

.dialogue-line--secondary {
  right: max(12px, 2vw);
  justify-self: auto;
}

.dialogue-line p {
  max-width: none;
  font-size: clamp(15px, 1.35vw, 19px);
}

.dialogue-line::after,
.dialogue-line--secondary::after {
  top: auto;
  right: 18%;
  bottom: -16px;
  width: 22px;
  height: 18px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: none;
}

.dialogue-line--secondary::after {
  right: auto;
  left: 18%;
}

.dialogue-avatar {
  display: none;
}

.mascot-intro-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: min(610px, calc(100vh - 120px));
  padding: clamp(112px, 12vw, 160px) clamp(70px, 12vw, 180px) 12px;
  gap: clamp(18px, 6vw, 94px);
}

.mascot-intro-stage::after {
  right: 15%;
  bottom: 16px;
  width: 70%;
}

.intro-mascot {
  flex: 1 1 0;
  width: min(34%, 340px);
  max-width: 340px;
  height: clamp(340px, 42vw, 520px);
}

@media (max-width: 700px) {
  .mascot-intro {
    min-height: 430px;
    padding: 12px 0 0;
  }

  .intro-dialogue {
    inset: 0;
  }

  .dialogue-line {
    top: 12px;
    width: calc(100% - 24px);
    max-width: 360px;
    padding: 12px 15px 13px;
  }

  .dialogue-line--primary {
    left: 12px;
  }

  .dialogue-line--secondary {
    right: 12px;
  }

  .dialogue-line p {
    font-size: 14px;
    line-height: 1.3;
  }

  .dialogue-line::after,
  .dialogue-line--secondary::after {
    right: 24%;
    bottom: -13px;
    width: 18px;
    height: 14px;
  }

  .dialogue-line--secondary::after {
    right: auto;
    left: 24%;
  }

  .mascot-intro-stage {
    min-height: 430px;
    padding: 116px 8px 4px;
    gap: 4px;
  }

  .intro-mascot {
    flex: 0 1 auto;
    width: 47%;
    max-width: none;
    height: 300px;
  }
}

/* End speaker scene. */

/* Approved customer intro: four short phrases appear automatically. */
.mascot-intro {
  min-height: min(720px, calc(100vh - 76px));
  padding: 24px 0 12px;
}

.intro-dialogue {
  inset: 24px 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px clamp(28px, 8vw, 120px);
  padding: 0 clamp(12px, 2vw, 28px);
}

.dialogue-line {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  max-width: 470px;
  min-height: 78px;
}

.dialogue-line--primary {
  justify-self: start;
}

.dialogue-line--secondary {
  justify-self: end;
}

.dialogue-line p {
  font-size: clamp(14px, 1.15vw, 17px);
}

.mascot-intro-stage {
  min-height: min(680px, calc(100vh - 92px));
  padding: clamp(220px, 25vw, 260px) clamp(70px, 12vw, 180px) 8px;
}

.mascot-bubble--lead {
  width: 100%;
  min-height: 72px;
  transform-origin: bottom center;
}

.mascot-dock.is-primary-speaking .mascot-bubble--lead {
  border-color: rgb(199 239 91 / 0.45);
  background: rgb(7 66 49 / 0.97);
  color: #ffffff;
}

.mascot-dock.is-primary-speaking .mascot-bubble--lead::after {
  left: 28%;
  border: 0;
  background: rgb(7 66 49 / 0.97);
}

.mascot-dock.is-secondary-speaking .mascot-bubble--lead::after {
  left: 72%;
}

.mascot-bubble--lead p {
  max-height: none;
  overflow: visible;
  font-size: 13px;
}

@media (max-width: 980px) {
  .mascot-dock.is-intro-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px) scale(.96);
  }

  .mascot-bubble--lead {
    width: 100%;
    min-height: 0;
  }

  .mascot-bubble--lead p {
    max-height: none;
    font-size: 11px;
  }
}

@media (max-width: 700px) {
  .mascot-intro {
    min-height: 690px;
    padding-top: 8px;
  }

  .intro-dialogue {
    inset: 8px 0 auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 12px;
  }

  .dialogue-line {
    width: min(94%, 360px);
    min-height: 0;
    padding: 10px 13px 11px;
  }

  .dialogue-line--primary {
    justify-self: start;
  }

  .dialogue-line--secondary {
    justify-self: end;
  }

  .dialogue-line p {
    font-size: 13px;
  }

  .mascot-intro-stage {
    min-height: 680px;
    padding: 330px 4px 4px;
  }
}

.intro-mascot {
  opacity: .82;
  filter: saturate(.82);
  transition: opacity 360ms ease, filter 360ms ease;
}

.intro-mascot.is-speaking {
  opacity: 1;
  filter: saturate(1.08) drop-shadow(0 12px 18px rgb(0 0 0 / .18));
}

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

  html { scroll-behavior: auto; }

  .mascot-intro,
  .dialogue-line,
  .intro-mascot,
  .mascot-stage,
  .mascot-dock.is-speaking .mascot-bubble {
    animation: none;
  }

  .dialogue-line,
  .intro-mascot,
  .finale,
  .finale-bubble {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fact-card {
    opacity: 0;
    transform: none;
    transition: opacity 320ms linear;
  }

  .fact-card.is-open {
    opacity: 1;
  }

  .mascot,
  .mascot-bubble,
  .mascot-dock,
  .dialogue-line,
  .finale,
  .finale-bubble,
  .sticker-gift-button {
    transition: none;
    animation: none;
  }

  .fact-image img {
    opacity: 0;
    transform: none;
    transition: opacity 320ms linear;
  }

  .fact-image img.is-loaded {
    opacity: 1;
    transform: none;
  }

  .sticker-gift-button:hover,
  .sticker-gift-button:focus-visible {
    transform: none;
  }

  .finale-bubble p {
    font-size: 17px;
  }
}

/* Keep the header and intro dialogue inside the visible viewport at browser zoom. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.topbar {
  width: 100%;
  padding-right: max(clamp(14px, 4vw, 56px), env(safe-area-inset-right));
  padding-left: max(clamp(14px, 4vw, 56px), env(safe-area-inset-left));
}

.brand {
  flex: 1 1 auto;
  overflow: hidden;
}

.brand-mark,
.top-actions {
  flex: 0 0 auto;
}

.intro-dialogue {
  gap: 12px clamp(20px, 6vw, 80px);
  padding-right: max(clamp(18px, 5vw, 72px), env(safe-area-inset-right));
  padding-left: max(clamp(18px, 5vw, 72px), env(safe-area-inset-left));
}

.dialogue-line {
  min-width: 0;
  max-width: min(430px, 100%);
}

.dialogue-line p {
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  .intro-dialogue {
    padding-right: max(12px, env(safe-area-inset-right));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .dialogue-line {
    max-width: min(94%, 360px);
  }
}

/* Intro speaker portraits mirror the final dialogue treatment. */
.dialogue-speaker {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  padding: 3px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: var(--lime);
  object-fit: contain;
  transform: translateY(-50%);
  box-shadow: 0 10px 18px rgb(0 47 37 / 0.22);
}

.dialogue-line--primary .dialogue-speaker {
  left: -52px;
}

.dialogue-line--secondary .dialogue-speaker {
  right: -52px;
  border-color: rgb(0 63 43 / 0.18);
  background: #ffffff;
}

.facts-section {
  padding-bottom: clamp(84px, 10vw, 140px);
}

@media (min-width: 981px) {
  .fact-card[data-fact-number="07"] {
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  }

  .fact-card {
    align-items: start;
  }

  .fact-image {
    align-self: start;
    margin-right: 0;
  }
}

.video-section {
  position: relative;
  scroll-margin-top: 96px;
  margin: 0 0 clamp(96px, 12vw, 154px);
  padding: clamp(24px, 4vw, 48px) 0 0;
  border-top: 1px solid rgb(199 239 91 / 0.42);
}

.video-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.video-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  text-transform: uppercase;
}

.video-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid rgb(0 63 43 / 0.24);
  scrollbar-width: thin;
}

.video-tab {
  min-width: 112px;
  padding: 13px 18px 12px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgb(2 47 37 / 0.66);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.video-tab:hover,
.video-tab:focus-visible {
  color: var(--green-900);
}

.video-tab:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -4px;
}

.video-tab.is-active {
  border-bottom-color: var(--gold);
  color: var(--green-900);
}

.video-panels {
  margin-top: 18px;
}

.video-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  min-height: clamp(360px, 52vw, 610px);
  padding: clamp(28px, 6vw, 72px);
  overflow: hidden;
  border: 2px solid rgb(199 239 91 / 0.45);
  border-radius: 8px;
  background: var(--green-900);
  color: #ffffff;
  box-shadow: 0 24px 52px rgb(0 22 16 / 0.3);
}

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

.video-panel::after {
  position: absolute;
  right: -72px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 66px solid rgb(199 239 91 / 0.17);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.video-slot-number {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  right: clamp(20px, 4vw, 48px);
  color: #b9cebd;
  font-size: clamp(54px, 10vw, 132px);
  font-weight: 900;
  line-height: 1;
}

.video-play {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(78px, 10vw, 118px);
  height: clamp(78px, 10vw, 118px);
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 14px 28px rgb(0 0 0 / 0.2);
}

.video-play::after {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid var(--green-900);
  content: "";
}

.video-placeholder-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.video-placeholder-copy strong {
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.05;
}

.video-placeholder-copy span {
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .dialogue-speaker {
    width: 46px;
    height: 46px;
  }

  .dialogue-line--primary {
    padding-right: 13px;
    padding-left: 66px;
  }

  .dialogue-line--secondary {
    padding-right: 66px;
    padding-left: 13px;
  }

  .dialogue-line--primary .dialogue-speaker {
    left: 9px;
  }

  .dialogue-line--secondary .dialogue-speaker {
    right: 9px;
  }

  .video-section {
    margin-bottom: 96px;
  }

  .video-heading h2 {
    font-size: 36px;
  }

  .video-tab {
    min-height: 44px;
    min-width: 96px;
    padding: 12px 14px 11px;
    font-size: 14px;
  }

  .video-panel {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 390px;
    padding: 30px 24px;
  }

  .video-slot-number {
    font-size: 70px;
  }

  .video-play {
    width: 78px;
    height: 78px;
  }

  .video-placeholder-copy strong {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-panel,
  .video-tab {
    transition: none;
  }
}

/* Static alternating narrators replace the fixed mascot layer. */
@media (min-width: 981px) {
  .facts-section {
    padding-right: 0;
  }
}

.fact-narrator {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 58px;
}

.fact-card-mascot {
  display: block;
  width: 48px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgb(0 47 37 / 0.16));
}

@media (max-width: 700px) {
  .mascot-intro {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 0;
    padding: 8px 0 4px;
  }

  .intro-dialogue {
    position: relative;
    inset: auto;
    order: 0;
    flex: 0 0 auto;
  }

  .mascot-intro-stage {
    order: 1;
    flex: 0 0 218px;
    min-height: 0;
    height: 218px;
    margin: 0;
    padding: 0 4px;
  }

  .intro-mascot {
    width: 44%;
    height: 218px;
  }

  .facts-section {
    padding-top: 8px;
  }

  .fact-narrator {
    gap: 7px;
    min-height: 52px;
  }

  .fact-card-mascot {
    width: 43px;
    height: 52px;
  }
}
