
:root {
  
  --font: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  --font-serif: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  --font-display: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;

  --bg: #f3f7f4;
  --bg-2: #e8f1ec;
  --surface: #ffffff;
  --elevated: #f7fbf8;
  --paper: #ffffff;

  --primary: #2f8f82;
  --primary-dark: #247569;
  --primary-light: #45b3a4;
  --primary-soft: rgba(47, 143, 130, 0.1);
  --on-primary: #ffffff;

  --text: #15201c;
  --text-2: #5c6b66;
  --text-3: #84918c;
  /* Slightly stronger than pure mint so ghost buttons read on white surfaces */
  --border: #c2d4cc;
  --ink: var(--text);
  --muted: var(--text-2);

  --warm: #9a7344;

  --text-display: clamp(2rem, 4.5vw, 2.75rem);
  --text-title: clamp(1.5rem, 3vw, 2rem);
  --text-body: 1.0625rem;
  --text-small: 0.875rem;
  --text-caption: 0.75rem;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --shadow-soft: 0 8px 32px rgba(17, 24, 28, 0.06);
  --shadow-card: 0 4px 20px rgba(42, 154, 142, 0.08);
  --shadow-warm: var(--shadow-card);
  --shadow-hover:
    0 14px 40px rgba(17, 24, 28, 0.1),
    0 6px 18px rgba(42, 154, 142, 0.12);
  --shadow-hover-lg:
    0 22px 56px rgba(17, 24, 28, 0.12),
    0 10px 28px rgba(42, 154, 142, 0.14);
  --lift-sm: -3px;
  --lift-md: -5px;
  --lift-lg: -6px;

  --radius: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --nav-h: 72px;
  --container: 1140px;
  --section-y: 88px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --book-page: 360px;
  --book-inner-w: calc(var(--book-page) * 2);

  color-scheme: light;
}

[data-theme='dark'] {
  color-scheme: dark;

  --bg: #121a19;
  --bg-2: #0e1514;
  --surface: #24312f;
  --elevated: #2c3b38;
  --paper: #2c3b38;

  --primary: #3ab8ac;
  --primary-dark: #5ecec4;
  --primary-light: #7ad9cf;
  --primary-soft: rgba(58, 184, 172, 0.18);

  --text: #eef4f3;
  --text-2: #b7c4c1;
  --text-3: #8f9e9b;
  --border: #3a4c49;

  /* Aliases used by share.css and older LP blocks */
  --ink: var(--text);
  --muted: var(--text-2);

  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.32);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.28);
  --shadow-hover:
    0 14px 40px rgba(0, 0, 0, 0.36),
    0 6px 18px rgba(58, 184, 172, 0.14);
  --shadow-hover-lg:
    0 22px 56px rgba(0, 0, 0, 0.4),
    0 10px 28px rgba(58, 184, 172, 0.16);
}

[data-theme='dark'] .site-header.is-scrolled {
  background: rgba(18, 26, 25, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

[data-theme='dark'] .ambient__blob--1 {
  background: radial-gradient(circle, rgba(58, 184, 172, 0.12), transparent 70%);
}

[data-theme='dark'] .ambient__blob--2 {
  background: radial-gradient(circle, rgba(154, 115, 68, 0.1), transparent 70%);
}

[data-theme='dark'] .hub-player {
  background: var(--elevated);
  border-color: rgba(58, 184, 172, 0.28);
}

[data-theme='dark'] .hub-pills li {
  background: rgba(44, 59, 56, 0.92);
}

[data-theme='dark'] .card,
[data-theme='dark'] .listen-panel,
[data-theme='dark'] .explore-tile,
[data-theme='dark'] .listen-strip__player {
  background: var(--elevated);
  border-color: rgba(58, 184, 172, 0.2);
  box-shadow: var(--shadow-card);
}

[data-theme='dark'] .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

[data-theme='dark'] .phone {
  background: linear-gradient(145deg, #2a3432, #1a2423);
}

[data-theme='dark'] .page-front,
[data-theme='dark'] .page-back,
[data-theme='dark'] .mobile-card {
  background: var(--paper);
}

[data-theme='dark'] .nav__links.is-open {
  background: rgba(18, 26, 25, 0.98);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(var(--lift-sm));
    border-color: rgba(42, 154, 142, 0.28);
    box-shadow: var(--shadow-hover);
  }
}

.card__tag {
  display: inline-block;
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
}

.card p {
  font-size: var(--text-small);
  color: var(--text-2);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}


.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.ambient__blob--1 {
  width: 55vw;
  height: 55vw;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(58, 184, 172, 0.22), transparent 70%);
}

.ambient__blob--2 {
  width: 45vw;
  height: 45vw;
  bottom: 10%;
  left: -15%;
  background: radial-gradient(circle, rgba(184, 136, 74, 0.18), transparent 70%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(246, 243, 237, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(44, 40, 36, 0.04);
}

.site-header:not(.is-scrolled) .brand__name {
  color: rgba(255, 255, 255, 0.95);
}

.site-header:not(.is-scrolled) .brand__slogan-mini {
  color: rgba(255, 255, 255, 0.65);
}

.site-header:not(.is-scrolled) .nav__links a:not(.btn) {
  color: rgba(255, 255, 255, 0.82);
}

.site-header:not(.is-scrolled) .nav__links a:not(.btn):hover {
  color: #fff;
}

.site-header:not(.is-scrolled) .nav__toggle {
  color: #fff;
}

.site-header:not(.is-scrolled) .pref-icon-btn,
.site-header:not(.is-scrolled) .pref-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.site-header:not(.is-scrolled) .pref-toggle button.is-active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}


.site-header.site-header--solid {
  background: rgba(246, 243, 237, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(44, 40, 36, 0.04);
}

.site-header.site-header--solid .brand__name {
  color: var(--text);
}

.site-header.site-header--solid .brand__slogan-mini {
  color: var(--primary);
  opacity: 0.9;
}

.site-header.site-header--solid .nav__links a:not(.btn) {
  color: var(--text-2);
}

.site-header.site-header--solid .nav__links a:not(.btn):hover {
  color: var(--primary-dark);
}

.site-header.site-header--solid .nav__toggle {
  color: var(--text);
}

.site-header.site-header--solid .pref-icon-btn,
.site-header.site-header--solid .pref-toggle {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.site-header.site-header--solid .pref-toggle button.is-active {
  background: var(--primary);
  color: #fff;
}

[data-theme='dark'] .site-header.is-scrolled {
  background: rgba(18, 26, 25, 0.92);
}

[data-theme='dark'] .site-header.site-header--solid {
  background: rgba(18, 26, 25, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(42, 154, 142, 0.2);
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

.brand__slogan-mini {
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.9;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}

.nav__links a:not(.btn):hover {
  color: var(--primary-dark);
}

.nav__prefs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.pref-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .pref-icon-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(42, 154, 142, 0.28);
    box-shadow: var(--shadow-card);
    color: var(--primary-dark);
  }
}

.pref-toggle {
  display: inline-flex;
  padding: 3px;
  gap: 2px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
}

.pref-toggle button {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  padding: 7px 11px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.pref-toggle--lang button {
  padding: 7px 8px;
  min-width: 2rem;
}


.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn--primary {
  background: linear-gradient(145deg, var(--primary-dark), #2d8f84);
  color: var(--on-primary);
  box-shadow: 0 10px 28px rgba(30, 130, 120, 0.22);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(30, 130, 120, 0.28);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(42, 154, 142, 0.35);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-btn {
  min-width: 168px;
}


.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 40px) 0 72px;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero__title {
  font-size: var(--text-display);
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 14ch;
}

.hero__title em {
  font-style: normal;
  color: var(--primary-dark);
}

.hero__tagline {
  margin-top: 14px;
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  color: var(--text-2);
  max-width: 36ch;
}

.hero__verse {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--primary-soft);
  font-size: var(--text-small);
  color: var(--text-3);
  font-weight: var(--weight-medium);
  max-width: 32ch;
}

.hero__lead {
  margin-top: 16px;
  font-size: var(--text-body);
  color: var(--text-2);
  max-width: 40ch;
  line-height: 1.65;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chip {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid rgba(42, 154, 142, 0.12);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .chip:hover {
    transform: translateY(-2px);
    background: rgba(42, 154, 142, 0.14);
    box-shadow: 0 6px 16px rgba(42, 154, 142, 0.15);
  }
}

.hero__stats {
  display: none;
}

.stat__value {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 2px;
}


.phone-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  width: 300px;
  padding: 12px;
  border-radius: 44px;
  background: linear-gradient(145deg, #fff, #e8f4f4);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 40px 80px rgba(17, 24, 28, 0.12),
    0 0 0 12px rgba(255, 255, 255, 0.5);
  transform: rotate(-4deg) translateY(8px);
  transition: transform 0.6s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .phone:hover {
    transform: rotate(-2deg) translateY(var(--lift-sm));
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.04),
      0 48px 96px rgba(17, 24, 28, 0.16),
      0 0 0 12px rgba(255, 255, 255, 0.55);
  }
}

.phone__screen {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #152422 0%, #0d1817 100%);
  min-height: 580px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone__status {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.phone__greet {
  margin-top: 12px;
}

.phone__greet h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.phone__greet p {
  color: var(--primary-light);
  font-size: 0.85rem;
  margin-top: 4px;
}

.phone__card {
  margin-top: 8px;
  flex: 1;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 55%),
    url('../images/lp/01-quay-ve-khi-lo.jpg') center/cover;
  position: relative;
}

.phone__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(42, 154, 142, 0.5);
}

.phone__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
}

.phone__card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 6px;
  line-height: 1.35;
}

.phone__tabs {
  display: flex;
  justify-content: space-around;
  padding: 12px 8px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.phone__tab {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.phone__tab.is-active {
  color: var(--primary-light);
  font-weight: 700;
}


.section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
}

.section--alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__head--left {
  text-align: left;
  max-width: 36rem;
  margin: 0 0 32px;
}

.section__desc--narrow {
  max-width: 42ch;
  margin-inline: auto;
}

.section__head--left .section__desc {
  margin-inline: 0;
}

.section__eyebrow {
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: var(--text-title);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.section__title em {
  font-style: normal;
  color: var(--primary-dark);
}

.section__desc {
  margin-top: 12px;
  color: var(--text-2);
  font-size: var(--text-body);
  line-height: 1.65;
}


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

.pillar {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .pillar:hover {
    transform: translateY(var(--lift-md));
    border-color: rgba(42, 154, 142, 0.28);
    box-shadow: var(--shadow-hover);
  }

  .pillar:hover .pillar__icon {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(42, 154, 142, 0.2);
  }
}

.pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(42, 154, 142, 0.1);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pillar h3 {
  font-size: 1.0625rem;
  font-weight: var(--weight-semibold);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-2);
}


.feature-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.feature-bento__group-label {
  grid-column: 1 / -1;
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.feature-bento__group-label:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.fcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .fcard:hover {
    transform: translateY(var(--lift-md));
    box-shadow: var(--shadow-hover);
    border-color: rgba(42, 154, 142, 0.28);
  }

  .fcard:hover .fcard__icon {
    transform: scale(1.08);
  }

  .fcard--hub:hover {
    transform: translateY(var(--lift-lg));
    box-shadow: var(--shadow-hover-lg);
  }

  .fcard--hub:hover .hub-player {
    box-shadow: 0 14px 36px rgba(42, 154, 142, 0.18);
  }
}

.fcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.fcard__icon--teal {
  background: rgba(42, 154, 142, 0.14);
  color: var(--primary-dark);
}

.fcard__icon--indigo {
  background: rgba(88, 108, 168, 0.14);
  color: #4a5f9e;
}

.fcard__icon--sage {
  background: rgba(107, 142, 90, 0.16);
  color: #5a7348;
}

.fcard__icon--sky {
  background: rgba(72, 140, 180, 0.14);
  color: #3d7a9e;
}

.fcard__icon--amber {
  background: rgba(180, 130, 60, 0.16);
  color: #8b6914;
}

.fcard__icon--rose {
  background: rgba(168, 100, 110, 0.14);
  color: #9a5a62;
}

.fcard__icon--lotus {
  background: rgba(42, 154, 142, 0.1);
  color: var(--primary);
}

.fcard__tag {
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.fcard h3 {
  font-size: 1.0625rem;
  font-weight: var(--weight-semibold);
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.fcard p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.fcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.fcard__meta li {
  font-size: 0.75rem;
  font-weight: var(--weight-medium);
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
}


.fcard--hub {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  gap: 28px;
  padding: 28px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--primary-soft) 100%);
  border-color: rgba(42, 154, 142, 0.25);
}

.fcard__hub-mock {
  flex: 0 0 min(340px, 42%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.fcard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-width: 0;
}

.hub-player {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(42, 154, 142, 0.15);
  padding: 14px 16px;
  box-shadow: 0 8px 28px rgba(42, 154, 142, 0.1);
  transition: box-shadow 0.35s var(--ease);
}

.hub-player__bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hub-player__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hub-player__meta {
  flex: 1;
  min-width: 0;
}

.hub-player__title {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hub-player__sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 2px;
}

.hub-player__timer {
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  color: var(--primary-dark);
  font-variant-numeric: tabular-nums;
}

.hub-player__track {
  margin-top: 12px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary-soft);
  overflow: hidden;
}

.hub-player__track span {
  display: block;
  height: 100%;
  width: 38%;
  background: var(--primary);
  border-radius: inherit;
}

.hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hub-pills li {
  font-size: 0.75rem;
  font-weight: var(--weight-medium);
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}

@media (max-width: 960px) {
  .feature-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .fcard--hub {
    flex-direction: column;
  }

  .fcard__hub-mock {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .feature-bento {
    grid-template-columns: 1fr;
  }

  .fcard--hub {
    padding: 22px 18px;
  }
}


.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: transparent;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .step:hover {
    transform: translateY(var(--lift-md));
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow-hover);
  }

  .step:hover::before {
    box-shadow: 0 8px 24px rgba(42, 154, 142, 0.22);
    transform: scale(1.05);
  }
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.step h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-2);
}


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

.story {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}

.story::before {
  content: '"';
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font);
}

.story p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-top: 20px;
}

.story__author {
  margin-top: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}

.story__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-3);
  margin-top: 2px;
}


.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 8px 8px;
  margin: 0 -8px;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 44px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
}

.faq__q:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .faq__q:hover {
    background: var(--surface);
  }
}

.faq__a {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 8px 14px 8px;
}

.faq__a[hidden] {
  display: none !important;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  color: var(--primary);
}


