:root {
  --ink: #17312c;
  --deep: #0b2d27;
  --deep-2: #103d34;
  --leaf: #17604a;
  --fresh: #75cf63;
  --mint: #bcebe1;
  --cream: #fff8e8;
  --paper: #f4ecd9;
  --yellow: #ffd85a;
  --coral: #d33e35;
  --coral-bright: #ff6b57;
  --violet: #7b5aa6;
  --white: #fffdf5;
  --line: rgba(23, 49, 44, 0.16);
  --font-display: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --shell: min(1200px, calc(100vw - 64px));
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
blockquote {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--deep);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 144px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    height 0.35s var(--ease),
    background 0.35s,
    backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(7, 36, 31, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  line-height: 1;
}

.brand__seed {
  width: 29px;
  overflow: visible;
}

.brand__seed path:first-child {
  fill: var(--yellow);
}

.brand__seed path:last-child {
  fill: none;
  stroke: var(--deep);
  stroke-linecap: round;
  stroke-width: 3;
}

.brand__type {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.global-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.global-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.global-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 22px;
  color: var(--deep);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 120px 32px 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(117, 207, 99, 0.21), transparent 34%),
    var(--deep);
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: grid;
}

.mobile-nav nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  font-weight: 800;
}

.mobile-nav nav span {
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.7rem;
}

.mobile-nav > p {
  position: absolute;
  bottom: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 760px;
  height: max(760px, 100svh);
  display: flex;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--deep);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 28, 25, 0.78) 0%, rgba(4, 31, 28, 0.48) 38%, transparent 67%),
    linear-gradient(0deg, rgba(3, 27, 24, 0.72) 0%, transparent 32%),
    linear-gradient(180deg, rgba(3, 27, 24, 0.36) 0%, transparent 28%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 36px;
}

.hero__content {
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--white);
}

.eyebrow__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 14px rgba(255, 216, 90, 0.8);
  transform: rotate(-45deg);
}

.hero h1 {
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 4px 34px rgba(255, 200, 35, 0.18);
}

.hero__lead {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button--coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 35px rgba(255, 107, 87, 0.28);
}

.button:hover {
  box-shadow: 0 19px 40px rgba(255, 107, 87, 0.36);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 600;
}

.text-link span {
  color: var(--yellow);
  font-size: 1.2rem;
}

.text-link--light {
  color: var(--white);
}

.hero__footer {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__footer > div {
  display: grid;
  gap: 2px;
}

.hero__footer span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero__footer b {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__footer b i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  background: var(--fresh);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--fresh);
}

.hero__scroll {
  display: flex;
  height: 96px;
  align-items: center;
  gap: 13px;
  margin-left: auto;
}

.hero__scroll i {
  position: relative;
  width: 34px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.hero__scroll i::after {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 5px;
  content: "";
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.hero__seeds i {
  position: absolute;
  z-index: 1;
  top: var(--y);
  left: var(--x);
  width: 7px;
  height: 11px;
  background: var(--yellow);
  border-radius: 55% 45% 55% 45%;
  box-shadow: 0 0 16px 6px rgba(255, 216, 90, 0.2);
  opacity: 0.7;
  animation: seed-float 5s ease-in-out var(--delay) infinite;
}

@keyframes hero-breathe {
  to { transform: scale(1.04); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  55% { opacity: 1; transform: translate(-50%, 21px); }
}

@keyframes seed-float {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  50% { transform: translate(8px, -18px) rotate(30deg); }
}

.story {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 40%, rgba(255, 216, 90, 0.19), transparent 25%),
    var(--cream);
}

.story::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--line), transparent 76%);
  content: "";
}

.story__grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 310px;
  gap: 54px;
  align-items: start;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 9px;
}

.section-kicker span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 700;
}

.section-kicker p {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.section-kicker--light span,
.section-heading--light .section-kicker span {
  color: var(--deep);
  background: var(--yellow);
}

.story__main h2,
.section-heading h2,
.areas__heading h2,
.news__heading h2,
.follow h2 {
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.25;
}

h2 em {
  color: var(--coral);
  font-style: normal;
}

.story__main h2 em,
.section-heading h2 em,
.news__heading h2 em {
  white-space: nowrap;
}

.story__copy {
  max-width: 630px;
}

.story__copy p {
  margin-bottom: 24px;
  color: rgba(23, 49, 44, 0.78);
  font-size: 0.97rem;
  line-height: 2.1;
}

.story__copy p:first-child {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
}

.story__seed-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 34px 30px 30px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    var(--deep-2);
  border-radius: 120px 120px 26px 26px;
  box-shadow: 0 26px 70px rgba(13, 55, 47, 0.16);
  text-align: center;
}

