/* =========================================================
   Mascot profile page
   ========================================================= */

/* ===== Hero ===== */
.mascot-hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
  padding: 40px 32px 80px;
}
.mascot-hero__bg-paws {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 25%, var(--pink-soft) 0, var(--pink-soft) 3px, transparent 3.5px),
    radial-gradient(circle at 85% 20%, var(--green-soft) 0, var(--green-soft) 3px, transparent 3.5px),
    radial-gradient(circle at 70% 85%, var(--pink-soft) 0, var(--pink-soft) 3px, transparent 3.5px);
  opacity: 0.5;
  pointer-events: none;
}
.mascot-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .mascot-hero__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}

.mascot-hero__visual { position: relative; display: flex; justify-content: center; }
.mascot-hero__circle {
  position: relative;
  width: clamp(280px, 32vw, 440px);
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.mascot-hero__img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(43,35,32,0.16));
}
.mascot-hero__sparkle {
  position: absolute;
  color: var(--pink);
  font-size: 34px;
  animation: mascotSparkle 3s ease-in-out infinite;
}
.mascot-hero__sparkle--1 { top: 6%; left: 8%; animation-delay: 0s; }
.mascot-hero__sparkle--2 { bottom: 12%; left: 0%; animation-delay: 1s; font-size: 24px; }
.mascot-hero__sparkle--3 { top: 18%; right: 6%; animation-delay: 2s; color: var(--green); }
@keyframes mascotSparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

.mascot-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 18px; font-weight: 900;
  color: var(--ink);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.mascot-hero__eyebrow-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.mascot-hero__name {
  font-family: var(--font-serif);
  font-weight: 900;
  margin: 0 0 28px;
  line-height: 1.1;
}
.mascot-hero__name-ruby {
  display: block;
  font-size: clamp(56px, 9vw, 120px);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.mascot-hero__catch {
  font-size: 22px;
  line-height: 2;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0;
}
.mascot-hero__catch em {
  color: var(--pink);
  font-style: normal;
  background: linear-gradient(transparent 60%, var(--pink-soft) 60%);
  padding: 0 .1em;
}

/* ===== Profile ===== */
.mascot-profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .mascot-profile__grid { grid-template-columns: 1fr; } }

.mascot-profile__list {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mascot-profile__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 8px;
  border-top: 1.5px dashed var(--border);
}
.mascot-profile__row:last-child { border-bottom: 1.5px dashed var(--border); }
.mascot-profile__row dt {
  font-weight: 900;
  font-size: 17px;
  color: var(--pink);
  letter-spacing: 0.04em;
}
.mascot-profile__row dd {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .mascot-profile__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 4px; }
  .mascot-profile__row dd { font-size: 20px; }
}

.mascot-profile__card {
  background: linear-gradient(165deg, var(--pink-soft) 0%, #FFF1E6 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.mascot-profile__card-img {
  width: 118%;
  max-width: none;
  margin: 0 -9% 0;
  filter: drop-shadow(0 8px 16px rgba(43,35,32,0.14));
}
.mascot-profile__bubble {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 26px;
  padding: 22px 26px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.mascot-profile__bubble::after {
  content: "";
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 26px; height: 26px;
  background: #fff;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.mascot-profile__card-quote {
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}
.mascot-profile__card-quote-big {
  display: block;
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-bottom: 12px;
}
.mascot-profile__card-quote-sub {
  display: block;
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--ink);
  font-size: clamp(17px, 1.9vw, 23px);
  line-height: 1.6;
}
.mascot-profile__card-quote-sub em {
  color: var(--pink);
  font-style: normal;
}

/* ===== Story ===== */
.mascot-story {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 32px;
  text-align: center;
}
.mascot-story__inner {
  max-width: 760px;
  margin: 0 auto;
}
.mascot-story__img {
  display: block;
  width: min(560px, 90%);
  margin: 48px auto 0;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.3));
}
.mascot-story .section__label--light {
  background: rgba(255,255,255,0.12);
  color: var(--pink-soft);
  margin-bottom: 40px;
}
.mascot-story__text {
  font-size: 24px;
  line-height: 2.1;
  font-weight: 700;
  margin: 0 0 36px;
  color: var(--cream);
}
.mascot-story__text b {
  color: #fff;
  font-weight: 900;
  background: linear-gradient(transparent 62%, rgba(232,164,168,0.45) 62%);
  padding: 0 .12em;
}
.mascot-story__text--big {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.7;
  margin-bottom: 0;
  padding-top: 24px;
}
.mascot-story__text--big em {
  color: var(--pink);
  font-style: normal;
}