.cta {
  text-align: center;
  padding: 72px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #1a6b62 0%, #2a9a8e 55%, #3a8f85 100%);
  color: var(--on-primary);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(30, 130, 120, 0.25),
    0 4px 16px rgba(17, 24, 28, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover {
    transform: translateY(var(--lift-md));
    box-shadow:
      0 28px 64px rgba(30, 130, 120, 0.32),
      0 8px 24px rgba(17, 24, 28, 0.1);
  }

  .cta:hover .cta__logo {
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 50%);
  pointer-events: none;
}

.cta__logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cta__slogan {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

.cta h2 {
  font-family: var(--font);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.cta p {
  margin-top: 12px;
  opacity: 0.88;
  max-width: 42ch;
  margin-inline: auto;
}

.cta .store-row {
  justify-content: center;
}

.cta .btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}


.section--socials {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--section-y) - 8px);
  padding-bottom: calc(var(--section-y) - 8px);
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(42, 154, 142, 0.1), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.socials-shell {
  margin-top: 8px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--border) 85%, var(--primary) 15%);
  background:
    radial-gradient(110% 80% at 0% 0%, rgba(69, 179, 164, 0.1), transparent 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(154, 115, 68, 0.06), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

[data-theme='dark'] .socials-shell {
  background:
    radial-gradient(110% 80% at 0% 0%, rgba(58, 184, 172, 0.12), transparent 55%),
    var(--elevated);
  border-color: rgba(58, 184, 172, 0.22);
}

.social-channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.social-channel {
  --channel-accent: var(--primary);
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  border-radius: 20px;
  background: color-mix(in srgb, var(--elevated) 70%, transparent);
  box-shadow: none;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

.social-channel::before {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--channel-accent), transparent);
  opacity: 0.55;
}

.social-channel--facebook-group,
.social-channel--facebook-page {
  --channel-accent: #4a7bb8;
}

.social-channel--youtube {
  --channel-accent: #c45b55;
}

.social-channel--tiktok {
  --channel-accent: #3a7a74;
}

.social-channel--instagram {
  --channel-accent: #9a6a7e;
}

@media (hover: hover) and (pointer: fine) {
  .social-channel:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--channel-accent) 32%, var(--border));
    background: var(--surface);
    box-shadow: 0 12px 28px rgba(17, 24, 28, 0.08);
  }
}

[data-theme='dark'] .social-channel {
  background: rgba(14, 24, 22, 0.42);
  border-color: rgba(58, 184, 172, 0.16);
}

[data-theme='dark'] .social-channel:hover {
  background: rgba(22, 36, 34, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.social-channel__top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}

.social-channel__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--channel-accent);
  background: color-mix(in srgb, var(--channel-accent) 12%, transparent);
}

.social-channel__meta {
  min-width: 0;
}

.social-channel__top h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--text);
}

.social-channel__top p {
  margin: 3px 0 0;
  color: var(--text-2);
  font-size: 0.75rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.social-channel__qr {
  position: relative;
  width: min(132px, 100%);
  aspect-ratio: 1;
  margin: 16px auto 10px;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--channel-accent) 18%, var(--border));
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 28, 0.06);
}

[data-theme='dark'] .social-channel__qr {
  background: #f7f4ef;
  border-color: rgba(58, 184, 172, 0.28);
}

.social-channel__qr > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: pixelated;
}

.social-channel__qr > span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  padding: 2px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 24, 28, 0.12);
}

.social-channel__qr > span img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.social-channel__hint {
  margin: 0;
  text-align: center;
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 400;
}

.social-channel__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  margin-top: auto;
  padding-top: 12px;
  border: 1px solid color-mix(in srgb, var(--channel-accent) 20%, var(--border));
  border-radius: 999px;
  color: var(--text);
  background: color-mix(in srgb, var(--channel-accent) 6%, transparent);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .social-channel__link:hover {
    color: #fff;
    border-color: var(--channel-accent);
    background: var(--channel-accent);
  }
}

.socials-note {
  max-width: 36rem;
  margin: 22px auto 0;
  padding: 12px 16px;
  text-align: center;
  color: var(--text-2);
  font-family: var(--font);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  border-radius: 14px;
  background: color-mix(in srgb, var(--primary-soft) 70%, transparent);
  border-left: 3px solid color-mix(in srgb, var(--primary) 55%, transparent);
}

[data-theme='dark'] .socials-note {
  background: rgba(58, 184, 172, 0.1);
  border-left-color: rgba(58, 184, 172, 0.45);
}

.section--share-lead {
  padding-top: 72px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(42, 154, 142, 0.1), transparent 42%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

@media (max-width: 720px) {
  .section--share-lead {
    padding-top: 56px;
    padding-bottom: 28px;
  }
}

.share-banner {
  position: relative;
  padding: 72px 0 80px;
  background: linear-gradient(165deg, #3aa894 0%, #2f8f82 45%, #247569 100%);
  overflow: hidden;
}

.share-banner::before {
  content: '';
  position: absolute;
  inset: -20% 30% auto;
  height: 280px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.share-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.share-banner__art {
  margin-bottom: 20px;
  filter: drop-shadow(0 12px 28px rgba(20, 60, 50, 0.22));
}

.share-banner__title {
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.share-banner__desc {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.share-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.share-banner__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: #fff;
  color: #1a2e28;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(16, 48, 40, 0.22);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.share-banner__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .share-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(16, 48, 40, 0.28);
  }

  .share-banner__btn--outline:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    color: #fff;
  }
}

.share-banner__btn:active {
  transform: translateY(0);
}

@media (max-width: 720px) {
  .share-banner {
    padding: 56px 0 64px;
  }

  .share-banner__art svg {
    width: 168px;
    height: auto;
  }

  .share-banner__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .share-banner__btn {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .social-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section--socials {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .socials-shell {
    padding: 14px 12px 16px;
    border-radius: 22px;
  }

  .social-channel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: -4px;
    padding: 4px 4px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .social-channel-grid::-webkit-scrollbar {
    display: none;
  }

  .social-channel {
    flex: 0 0 min(72vw, 240px);
    scroll-snap-align: center;
  }

  .social-channel__qr {
    width: 118px;
  }

  .socials-note {
    margin-top: 16px;
    font-size: 0.84rem;
  }
}

@media (max-width: 480px) {
  .social-channel {
    flex-basis: min(84vw, 260px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    grid-template-areas:
      'top qr'
      'hint qr'
      'link qr';
    align-items: center;
    gap: 8px 12px;
    padding: 14px;
  }

  .social-channel__top { grid-area: top; }
  .social-channel__qr {
    grid-area: qr;
    width: 104px;
    margin: 0;
    padding: 8px;
  }
  .social-channel__hint {
    grid-area: hint;
    text-align: left;
    font-size: 0.68rem;
  }
  .social-channel__link {
    grid-area: link;
    margin: 0;
    min-height: 36px;
    padding-top: 0;
  }
}


.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  overflow: visible;
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--primary-soft), transparent 70%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  overflow: visible;
}

.footer__brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.footer__brand .brand__slogan-mini {
  font-size: 0.8rem;
  margin-top: 8px;
  display: block;
}

.footer__brand p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__grid a {
  display: block;
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__grid a:hover {
  color: var(--primary-dark);
}

.footer__socials-label {
  margin: 1.1rem 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  overflow: visible;
}

.footer__social {
  position: relative;
  display: inline-grid !important;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0 !important;
  border-radius: 12px;
  border: 1px solid rgba(45, 106, 90, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

/* Hover / focus label — text synced via data-i18n on .footer__social-tip */
.footer__social-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 5;
  display: block;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--text) 92%, #000 8%);
  color: var(--surface, #fff);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.16s var(--ease, ease), transform 0.16s var(--ease, ease);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.footer__social:hover .footer__social-tip,
.footer__social:focus-visible .footer__social-tip {
  color: var(--surface, #fff);
}

[data-theme='dark'] .footer__social:hover .footer__social-tip,
[data-theme='dark'] .footer__social:focus-visible .footer__social-tip {
  color: #e8f5f2;
}

.footer__social-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: color-mix(in srgb, var(--text) 92%, #000 8%);
}

@media (hover: hover) and (pointer: fine) {
  .footer__social:hover .footer__social-tip,
  .footer__social:focus-visible .footer__social-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.footer__social:focus-visible .footer__social-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-theme='dark'] .footer__social-tip {
  background: color-mix(in srgb, #0e1a18 88%, var(--primary) 12%);
  color: #e8f5f2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

[data-theme='dark'] .footer__social-tip::after {
  border-top-color: color-mix(in srgb, #0e1a18 88%, var(--primary) 12%);
}

.footer__brand-icon,
.social-channel__icon .footer__brand-icon {
  display: block;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .footer__social:hover {
    transform: translateY(-2px);
  }

  .footer__social--brand-facebook:hover {
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.42);
    background: rgba(24, 119, 242, 0.12);
  }

  .footer__social--brand-youtube:hover {
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.4);
    background: rgba(255, 0, 0, 0.1);
  }

  .footer__social--brand-tiktok:hover {
    color: #0f1419;
    border-color: rgba(15, 20, 25, 0.35);
    background: rgba(15, 20, 25, 0.08);
  }

  .footer__social--brand-instagram:hover {
    color: #c13584;
    border-color: rgba(193, 53, 132, 0.42);
    background: rgba(193, 53, 132, 0.12);
  }

  .footer__social--brand-x:hover {
    color: #0f1419;
    border-color: rgba(15, 20, 25, 0.35);
    background: rgba(15, 20, 25, 0.08);
  }
}

[data-theme='dark'] .footer__social {
  background: rgba(22, 36, 34, 0.88);
  border-color: rgba(58, 184, 172, 0.28);
  color: #7fd4cb;
}

@media (hover: hover) and (pointer: fine) {
  [data-theme='dark'] .footer__social--brand-facebook:hover {
    color: #4b9bff;
    border-color: rgba(75, 155, 255, 0.5);
    background: rgba(24, 119, 242, 0.22);
  }

  [data-theme='dark'] .footer__social--brand-youtube:hover {
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.5);
    background: rgba(255, 0, 0, 0.18);
  }

  [data-theme='dark'] .footer__social--brand-tiktok:hover,
  [data-theme='dark'] .footer__social--brand-x:hover {
    color: #e7e9ea;
    border-color: rgba(231, 233, 234, 0.45);
    background: rgba(255, 255, 255, 0.1);
  }

  [data-theme='dark'] .footer__social--brand-instagram:hover {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.5);
    background: rgba(193, 53, 132, 0.22);
  }
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px clamp(20px, 5vw, 48px);
  font-size: 0.85rem;
  color: var(--text-3);
}

.footer__bottom-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 1 auto;
}

.footer__design {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--warm);
  font-style: italic;
}

.footer__sponsor {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-3);
  white-space: nowrap;
}

.footer__sponsor-lead {
  display: inline;
}

.footer__sponsor a {
  display: inline;
  color: var(--text-2);
  font-weight: var(--weight-medium);
  text-decoration: none;
  margin: 0;
  border-bottom: 1px solid rgba(30, 130, 120, 0.28);
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .footer__sponsor a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
  }
}

.footer__verse {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-2);
  margin: 0;
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
}

@media (max-width: 720px) {
  .footer__bottom {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer__verse {
    text-align: center;
    white-space: normal;
  }
}


.listen-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  margin: 0 -8px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease),
    background 0.32s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .listen-strip:hover {
    transform: translateY(var(--lift-md));
    background: var(--surface);
    border-color: rgba(42, 154, 142, 0.18);
    box-shadow: var(--shadow-hover-lg);
  }

  .listen-strip:hover .listen-strip__icon {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(42, 154, 142, 0.2);
  }
}

.listen-strip__player {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 18px 18px 14px;
  border-radius: var(--radius-md, 18px);
  transition:
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.listen-strip__player:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .listen-strip__player:hover {
    border-color: rgba(42, 154, 142, 0.28);
    box-shadow: var(--shadow-soft);
  }

  .listen-strip__player:hover .listen-strip__icon {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(42, 154, 142, 0.2);
  }
}

.listen-strip__player.is-playing {
  border-color: rgba(42, 154, 142, 0.35);
  box-shadow: 0 10px 28px rgba(42, 154, 142, 0.12);
}

.listen-strip__player.is-error .card__tag {
  color: #b45309;
}

.listen-strip__player-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.listen-strip__copy {
  flex: 1;
  min-width: 0;
}

.listen-strip__icon {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.listen-strip__icon:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.listen-strip__player.is-playing .listen-strip__icon {
  background: var(--primary);
  color: #fff;
}

.listen-strip__icon [hidden] {
  display: none !important;
}

.listen-strip__title {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  color: var(--text);
  margin: 0;
}

.listen-strip__meta {
  font-size: var(--text-small);
  color: var(--text-3);
  margin-top: 2px;
}

.listen-strip__waves {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-left: auto;
  flex-shrink: 0;
}

.listen-strip__waves span {
  width: 4px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.28;
  height: 36%;
  transform-origin: bottom center;
  transition: opacity 0.25s var(--ease);
}

.listen-strip__waves span:nth-child(1) { height: 40%; }
.listen-strip__waves span:nth-child(2) { height: 70%; }
.listen-strip__waves span:nth-child(3) { height: 55%; }
.listen-strip__waves span:nth-child(4) { height: 85%; }
.listen-strip__waves span:nth-child(5) { height: 50%; }

.listen-strip__player.is-playing .listen-strip__waves span {
  opacity: 0.7;
  animation: wave-bar 1.2s ease-in-out infinite;
}

.listen-strip__player.is-playing .listen-strip__waves span:nth-child(1) { animation-delay: 0s; }
.listen-strip__player.is-playing .listen-strip__waves span:nth-child(2) { animation-delay: 0.1s; }
.listen-strip__player.is-playing .listen-strip__waves span:nth-child(3) { animation-delay: 0.2s; }
.listen-strip__player.is-playing .listen-strip__waves span:nth-child(4) { animation-delay: 0.15s; }
.listen-strip__player.is-playing .listen-strip__waves span:nth-child(5) { animation-delay: 0.25s; }

.listen-strip__seek {
  display: grid;
  gap: 6px;
}

.listen-strip__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    var(--primary) var(--seek-pct, 0%),
    var(--primary-soft) var(--seek-pct, 0%),
    var(--primary-soft) 100%
  );
  cursor: pointer;
  outline: none;
}

.listen-strip__range:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.listen-strip__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(17, 24, 28, 0.18);
  cursor: grab;
}

.listen-strip__range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(17, 24, 28, 0.18);
  cursor: grab;
}

.listen-strip__range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: transparent;
}

.listen-strip__times {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-3, var(--text-2));
}

[data-theme='dark'] .listen-strip__range::-webkit-slider-thumb {
  border-color: #1a2e28;
}

[data-theme='dark'] .listen-strip__range::-moz-range-thumb {
  border-color: #1a2e28;
}

@media (max-width: 768px) {
  .listen-strip {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    margin: 0;
  }
}



.listen-moment {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(72px, 12vw, 112px) 0;
  background: linear-gradient(165deg, #1a5c55 0%, #2a9a8e 42%, #1e8278 100%);
  color: var(--on-primary);
}

.listen-moment__scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.listen-moment__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 10%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
  animation: glow-drift 12s ease-in-out infinite;
}

@keyframes glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, 3%) scale(1.06);
  }
}

.listen-moment__ring {
  position: absolute;
  left: 58%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.listen-moment__ring--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  animation: ring-pulse 5s ease-in-out infinite;
}