.story__seed-card svg {
  width: 124px;
  margin: 0 auto 14px;
  overflow: visible;
}

.seed-aura {
  fill: rgba(255, 216, 90, 0.1);
  stroke: rgba(255, 216, 90, 0.28);
  stroke-dasharray: 3 7;
  animation: seed-spin 20s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.seed-core {
  fill: url(#seedGlow);
  filter: drop-shadow(0 0 16px rgba(255, 216, 90, 0.52));
}

.story__seed-card svg > path:last-child {
  fill: none;
  stroke: rgba(84, 60, 15, 0.55);
  stroke-linecap: round;
  stroke-width: 4;
}

.story__seed-card span,
.mini-label {
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.story__seed-card h3 {
  margin: 4px 0 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.story__seed-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  line-height: 1.9;
}

.story__beats {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 92px;
  padding: 24px 34px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 49, 44, 0.1);
  border-radius: 999px;
}

.story__beats div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 700;
}

.story__beats b {
  color: var(--coral);
  font-size: 0.62rem;
}

.story__beats i {
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 5px, transparent 5px 11px);
}

.leaf {
  position: absolute;
  width: 240px;
  height: 130px;
  border: 1px solid rgba(23, 96, 74, 0.14);
  border-radius: 100% 0 100% 0;
}

.leaf::after {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 1px;
  background: rgba(23, 96, 74, 0.14);
  content: "";
  transform: rotate(-25deg);
}

.leaf--one { top: 72px; right: -80px; transform: rotate(-28deg); }
.leaf--two { bottom: 55px; left: -104px; transform: rotate(150deg) scale(1.35); }

@keyframes seed-spin {
  to { transform: rotate(360deg); }
}

.section--dark {
  color: var(--white);
  background: var(--deep);
}

.play {
  overflow: hidden;
  padding-top: 150px;
}

.play::before,
.play::after {
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(117, 207, 99, 0.12);
  border-radius: 50%;
  content: "";
}

.play::before { top: -310px; right: -130px; }
.play::after { top: -250px; right: -70px; }

.canopy-lines {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(115deg, transparent 48%, rgba(117, 207, 99, 0.1) 49%, transparent 50%),
    radial-gradient(circle at 85% 35%, rgba(117, 207, 99, 0.22), transparent 23%);
  background-size: 130px 130px, auto;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

.section-heading {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--light .eyebrow {
  color: var(--mint);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #184b3f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.feature-card:hover {
  z-index: 1;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(-8px);
}

.feature-card__top {
  position: relative;
  display: flex;
  height: 235px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 26px;
  overflow: hidden;
}

.feature-card__top::after {
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.feature-card__top > span {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.feature-card__top svg {
  position: relative;
  z-index: 1;
  width: 140px;
  align-self: center;
  margin-right: 17px;
  fill: none;
  stroke: var(--deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.feature-card__top svg circle {
  fill: var(--deep);
}

.feature-card__top .arc {
  stroke-dasharray: 5 8;
}

.feature-card__top .leaf-icon {
  fill: rgba(255, 255, 255, 0.38);
  stroke-width: 2;
}

.feature-card--jump .feature-card__top { color: var(--deep); background: var(--yellow); }
.feature-card--puzzle .feature-card__top { color: var(--deep); background: var(--mint); }
.feature-card--seed .feature-card__top { color: var(--deep); background: var(--coral-bright); }

.feature-card__body {
  padding: 34px 30px;
}

.feature-card__body h3 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
}

.feature-card__body p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.83rem;
  line-height: 1.95;
}

.rhythm {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: 38% 62%;
  align-items: center;
  margin-top: 100px;
  overflow: hidden;
  background: var(--yellow);
  border-radius: 28px;
  color: var(--deep);
}

.rhythm::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 45, 39, 0.12) 1px, transparent 1px);
  background-size: 17px 17px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 52%);
}

.rhythm__copy {
  position: relative;
  z-index: 2;
  padding: 55px;
}

.rhythm .mini-label {
  color: var(--deep);
}

.rhythm__copy h3 {
  margin: 12px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

.rhythm__copy p {
  margin-bottom: 28px;
  font-size: 0.82rem;
  line-height: 1.9;
}

.rhythm__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  color: var(--white);
  background: var(--deep);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.rhythm__play {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--yellow);
}

.rhythm.is-playing .rhythm__play {
  width: 8px;
  height: 10px;
  border: 0;
  border-right: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
}

.rhythm__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.48), transparent 8%),
    var(--leaf);
  border-radius: 50% 0 0 50%;
}