/* ===== CTA ===== */
.mascot-cta {
  position: relative;
  background: linear-gradient(165deg, var(--pink-soft) 0%, #FFF1E6 50%, var(--cream-2) 100%);
  overflow: hidden;
  padding: 120px 32px;
}
.mascot-cta__bg-paws {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 25%, rgba(232,164,168,0.3) 0, rgba(232,164,168,0.3) 4px, transparent 4.5px),
    radial-gradient(circle at 88% 70%, rgba(143,165,138,0.3) 0, rgba(143,165,138,0.3) 4px, transparent 4.5px);
  pointer-events: none;
}
.mascot-cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mascot-cta__logo {
  width: 140px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 18px rgba(43,35,32,0.15));
}
.mascot-cta__title {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.4;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}
.mascot-cta__lead {
  font-size: 20px;
  color: var(--ink);
  line-height: 1.95;
  font-weight: 700;
  margin: 0 0 40px;
}
.mascot-cta__btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.mascot-cta__line {
  background: var(--line-green) !important;
  color: #fff !important;
  position: relative;
}
.mascot-cta__line[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--line-outline {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--line-outline:hover { background: var(--cream-2); }
.mascot-cta__note {
  margin: 28px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.8;
}

/* ===== YouTube section ===== */
.mascot-tube__feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .mascot-tube__feature { grid-template-columns: 1fr; gap: 28px; }
}
.mascot-tube__player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mascot-tube__placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 30%, rgba(232,164,168,0.35), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(143,165,138,0.3), transparent 55%),
    linear-gradient(165deg, #3a2f2b 0%, var(--ink) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
}
.mascot-tube__play {
  width: 110px; height: 78px;
  background: rgba(232,164,168,0.95);
  border-radius: 22px;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform .25s ease, background .25s ease;
}
.mascot-tube__player:hover .mascot-tube__play {
  transform: scale(1.06);
  background: var(--pink);
}
.mascot-tube__placeholder-label {
  color: var(--cream);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.3);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}
.mascot-tube__feature-copy h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  margin: 16px 0 14px;
  letter-spacing: 0.03em;
}
.mascot-tube__feature-copy p {
  font-size: 17px;
  line-height: 1.95;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 24px;
}
.mascot-tube__badge {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--ink);
  font-weight: 900;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}
.mascot-tube__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .mascot-tube__grid { grid-template-columns: 1fr; } }
.mascot-tube__card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mascot-tube__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mascot-tube__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  overflow: hidden;
}
.mascot-tube__thumb--ba {
  background: linear-gradient(150deg, var(--pink-soft) 0%, #FFF1E6 100%);
}
.mascot-tube__thumb--train {
  background: linear-gradient(150deg, var(--green-soft) 0%, #EEF3EC 100%);
}
.mascot-tube__thumb-emoji {
  font-size: 64px;
  filter: drop-shadow(0 6px 10px rgba(43,35,32,0.12));
}
.mascot-tube__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.mascot-tube__card h4 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 20px;
  margin: 22px 24px 10px;
  letter-spacing: 0.03em;
  line-height: 1.45;
}
.mascot-tube__card p {
  margin: 0 24px 24px;
  font-size: 15.5px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.8;
}
.mascot-tube__note {
  text-align: center;
  margin: 40px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
}