.listen-moment__ring--2 {
  width: min(320px, 42vw);
  height: min(320px, 42vw);
  animation: ring-pulse 5s ease-in-out infinite 0.8s;
}

.listen-moment__ring--3 {
  width: min(220px, 30vw);
  height: min(220px, 30vw);
  animation: ring-pulse 5s ease-in-out infinite 1.6s;
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.listen-moment__waves {
  position: absolute;
  left: 52%;
  top: 50%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
  transform: translate(-50%, -50%);
  opacity: 0.55;
}

.listen-moment__bar {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.85));
  animation: wave-bar 1.4s ease-in-out infinite;
  animation-delay: calc(var(--d) * 0.12s);
  height: 28%;
}

.listen-moment__bar:nth-child(odd) {
  animation-duration: 1.1s;
}

@keyframes wave-bar {
  0%,
  100% {
    height: 22%;
  }
  50% {
    height: 92%;
  }
}

.listen-moment__orbit span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  animation: orbit-dot 9s linear infinite;
}

.listen-moment__orbit span:nth-child(1) {
  left: 62%;
  top: 28%;
  animation-delay: 0s;
}

.listen-moment__orbit span:nth-child(2) {
  left: 72%;
  top: 58%;
  animation-delay: -3s;
}

.listen-moment__orbit span:nth-child(3) {
  left: 48%;
  top: 68%;
  animation-delay: -6s;
}

@keyframes orbit-dot {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-12px, -18px) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
}

.listen-moment__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.listen-moment__slogan {
  font-family: var(--font);
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.92;
  margin-bottom: 12px;
}

.listen-moment__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.22;
  max-width: 16ch;
}

.listen-moment__title em {
  font-style: italic;
  color: #c5ebe6;
}

.listen-moment__desc {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 42ch;
}

.listen-moment__copy .btn {
  margin-top: 28px;
  background: var(--paper);
  color: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.listen-moment__copy .btn:hover {
  background: #fff;
}

.listen-moment__card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.listen-moment__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 16px;
  animation: icon-breathe 3.5s ease-in-out infinite;
}

@keyframes icon-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.listen-moment__card-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

.listen-moment__card-title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.listen-moment__card-meta {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 18px;
}

.listen-moment__progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.listen-moment__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, #c5ebe6);
  transition: width 0.3s linear;
}

.listen-moment__progress-fill.is-playing {
  animation: progress-play 14s linear infinite;
}

@keyframes progress-play {
  from {
    width: 8%;
  }
  to {
    width: 72%;
  }
}

@media (max-width: 768px) {
  .listen-moment__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .listen-moment__scene {
    opacity: 0.65;
  }

  .listen-moment__waves {
    left: 50%;
    top: 22%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .listen-moment__bar,
  .listen-moment__ring,
  .listen-moment__glow,
  .listen-moment__card-icon,
  .listen-moment__orbit span,
  .listen-moment__progress-fill.is-playing,
  .book-companion__img,
  .cover-mascot {
    animation: none !important;
  }

  .listen-moment__progress-fill.is-playing {
    width: 42%;
  }
}


.story-book-section {
  position: relative;
  overflow: hidden;
}

.story-book-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(760px, 94vw);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(42, 154, 142, 0.12), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.story-book-section::after {
  content: '';
  position: absolute;
  right: -6%;
  bottom: 6%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(212, 168, 120, 0.1), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.story-book-section .container {
  position: relative;
  z-index: 1;
}

.book-shell {
  margin-top: 28px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--border) 85%, var(--primary) 15%);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(69, 179, 164, 0.1), transparent 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(154, 115, 68, 0.07), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

[data-theme='dark'] .book-shell {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(58, 184, 172, 0.12), transparent 55%),
    var(--elevated);
  border-color: rgba(58, 184, 172, 0.22);
}

.book-companion {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 34rem;
  margin: 0 auto 22px;
  padding: 12px 16px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--elevated) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
}

.book-companion__avatar {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #f4efe6;
  box-shadow: 0 0 0 3px rgba(42, 154, 142, 0.16);
}

.book-companion__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  animation: book-mascot-float 5s ease-in-out infinite;
}

.book-companion__copy {
  min-width: 0;
}

.book-companion__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 2px;
}

.book-companion__line {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-2);
  margin: 0;
  font-weight: 400;
}

[data-theme='dark'] .book-companion {
  background: rgba(14, 24, 22, 0.45);
  border-color: rgba(58, 184, 172, 0.2);
}

[data-theme='dark'] .book-companion__avatar {
  background: #243230;
  box-shadow: 0 0 0 3px rgba(58, 184, 172, 0.22);
}

[data-theme='dark'] .book-companion__name {
  color: #7fd4cb;
}

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

  50% {
    transform: translateY(-4px);
  }
}

.book-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.book-viewport {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.book-window {
  height: min(460px, 68vw);
  margin-inline: auto;
  overflow: hidden;
  perspective: 2600px;
  border-radius: 20px;
  box-shadow:
    0 20px 44px rgba(44, 40, 36, 0.12),
    0 6px 16px rgba(42, 154, 142, 0.08);
  transition:
    width 0.7s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .book-window:hover {
    transform: translateY(var(--lift-sm));
    box-shadow: var(--shadow-hover-lg);
  }
}

.book-window.is-cover,
.book-window.is-end {
  width: min(var(--book-page), 86vw);
  background-color: #1a4a44;
  background-image: linear-gradient(155deg, #2f7a70 0%, #21554e 42%, #163d38 100%);
}

.book-window.is-cover .page-front.cover-page,
.book-window.is-end .page-front.end-page {
  border-radius: 18px;
  border: none;
  box-shadow: none;
}

.book-window.is-spread {
  width: min(var(--book-inner-w), 92vw);
}

.book-inner {
  position: relative;
  width: var(--book-inner-w);
  height: 100%;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.book-inner.is-cover {
  transform: translateX(calc(-1 * var(--book-page)));
}

.book-inner.is-spread {
  transform: translateX(0);
}

.book-inner.is-end {
  transform: translateX(0);
}

.book-left-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--book-page);
  height: 100%;
  background: linear-gradient(135deg, #e8ddd0 0%, #f5efe6 42%, var(--paper) 100%);
  border-radius: 18px 0 0 18px;
  border: 1px solid var(--border);
  border-right: none;
  z-index: 0;
  overflow: hidden;
}

.book-left-panel__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(44, 40, 36, 0.03) 3px,
      rgba(44, 40, 36, 0.03) 4px
    );
}

.book-spine {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: var(--book-page);
  width: 10px;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #c4b09a,
    #a8947e 18%,
    #8f7d68 50%,
    #a8947e 82%,
    #c4b09a
  );
  box-shadow:
    inset 0 0 8px rgba(0, 0, 0, 0.18),
    2px 0 6px rgba(44, 40, 36, 0.08);
}

.book-pages {
  position: absolute;
  top: 0;
  left: var(--book-page);
  width: var(--book-page);
  height: 100%;
  z-index: 1;
}

.book-leaf {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}

.book-leaf[data-leaf='7'] { z-index: 1; }
.book-leaf[data-leaf='6'] { z-index: 2; }
.book-leaf[data-leaf='5'] { z-index: 3; }
.book-leaf[data-leaf='4'] { z-index: 4; }
.book-leaf[data-leaf='3'] { z-index: 5; }
.book-leaf[data-leaf='2'] { z-index: 6; }
.book-leaf[data-leaf='1'] { z-index: 7; }

/* Cover closed: hide pages underneath so copy never bleeds through. */
.book-window.is-cover .book-leaf:not([data-leaf='1']) {
  visibility: hidden;
  pointer-events: none;
}

.book-leaf.flipped {
  transform: rotateY(-180deg);
}