.rhythm__rings {
  position: absolute;
  inset: 50%;
}

.rhythm__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.rhythm__rings i:nth-child(2) { transform: translate(-50%, -50%) scale(2); }
.rhythm__rings i:nth-child(3) { transform: translate(-50%, -50%) scale(3); }

.rhythm.is-playing .rhythm__rings i { animation: ripple 2.4s ease-out infinite; }
.rhythm.is-playing .rhythm__rings i:nth-child(2) { animation-delay: -0.8s; }
.rhythm.is-playing .rhythm__rings i:nth-child(3) { animation-delay: -1.6s; }

.rhythm__track {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
}

.rhythm__track::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.rhythm__track span {
  position: relative;
  width: var(--size);
  height: calc(var(--size) * 1.35);
  background: var(--yellow);
  border: 3px solid var(--deep);
  border-radius: 70% 35% 65% 35%;
  box-shadow: 0 7px 0 rgba(11, 45, 39, 0.24);
  transform: rotate(45deg);
}

.rhythm.is-playing .rhythm__track span {
  animation: beat 1.6s ease-in-out calc(var(--beat) * -0.18s) infinite;
}

.rhythm__visual > p {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-align: center;
}

@keyframes beat {
  0%, 100% { transform: rotate(45deg) scale(1); }
  20% { transform: rotate(45deg) scale(1.32); background: var(--coral); }
}

@keyframes ripple {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.15); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(5); }
}

.friends {
  background: var(--paper);
}

.friends .section-heading {
  margin-bottom: 64px;
}

.character-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.6fr);
  overflow: hidden;
  background: var(--cream);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(44, 69, 56, 0.13);
}

.character-stage__image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.character-stage__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(6, 34, 29, 0.18));
  content: "";
  pointer-events: none;
}

.character-stage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.character-pin {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  padding: 6px 12px;
  color: var(--white);
  background: rgba(5, 33, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(9px);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.character-pin::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.character-pin--miro { left: 18%; }
.character-pin--bubinga { left: 49%; }
.character-pin--tamu { right: 8%; }

.character-info {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: 42px 42px 48px;
  background: var(--white);
}

.character-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: var(--paper);
  border-radius: 999px;
}

.character-tabs button {
  flex: 1;
  min-height: 43px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.character-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--deep);
}

.character-panel {
  margin-top: auto;
  animation: panel-in 0.4s var(--ease);
}

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

.character-panel > span {
  color: var(--coral);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.character-panel h3 {
  margin: 8px 0 3px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.character-panel h4 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.6;
}

.character-panel > p {
  color: rgba(23, 49, 44, 0.72);
  font-size: 0.82rem;
  line-height: 2;
}

.character-panel blockquote {
  margin: 25px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--leaf);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.8;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
}

.areas {
  overflow: hidden;
  background: var(--cream);
}

.areas__heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 64px;
}

.areas__heading h2 {
  margin: 12px 0 0;
}

.areas__heading > p {
  margin-bottom: 14px;
  color: rgba(23, 49, 44, 0.68);
  font-size: 0.88rem;
  line-height: 2;
}

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

.area-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-radius: 190px 190px 24px 24px;
}

.area-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(2, 28, 24, 0.93));
  content: "";
}

.area-card__number {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 50%;
  padding: 7px 13px;
  color: var(--deep);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.area-card__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.area-card__art i {
  position: absolute;
  display: block;
}

.area-card--forest .area-card__art {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 216, 90, 0.72), transparent 15%),
    linear-gradient(#80c66d, #17604a 65%, #0b2d27);
}

.area-card--forest .area-card__art i:nth-child(1) {
  top: 0; left: 16%; width: 42px; height: 75%; background: #22513d; border-radius: 0 0 50% 50%; transform: rotate(7deg);
}
.area-card--forest .area-card__art i:nth-child(2) {
  top: 4%; right: 7%; width: 88px; height: 42px; background: #4f9e51; border-radius: 100% 0 100% 0; transform: rotate(30deg);
}
.area-card--forest .area-card__art i:nth-child(3) {
  bottom: 24%; left: 21%; width: 76%; height: 28px; background: #593f2b; border-radius: 80% 0 60% 30%; transform: rotate(-10deg); box-shadow: 0 -7px 0 #3f7750;
}

.area-card--cave .area-card__art {
  background:
    radial-gradient(ellipse at 55% 65%, rgba(98, 238, 223, 0.65), transparent 30%),
    linear-gradient(150deg, #321f4c, #143d46 70%, #081f25);
}

.area-card--cave .area-card__art i:nth-child(1),
.area-card--cave .area-card__art i:nth-child(2),
.area-card--cave .area-card__art i:nth-child(3) {
  bottom: 23%; width: 46px; height: 120px; background: linear-gradient(#b7fff4, #56c9c2 55%, transparent); clip-path: polygon(50% 0, 100% 85%, 55% 100%, 0 84%); filter: drop-shadow(0 0 16px #7ee8da);
}
.area-card--cave .area-card__art i:nth-child(1) { left: 20%; transform: scale(.7) rotate(-8deg); }
.area-card--cave .area-card__art i:nth-child(2) { left: 43%; }
.area-card--cave .area-card__art i:nth-child(3) { right: 14%; transform: scale(.55) rotate(12deg); }

.area-card--sky .area-card__art {
  background:
    radial-gradient(circle at 66% 23%, #fff9c8 0 6%, transparent 7%),
    linear-gradient(#9bdedc 0 50%, #d9f0c0 73%, #1e604b);
}

.area-card--sky .area-card__art i {
  width: 150px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 45px 10px 0 -8px var(--white), -40px 14px 0 -12px var(--white);
  opacity: 0.9;
}
.area-card--sky .area-card__art i:nth-child(1) { top: 23%; left: -8%; transform: scale(.7); }
.area-card--sky .area-card__art i:nth-child(2) { top: 39%; right: -12%; transform: scale(.5); }
.area-card--sky .area-card__art i:nth-child(3) { bottom: 25%; left: 24%; width: 220px; height: 70px; background: #447c4b; border-radius: 50%; box-shadow: 0 18px 0 -4px #795a35; opacity: 1; }

.area-card__copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 27px;
  left: 28px;
}

.area-card__copy h3 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.area-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.news {
  color: var(--white);
  background: var(--leaf);
}

.news::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 60px;
  background: var(--cream);
  border-radius: 0 0 50% 50%;
  content: "";
}

.news__heading {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.news__heading h2 {
  margin-bottom: 0;
}

.news__heading h2 em {
  color: var(--yellow);
}

.news-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.news-list article {
  display: grid;
  grid-template-columns: 120px 110px 1fr;
  min-height: 112px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.news-list time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.news-tag {
  justify-self: start;
  padding: 5px 11px;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
}

.news-tag--mint { color: var(--deep); background: var(--mint); }
.news-tag--yellow { color: var(--deep); background: var(--yellow); }

.news-list h3 {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 600;
}

.follow {
  position: relative;
  min-height: 670px;
  display: flex;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--deep);
}

.follow::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 33, 29, 0.98) 4%, rgba(4, 33, 29, 0.82) 43%, rgba(4, 33, 29, 0.2) 75%),
    radial-gradient(circle at 75% 50%, transparent, rgba(4, 33, 29, 0.3));
  content: "";
}

.follow__art {
  position: absolute;
  inset: 0;
  background: url("assets/bubinga-hero.jpg") center 39% / cover no-repeat;
  filter: saturate(0.9);
}

.follow__content {
  position: relative;
  z-index: 2;
}

.follow h2 {
  margin-bottom: 22px;
}

.follow h2 em {
  color: var(--yellow);
}

.follow__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.follow__notice {
  display: flex;
  max-width: 610px;
  margin: 32px 0 12px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 16px 15px 22px;
  background: var(--white);
  border-radius: 18px;
  color: var(--ink);
}

.follow__notice > div {
  display: grid;
  gap: 2px;
}

.follow__notice > div span {
  color: var(--coral);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.follow__notice strong {
  font-size: 0.82rem;
}

.follow__notice a {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  gap: 25px;
  padding: 0 22px;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.3s var(--ease);
}

.follow__notice a:hover {
  transform: translateY(-2px);
}

.follow__notice a span {
  font-size: 1.2rem;
}

.follow small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
}

.site-footer {
  padding: 60px 0 28px;
  color: var(--white);
  background: #071f1b;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__top nav {
  display: flex;
  gap: 34px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
}

.site-footer__top nav a:hover,
.site-footer__bottom a:hover {
  color: var(--yellow);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.63rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom > div {
  display: flex;
  gap: 24px;
}

.back-top {
  justify-self: end;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.back-top span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-left: 8px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

.feature-card:nth-child(2),
.area-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3),
.area-card:nth-child(3) { transition-delay: 0.2s; }

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 44px, 900px);
  }

  .global-nav {
    gap: 22px;
    margin-left: auto;
    margin-right: 12px;
  }

  .global-nav a:not(.nav-cta) {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__content {
    max-width: 580px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 8vw, 5.6rem);
  }

  .story__grid {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .story__seed-card {
    grid-column: 2;
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    margin-top: 12px;
    border-radius: 24px;
    text-align: left;
  }

  .story__seed-card svg {
    margin: 0;
  }

  .feature-card {
    min-height: 530px;
  }

  .feature-card__top {
    height: 210px;
  }

  .rhythm {
    grid-template-columns: 44% 56%;
  }

  .rhythm__copy {
    padding: 40px;
  }

  .character-stage {
    grid-template-columns: 1fr;
  }

  .character-stage__image,
  .character-info {
    min-height: auto;
  }

  .character-stage__image {
    height: min(68vw, 610px);
  }

  .character-info {
    padding: 32px;
  }

  .character-panel {
    margin-top: 36px;
  }

  .area-card {
    min-height: 400px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
    --header-height: 72px;
  }

  .section {
    padding: 94px 0;
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
    align-items: flex-start;
  }

  .hero__media {
    top: 0;
    bottom: 0;
  }

  .hero__media img {
    object-position: 69% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(3, 28, 25, 0.38) 0%, rgba(3, 28, 25, 0.18) 32%, rgba(3, 28, 25, 0.9) 74%, #031c19 100%),
      linear-gradient(90deg, rgba(3, 28, 25, 0.34), transparent 70%);
  }

  .hero__inner {
    display: flex;
    height: 100%;
    align-items: flex-end;
    padding-bottom: 118px;
  }

  .hero__content {
    width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 0.86rem;
    line-height: 1.8;
  }

  .desktop-only {
    display: none;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .button {
    min-height: 55px;
  }

  .hero__footer {
    min-height: 75px;
    gap: 20px;
  }

  .hero__footer > div:nth-child(2) {
    display: none;
  }

  .hero__scroll {
    height: 75px;
  }

  .hero__scroll span {
    display: none;
  }

  .hero__scroll i {
    width: 30px;
    height: 45px;
  }

  .story::before {
    left: 18px;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-kicker {
    grid-column: 1;
  }

  .story__main h2,
  .section-heading h2,
  .areas__heading h2,
  .news__heading h2,
  .follow h2 {
    margin-bottom: 27px;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.32;
  }

  .story__copy p br {
    display: none;
  }

  .story__seed-card {
    grid-column: 1;
    grid-template-columns: 100px 1fr;
    padding: 24px 20px;
  }

  .story__seed-card svg {
    width: 90px;
  }

  .story__beats {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    margin-top: 54px;
    padding: 24px;
    border-radius: 22px;
  }

  .story__beats div {
    min-height: 46px;
  }

  .story__beats i {
    width: 1px;
    height: 22px;
    margin-left: 12px;
    background: repeating-linear-gradient(180deg, var(--line) 0 4px, transparent 4px 8px);
  }

  .section-heading,
  .news__heading {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 46px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-card__top {
    height: 190px;
  }

  .feature-card__top svg {
    width: 120px;
  }

  .rhythm {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .rhythm__copy {
    padding: 38px 28px;
  }

  .rhythm__visual {
    min-height: 280px;
    border-radius: 50% 50% 0 0;
  }

  .rhythm__track {
    right: 5%;
    left: 5%;
  }

  .character-stage {
    margin-inline: -4px;
    border-radius: 22px;
  }

  .character-stage__image {
    height: 78vw;
    min-height: 350px;
  }

  .character-stage__image img {
    object-position: center;
  }

  .character-pin {
    display: none;
  }

  .character-info {
    padding: 24px 22px 34px;
  }

  .character-panel {
    margin-top: 32px;
  }

  .areas__heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 44px;
  }

  .area-grid {
    display: flex;
    width: calc(100vw - 18px);
    gap: 14px;
    padding-right: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .area-card {
    min-width: min(81vw, 340px);
    min-height: 420px;
    flex: 0 0 auto;
    border-radius: 160px 160px 22px 22px;
    scroll-snap-align: start;
  }

  .news {
    padding-top: 116px;
  }

  .news-list article {
    position: relative;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .news-list h3 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .follow {
    min-height: 720px;
    align-items: flex-end;
    padding-bottom: 78px;
  }

  .follow__art {
    background-position: 69% center;
  }

  .follow::after {
    background: linear-gradient(180deg, rgba(4, 33, 29, 0.08), rgba(4, 33, 29, 0.92) 58%, #04211d 100%);
  }

  .follow__content > p:not(.eyebrow) {
    max-width: 340px;
  }

  .follow__notice {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
  }

  .follow__notice > div {
    padding: 3px 5px 9px;
  }

  .follow__notice a {
    justify-content: space-between;
    border-radius: 13px;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 38px;
  }

  .site-footer__top nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .site-footer__bottom > div {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .back-top {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