.page-front,
.page-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  isolation: isolate;
  background-color: var(--paper);
  background-image:
    linear-gradient(165deg, color-mix(in srgb, var(--paper) 92%, #fff 8%) 0%, var(--paper) 42%);
  padding: 26px 24px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2px 16px 16px 2px;
  border: 1px solid var(--border);
  box-shadow:
    inset -4px 0 16px rgba(44, 40, 36, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.page-front::before,
.page-back::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(circle at 20% 15%, rgba(212, 168, 120, 0.08), transparent 42%);
}

.page-back {
  transform: rotateY(180deg);
  border-radius: 16px 2px 2px 16px;
  box-shadow:
    inset 4px 0 16px rgba(44, 40, 36, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.cover-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-self: center;
  align-items: center;
  padding: 5px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cover-page {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 28px 24px 22px;
  background-color: #1a4a44;
  background-image:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(255, 255, 255, 0.14), transparent 65%),
    linear-gradient(155deg, #2f7a70 0%, #21554e 42%, #163d38 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cover-page::before {
  background-image:
    radial-gradient(circle at 82% 88%, rgba(212, 168, 120, 0.22), transparent 48%),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
  opacity: 1;
}

.cover-page__stack {
  position: absolute;
  top: 10px;
  right: 8px;
  bottom: 10px;
  width: 10px;
  border-radius: 2px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: -2px 0 0 rgba(0, 0, 0, 0.12);
  pointer-events: none;
  z-index: 1;
}

.cover-page__texture {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 6px,
    rgba(255, 255, 255, 0.04) 6px,
    rgba(255, 255, 255, 0.04) 7px
  );
  pointer-events: none;
  z-index: 0;
}

.cover-page__glow {
  position: absolute;
  top: -18%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.cover-page__frame {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(255, 255, 255, 0.18);
}

.cover-title {
  font-family: var(--font);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.28;
  margin: 0 0 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.cover-rule {
  display: block;
  width: 48px;
  height: 2px;
  margin: 0 auto 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 220, 170, 0.85), transparent);
}

.cover-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 400;
  max-width: 240px;
  margin: 0;
}

.cover-page__mascot {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 76px;
  height: 76px;
  margin-top: auto;
  margin-bottom: 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #f4efe6;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(0, 0, 0, 0.22);
  z-index: 3;
  flex-shrink: 0;
}

.cover-mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.cover-hint {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  z-index: 2;
  flex-shrink: 0;
}

.review-feature {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(42, 154, 142, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(42, 154, 142, 0.18);
  position: relative;
  z-index: 1;
}

.review-feature--listen {
  background: rgba(42, 154, 142, 0.12);
  color: #1f6b62;
  border-color: rgba(42, 154, 142, 0.22);
}

.review-feature--mala {
  background: rgba(168, 120, 72, 0.12);
  color: #7a5530;
  border-color: rgba(168, 120, 72, 0.22);
}

.review-feature--breath {
  background: rgba(88, 140, 180, 0.12);
  color: #3d6a8a;
  border-color: rgba(88, 140, 180, 0.22);
}

.review-feature--sleep {
  background: rgba(100, 88, 160, 0.12);
  color: #5248a0;
  border-color: rgba(100, 88, 160, 0.22);
}

.review-feature--meditate {
  background: rgba(72, 140, 100, 0.12);
  color: #3d7358;
  border-color: rgba(72, 140, 100, 0.22);
}

.review-feature--merit {
  background: rgba(180, 100, 88, 0.12);
  color: #8a4a40;
  border-color: rgba(180, 100, 88, 0.22);
}

.review-feature--community {
  background: rgba(140, 120, 72, 0.12);
  color: #6a5a30;
  border-color: rgba(140, 120, 72, 0.22);
}

.end-page {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px 32px;
  background-color: #1a4a44;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 28%, rgba(255, 255, 255, 0.12), transparent 68%),
    linear-gradient(165deg, #2a6f66 0%, #1d4d47 48%, #143833 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  isolation: isolate;
}

.end-page::before {
  background-image:
    radial-gradient(circle at 18% 80%, rgba(212, 168, 120, 0.18), transparent 46%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.08), transparent 40%);
  opacity: 1;
}

.end-page__texture {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255, 255, 255, 0.04) 6px,
    rgba(255, 255, 255, 0.04) 7px
  );
  pointer-events: none;
}

.end-page .cover-badge {
  margin-bottom: 16px;
}

.end-logo {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(255, 255, 255, 0.16);
}

.end-title {
  position: relative;
  z-index: 1;
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.end-sub {
  position: relative;
  z-index: 1;
  margin: 0 auto 16px;
  max-width: 250px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.end-mascot-wrap {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin-top: 4px;
  border-radius: 50%;
  overflow: hidden;
  background: #f4efe6;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.2);
}

.end-mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  opacity: 1;
  filter: none;
}

.end-hint {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

.quote-icon {
  width: 28px;
  height: 28px;
  color: var(--warm);
  opacity: 0.5;
  margin-bottom: 14px;
}

.t-text {
  font-family: var(--font);
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 4px;
}

.t-author {
  margin-top: 18px;
}

.t-author strong {
  display: block;
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.t-author span {
  font-size: 0.85rem;
  color: var(--text-3);
}

.page-number {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}

.page-back .page-number {
  right: auto;
  left: 24px;
}

.book-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.book-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
  box-shadow: 0 4px 12px rgba(42, 154, 142, 0.1);
}

.book-btn:hover:not(:disabled) {
  background: var(--elevated);
  transform: scale(1.05);
  color: var(--primary-dark);
}

.book-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.page-indicator {
  min-width: 120px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-2);
}

.mobile-stories {
  margin-top: 4px;
}

.mobile-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  padding: 4px 0 16px;
  margin-inline: -8px;
  padding-inline: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mobile-slider::-webkit-scrollbar {
  display: none;
}

.mobile-card {
  flex: 0 0 min(86vw, 340px);
  scroll-snap-align: center;
  background: var(--paper);
  padding: 24px 20px 44px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 250px;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.mobile-card--cover,
.mobile-card--end {
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 22px 20px 36px;
  background-color: #1a4a44;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 12%, rgba(255, 255, 255, 0.12), transparent 65%),
    linear-gradient(155deg, #2f7a70 0%, #21554e 45%, #163d38 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  min-height: 320px;
}

.mobile-card--cover .cover-badge,
.mobile-card--end .cover-badge {
  margin-bottom: 12px;
}

.mobile-card--cover .cover-logo,
.mobile-card--end .end-logo {
  margin-bottom: 12px;
}

.mobile-card--cover .cover-title,
.mobile-card--end .end-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.mobile-card--cover .cover-page__mascot {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 64px;
  height: 64px;
  margin: auto auto 28px;
}

.mobile-card--end .end-mascot-wrap {
  margin: 12px auto 0;
}

.mobile-card--end .end-sub {
  margin-bottom: 8px;
}

.mobile-card--cover .mob-page-number,
.mobile-card--end .mob-page-number {
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

@media (hover: hover) and (pointer: fine) {
  .mobile-card:hover {
    transform: translateY(var(--lift-sm));
    border-color: rgba(42, 154, 142, 0.28);
    box-shadow: var(--shadow-hover);
  }
}

.mob-page-number {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 0.78rem;
  color: var(--text-3);
}

.d-none-mobile {
  display: block;
}

.d-none-desktop {
  display: none;
}

@media (max-width: 900px) {
  .book-shell {
    padding: 16px 14px 18px;
    border-radius: 22px;
  }

  .book-companion {
    margin-bottom: 16px;
    padding: 10px 12px;
  }

  .book-companion__avatar {
    width: 56px;
    height: 56px;
  }

  .book-window {
    height: min(420px, 78vw);
  }
}

@media (max-width: 640px) {
  .book-companion__line {
    font-size: 0.84rem;
  }

  .mobile-card {
    flex-basis: min(92vw, 320px);
    min-height: 230px;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__logo-wrap {
    margin-inline: auto;
  }

  .hero__lockup-text {
    text-align: center;
  }

  .hero__title,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__chips,
  .hero__stats,
  .store-row {
    justify-content: center;
  }

  .hero__stats {
    flex-wrap: wrap;
  }

  .phone-stage {
    margin-top: 20px;
  }

  .phone {
    transform: none;
  }


  .pillars,
  .steps,
  .stories {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .d-none-mobile {
    display: none !important;
  }

  .d-none-desktop {
    display: block !important;
  }

  :root {
    --book-page: 300px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px 24px 24px;
    background: rgba(245, 250, 250, 0.98);
    border-bottom: 1px solid var(--border);
    align-items: stretch;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .brand__slogan-mini {
    display: none;
  }

  .nav__prefs {
    margin-left: 0;
    margin-right: auto;
  }

  .pref-toggle button {
    padding: 6px 9px;
  }

  .pillars,
  .steps,
  .stories,

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


.hero-banner {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 48px) 0 64px;
  background: linear-gradient(165deg, #0f2422 0%, #1a4a44 38%, #1e8278 72%, #2a6b5f 100%);
  color: rgba(255, 255, 255, 0.92);
  overflow: visible;
}

.hero-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
  z-index: 3;
}

.hero-banner__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 40%, rgba(58, 184, 172, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(154, 115, 68, 0.2), transparent 50%);
  pointer-events: none;
}

.hero-banner__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px;
  pointer-events: none;
}

.hero-banner__floats {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.hero-banner__floats li {
  position: absolute;
  font-size: 1.75rem;
  opacity: 0.22;
  filter: blur(0.2px);
  animation: float-drift 14s ease-in-out infinite;
}

.hero-banner__floats li:nth-child(1) {
  top: 18%;
  right: 12%;
  animation-delay: 0s;
}

.hero-banner__floats li:nth-child(2) {
  bottom: 22%;
  left: 8%;
  animation-delay: -4s;
}

.hero-banner__floats li:nth-child(3) {
  top: 42%;
  left: 42%;
  animation-delay: -8s;
}

@keyframes float-drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

.hero-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.28fr);
  gap: 40px clamp(24px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-banner__regions-hint {
  margin-top: 20px;
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-banner__eyebrow {
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.hero-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 16ch;
}

.hero-banner__inner--copy-focus .hero-banner__title {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
}

.hero-banner__inner--copy-focus .hero-banner__title em,
.hero-banner__inner--copy-focus .hero-banner__title .hero-banner__title-focus {
  display: block;
  margin-top: 0;
}

.hero-banner__inner--copy-focus .hero-banner__title em {
  font-weight: 500;
}

.hero-banner__inner--copy-focus .hero-banner__title .hero-banner__title-focus {
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
}

.hero-banner__lead {
  margin-top: 20px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}

.hero-banner__verse {
  margin-top: 16px;
  font-style: italic;
  color: rgba(197, 235, 230, 0.9);
  font-size: 1rem;
}

.hero-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-banner__note {
  margin-top: 16px;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.55);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1.0625rem;
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
  }
}


.hero-banner__phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  align-items: end;
  justify-items: center;
  width: 100%;
  max-width: min(100%, 820px);
  margin-inline: auto;
  padding: 4px 0 0;
}

.hero-device {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hero-device__region {
  margin: 0;
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.hero-device__session {
  max-width: 200px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.48);
}

.hero-device__model {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hero-device__frame {
  position: relative;
  width: 100%;
  max-width: 196px;
  aspect-ratio: 390 / 844;
  padding: 7px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(160deg, #6e6e73 0%, #3a3a3c 38%, #1c1c1e 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.hero-device--16 .hero-device__frame {
  max-width: 218px;
  padding: 8px;
  border-radius: 38px;
  background: linear-gradient(160deg, #48484a 0%, #2c2c2e 42%, #0a0a0c 100%);
}

.hero-device--17 .hero-device__frame {
  max-width: 204px;
  border-radius: 40px;
  background: linear-gradient(160deg, #d8d8dc 0%, #a1a1a6 35%, #636366 70%, #2c2c2e 100%);
}

.hero-device--center {
  z-index: 1;
}

.hero-device--center .hero-device__frame {
  max-width: 218px;
  padding: 8px;
}

.hero-device__island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 30%;
  max-width: 72px;
  height: 18px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
  pointer-events: none;
}

.hero-device--16 .hero-device__island {
  height: 20px;
  max-width: 78px;
}

.hero-device__time {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 4;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.hero-device--16 .hero-device__time {
  left: 16px;
  font-size: 11px;
}

.hero-device__screen {
  display: block;
  width: 100%;
  height: 106%;
  margin-top: -5%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  background: #0d1817;
}

.hero-device__frame--player {
  padding: 5px;
  background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 100%);
}

.hero-device__frame--player .hero-device__screen {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  background: #000;
}

.hero-device--16 .hero-device__frame--player .hero-device__screen {
  border-radius: 28px;
}

.hero-device--17 .hero-device__frame--player .hero-device__screen {
  border-radius: 29px;
}

@media (hover: hover) and (pointer: fine) {
  .hero-device--15 .hero-device__frame:hover {
    transform: rotate(-2deg) translateY(-4px);
  }

  .hero-device--17 .hero-device__frame:hover {
    transform: rotate(2deg) translateY(-4px);
  }

  .hero-device--center .hero-device__frame:hover {
    transform: translateY(-6px);
  }

  .hero-device__frame:hover {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2),
      0 22px 44px rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 1100px) {
  .hero-banner__phones {
    gap: 24px 36px;
    max-width: 920px;
  }

  .hero-device--15 .hero-device__frame {
    max-width: 210px;
  }

  .hero-device--16 .hero-device__frame {
    max-width: 210px;
  }

  .hero-device--17 .hero-device__frame {
    max-width: 216px;
  }

  .hero-device--center .hero-device__frame {
    max-width: 236px;
  }
}

.phone__region-badge {
  display: inline-block;
  margin-top: 28px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

.phone__card--bac {
  border-color: rgba(197, 160, 120, 0.35);
  background: linear-gradient(145deg, rgba(90, 70, 50, 0.35), rgba(255, 255, 255, 0.06));
}

.phone__card--trung {
  border-color: rgba(58, 184, 172, 0.35);
  background: linear-gradient(145deg, rgba(30, 90, 85, 0.4), rgba(255, 255, 255, 0.06));
}

.phone--nam .phone__card {
  border-color: rgba(58, 184, 172, 0.25);
}

.phone__voice {
  font-size: 0.7rem;
  color: var(--primary-light);
  margin-top: 6px;
}

.phone__card--compact {
  margin-top: 40px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-banner__phones .phone__card--compact {
  margin-top: 24px;
}


.page-floats {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 300;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.page-float {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary-dark);
  box-shadow: var(--shadow-hover);
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    background 0.2s,
    border-color 0.2s;
}

.page-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.92);
  pointer-events: none;
}

.page-float:not(.is-hidden) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .page-float:hover {
    background: var(--primary-soft);
    border-color: rgba(42, 154, 142, 0.35);
    color: var(--primary-dark);
  }
}

.page-float--top {
  background: var(--primary);
  color: var(--on-primary);
  border-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .page-float--top:hover {
    background: var(--primary-dark);
    color: var(--on-primary);
  }
}


.section--benefits {
  padding-top: var(--section-y);
  margin-top: 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

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

.benefit-card--illust {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card--illust:hover {
    transform: translateY(var(--lift-md));
    box-shadow: var(--shadow-hover);
  }
}

.benefit-card__media {
  position: relative;
  aspect-ratio: 4 / 2.65;
  overflow: hidden;
}

.benefit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card--illust:hover .benefit-card__media img {
    transform: scale(1.04);
  }
}

.benefit-card__media-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.benefit-card__body {
  padding: 20px 22px 24px;
}

.benefit-card__body h3 {
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  margin-bottom: 8px;
}

.benefit-card__body p {
  font-size: var(--text-small);
  color: var(--text-2);
  line-height: 1.6;
}


.section--regions {
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(42, 154, 142, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 35% at 90% 70%, rgba(154, 115, 68, 0.07), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}

/* Cascade so le — ảnh hoạt hình nổi, lệch nhịp */
.topic-cascade {
  --topic-accent: var(--primary);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  align-items: start;
  padding: 8px 4px 56px;
}

.topic-tile {
  --topic-accent: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 12px 12px 14px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--topic-accent) 28%, var(--border));
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 8px 22px rgba(17, 24, 28, 0.05);
  transition:
    transform 0.35s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

[data-theme='dark'] .topic-tile {
  background: rgba(22, 36, 34, 0.72);
  border-color: color-mix(in srgb, var(--topic-accent) 42%, rgba(58, 184, 172, 0.22));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.topic-tile--personal { --topic-accent: #3d7a72; }
.topic-tile--livelihood { --topic-accent: #9a7344; }
.topic-tile--family { --topic-accent: #3d6b8e; }
.topic-tile--healing { --topic-accent: #2a9a8e; }
.topic-tile--origin { --topic-accent: #8b5e3c; }
.topic-tile--love { --topic-accent: #8f5f63; }
.topic-tile--overthink { --topic-accent: #5c6b7a; }

@media (min-width: 901px) {
  .topic-cascade > :nth-child(3n + 1) {
    margin-top: 0;
  }

  .topic-cascade > :nth-child(3n + 2) {
    margin-top: 56px;
  }

  .topic-cascade > :nth-child(3n + 3) {
    margin-top: 28px;
  }

  .topic-tile--finale {
    grid-column: 2;
    margin-top: 12px;
    max-width: 100%;
  }
}

.topic-tile__art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--elevated, var(--surface));
  border: 1px solid color-mix(in srgb, var(--topic-accent) 18%, transparent);
  box-shadow: 0 10px 24px rgba(17, 24, 28, 0.08);
  transform: rotate(-1.2deg);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.topic-cascade > :nth-child(even) .topic-tile__art {
  transform: rotate(1.4deg);
}

.topic-cascade > :nth-child(3n) .topic-tile__art {
  transform: rotate(-0.6deg);
}

.topic-tile__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.topic-tile__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 24, 28, 0.42) 100%);
  pointer-events: none;
}

.topic-tile__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--topic-accent);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.topic-tile__copy {
  padding: 0 10px 4px;
}

.topic-tile__copy h3 {
  font-size: 1.2rem;
  font-weight: var(--weight-semibold);
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.topic-tile__copy p {
  margin: 0;
  font-size: var(--text-small);
  color: var(--text-2);
  line-height: 1.6;
}

.topic-tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.topic-tile__tags li {
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--topic-accent) 14%, transparent);
  color: var(--topic-accent);
  font-weight: var(--weight-medium);
}

@media (hover: hover) and (pointer: fine) {
  .topic-tile:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--topic-accent) 45%, var(--border));
    box-shadow: 0 14px 32px rgba(17, 24, 28, 0.1);
  }

  .topic-tile:hover .topic-tile__art {
    transform: rotate(0deg) translateY(-2px) scale(1.01);
    box-shadow: 0 14px 28px rgba(17, 24, 28, 0.12);
  }

  .topic-tile:hover .topic-tile__art img {
    transform: scale(1.03);
  }
}

[data-theme='dark'] .topic-tile__art {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  border-color: rgba(58, 184, 172, 0.22);
}

[data-theme='dark'] .topic-tile__tags li {
  background: color-mix(in srgb, var(--topic-accent) 28%, transparent);
  color: var(--primary-light);
}

[data-theme='dark'] .topic-tile--livelihood .topic-tile__tags li,
[data-theme='dark'] .topic-tile--origin .topic-tile__tags li,
[data-theme='dark'] .topic-tile--love .topic-tile__tags li,
[data-theme='dark'] .topic-tile--family .topic-tile__tags li,
[data-theme='dark'] .topic-tile--overthink .topic-tile__tags li {
  color: #e8eeed;
}

@media (max-width: 900px) {
  .topic-cascade {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    padding-bottom: 24px;
  }

  .topic-cascade > :nth-child(even) {
    margin-top: 36px;
  }

  .topic-tile--finale {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 8px auto 0;
  }
}

@media (max-width: 560px) {
  .topic-cascade {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 360px;
    margin-inline: auto;
  }

  .topic-cascade > :nth-child(even),
  .topic-cascade > :nth-child(3n + 2),
  .topic-cascade > :nth-child(3n + 3) {
    margin-top: 0;
  }

  .topic-tile--finale {
    max-width: none;
    margin: 0;
  }

  .topic-tile__art {
    transform: rotate(0) !important;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topic-tile__art,
  .topic-tile__art img {
    transition: none;
  }

  .topic-tile__art,
  .topic-cascade > :nth-child(even) .topic-tile__art,
  .topic-cascade > :nth-child(3n) .topic-tile__art {
    transform: none;
  }
}

/* Legacy region-grid helpers (nếu còn chỗ khác dùng) */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.region-card--bac {
  --region-accent: #3d6b8e;
}

.region-card--trung {
  --region-accent: #9a7344;
}

.region-card--nam {
  --region-accent: #2a9a8e;
}


.life-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.35fr;
  gap: 40px 48px;
  align-items: start;
}

.life-collage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover-lg);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.life-collage__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.life-collage__tile {
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.life-collage__tile--1 {
  top: 12%;
  right: 6%;
}

.life-collage__tile--2 {
  bottom: 22%;
  left: 6%;
}

.life-collage__tile--3 {
  bottom: 8%;
  right: 10%;
  width: 24%;
}

.life-collage__caption {
  margin-top: 14px;
  font-size: var(--text-small);
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--text-2);
  text-align: center;
}

.life-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.life-strip__fig {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.life-strip__fig img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.life-strip__fig figcaption {
  padding: 10px 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-2);
  font-style: italic;
  font-family: var(--font-serif);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.life-card--illust {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .life-card--illust:hover {
    transform: translateY(var(--lift-sm));
    box-shadow: var(--shadow-hover);
  }
}

.life-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.life-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .life-card--illust:hover .life-card__thumb img {
    transform: scale(1.05);
  }
}

.life-card__content {
  padding: 16px 18px 20px;
}

.life-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.life-card__content h3 {
  font-size: 1.0625rem;
  font-weight: var(--weight-semibold);
  margin-bottom: 6px;
}

.life-card__content p {
  font-size: var(--text-small);
  color: var(--text-2);
  line-height: 1.55;
}


.section--listen {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.listen-panel {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 20px 24px 20px 20px;
}

.listen-panel__visual {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  min-height: 0;
}

.listen-panel__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.listen-panel__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 28, 0.55) 0%, transparent 48%);
}

.listen-panel__visual-tag {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  color: #fff;
  font-style: italic;
  font-family: var(--font-serif);
  max-width: none;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listen-panel__content {
  padding: 8px 8px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.listen-strip--inset {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.listen-strip--inset .listen-strip__player.card {
  padding: 18px 18px 14px;
}

.listen-strip--inset .listen-strip__player.card:hover {
  transform: none;
}

.listen-strip--inset:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .listen-strip__player.is-playing .listen-strip__waves span {
    animation: none;
  }
}


.section--explore {
  background: var(--bg);
}

.explore-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
}

.explore-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 140px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .explore-tile:hover {
    transform: translateY(var(--lift-sm));
    box-shadow: var(--shadow-hover);
  }
}

.explore-tile--hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 300px;
}

.explore-tile__bg {
  position: absolute;
  inset: 0;
}

.explore-tile__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .explore-tile:hover .explore-tile__bg img {
    transform: scale(1.05);
  }
}

.explore-tile__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 28, 0.82) 0%, rgba(17, 24, 28, 0.25) 55%, rgba(17, 24, 28, 0.15) 100%);
}

.explore-tile__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  color: #fff;
}

.explore-tile__inner h3 {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  margin-bottom: 4px;
  color: #fff;
}

.explore-tile__inner p {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.explore-tile--hero .explore-tile__inner h3 {
  font-size: 1.35rem;
}

.explore-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}

.explore-tile--compact {
  background: var(--surface);
}

.explore-tile--compact.explore-tile--img {
  background: transparent;
}

.explore-tile__inner--solid {
  justify-content: center;
  color: var(--text);
  height: 100%;
  padding: 22px 18px;
}

.explore-tile__inner--solid h3 {
  color: var(--text);
}

.explore-tile__inner--solid p {
  color: var(--text-2);
}

.explore-tile__inner--solid .explore-tile__icon {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.section-cta-row {
  text-align: center;
  margin-top: 40px;
}


.social-bar {
  padding: 40px 0;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
}

.social-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  text-align: center;
  font-size: 1rem;
}

.social-bar strong {
  color: #fff;
  font-weight: var(--weight-semibold);
}

@media (max-width: 1024px) {
  .hero-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-banner__title,
  .hero-banner__lead {
    margin-inline: auto;
  }

  .hero-banner__cta {
    justify-content: center;
  }

  .hero-banner__regions-hint {
    margin-top: 16px;
  }

  .hero-banner {
    padding-bottom: 48px;
  }

  .hero-banner::after {
    height: 32px;
  }

  .hero-banner__phones {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 8px 12px 16px;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hero-device {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .hero-device--15 .hero-device__frame,
  .hero-device--17 .hero-device__frame {
    max-width: min(56vw, 196px);
  }

  .hero-device--center .hero-device__frame {
    max-width: min(62vw, 220px);
  }

  .hero-device__frame {
    transform: none !important;
  }

  .benefit-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .life-layout {
    grid-template-columns: 1fr;
  }

  .life-collage {
    max-height: 360px;
  }

  .life-strip {
    grid-template-columns: 1fr;
  }

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

  .listen-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }

  .listen-panel__content {
    padding: 0;
  }

  .listen-panel__visual {
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .listen-panel__visual img {
    min-height: 0;
  }

  .explore-bento {
    grid-template-columns: 1fr 1fr;
  }

  .explore-tile--hero {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .life-grid,
  .explore-bento {
    grid-template-columns: 1fr;
  }

  .explore-tile--hero {
    grid-column: span 1;
    min-height: 220px;
  }

  .life-collage__tile {
    width: 22%;
  }

  .hero-device {
    flex: 0 0 auto;
  }

  .page-floats {
    right: 12px;
    bottom: 12px;
  }

  .page-float {
    width: 42px;
    height: 42px;
  }

  .social-bar__inner {
    flex-direction: column;
    gap: 16px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .card,
  .pillar,
  .fcard,
  .step,
  .faq__item,
  .cta,
  .listen-strip,
  .mobile-card,
  .book-window,
  .chip,
  .phone,
  .pillar__icon,
  .fcard__icon,
  .step::before,
  .listen-strip__icon,
  .cta__logo,
  .hub-player {
    transition-duration: 0.01ms !important;
  }

  @media (hover: hover) and (pointer: fine) {
    .card:hover,
    .pillar:hover,
    .fcard:hover,
    .fcard--hub:hover,
    .step:hover,
    .faq__item:hover,
    .cta:hover,
    .listen-strip:hover,
    .mobile-card:hover,
    .book-window:hover,
    .chip:hover,
    .phone:hover {
      transform: none;
    }

    .pillar:hover .pillar__icon,
    .fcard:hover .fcard__icon,
    .step:hover::before,
    .cta:hover .cta__logo {
      transform: none;
    }

    .hero-banner__floats li {
      animation: none;
    }
  }
}


.hero-banner__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-banner__pills li,
.hero-banner__pill {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    filter 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

/* Nghe — xanh ngọc (âm thanh / dòng chảy) */
.hero-banner__pill--nghe {
  background: linear-gradient(165deg, rgba(86, 210, 198, 0.55), rgba(36, 148, 138, 0.72));
  border-color: rgba(170, 245, 235, 0.42);
  box-shadow:
    0 8px 18px rgba(18, 95, 88, 0.38),
    0 2px 6px rgba(12, 60, 55, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-banner__pill--nghe:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.08);
  border-color: rgba(200, 255, 245, 0.55);
  box-shadow:
    0 14px 28px rgba(18, 110, 100, 0.45),
    0 4px 10px rgba(12, 70, 65, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

/* Niệm — hổ phách ấm (lời niệm / trà) */
.hero-banner__pill--niem {
  background: linear-gradient(165deg, rgba(232, 178, 98, 0.58), rgba(186, 118, 48, 0.74));
  border-color: rgba(255, 220, 160, 0.45);
  box-shadow:
    0 8px 18px rgba(120, 70, 20, 0.36),
    0 2px 6px rgba(80, 45, 10, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-banner__pill--niem:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.08);
  border-color: rgba(255, 230, 180, 0.58);
  box-shadow:
    0 14px 28px rgba(130, 78, 22, 0.44),
    0 4px 10px rgba(90, 50, 12, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

/* Thở — xanh lá dịu (hơi thở / lá) */
.hero-banner__pill--tho {
  background: linear-gradient(165deg, rgba(132, 196, 132, 0.55), rgba(62, 138, 78, 0.72));
  border-color: rgba(190, 240, 190, 0.42);
  box-shadow:
    0 8px 18px rgba(40, 95, 50, 0.36),
    0 2px 6px rgba(25, 60, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-banner__pill--tho:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.08);
  border-color: rgba(210, 255, 210, 0.55);
  box-shadow:
    0 14px 28px rgba(45, 110, 58, 0.44),
    0 4px 10px rgba(28, 70, 35, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

/* Ngủ — xanh đêm dịu (giấc ngủ) */
.hero-banner__pill--ngu {
  background: linear-gradient(165deg, rgba(120, 148, 210, 0.58), rgba(62, 88, 158, 0.74));
  border-color: rgba(180, 200, 245, 0.42);
  box-shadow:
    0 8px 18px rgba(35, 55, 110, 0.4),
    0 2px 6px rgba(20, 35, 70, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-banner__pill--ngu:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.08);
  border-color: rgba(200, 215, 255, 0.55);
  box-shadow:
    0 14px 28px rgba(40, 65, 130, 0.48),
    0 4px 10px rgba(22, 40, 85, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__pills li,
  .hero-banner__pill {
    transition: none;
  }

  .hero-banner__pill--nghe:hover,
  .hero-banner__pill--niem:hover,
  .hero-banner__pill--tho:hover,
  .hero-banner__pill--ngu:hover {
    transform: none;
  }
}

.section--mission {
  position: relative;
  padding-top: calc(var(--section-y) - 4px);
  padding-bottom: calc(var(--section-y) - 8px);
  overflow: clip;
  background:
    radial-gradient(ellipse 72% 55% at 18% 12%, rgba(69, 179, 164, 0.16), transparent 62%),
    radial-gradient(ellipse 55% 48% at 88% 78%, rgba(154, 115, 68, 0.08), transparent 58%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-2) 70%, transparent) 0%, var(--bg) 100%);
}

.section--mission::before {
  content: '';
  position: absolute;
  inset: auto 8% -18% auto;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 143, 130, 0.1), transparent 68%);
  pointer-events: none;
}

[data-theme='dark'] .section--mission {
  background:
    radial-gradient(ellipse 72% 55% at 18% 12%, rgba(58, 184, 172, 0.12), transparent 62%),
    radial-gradient(ellipse 55% 48% at 88% 78%, rgba(154, 115, 68, 0.07), transparent 58%),
    linear-gradient(180deg, #0e1514 0%, var(--bg) 100%);
}

[data-theme='dark'] .section--mission::before {
  background: radial-gradient(circle, rgba(58, 184, 172, 0.1), transparent 68%);
}

.mission {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(36px, 5vw, 56px);
}

.mission__header {
  max-width: 40rem;
}

.mission__title {
  max-width: 18ch;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
}

.mission__title em {
  display: block;
  margin-top: 0.12em;
  font-style: normal;
  font-weight: 500;
  color: var(--primary-dark);
}

[data-theme='dark'] .mission__title em {
  color: #7fd4cb;
}

.mission__lead {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-2);
}

.mission__note {
  margin: 12px 0 0;
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-3);
}

.mission__pillars {
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, var(--primary) 20%);
}

.mission-pillar {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 8px clamp(16px, 2.2vw, 28px) 4px;
  background: transparent;
  border: 0;
}

.mission-pillar + .mission-pillar {
  border-left: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
}

.mission-pillar__index {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--primary) 70%, var(--text-3));
}

.mission-pillar__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.55), transparent 55%),
    var(--primary-soft);
  color: var(--primary-dark);
  box-shadow: 0 8px 22px rgba(47, 143, 130, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

[data-theme='dark'] .mission-pillar__icon {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(58, 184, 172, 0.14);
  color: #7fd4cb;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.mission-pillar h3 {
  margin: 2px 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.mission-pillar p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-2);
}

@media (hover: hover) and (pointer: fine) {
  .mission-pillar:hover .mission-pillar__icon {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 28px rgba(47, 143, 130, 0.18);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mission.reveal .mission-pillar {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.55s var(--ease),
      transform 0.55s var(--ease);
  }

  .mission.reveal.is-visible .mission-pillar {
    opacity: 1;
    transform: none;
  }

  .mission.reveal.is-visible .mission-pillar:nth-child(1) {
    transition-delay: 0.08s;
  }

  .mission.reveal.is-visible .mission-pillar:nth-child(2) {
    transition-delay: 0.16s;
  }

  .mission.reveal.is-visible .mission-pillar:nth-child(3) {
    transition-delay: 0.24s;
  }
}

.section--policy {
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, color-mix(in srgb, var(--primary-soft) 90%, transparent), transparent 68%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.policy-card {
  --policy-delay: 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 26px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 96%, var(--primary-soft) 4%);
  border: 1.5px solid color-mix(in srgb, var(--border) 78%, var(--primary) 22%);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  transition-delay: var(--policy-delay);
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.55;
}

@media (hover: hover) and (pointer: fine) {
  .policy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: color-mix(in srgb, var(--border) 55%, var(--primary) 45%);
  }

  .policy-card:hover .policy-card__icon {
    background: color-mix(in srgb, var(--primary-soft) 70%, var(--primary) 30%);
    color: var(--primary-dark);
    transform: scale(1.04);
  }
}

.policy-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.policy-card__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent);
  box-shadow: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.policy-card__icon svg {
  display: block;
  stroke-width: 2;
}

.policy-card__index {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--primary-dark) 70%, var(--text-3) 30%);
  opacity: 0.72;
}

[data-theme='dark'] .policy-card {
  background: color-mix(in srgb, var(--surface) 92%, #0a1210 8%);
  border-color: color-mix(in srgb, var(--border) 70%, var(--primary) 30%);
}

[data-theme='dark'] .policy-card__icon {
  background: rgba(58, 184, 172, 0.16);
  color: #7fd4cb;
  border-color: rgba(58, 184, 172, 0.32);
}

.policy-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
}

.policy-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-2);
  flex: 1;
}

.policy-footnote {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  padding: 0.85rem 1.15rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-3);
  display: flex;
  gap: 0.65rem 0.85rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 85%, var(--primary) 15%);
  background: color-mix(in srgb, var(--surface) 82%, var(--primary-soft) 18%);
}

.policy-footnote__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 55%, transparent);
}

.policy-footnote a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
}

.policy-footnote a:hover {
  color: var(--primary-dark, #1f6b62);
}

[data-theme='dark'] .policy-footnote {
  background: color-mix(in srgb, var(--surface) 86%, #1a4a44 14%);
  border-color: rgba(58, 184, 172, 0.22);
}

.explore-bento--companion .explore-tile--hero .explore-tile__inner h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 960px) {
  .mission__title {
    max-width: none;
  }

  .mission__pillars {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
  }

  .mission-pillar {
    padding: 0;
  }

  .mission-pillar + .mission-pillar {
    border-left: 0;
    padding-top: 22px;
    border-top: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  }

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

@media (max-width: 640px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner__pills {
    margin-top: 14px;
  }

  .hero-banner__pills li {
    font-size: 0.75rem;
    padding: 7px 12px;
  }
}

/* —— LP conversion: download CTAs, product, moments, legal —— */
.hero-banner__inner--copy-focus {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.hero-banner__inner--copy-focus .hero-banner__copy {
  margin-inline: auto;
}

.hero-banner__inner--copy-focus .hero-banner__cta,
.hero-banner__inner--copy-focus .lp-download {
  justify-content: center;
}

.lp-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.lp-download--hero {
  margin-top: 0;
}

.lp-download--listen {
  margin-top: 1.25rem;
}

.lp-download--final {
  justify-content: center;
  margin-top: 1.25rem;
}

.lp-download .btn.is-pending,
.btn.is-pending {
  opacity: 0.88;
  cursor: not-allowed;
  filter: none;
}

.lp-download__android {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.35rem 0.25rem;
}

.lp-download--listen .lp-download__android,
.lp-download--final .lp-download__android {
  color: var(--text-2);
}

.cta .lp-download__android {
  color: var(--text-2);
}

.lp-product {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .lp-product {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 3rem;
  }
}

.lp-product__pillars {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.lp-product__pillars li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface, #fff) 92%, var(--primary) 8%);
}

.lp-product__pillars strong {
  font-size: 0.95rem;
  color: var(--primary-dark, #1f6b62);
}

.lp-product__pillars span {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.45;
}

.lp-product__phones {
  max-width: 100%;
}

.moments-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 700px) {
  .moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1rem;
    padding-bottom: 1.25rem;
  }

  .moments-grid .moment-card:nth-child(even) {
    transform: translateY(0.9rem);
  }
}

@media (min-width: 1000px) {
  .moments-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    padding-bottom: 1.75rem;
  }

  .moments-grid .moment-card:nth-child(even) {
    transform: translateY(1.15rem);
  }
}

.moment-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface, #fff);
  box-shadow: var(--shadow-soft, 0 8px 24px rgba(0, 0, 0, 0.04));
  transition: transform 0.28s var(--ease, ease), box-shadow 0.28s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
  .moment-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover, 0 12px 28px rgba(0, 0, 0, 0.08));
  }

  .moments-grid .moment-card:nth-child(even):hover {
    transform: translateY(calc(0.9rem - 3px));
  }

  @media (min-width: 1000px) {
    .moments-grid .moment-card:nth-child(even):hover {
      transform: translateY(calc(1.15rem - 3px));
    }
  }

  .moment-card:hover .moment-card__thumb img {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .moments-grid .moment-card:nth-child(even),
  .moments-grid .moment-card:nth-child(even):hover {
    transform: none;
  }
}

.moment-card__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: color-mix(in srgb, var(--primary-soft, #d8ebe6) 70%, #fff);
}

.moment-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s var(--ease, ease);
}

.moment-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.moment-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.moment-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-2);
}

/* Cam kết — lưới 2×2 cân đều (không waterfall lệch cột) */
.policy-grid--compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 420px;
}

.policy-grid--compact .policy-card {
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 11.5rem;
}

@media (min-width: 720px) {
  .policy-grid--compact {
    max-width: 820px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
  }
}

@media (min-width: 1100px) {
  .policy-grid--compact {
    max-width: 920px;
    gap: 1.25rem 1.4rem;
  }
}

.sponsor-panel {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface, #fff) 88%, #2f8f82 12%);
}

.sponsor-panel .section__title {
  margin-bottom: 0.75rem;
}

.sponsor-panel .btn {
  margin-top: 1rem;
}

.section--socials-slim {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--section-y) - 4px);
  padding-bottom: calc(var(--section-y) - 4px);
  background:
    radial-gradient(ellipse 68% 42% at 50% 8%, rgba(42, 154, 142, 0.12), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.socials-slim-panel {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.1rem, 3vw, 2rem) clamp(1.6rem, 3.5vw, 2.35rem);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--border) 82%, var(--primary) 18%);
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(69, 179, 164, 0.12), transparent 52%),
    radial-gradient(90% 70% at 100% 100%, rgba(154, 115, 68, 0.07), transparent 48%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.socials-slim-panel .section__head {
  margin-bottom: 0.35rem;
}

.socials-slim-panel .section__desc {
  margin-inline: auto;
}

.section--socials-slim .social-icons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.7rem;
  margin: 1.35rem 0 0;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 0.95rem 0.55rem 0.65rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  background: color-mix(in srgb, var(--elevated, var(--surface)) 88%, transparent);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  transition:
    border-color 0.22s var(--ease, ease),
    background 0.22s var(--ease, ease),
    transform 0.22s var(--ease, ease),
    box-shadow 0.22s var(--ease, ease);
}

.social-icon-link__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-soft) 75%, transparent);
  color: var(--primary-dark, #1f6b62);
  flex-shrink: 0;
}

.social-icon-link__label {
  white-space: nowrap;
}

.social-icon-link:hover {
  border-color: color-mix(in srgb, var(--primary) 42%, var(--border));
  background: color-mix(in srgb, var(--surface) 70%, var(--primary-soft) 30%);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(28, 54, 48, 0.08);
}

.social-icon-link--facebook:hover .social-icon-link__mark {
  background: rgba(24, 119, 242, 0.16);
  color: #1877f2;
}

.social-icon-link--youtube:hover .social-icon-link__mark {
  background: rgba(255, 0, 0, 0.12);
  color: #e11d2e;
}

.social-icon-link--tiktok:hover .social-icon-link__mark {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text);
}

.social-icon-link--instagram:hover .social-icon-link__mark {
  background: rgba(193, 53, 132, 0.14);
  color: #c13584;
}

.social-icon-link--x:hover .social-icon-link__mark {
  background: rgba(15, 20, 25, 0.1);
  color: #0f1419;
}

[data-theme='dark'] .social-icon-link--x:hover .social-icon-link__mark {
  background: rgba(255, 255, 255, 0.12);
  color: #e7e9ea;
}

.socials-slim-cta {
  margin-top: 1.55rem;
  padding-top: 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.socials-slim-cta__btn {
  min-width: min(100%, 280px);
  justify-content: center;
}

.socials-slim-cta__hint {
  margin: 0;
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-2);
}

[data-theme='dark'] .socials-slim-panel {
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(58, 184, 172, 0.14), transparent 52%),
    radial-gradient(90% 70% at 100% 100%, rgba(154, 115, 68, 0.08), transparent 48%),
    color-mix(in srgb, var(--surface) 92%, #1a4a44 8%);
  border-color: rgba(58, 184, 172, 0.22);
  box-shadow: none;
}

[data-theme='dark'] .social-icon-link {
  background: color-mix(in srgb, var(--surface) 86%, #000 14%);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .social-icon-link:hover {
  background: color-mix(in srgb, var(--surface) 70%, rgba(58, 184, 172, 0.18));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

[data-theme='dark'] .social-icon-link__mark {
  background: rgba(58, 184, 172, 0.16);
  color: #7fd4c8;
}

[data-theme='dark'] .socials-slim-cta {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .section--socials-slim .social-icons-row {
    gap: 0.55rem;
  }

  .social-icon-link {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: flex-start;
    max-width: calc(50% - 0.28rem);
  }

  .social-icon-link__label {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Community minutes — same metric as app GlobalCounterBlock */
.section--community-minutes {
  padding-top: 0.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.community-minutes {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.community-minutes__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary, #2a9a8e);
}

.community-minutes__title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink, var(--text));
}

.community-minutes__card {
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border, rgba(45, 106, 90, 0.14)));
  background: var(--surface, #fff);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 10px 28px rgba(17, 24, 28, 0.07),
    0 3px 8px rgba(17, 24, 28, 0.04);
}

.community-minutes__number-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.community-minutes__odometer {
  --cm-digit-h: 1.08em;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.06em;
  font-size: clamp(2.6rem, 7vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink, var(--text));
  min-height: var(--cm-digit-h);
}

.community-minutes__odometer-fallback {
  display: inline-block;
  line-height: var(--cm-digit-h);
}

.community-minutes__digit {
  position: relative;
  display: inline-block;
  width: 0.74em;
  height: var(--cm-digit-h);
  overflow: hidden;
  vertical-align: bottom;
}

.community-minutes__digit--sep {
  width: 0.32em;
  overflow: visible;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 700;
  opacity: 0.72;
}

.community-minutes__digit-reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.community-minutes__digit-reel span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--cm-digit-h);
  width: 100%;
}

.community-minutes__unit {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.2rem;
  color: var(--muted, var(--text-2));
}

@media (prefers-reduced-motion: reduce) {
  .community-minutes__digit-reel {
    transition: none;
  }
}

.community-minutes__subtitle {
  margin: 0.55rem 0 1.15rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted, var(--text-2));
}

.community-minutes__share {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ink, #1a2a28) 12%, transparent);
  background: color-mix(in srgb, var(--ink, #1a2a28) 5%, transparent);
  color: var(--ink, var(--text));
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease, ease),
    background 0.2s var(--ease, ease),
    box-shadow 0.2s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
  .community-minutes__share:hover {
    transform: translateY(-2px);
    background: color-mix(in srgb, var(--primary-soft, #d8efe9) 55%, transparent);
    box-shadow: 0 8px 20px rgba(17, 24, 28, 0.1);
  }
}

.community-minutes__share:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

[data-theme='dark'] .community-minutes__card {
  background: rgba(22, 36, 34, 0.92);
  border-color: rgba(58, 184, 172, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 22px 48px rgba(0, 0, 0, 0.28);
}

[data-theme='dark'] .community-minutes__share {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .community-minutes__share {
    transition: none;
  }

  .community-minutes__share:hover {
    transform: none;
  }
}

.legal-page {
  padding: 6rem 0 4rem;
  min-height: 60vh;
}

.legal-page__inner {
  max-width: 720px;
}

.legal-page__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0.35rem 0 0.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.legal-page__updated {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--text-3, var(--text-2));
}

.legal-page__body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-page__body h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.legal-page__body ul,
.legal-page__body ol {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal-page__body li {
  margin-bottom: 0.4rem;
}

.legal-page__back {
  margin-top: 2.5rem;
}

.legal-page__back a {
  color: var(--primary-dark, #1f6b62);
  font-weight: 500;
}

[data-theme='dark'] .moment-card,
[data-theme='dark'] .lp-product__pillars li {
  background: color-mix(in srgb, var(--surface) 92%, #000 8%);
}

[data-theme='dark'] .sponsor-panel {
  background: color-mix(in srgb, var(--surface) 80%, #2f8f82 20%);
}

[data-theme='dark'] .lp-download--hero .lp-download__android {
  color: rgba(255, 255, 255, 0.62);
}

/* TestFlight download + QR */
.lp-download {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.lp-download__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.lp-download--hero .lp-download__actions {
  justify-content: center;
}

.lp-download__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  max-width: 140px;
}

.lp-download__qr img {
  width: 112px;
  height: 112px;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lp-download__qr p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.lp-download--final .lp-download__qr p,
.lp-download--listen .lp-download__qr p {
  color: var(--text-2);
}

.lp-download--final .lp-download__qr img,
.cta .lp-download__qr img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .lp-download__qr.d-none-mobile {
    display: none !important;
  }
}

.lp-product__pillars-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
  font-weight: 600;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #1a4a44;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

/* Product showcase — large phone row, light so-le, responsive */
.section--product {
  position: relative;
  overflow: clip;
}

.section--product .container {
  width: min(1240px, 100% - 32px);
}

.lp-feature-grid {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0.5rem 0 2.25rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 78vw);
  gap: 1.35rem;
  max-width: none;
  align-items: start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-inline: 0.25rem;
}

.lp-feature-tile {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  scroll-snap-align: center;
}

.lp-feature-tile:nth-child(even) {
  transform: translateY(1rem);
}

.lp-feature-tile__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.lp-feature-tile__glow {
  position: absolute;
  width: min(100%, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  filter: blur(2px);
  background: radial-gradient(circle, rgba(47, 143, 130, 0.28), transparent 68%);
}

.lp-feature-tile--listen .lp-feature-tile__glow {
  background: radial-gradient(circle, rgba(212, 154, 88, 0.3), transparent 68%);
}

.lp-feature-tile--mantra .lp-feature-tile__glow {
  background: radial-gradient(circle, rgba(212, 180, 96, 0.26), transparent 68%);
}

.lp-feature-tile--breath .lp-feature-tile__glow {
  background: radial-gradient(circle, rgba(72, 170, 180, 0.28), transparent 68%);
}

.lp-feature-tile--sleep .lp-feature-tile__glow {
  background: radial-gradient(circle, rgba(88, 120, 180, 0.26), transparent 68%);
}

.lp-feature-tile__phone {
  position: relative;
  z-index: 1;
  width: min(100%, 220px);
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(160deg, #5a5a5e 0%, #2a2a2e 45%, #0e0e10 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 48px rgba(8, 16, 14, 0.35);
  transition: transform 0.35s var(--ease, ease);
}

.lp-feature-tile__island {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 3;
  width: 36%;
  max-width: 78px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
  pointer-events: none;
}

.lp-feature-tile__phone img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 28px;
  background: #0b1210;
}

.lp-feature-tile__copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: center;
  align-items: center;
  padding: 0 0.2rem;
}

.lp-feature-tile__copy h3,
.lp-feature-tile__pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-pill, 999px);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 18px rgba(18, 40, 36, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.lp-feature-tile__pill--nghe {
  background: linear-gradient(165deg, rgba(86, 210, 198, 0.92), rgba(36, 148, 138, 0.96));
  border-color: rgba(170, 245, 235, 0.55);
  box-shadow:
    0 8px 18px rgba(18, 95, 88, 0.28),
    0 2px 6px rgba(12, 60, 55, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.lp-feature-tile__pill--tho {
  background: linear-gradient(165deg, rgba(132, 196, 132, 0.92), rgba(62, 138, 78, 0.96));
  border-color: rgba(190, 240, 190, 0.55);
  box-shadow:
    0 8px 18px rgba(40, 95, 50, 0.26),
    0 2px 6px rgba(25, 60, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.lp-feature-tile__pill--ngu {
  background: linear-gradient(165deg, rgba(120, 148, 210, 0.92), rgba(62, 88, 158, 0.96));
  border-color: rgba(180, 200, 245, 0.55);
  box-shadow:
    0 8px 18px rgba(35, 55, 110, 0.28),
    0 2px 6px rgba(20, 35, 70, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.lp-feature-tile__pill--niem {
  background: linear-gradient(165deg, rgba(232, 178, 98, 0.94), rgba(186, 118, 48, 0.96));
  border-color: rgba(255, 220, 160, 0.55);
  box-shadow:
    0 8px 18px rgba(120, 70, 20, 0.26),
    0 2px 6px rgba(80, 45, 10, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.lp-feature-tile__copy p {
  margin: 0;
  max-width: 20ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-2);
}

/* Tablet / desktop: one clear row of large phones */
@media (min-width: 900px) {
  .lp-feature-grid {
    grid-auto-flow: unset;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
    max-width: 1180px;
    margin-inline: auto;
    overflow: visible;
    scroll-snap-type: none;
    padding-inline: 0;
    padding-bottom: 2.75rem;
  }

  .lp-feature-tile {
    scroll-snap-align: unset;
    min-width: 0;
    gap: 1.15rem;
  }

  .lp-feature-tile:nth-child(even) {
    transform: translateY(1.35rem);
  }

  .lp-feature-tile__phone {
    width: min(100%, 236px);
  }

  .lp-feature-tile__copy h3,
  .lp-feature-tile__pill {
    font-size: 1rem;
    min-height: 2.25rem;
    padding: 0.45rem 1.25rem;
  }

  .lp-feature-tile__copy p {
    font-size: 0.98rem;
    max-width: 22ch;
  }
}

@media (min-width: 1200px) {
  .lp-feature-grid {
    gap: 1.75rem 1.5rem;
  }

  .lp-feature-tile__phone {
    width: min(100%, 255px);
    padding: 11px;
    border-radius: 40px;
  }

  .lp-feature-tile__phone img {
    border-radius: 30px;
  }

  .lp-feature-tile__island {
    top: 17px;
    height: 19px;
    max-width: 84px;
  }

  .lp-feature-tile:nth-child(even) {
    transform: translateY(1.5rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .lp-feature-tile:hover .lp-feature-tile__phone {
    transform: translateY(-6px);
  }
}

[data-theme='dark'] .lp-feature-tile__pill {
  color: #fff;
}

[data-theme='dark'] .lp-feature-tile__glow {
  opacity: 0.45;
}

[data-theme='dark'] .lp-feature-tile__phone {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 52px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .lp-feature-tile,
  .lp-feature-tile__phone {
    transition: none;
    transform: none !important;
  }
}

.lp-product__pillars-note {
  text-align: center;
  margin-top: 1.25rem;
}

/* Companion moments — clean alternating editorial rows */
.companion-moments--sole {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}

.companion-moment {
  margin: 0;
  padding: 1.75rem 0;
  display: grid;
  gap: 1.15rem;
  align-items: center;
  grid-template-columns: 1fr;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.companion-moments--sole > .companion-moment:first-child {
  border-top: 0;
  padding-top: 0.35rem;
}

.companion-moments--sole > .companion-moment:last-child {
  padding-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .companion-moment {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    padding: 2.5rem 0;
  }

  .companion-moment--flip {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .companion-moment--flip .companion-moment__art {
    order: 2;
  }

  .companion-moment--flip .companion-moment__copy {
    order: 1;
    text-align: right;
    align-items: flex-end;
  }
}

.companion-moment__art {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, var(--primary-soft, #d8ebe6) 40%, #eef4f1);
  box-shadow: 0 12px 28px rgba(26, 74, 68, 0.08);
}

.companion-moment__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s var(--ease, ease);
}

.companion-moment__copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.15rem 0.1rem;
  align-items: flex-start;
}

.companion-moment__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text, #1a2e28);
}

.companion-moment__copy p {
  margin: 0;
  max-width: 36ch;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-2);
}

@media (hover: hover) and (pointer: fine) {
  .companion-moment:hover .companion-moment__art {
    box-shadow: 0 16px 34px rgba(26, 74, 68, 0.12);
  }

  .companion-moment:hover .companion-moment__art img {
    transform: scale(1.03);
  }
}

[data-theme='dark'] .companion-moment {
  border-top-color: color-mix(in srgb, var(--border) 55%, transparent);
}

[data-theme='dark'] .companion-moment__art {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

[data-theme='dark'] .companion-moment__copy h3,
[data-theme='dark'] .companion-moment__copy p {
  color: var(--text);
}

[data-theme='dark'] .companion-moment__copy p {
  color: var(--text-2);
}

@media (prefers-reduced-motion: reduce) {
  .companion-moment__art img {
    transform: none;
    transition: none;
  }
}

.policy-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark, #1f6b62);
}

/* —— 12 linh vật cảm xúc —— */
.section--spirits {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 70% 50% at 12% 18%, rgba(69, 179, 164, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(154, 115, 68, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 95%, rgba(47, 143, 130, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg-2) 65%, #fff) 100%);
}

[data-theme='dark'] .section--spirits {
  background:
    radial-gradient(ellipse 70% 50% at 12% 18%, rgba(58, 184, 172, 0.1), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(154, 115, 68, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #0e1514 100%);
}

.spirits-invite {
  margin: 0.85rem auto 0;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
  text-align: center;
}

.spirits-note {
  margin: 0.55rem auto 0;
  font-size: 0.82rem;
  color: var(--text-3);
  text-align: center;
}

.spirit-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.spirit-grid--garden {
  content-visibility: auto;
  contain-intrinsic-size: 1400px;
  gap: 1.1rem 0.9rem;
  padding-bottom: 1.25rem;
}

.spirit-grid--garden > li:nth-child(even) {
  margin-top: 1.35rem;
}

@media (min-width: 900px) {
  .spirit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .spirit-grid--garden {
    gap: 1.35rem 1.15rem;
    padding-bottom: 3rem;
  }

  .spirit-grid--garden > li:nth-child(even) {
    margin-top: 0;
  }

  .spirit-grid--garden > li:nth-child(4n + 1) {
    margin-top: 0.35rem;
  }

  .spirit-grid--garden > li:nth-child(4n + 2) {
    margin-top: 2.4rem;
  }

  .spirit-grid--garden > li:nth-child(4n + 3) {
    margin-top: 0.9rem;
  }

  .spirit-grid--garden > li:nth-child(4n + 4) {
    margin-top: 2.85rem;
  }
}

.spirit-card {
  --spirit-tint: rgba(47, 143, 130, 0.14);
  --spirit-ink: var(--primary-dark);
  --spirit-ring: rgba(47, 143, 130, 0.22);
  width: 100%;
  margin: 0;
  padding: 1.15rem 0.85rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--spirit-ring) 55%, transparent);
  background:
    radial-gradient(120% 90% at 50% 0%, var(--spirit-tint), transparent 62%),
    color-mix(in srgb, var(--surface, #fff) 94%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 10px 24px rgba(26, 74, 68, 0.08),
    0 2px 6px rgba(26, 74, 68, 0.04);
  cursor: pointer;
  color: inherit;
  font: inherit;
  min-height: 44px;
  transition:
    transform 0.35s var(--ease, ease),
    box-shadow 0.35s var(--ease, ease),
    border-color 0.35s var(--ease, ease),
    background 0.35s var(--ease, ease);
}

.spirit-card--mist { --spirit-tint: rgba(90, 168, 188, 0.2); --spirit-ink: #2f7588; --spirit-ring: rgba(90, 168, 188, 0.35); }
.spirit-card--earth { --spirit-tint: rgba(154, 115, 68, 0.18); --spirit-ink: #8a6235; --spirit-ring: rgba(154, 115, 68, 0.32); }
.spirit-card--ember { --spirit-tint: rgba(196, 122, 78, 0.18); --spirit-ink: #a05a32; --spirit-ring: rgba(196, 122, 78, 0.32); }
.spirit-card--sage { --spirit-tint: rgba(47, 143, 130, 0.18); --spirit-ink: #247569; --spirit-ring: rgba(47, 143, 130, 0.32); }
.spirit-card--sky { --spirit-tint: rgba(88, 148, 186, 0.18); --spirit-ink: #3d6f92; --spirit-ring: rgba(88, 148, 186, 0.32); }
.spirit-card--clay { --spirit-tint: rgba(176, 108, 96, 0.16); --spirit-ink: #945048; --spirit-ring: rgba(176, 108, 96, 0.3); }
.spirit-card--wind { --spirit-tint: rgba(110, 148, 142, 0.18); --spirit-ink: #4a726c; --spirit-ring: rgba(110, 148, 142, 0.32); }
.spirit-card--rose { --spirit-tint: rgba(176, 120, 128, 0.16); --spirit-ink: #8f5560; --spirit-ring: rgba(176, 120, 128, 0.3); }
.spirit-card--sand { --spirit-tint: rgba(176, 150, 104, 0.18); --spirit-ink: #8a7340; --spirit-ring: rgba(176, 150, 104, 0.32); }
.spirit-card--sun { --spirit-tint: rgba(196, 158, 78, 0.18); --spirit-ink: #927320; --spirit-ring: rgba(196, 158, 78, 0.32); }
.spirit-card--dusk { --spirit-tint: rgba(96, 128, 148, 0.18); --spirit-ink: #4a6780; --spirit-ring: rgba(96, 128, 148, 0.32); }
.spirit-card--night { --spirit-tint: rgba(74, 112, 132, 0.2); --spirit-ink: #3d5f78; --spirit-ring: rgba(74, 112, 132, 0.34); }

@media (hover: hover) and (pointer: fine) {
  .spirit-card:hover {
    transform: translateY(-8px) rotate(-0.4deg);
    border-color: color-mix(in srgb, var(--spirit-ink) 34%, transparent);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.65) inset,
      0 8px 16px rgba(26, 74, 68, 0.08),
      0 28px 52px rgba(26, 74, 68, 0.16);
  }

  .spirit-card:hover .spirit-card__art {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
      0 0 0 6px color-mix(in srgb, var(--spirit-tint) 65%, transparent),
      0 16px 32px color-mix(in srgb, var(--spirit-ink) 26%, transparent);
  }

  .spirit-grid--garden > li:nth-child(4n + 2) .spirit-card:hover,
  .spirit-grid--garden > li:nth-child(4n + 4) .spirit-card:hover {
    transform: translateY(-8px) rotate(0.45deg);
  }
}

.spirit-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.spirit-card__art {
  width: min(100%, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.72), transparent 55%),
    color-mix(in srgb, var(--spirit-tint) 70%, #fff);
  box-shadow:
    0 0 0 5px color-mix(in srgb, var(--spirit-tint) 55%, transparent),
    0 10px 22px rgba(26, 74, 68, 0.08);
  transition: transform 0.4s var(--ease, ease), box-shadow 0.4s var(--ease, ease);
}

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

.spirit-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

.spirit-card__emotion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--spirit-ink);
  background: color-mix(in srgb, var(--spirit-tint) 70%, #fff);
}

.spirit-card__name {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
}

.spirit-card__line {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 22ch;
}

@media (prefers-reduced-motion: no-preference) {
  .spirit-grid--garden.reveal .spirit-card {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease),
      box-shadow 0.35s var(--ease),
      border-color 0.35s var(--ease);
  }

  .spirit-grid--garden.reveal.is-visible .spirit-card {
    opacity: 1;
    transform: none;
  }

  .spirit-grid--garden.reveal.is-visible li:nth-child(1) .spirit-card { transition-delay: 0.04s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(2) .spirit-card { transition-delay: 0.08s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(3) .spirit-card { transition-delay: 0.12s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(4) .spirit-card { transition-delay: 0.16s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(5) .spirit-card { transition-delay: 0.2s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(6) .spirit-card { transition-delay: 0.24s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(7) .spirit-card { transition-delay: 0.28s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(8) .spirit-card { transition-delay: 0.32s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(9) .spirit-card { transition-delay: 0.36s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(10) .spirit-card { transition-delay: 0.4s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(11) .spirit-card { transition-delay: 0.44s; }
  .spirit-grid--garden.reveal.is-visible li:nth-child(12) .spirit-card { transition-delay: 0.48s; }
}

@media (prefers-reduced-motion: reduce) {
  .spirit-card,
  .spirit-card__art {
    transition: none;
  }
}

.spirit-sheet[hidden] {
  display: none !important;
}

.spirit-sheet {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: grid;
  place-items: end center;
}

.spirit-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 16, 0.52);
}

.spirit-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(92vh, 640px);
  overflow: auto;
  margin: 0;
  padding: 1.35rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  border-radius: 28px 28px 0 0;
  border: 1px solid color-mix(in srgb, var(--border) 70%, var(--primary) 30%);
  background: var(--surface, #fff);
  box-shadow:
    0 -4px 0 color-mix(in srgb, var(--primary-soft) 55%, transparent) inset,
    0 -20px 56px rgba(8, 20, 18, 0.28),
    0 24px 64px rgba(8, 20, 18, 0.18);
  text-align: center;
}

@media (min-width: 720px) {
  .spirit-sheet {
    place-items: center;
  }

  .spirit-sheet__panel {
    border-radius: 28px;
    margin: 1rem;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 18px 40px rgba(8, 20, 18, 0.22),
      0 40px 80px rgba(8, 20, 18, 0.28);
  }
}

.spirit-sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg-2, #e8f1ec) 80%, #fff);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 74, 68, 0.1);
  transition:
    transform 0.2s var(--ease, ease),
    box-shadow 0.2s var(--ease, ease),
    background 0.2s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
  .spirit-sheet__close:hover {
    transform: scale(1.06);
    background: color-mix(in srgb, var(--primary-soft) 55%, #fff);
    box-shadow: 0 8px 18px rgba(26, 74, 68, 0.16);
  }
}

.spirit-sheet__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.spirit-sheet__art {
  width: 148px;
  aspect-ratio: 1;
  margin: 0.35rem auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-soft);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--primary-soft) 70%, transparent),
    0 14px 32px rgba(26, 74, 68, 0.16);
}

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

.spirit-sheet__emotion {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.spirit-sheet__title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text);
}

.spirit-sheet__response {
  margin: 0 auto 1.25rem;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-2);
}

.spirit-sheet__session {
  margin: -0.5rem auto 1.1rem;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--primary-dark);
  font-weight: 600;
}

.spirit-sheet__picks-label {
  margin: 0 auto 0.45rem;
  max-width: 36ch;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-2);
  text-align: center;
}

.spirit-sheet__picks {
  list-style: none;
  margin: 0 auto 1rem;
  padding: 0;
  width: 100%;
  max-width: 36ch;
  display: grid;
  gap: 0.45rem;
}

.spirit-sheet__pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, var(--primary) 20%);
  background: color-mix(in srgb, var(--surface, #fff) 90%, var(--primary-soft) 10%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 20px rgba(26, 74, 68, 0.08);
  transition:
    transform 0.22s var(--ease, ease),
    box-shadow 0.22s var(--ease, ease),
    border-color 0.22s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
  .spirit-sheet__pick:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.4) inset,
      0 12px 28px rgba(26, 74, 68, 0.14);
  }
}

.spirit-sheet__pick--solo {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  padding: 0.95rem 1.05rem;
}

.spirit-sheet__pick--solo .spirit-sheet__pick-title {
  font-size: 1rem;
  text-align: center;
}

.spirit-sheet__pick--solo .spirit-sheet__pick-actions {
  justify-content: center;
}

.spirit-sheet__pick--solo .spirit-sheet__pick-play,
.spirit-sheet__pick--solo .spirit-sheet__pick-open {
  min-height: 44px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

.spirit-sheet__pick-title {
  flex: 1 1 auto;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  text-align: left;
}

.spirit-sheet__pick-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.spirit-sheet__pick-play,
.spirit-sheet__pick-open {
  min-height: 36px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.18s var(--ease, ease),
    box-shadow 0.18s var(--ease, ease),
    background 0.18s var(--ease, ease),
    border-color 0.18s var(--ease, ease),
    color 0.18s var(--ease, ease);
}

.spirit-sheet__pick-play {
  border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border));
  background: transparent;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(26, 74, 68, 0.06);
}

.spirit-sheet__pick-open {
  border: 1px solid transparent;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(26, 74, 68, 0.08);
}

@media (hover: hover) and (pointer: fine) {
  .spirit-sheet__pick-play:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary-soft) 55%, transparent);
    box-shadow: 0 6px 16px rgba(26, 74, 68, 0.14);
  }

  .spirit-sheet__pick-open:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--primary) 24%, transparent);
    box-shadow: 0 6px 16px rgba(26, 74, 68, 0.16);
  }
}

.spirit-sheet__pick-play:focus-visible,
.spirit-sheet__pick-open:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 55%, transparent);
  outline-offset: 2px;
}

.spirit-sheet__inline-player {
  margin: 0 auto 1rem;
  width: 100%;
  max-width: 36ch;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary-soft) 45%, transparent);
  box-shadow: 0 8px 20px rgba(26, 74, 68, 0.08);
}

.spirit-sheet__now-playing {
  margin: 0 0 0.45rem;
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.4;
}

.spirit-sheet__player-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.spirit-sheet__pause,
.spirit-sheet__dismiss {
  min-height: 40px;
  flex: 1 1 7.5rem;
}

.spirit-sheet__dismiss {
  color: var(--text-2);
}

.spirit-sheet__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.spirit-sheet__actions .btn {
  box-shadow: 0 6px 16px rgba(26, 74, 68, 0.1);
  transition:
    transform 0.2s var(--ease, ease),
    box-shadow 0.2s var(--ease, ease),
    background 0.2s var(--ease, ease),
    border-color 0.2s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
  .spirit-sheet__actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26, 74, 68, 0.18);
  }

  .spirit-sheet__actions .btn--primary:hover {
    box-shadow: 0 14px 32px rgba(26, 100, 90, 0.28);
  }
}

[data-theme='dark'] .spirit-card {
  background:
    radial-gradient(120% 90% at 50% 0%, var(--spirit-tint), transparent 62%),
    color-mix(in srgb, var(--surface) 88%, #0e1514 12%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 18px rgba(0, 0, 0, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.32);
}

@media (hover: hover) and (pointer: fine) {
  [data-theme='dark'] .spirit-card:hover {
    border-color: color-mix(in srgb, var(--spirit-ring) 70%, #fff 10%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 12px 24px rgba(0, 0, 0, 0.35),
      0 28px 56px rgba(0, 0, 0, 0.42),
      0 0 0 1px color-mix(in srgb, var(--spirit-ring) 40%, transparent);
  }

  [data-theme='dark'] .spirit-card:hover .spirit-card__art {
    box-shadow:
      0 0 0 6px color-mix(in srgb, var(--spirit-tint) 55%, transparent),
      0 18px 36px rgba(0, 0, 0, 0.45);
  }
}

[data-theme='dark'] .spirit-card__emotion {
  background: color-mix(in srgb, var(--spirit-tint) 45%, transparent);
  color: color-mix(in srgb, var(--spirit-ink) 40%, #eef4f3);
}

[data-theme='dark'] .spirit-sheet__panel {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--border) 60%, var(--primary) 40%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

[data-theme='dark'] .spirit-sheet__art {
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--primary) 22%, transparent),
    0 16px 36px rgba(0, 0, 0, 0.45);
}

[data-theme='dark'] .spirit-sheet__close {
  background: color-mix(in srgb, var(--surface) 70%, #0e1514 30%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

[data-theme='dark'] .spirit-sheet__pick {
  background: color-mix(in srgb, var(--surface) 82%, #0e1514 18%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 10px 24px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  [data-theme='dark'] .spirit-sheet__pick:hover {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 14px 32px rgba(0, 0, 0, 0.45);
  }

  [data-theme='dark'] .spirit-sheet__pick-play:hover,
  [data-theme='dark'] .spirit-sheet__pick-open:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }

  [data-theme='dark'] .spirit-sheet__actions .btn:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spirit-card,
  .spirit-card__art,
  .spirit-sheet__close,
  .spirit-sheet__pick,
  .spirit-sheet__pick-play,
  .spirit-sheet__pick-open,
  .spirit-sheet__actions .btn {
    transition: none;
  }

  .spirit-card:hover,
  .spirit-sheet__pick:hover,
  .spirit-sheet__actions .btn:hover {
    transform: none;
  }
}

body.spirit-sheet-open {
  overflow: hidden;
}

.listen-strip__player.is-loading [data-listen-status]::before {
  content: '';
}

/* —— Session web landing (/session/{slug}) —— */
.session-web {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  padding: 88px 14px 56px;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(69, 179, 164, 0.12), transparent 62%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-2) 55%, transparent) 0%, var(--bg) 100%);
}

.session-web__wrap {
  width: min(100%, 420px);
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
}

.session-web__card {
  position: relative;
  background: color-mix(in srgb, var(--surface, #fff) 96%, var(--primary-soft) 4%);
  border: 1px solid color-mix(in srgb, var(--border) 85%, var(--primary) 15%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 14px 36px rgba(26, 74, 68, 0.08);
}

.session-web__cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e8ebe6;
}

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

.session-web__cover-fade {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface, #fff) 92%, transparent));
  pointer-events: none;
}

.session-web__body {
  padding: 0.15rem 1rem 1.15rem;
  text-align: center;
}

.session-web__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 0 0 0.75rem;
}

.session-web__fact {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  max-width: 100%;
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-soft) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 65%, var(--primary) 35%);
}

.session-web__fact dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--primary-dark);
  white-space: nowrap;
}

.session-web__fact dt::after {
  content: ':';
}

.session-web__fact dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.session-web__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.session-web__for {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-2);
}

.session-web__body h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 4.6vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.session-web__lead {
  margin: 0 auto 0.85rem;
  max-width: 36ch;
  color: var(--text-2);
  line-height: 1.5;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.session-web__quote-wrap {
  position: relative;
  margin: 0 0 0.9rem;
}

.session-web__quote {
  margin: 0;
  padding: 0.7rem 2.55rem 0.7rem 0.85rem;
  border-radius: 14px;
  border-left: 3px solid color-mix(in srgb, var(--primary) 65%, transparent);
  background: color-mix(in srgb, var(--primary-soft) 75%, transparent);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}

.session-web__quote-line {
  display: block;
  text-wrap: pretty;
}

.session-web__quote-mark {
  font-weight: 500;
  opacity: 0.88;
}

.session-web__quote-line + .session-web__quote-line {
  padding-left: 0.15em;
  color: color-mix(in srgb, var(--text) 92%, var(--text-2) 8%);
}

.session-web__quote-copy {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent);
  border-radius: 999px;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.75), transparent 55%),
    color-mix(in srgb, var(--surface, #fff) 82%, var(--primary-soft) 18%);
  color: var(--primary-dark, #1a6b62);
  box-shadow: 0 4px 12px rgba(26, 74, 68, 0.08);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.session-web__quote-copy:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 16px rgba(26, 74, 68, 0.12);
  color: var(--primary, #2a9d8f);
}

.session-web__quote-copy:active {
  transform: scale(0.96);
}

.session-web__quote-copy:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 55%, transparent);
  outline-offset: 2px;
}

.session-web__quote-copy.is-copied {
  color: #1f7a4c;
  border-color: color-mix(in srgb, #3cb371 35%, transparent);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.8), transparent 55%),
    color-mix(in srgb, #e8f8ef 70%, var(--surface, #fff) 30%);
}

.session-web__quote-copy svg {
  display: block;
  flex-shrink: 0;
}

.session-web__quote-copy-done {
  display: none;
}

.session-web__quote-copy.is-copied .session-web__quote-copy-icon {
  display: none;
}

.session-web__quote-copy.is-copied .session-web__quote-copy-done {
  display: block;
}

html[data-theme='dark'] .session-web__quote-copy {
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
    color-mix(in srgb, var(--surface) 78%, var(--primary-soft) 22%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.session-web__i18n-note {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary-soft) 55%, transparent);
  color: var(--text-2);
  font-size: 0.8rem;
  line-height: 1.45;
}

.session-web__audio-origin {
  margin: 0 0 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-2);
}

.session-web__audio-origin-hint {
  color: var(--text-3);
  font-size: 0.76rem;
}

.session-web__player {
  margin: 0 0 1.15rem;
}

.session-web__player--hero {
  margin: 0.35rem 0 1.15rem;
  padding: 0.85rem 0.9rem 0.95rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
  background:
    radial-gradient(120% 90% at 10% 0%, color-mix(in srgb, var(--primary-soft) 70%, transparent), transparent 55%),
    color-mix(in srgb, var(--surface, #fff) 88%, var(--primary-soft) 12%);
  box-shadow: 0 10px 28px rgba(26, 74, 68, 0.06);
}

.session-web__audio {
  width: 100%;
  min-height: 48px;
  margin: 0 0 0.55rem;
  border-radius: 999px;
}

.session-web__audio-note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-3);
}

.session-web__audio-error {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: color-mix(in srgb, #b45309 70%, var(--text));
  line-height: 1.4;
}

.session-web__feedback {
  margin: 0 0 1.1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--border) 85%, var(--primary) 15%);
  background: color-mix(in srgb, var(--surface, #fff) 92%, var(--bg-2) 8%);
}

.session-web__feedback-q {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
}

.session-web__feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.session-web__feedback-btn {
  min-height: 44px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.session-web__feedback-btn:hover,
.session-web__feedback-btn:focus-visible {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary-soft) 55%, transparent);
}

.session-web__feedback-btn.is-selected {
  background: color-mix(in srgb, var(--primary) 18%, var(--surface, #fff));
  border-color: var(--primary);
  color: var(--primary-dark);
}

.session-web__feedback-btn:disabled:not(.is-selected) {
  opacity: 0.45;
  cursor: default;
}

.session-web__feedback-thanks {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
  color: var(--text-2);
}

.session-web__transcript {
  margin: 0 0 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-2) 55%, var(--surface, #fff));
  overflow: hidden;
}

.session-web__transcript summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  min-height: 44px;
}

.session-web__transcript summary::-webkit-details-marker {
  display: none;
}

.session-web__transcript-body {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-2);
}

.session-web__transcript-body p {
  margin: 0 0 0.65rem;
}

.session-web__transcript-body p:last-child {
  margin-bottom: 0;
}

.session-web__app-fallback {
  position: relative;
  margin: 0.35rem 0 0;
  /* Equal left/right; top room for the absolute close control */
  padding: 2.55rem 1rem 0.95rem;
  border-radius: 14px;
  border: 1px dashed color-mix(in srgb, var(--primary) 35%, var(--border));
  background: color-mix(in srgb, var(--primary-soft) 35%, transparent);
}

.session-web__app-fallback-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface, #fff) 72%, transparent);
  color: var(--text-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(17, 24, 28, 0.08);
  transition:
    transform 0.2s var(--ease, ease),
    background 0.2s var(--ease, ease),
    color 0.2s var(--ease, ease),
    box-shadow 0.2s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
  .session-web__app-fallback-close:hover {
    transform: scale(1.05);
    color: var(--text);
    background: color-mix(in srgb, var(--primary-soft) 55%, var(--surface, #fff));
    box-shadow: 0 6px 14px rgba(17, 24, 28, 0.12);
  }
}

.session-web__app-fallback-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

[data-theme='dark'] .session-web__app-fallback-close {
  background: color-mix(in srgb, var(--elevated, #1a2826) 80%, transparent);
  color: var(--text-2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

@media (hover: hover) and (pointer: fine) {
  [data-theme='dark'] .session-web__app-fallback-close:hover {
    background: color-mix(in srgb, var(--primary) 22%, var(--elevated, #1a2826));
    color: var(--text);
  }
}

.session-web__app-fallback p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-2);
  text-wrap: pretty;
}

.session-web__app-fallback-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
}

.session-web__app-fallback-actions .btn {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
}

.legal-summary {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
  background:
    radial-gradient(100% 80% at 0% 0%, color-mix(in srgb, var(--primary-soft) 65%, transparent), transparent 60%),
    var(--surface, #fff);
}

.legal-summary__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.legal-summary__list {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
  color: var(--text-2);
  line-height: 1.55;
}

.legal-summary__list li + li {
  margin-top: 0.35rem;
}

.legal-summary__cta {
  font-weight: 600;
  color: var(--primary-dark);
}

.support-intents {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.support-intent {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface, #fff);
  overflow: hidden;
}

.support-intent__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.support-intent__toggle:hover,
.support-intent__toggle:focus-visible {
  background: color-mix(in srgb, var(--primary-soft) 40%, transparent);
}

.support-intent__panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border);
}

.support-intent__panel[hidden] {
  display: none;
}

.support-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.support-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--text-2);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg, #fff);
  color: var(--text);
  font: inherit;
}

.support-form textarea {
  min-height: 110px;
  resize: vertical;
}

.support-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .session-web__feedback-btn,
  .session-web__quote-copy {
    transition: none;
  }
}

.session-web__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.session-web__actions .btn--primary {
  min-height: 48px;
}

.session-web__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.session-web__share svg {
  flex-shrink: 0;
  color: var(--primary-dark);
}

.session-web__back {
  border-color: var(--border);
  color: var(--text-2);
  box-shadow: none;
}

.session-web__back:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
  color: var(--primary-dark);
}

.session-web__related {
  padding: 1.25rem 1.1rem 1.2rem;
  border-radius: 28px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(69, 179, 164, 0.12), transparent 55%),
    color-mix(in srgb, var(--surface, #fff) 90%, var(--primary-soft) 10%);
  border: 1px solid color-mix(in srgb, var(--border) 80%, var(--primary) 20%);
  box-shadow: 0 12px 32px rgba(26, 74, 68, 0.06);
}

.session-web__related-head {
  text-align: center;
  margin-bottom: 1rem;
}

.session-web__related-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.session-web__related-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.session-web__related-desc {
  margin: 0.4rem auto 0;
  max-width: 28ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-2);
}

.session-web__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.session-web__related-list > li:nth-child(2) {
  margin-inline: 0.45rem;
}

.session-web__related-list > li:nth-child(3) {
  margin-inline: 0.2rem;
}

.session-web__related-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem 0.75rem 0.7rem 0.7rem;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  background: color-mix(in srgb, var(--surface, #fff) 94%, transparent);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(26, 74, 68, 0.04);
  transition:
    transform 0.28s var(--ease, ease),
    box-shadow 0.28s var(--ease, ease),
    border-color 0.28s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
  .session-web__related-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
    box-shadow: 0 12px 28px rgba(26, 74, 68, 0.1);
  }

  .session-web__related-card:hover .session-web__related-go {
    color: var(--primary-dark);
    transform: translateX(2px);
  }
}

.session-web__related-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.session-web__related-art {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary-soft);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-soft) 70%, transparent);
}

.session-web__related-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.session-web__related-copy {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
  text-align: left;
}

.session-web__related-copy strong {
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.session-web__related-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
}

.session-web__related-meta svg {
  color: var(--primary);
  flex-shrink: 0;
}

.session-web__related-go {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-3);
  background: color-mix(in srgb, var(--primary-soft) 55%, transparent);
  transition: transform 0.28s var(--ease, ease), color 0.28s var(--ease, ease);
}

[data-theme='dark'] .session-web {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(58, 184, 172, 0.1), transparent 62%),
    linear-gradient(180deg, #0e1514 0%, var(--bg) 100%);
}

[data-theme='dark'] .session-web__card,
[data-theme='dark'] .session-web__related {
  background: var(--elevated);
  border-color: rgba(58, 184, 172, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

[data-theme='dark'] .session-web__cover-fade {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--elevated) 95%, transparent));
}

[data-theme='dark'] .session-web__related-card {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border-color: rgba(58, 184, 172, 0.2);
}

[data-theme='dark'] .session-web__chip {
  background: rgba(58, 184, 172, 0.14);
  color: #7fd4cb;
}

[data-theme='dark'] .session-web__fact {
  background: rgba(58, 184, 172, 0.12);
  border-color: rgba(58, 184, 172, 0.24);
}

[data-theme='dark'] .session-web__fact dt {
  color: #7fd4cb;
}
